/* Theme base styles */

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

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

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

select option{
  color: black
}
/*! 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 {
  -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,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
	margin-block-start: unset;
	margin-block-end: unset;
}

h1,
h2,
h3,
p {
  // font-size: 2em;
  margin: 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.5; /* 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;
}

select {
  option {
    color: var(--color__pu90);
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  --padding__container: 2rem;
  --super__gradient: linear-gradient(180deg, #110028 0%, #23004c 100%);
  --bg--primary: var(--color__pu90);
  --radius--primary: 2.5rem;

  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;

  --color__pu90: #20123a;
  --color__pu80: #45256b;
  --color__pu70: #5d328b;
  --color__pu60: #723ea6;
  --color__pu50: #9555d1;
  --color__pu40: #b969ff;
  --color__pu30: #d5a5ff;
  --color__pu20: #e3c3ff;
  --color__pu10: #f1e1ff;
  --color__pu5: #f3f0f4;

  --color__pi50: #cc3997;
  --color__pi40: #ff47bd;
  --color__pi20: #ffb5e5;

  --color__ye30: #ffb547;
}

body {
  font-family: 'PolySans', sans-serif;
  width: 100%; /*fix width issue when scroll disabled with position: fixed method*/
  background-color: var(--bg--primary);
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0, 0);
}

ul li::marker {
    color: var(--color__pi40);
}

ul li:not(:first-child) {
    margin-top: 1rem;
}

 ul {
   margin-block-start:unset;
   margin-block-end:unset;
   padding-left: 2rem
}

@media screen and (min-width: 991px) {
    ul {
        padding-left:4rem
    }
}

.container {
	 max-width: 132rem;
}
 .container--dark {
	 background-color: #111;
}
 .container--white {
	 background-color: #fff;
}
 .container--insights {
	 background: linear-gradient(50.18deg, #180046 0%, #720094 100%);
}

.cursor--pointer{
  cursor: pointer;
}

.pointer-events--none{
  pointer-events: none;
}
``
/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive grid */



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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


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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: var(--padding__container);
  padding-left: var(--padding__container);
  margin-right: auto;
  margin-left: auto;
}
/* @media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
} */

@media (min-width: 991px){
	.container, [classˆ="container-"] {
			max-width: 132rem;
	}
}
.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: var(--padding__container);
  padding-left: var(--padding__container);
  margin-right: auto;
  margin-left: auto;
}

/* @media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
} */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--padding__container) * -1);
  margin-left: calc(var(--padding__container) * -1);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: var(--padding__container);
  padding-left: var(--padding__container);
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

.flex-fill {
  flex: 1 1 auto !important;
}

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

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

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

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.container-fluid .container-fluid, .container-sm .container-fluid, .container-md .container-fluid, .container-lg .container-fluid, .container-xl .container-fluid, .container-fluid .container-sm, .container-sm .container-sm, .container-md .container-sm, .container-lg .container-sm, .container-xl .container-sm, .container-fluid .container-md, .container-sm .container-md, .container-md .container-md, .container-lg .container-md, .container-xl .container-md, .container-fluid .container-lg, .container-sm .container-lg, .container-md .container-lg, .container-lg .container-lg, .container-xl .container-lg, .container-fluid .container-xl, .container-sm .container-xl, .container-md .container-xl, .container-lg .container-xl, .container-xl .container-xl {
  padding-left: 0;
  padding-right: 0;
}

a span,
a i,
a svg {
  pointer-events: none;
}

.template__single-form .single-form__content {
  background: linear-gradient(225deg, #720094 0%, #20123a 100%);
  padding: 12rem max(2rem, min(4vw, 4rem));
}
.template__single-form .single-form__content ul {
/*   list-style-image: url("data:image/svg+xml,%3Csvg width='10' height='12' viewBox='0 0 10 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.62998 0.105141C4.85896 -0.0350472 5.14104 -0.0350472 5.37002 0.105141L9.63 2.71283C9.85898 2.85295 10 3.11201 10 3.39231V8.60771C10 8.88801 9.85898 9.14703 9.63 9.28719L5.37002 11.8949C5.14104 12.035 4.85896 12.035 4.62998 11.8949L0.370005 9.28719C0.141023 9.14703 -3.13828e-05 8.88801 5.23735e-09 8.60771L5.24757e-09 3.39231C-3.13828e-05 3.11201 0.141023 2.85295 0.370005 2.71283L4.62998 0.105141Z' fill='%23B969FF'/%3E%3C/svg%3E%0A"); */
  padding-left: 3rem;
}
.template__single-form .single-form__content ul li::marker {
  color: var(--color__pu40);
      font-size: 1.5em;
    line-height: 1;
}
.template__single-form .single-form__content-dnd {
  max-width: 54rem;
}
.template__single-form .single-form__form {
  padding: 8rem max(2rem, min(4vw, 4rem));
}
.template__single-form .single-form__form .form-title {
  font-size: max(3.0rem, min(4.2vw, 4.2rem));
  padding-bottom: 2rem;
}
.template__single-form .single-form__form form {
  max-width: 42.6rem;
  margin: 0 auto;
}
.template__single-form .single-form__form form input,
.template__single-form .single-form__form form select {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.template__single-form .single-form__form form input:active, .template__single-form .single-form__form form input:focus,
.template__single-form .single-form__form form select:active,
.template__single-form .single-form__form form select:focus {
  border: 1px solid rgba(0, 0, 0, 0.8);
}
.template__single-form .single-form__form form label {
  opacity: 1;
}
/* .template__single-form .single-form__form form a {
  color: currentColor;
} */
.template__single-form .single-form__form form select {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.939023 0.0600586L3.99902 3.11339L7.05902 0.0600586L7.99902 1.00006L3.99902 5.00006L-0.000976562 1.00006L0.939023 0.0600586Z' fill='%2320123a'/%3E%3C/svg%3E%0A");
  text-overflow: ellipsis;
  padding-right: 3rem;
  background-size: 1.2rem;
  background-position: center right 1rem;
}
.template__single-form .single-form__logo {
  position: absolute;
  top: 4rem;
  left: max(2rem, min(4vw, 4rem));
  z-index: 2;
}

.template__single-form--dark .single-form__content{
  background: unset;
}

.template__single-form--dark .single-form__form{
  background: var(--color__pu80);
}

.template__single-form--dark .single-form__form form {
  max-width: 42.6rem;
  margin: 0 auto;
}
.template__single-form--dark .single-form__form form input,
.template__single-form--dark .single-form__form form select {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.template__single-form--dark .single-form__form form input:active, .template__single-form--dark .single-form__form form input:focus,
.template__single-form--dark .single-form__form form select:active,
.template__single-form--dark .single-form__form form select:focus {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.template__single-form--dark .single-form__form form select {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.939023 0.0600586L3.99902 3.11339L7.05902 0.0600586L7.99902 1.00006L3.99902 5.00006L-0.000976562 1.00006L0.939023 0.0600586Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 991px){
  .template__single-form--dark .single-form__form{
    padding-top: 18rem;
    order: -1;
  }

  .template__single-form--dark .single-form__content{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .template__single-form--dark .single-form__logo{
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%
  }
}


.template__blank-page {
  padding-left: 0;
  padding-right: 0;
}

.content__wrapper {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
.content__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  padding-top: 25rem;
  background-color: #20123a;
  overflow: hidden;
}
.content__bg .screen {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}
.content__bg .screen svg {
  margin-right: auto;
  transform: translateX(-40%);
  display: none;
  height: 100vh;
  max-height: 100rem;
}
.content__bg .screen .line--vertical {
  z-index: 1;
  right: -4rem;
}
.content__bg .screen:nth-child(2n+2) .line--vertical {
  right: auto;
  left: -4rem;
}
.content__bg .screen:nth-child(3n+1) svg {
  display: block;
}
.content__bg .screen:nth-child(6n+4) svg {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(40%);
}

.landing-page--dark {
  position: relative;
  color: #fff;
  font-family: "Montserrat", Verdana, sans-serif;
  font-size: max(1.6rem, min(2vw, 2rem));
  line-height: max(1.95rem, min(2.8vw, 2.8rem));
}
.landing-page--dark h1 {
  font-size: max(6.2rem, min(9.6vw, 9.6rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.22;
}
.landing-page--dark h2 {
  font-size: max(3.6rem, min(6.46vw, 6.4rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.22;
}
.landing-page--dark h3 {
  font-size: max(3.2rem, min(4.84vw, 4.8rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.22;
}
.landing-page--dark h4 {
  font-size: max(2.4rem, min(3.63vw, 3.6rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.2;
}
.landing-page--dark h5 {
  font-size: max(2rem, min(2.4vw, 2.4rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.2;
}
.landing-page--dark h6 {
  font-size: max(1.8rem, min(2vw, 2rem));
  color: currentColor;
  font-family: inherit;
  line-height: 1.2;
}
.landing-page--dark p {
  font-size: inherit;
  line-height: inherit;
}
.landing-page--dark .hs_cos_wrapper_type_rich_text ul {
  padding: 0.8rem 0 0.8rem 1rem;
}
.landing-page--dark .hs_cos_wrapper_type_rich_text ul li {
  list-style-image: url("data:image/svg+xml,%3Csvg width='10' height='12' viewBox='0 0 10 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.62998 0.105141C4.85896 -0.0350472 5.14104 -0.0350472 5.37002 0.105141L9.63 2.71283C9.85898 2.85295 10 3.11201 10 3.39231V8.60771C10 8.88801 9.85898 9.14703 9.63 9.28719L5.37002 11.8949C5.14104 12.035 4.85896 12.035 4.62998 11.8949L0.370005 9.28719C0.141023 9.14703 -3.13828e-05 8.88801 5.23735e-09 8.60771L5.24757e-09 3.39231C-3.13828e-05 3.11201 0.141023 2.85295 0.370005 2.71283L4.62998 0.105141Z' fill='%23B969FF'/%3E%3C/svg%3E%0A");
  padding: 1.2rem 0 1.2rem 1.2rem;
}
.landing-page--dark .button-wrapper .button, .landing-page--dark .landing-page--dark .button-wrapper .button, .landing-page--dark .btn,
.landing-page--dark .hs-button {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.4rem;
  border-radius: 5rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color 0.15s ease-in-out;
  color: #fff;
}
.landing-page--dark .button-wrapper .button::before, .landing-page--dark .landing-page--dark .button-wrapper .button::before, .landing-page--dark .btn::before,
.landing-page--dark .hs-button::before, .landing-page--dark .button-wrapper .button::after, .landing-page--dark .landing-page--dark .button-wrapper .button::after, .landing-page--dark .btn::after,
.landing-page--dark .hs-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.15s ease-in-out;
  z-index: -2;
  border-radius: 5rem;
}
.landing-page--dark .button-wrapper .button::after, .landing-page--dark .landing-page--dark .button-wrapper .button::after, .landing-page--dark .btn::after,
.landing-page--dark .hs-button::after {
  z-index: -1;
  background: #fff;
  opacity: 0;
}
.landing-page--dark .button-wrapper .button:hover, .landing-page--dark .btn:hover,
.landing-page--dark .hs-button:hover {
  color: #000;
}
.landing-page--dark .button-wrapper .button:hover::after, .landing-page--dark .btn:hover::after,
.landing-page--dark .hs-button:hover::after {
  opacity: 1;
}
.landing-page--dark .button-wrapper .button img, .landing-page--dark .landing-page--dark .button-wrapper .button img, .landing-page--dark .btn img,
.landing-page--dark .hs-button img {
  width: 4.8rem;
  height: 4.8rem;
}
.landing-page--dark .button-wrapper .button::before, .landing-page--dark .landing-page--dark .button-wrapper .button::before, .landing-page--dark .btn--primary::before, .landing-page--dark .btn.primary::before,
.landing-page--dark .hs-button--primary::before,
.landing-page--dark .hs-button.primary::before {
  background: linear-gradient(205deg, #ff47bd 0%, #b969ff 100%);
}
.landing-page--dark .button-wrapper .button::after, .landing-page--dark .landing-page--dark .button-wrapper .button::after, .landing-page--dark .btn--primary::after, .landing-page--dark .btn.primary::after,
.landing-page--dark .hs-button--primary::after,
.landing-page--dark .hs-button.primary::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.landing-page--dark .btn--ghost,
.landing-page--dark .hs-button--ghost {
  box-shadow: inset 0 0 0 2px #fff;
}
.landing-page--dark .btn--with_icon,
.landing-page--dark .hs-button--with_icon {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.landing-page--dark .hero h1,
.landing-page--dark .hero h2,
.landing-page--dark .hero h3,
.landing-page--dark .hero h4,
.landing-page--dark .hero h5,
.landing-page--dark .hero h6 {
  font-family: "Conthrax";
}

.landing-page__sem--dark {
  color: #fff;
}
.landing-page__sem--dark .content__bg {
  padding-top: calc(100vh + 180px);
}
.landing-page__sem--dark h1,
.landing-page__sem--dark h2,
.landing-page__sem--dark h3,
.landing-page__sem--dark h4,
.landing-page__sem--dark h5,
.landing-page__sem--dark h6 {
  color: currentColor;
}
.landing-page__sem--dark .hero__bg {
  -webkit-mask-image: linear-gradient(180deg, #C4C4C4 0%, rgba(196, 196, 196, 0) 100%);
          mask-image: linear-gradient(180deg, #C4C4C4 0%, rgba(196, 196, 196, 0) 100%);
  opacity: 0.75;
}
.landing-page__sem--dark .hero .overlay {
  background: transparent;
}
.landing-page__sem--dark .hero h1 {
  font-size: max(46px, min(7.2vw, 72px));
}
.landing-page__sem--dark .solution__boxes {
  gap: 24px;
}
.landing-page__sem--dark .solution__box {
  max-width: max(300px, min(30vw, 400px));
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent !important;
  text-align: center;
}
.landing-page__sem--dark .solution__box img {
  margin: 0 auto;
}
.landing-page__sem--dark .solution__box-title {
  font-size: 36px;
  font-family: "Conthrax";
  text-transform: unset;
  line-height: 1.25;
}
.landing-page__sem--dark .solution__box-text {
  font-size: 18px;
  line-height: 24px;
}
.landing-page__sem--dark .testimonial__text {
  font-size: max(18px, min(2.4vw, 24px));
}
.landing-page__sem--dark .logos__header {
  opacity: 0.7;
}

.body-container--case-landing-page .row-fluid,
.hs-content-id-46002474199 .row-fluid {
  overflow: hidden;
}

.body-container--case-landing-page .result__box {
  /* border: none !important; */
}
.body-container--case-landing-page h2 {
  font-family: "Montserrat", sans-serif;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

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

.fz--0 {
	 font-size: 9.6rem;
}
 .fz--1 {
	 font-size: 7.2rem;
}
 .fz--2 {
	 font-size: 4.8rem;
}
 .fz--3 {
	 font-size: 3.6rem;
}
 .fz--4 {
	 font-size: 2.4rem;
}
 .fz--5 {
	 font-size: 2rem;
}
 .fz--6 {
	 font-size: 1.8rem;
}
 .fz--7 {
	 font-size: 1.6rem;
}
 .fz--8 {
	 font-size: 1.4rem;
}
 @media screen and (min-width: 991px) {
	 .fz-lg--1 {
		 font-size: 7.2rem;
	}
	 .fz-lg--2 {
		 font-size: 4.8rem;
	}
	 .fz-lg--3 {
		 font-size: 3.6rem;
	}
	 .fz-lg--4 {
		 font-size: 2.4rem;
	}
	 .fz-lg--5 {
		 font-size: 2rem;
	}
	 .fz-lg--6 {
		 font-size: 1.8rem;
	}
	 .fz-lg--7 {
		 font-size: 1.6rem;
	}
	 .fz-lg--8 {
		 font-size: 1.4rem;
	}
}
 .text--h0 {
	 font-size: clamp(6.2rem, 7.26vw, 9.6rem);
	 line-height: 1;
	 font-weight: 500;
}
 .text--xl {
	 font-size: clamp(3rem, 4.2vw, 4.2rem);
}
 .text--h1 {
	 font-size: clamp(3.6rem, 6.46vw, 6.4rem);
	 line-height: 1.1;
	 font-weight: 500;
}
 .text--h2 {
	 font-size: clamp(3.2rem, 4.84vw, 4.8rem);
	 font-weight: 500;
	 line-height: 1.2;
}
 .text--h3 {
	 font-size: clamp(2.4rem, 3.63vw, 3.6rem);
	 font-weight: 500;
	 line-height: 1.22;
}
 .text--h4 {
	 font-size: clamp(2rem, 2.42vw, 2.4rem);
	 line-height: 1.2;
}
 .text--h5 {
	 font-size: 1.6rem;
	 line-height: 1.25;
	 font-weight: 500;
}
 .text--button-1 {
	 font-size: 2.4rem;
	 line-height: 1.2;
	 font-weight: 400;
}
 .text--button-2 {
	 font-size: 2rem;
	 line-height: 1.2;
	 font-weight: 400;
}
 .text--label {
	 font-size: 2rem;
	 line-height: 1.2;
	 font-weight: 500;
}
 .text--body-1 {
	 font-size: clamp(1.8rem, 2.01vw, 2rem);
	 line-height: 1.7;
	 font-weight: normal;
}
 .text--body-2 {
	 font-size: clamp(1.6rem, 1.81vw, 1.8rem);
	 line-height: 1.33;
	 font-weight: normal;
}
 .text--small {
	 font-size: 1.4rem;
	 line-height: 1.21;
}
 @media screen and (min-width: 991px) {
	 .text-lg--h1 {
		 font-size: clamp(4.8rem, 7.26vw, 7.2rem);
		 line-height: 1.22;
		 font-weight: 500;
	}
	 .text-lg--h2 {
		 font-size: clamp(3.6rem, 4.84vw, 4.8rem);
		 font-weight: 500;
		 line-height: 1.22;
	}
	 .text-lg--h3 {
		 font-size: clamp(2.4rem, 3.63vw, 3.6rem);
		 font-weight: 500;
		 line-height: 1.22;
	}
	 .text-lg--h4 {
		 font-size: clamp(2rem, 2.42vw, 2.4rem);
		 line-height: 1.2;
		 font-weight: 600;
	}
	 .text-lg--h5 {
		 font-size: 1.6rem;
		 line-height: 1.25;
		 font-weight: 500;
	}
	 .text-lg--button-1 {
		 font-size: 2.4rem;
		 line-height: 1.2;
		 font-weight: 500;
	}
	 .text-lg--button-2 {
		 font-size: 2rem;
		 line-height: 1.2;
		 font-weight: 500;
	}
	 .text-lg--label {
		 font-size: 2rem;
		 line-height: 1.2;
		 font-weight: 500;
	}
	 .text-lg--body-1 {
		 font-size: clamp(1.8rem, 2.01vw, 2rem);
		 line-height: 1.7;
		 font-weight: normal;
	}
	 .text-lg--body-2 {
		 font-size: clamp(1.6rem, 1.81vw, 1.8rem);
		 line-height: 1.33;
		 font-weight: normal;
	}
	 .text-lg--small {
		 font-size: 1.4rem;
		 line-height: 1.21;
		 font-weight: 500;
	}
}
 .fw--100 {
	 font-weight: 100;
}
 .fw--300 {
	 font-weight: 300;
}
 .fw--400 {
	 font-weight: 400;
}
 .fw--500 {
	 font-weight: 500;
}
 .fw--600 {
	 font-weight: 600;
}
 .fw--700 {
	 font-weight: 700;
}
 .fw--800 {
	 font-weight: 800;
}
 .ff--primary {
	 font-family: 'PolySans', sans-serif;
}
 .ff--secondary {
	 font-family: 'PolySans', sans-serif;
}
 .ff--accent {
	 font-family: 'PolySans', sans-serif;
}
 .letter-spacing--05 {
	 letter-spacing: 0.05rem;
}
 .letter-spacing--02 {
	 letter-spacing: -0.02em;
}

.line-height--1{
	line-height: 1;
}

h1,h2,h3,h4,h5,h6{
  letter-spacing: -0.02em;
}

p{
  letter-spacing: 0.05rem;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

/* .btn{
  box-sizing: border-box;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 20px 24px;

  border-radius: 50px;

  font-size: 20px;

  font-weight: 500;

  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color 0.15s ease-in-out;

  color: #fff;
}

.btn::after,
.btn::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.15s ease-in-out;
  z-index: -2;
  border-radius: 5rem;
}

.btn::after{
  z-index: -1;
  background: #fff;
  opacity: 0;
}

.btn:hover,
.btn:active,
.btn:focus{
  color: #000;
  font-weight: 500;
}

.btn:hover::after{
  opacity: 1;
}

.btn svg{
  margin-left: 10px;
  max-width: 18px;
  max-height: 18px;
}

.btn--primary svg path{
  fill: currentColor;
}

.btn--primary::before {
  background: linear-gradient(205deg, #ff47bd 0%, #b969ff 100%);
}
.btn--primary::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
} */

.btn {
	 box-sizing: border-box;
	 display: inline-flex;
	 justify-content: center;
	 align-items: center;
	 padding: 1.5rem 4rem;
	 border-radius: 5rem;
	 cursor: pointer;
	 position: relative;
	 z-index: 2;
	 overflow: hidden;
	 text-decoration: none !important;
	 font-weight: 500;
	 color: #fff;
	 transition: background-color 0.15s ease-in-out;
	 font-size: 2rem;
	 line-height: 1.2;
   gap: 1rem;
   border: none;
}
 .btn img {
	 width: 4.8rem;
	 height: 4.8rem;
}
 .btn--primary {
	 background-color: var(--color__ye30);
	 color: var(--color__pu90);
}
 .btn--primary:hover {
	 background-color: #fff;
	 color: var(--color__pu90);
}
 .btn--secondary {
	 background-color: #fff;
	 color: var(--color__pu90) !important;
}
 .btn--secondary:hover {
	 background-color: var(--color__pu10);
}

/* Outlined */
a.btn--outlined,
button.btn--outlined {
  background-color: transparent;
  color: #fff;
  border: .2rem solid #fff;
}

a.btn--outlined:hover,
button.btn--outlined:hover {
  background-color: #fff;
  color: var(--color__pu90);
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.chip {
	 padding: 1rem 2.6rem;
	 border-radius: 0.8rem;
	 font-size: 1.4rem;
	 line-height: 1;
	 color: #fff;
	 position: relative;
	 z-index: 2;
	 overflow: hidden;
	 cursor: pointer;
	 transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
 @media screen and (min-width: 991px) {
	 .chip {
		 font-size: 2rem;
	}
}
 .chip--ghost {
	 box-shadow: inset 0 0 0 1px var(--color__pu40);
	 background-color: transparent;
}
 .chip--ghost:hover, .chip--ghost.active {
	 background-color: var(--color__pu40);
}
 .chip--primary {
	 background-color: var(--color__pu30);
	 color: var(--color__pu90);
}
 .chip--primary:hover {
	 background-color: var(--color__pu20);
	 color: var(--color__pu90);
}
 .chip--secondary {
	 color: #000;
}
 .chip--secondary::before, .chip--secondary::after {
	 content: '';
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 transition: opacity 0.15s ease-in-out;
	 z-index: -1;
}
 .chip--secondary::before {
	 border-radius: 5rem;
	 background: #fff;
	 box-shadow: inset 0 0 0 2px #b969ff;
}
 .chip--secondary::after {
	 z-index: -2;
	 background: linear-gradient(45deg, #b969ff 0%, #ff47bd 100%);
}
 .chip--secondary:hover {
	 color: #fff;
}
 .chip--secondary:hover::before {
	 opacity: 0;
}
/* Fields */

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

/* Labels */

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

/* Help text */

/* form legend {
  font-size: 0.875rem;
} */

/* Inputs */

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

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
	position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
	margin: 0 auto;
}

.hs-form .hs-input {
	box-sizing: border-box;
	font-size: inherit;
	color: inherit;
	display: block;
	width: 100%;
	height: 4rem;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	transition: border-color 0.15s ease-in;
	outline: none;
	padding: 0 2rem;
	line-height: normal;
	font-family: inherit;
	font-weight: 600;
}
.hs-form .hs-input:focus,
.hs-form .hs-input:active {
	border-color: #fff;
}
.hs-form .hs-input.error {
	border-color: red;
	opacity: 1;
}
@media screen and (min-width: 991px) {
	.hs-form .hs-input {
		height: 5rem;
		font-size: 1.6rem;
	}
}

.hs-form .hs-input[type="checkbox"]{
  width: 1.6rem;
  height: 1.6rem;
  background: transparent;
}
.hs-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDA4IiBoZWlnaHQ9IjIyNSIgdmlld0JveD0iMCAwIDQwOCAyMjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zODYuMjU4IDAuNTY3MzgzTDIwMy43MTggMTgyLjUxMkwyMS4xNzkgMC41NjczODNMMCAyMS44MTU0TDIwMy43MTggMjI0Ljg3TDQwNy40MzcgMjEuODE1NEwzODYuMjU4IDAuNTY3MzgzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
	background-size: 1rem;
	background-repeat: no-repeat;
	background-position: center right 1rem;
	padding-right: 3rem !important;
	text-overflow: ellipsis;
}
.hs-form .field {
	margin-top: 1rem;
}
@media screen and (min-width: 991px) {
	.hs-form .field {
		margin-top: 2rem;
	}
}
.hs-form .actions {
	text-align: center;
	margin-top: 2rem;
}
@media screen and (min-width: 991px) {
	.hs-form .actions {
		margin-top: 3rem;
	}
}
.hs-form label {
	display: block;
	opacity: 0.5;
	padding-left: 2rem;
	line-height: 2rem;
	margin-bottom: 1rem;
	font-weight: 500;
}
@media screen and (min-width: 991px) {
	.hs-form label {
		font-size: 1.6rem;
	}
}
.hs-form .hs-button {
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	padding: 1.5rem 4rem;
	border-radius: 5rem;
	cursor: pointer;
	position: relative;
	z-index: 2;
	overflow: hidden;
	text-decoration: none !important;
	color: #fff;
	display: block;
	max-width: 30rem;
	margin: 0 auto;
	color: #fff;
	background-color: var(--color__ye30);
	color: var(--color__pu90);
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 500;
	transition: background-color .15s ease-in-out;
	border: none;

}
.hs-form .hs-button:hover {
	background-color: #fff;
    color: var(--color__pu90);
}
.hs-form .no-list {
	list-style: none;
	background: fff;
	padding-left: 0;
	margin-top: 0.5rem;
	line-height: 1;
}
.hs-form .no-list label {
	padding-left: 0;
	color: red;
	opacity: 1;
}

.hs-form .inputs-list{
  padding-left: unset;
}

.hs-form .hs-form-booleancheckbox{
  list-style: none;
}

.hs-form .hs-form-booleancheckbox-display{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: unset;
  opacity: 1;
  cursor: pointer;
  font-weight: 400;
}

.hs-form .hs-error-msgs {
	list-style: none;
	background: fff;
}
.hs-form .legal-consent-container {
	font-size: 1.2rem;
	padding-top: 1.6rem;
	text-align: center;
}
.hs-form .legal-consent-container a {
	text-decoration: underline;
	color: var(--color__ye30);
}

.hs-form .legal-consent-container .inputs-list {
	padding-left: 0;
	list-style: none;
}

.hs-form .legal-consent-container .inputs-list label {
	display: flex;
	align-items: center;
	padding-left: 0;
	font-size: 12px;
	text-align: left;
	user-select: none;
	cursor: pointer;
}

.hs-form .legal-consent-container .inputs-list label p {
	font-weight: 400;
	font-size: inherit;
	margin: 0 !important;
}

.hs-form .legal-consent-container .inputs-list [type="checkbox"] {
	height: 1.6rem;
	width: 1.6rem;
}
.hs-form .legal-consent-container .inputs-list [type="checkbox"]:checked,
.hs-form .legal-consent-container .inputs-list [type="checkbox"]:hover {
	opacity: 1;
}

.modal__form {
    display: none;
    text-align: left
}

.modal__form .modal__overlay {
    align-items: center;
    animation: mmfadeOut .3s cubic-bezier(0,0,.2,1);
    background: rgba(0,0,0,.6);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    transition: all .3s ease-in;
    will-change: transform;
    z-index: 10000
}

@keyframes mmfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.modal__form .modal__container {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    animation: mmslideOut .3s cubic-bezier(0,0,.2,1);
    background: #20123a;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    max-height: 100%;
    overflow: hidden;
    overflow: auto;
    width: 100%
}

.modal__form .modal__bg {
    display: none
}

.modal__form .nav {
    position: relative;
    width: 100%;
    z-index: 2
}

.modal__form .nav__content {
    align-items: center;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    width: 100%
}

.modal__form .nav__content img {
    display: block;
    margin-bottom: 3rem;
    margin-top: 3rem;
    width: auto
}

.modal__form .cursor--pointer {
    cursor: pointer
}

.modal__form .modal__body {
    box-sizing: border-box;
    color: #fff;
    padding: 2.6rem 2rem;
    width: 100%
}

.modal__form .modal__header {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding-bottom: 3rem;
    position: relative;
    text-align: center
}

.modal__form .form-demo {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 auto;
    max-width: 50rem;
    padding-top: 2rem
}

.show_form .modal__form {
    display: block
}

.show_form .modal__form .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0,0,.2,1)
}

.show_form .modal__form .modal__container {
    animation: mmslideIn .3s cubic-bezier(0,0,.2,1)
}

.modal__form .nav__content>img {
    height: 20px
}

.modal__form .modal__header:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 6rem
}

.modal__form .hs_cos_wrapper_type_form {
    margin: 0;
    padding: 0
}

.modal__form .field {
    margin-bottom: 0;
    margin-top: 1rem
}

.modal__form label {
    color: #fff;
    display: block;
    line-height: 2rem;
    margin-bottom: 1rem;
    opacity: .5;
    padding-left: 2rem
}

.modal__form form input[type=email],.modal__form form input[type=file],.modal__form form input[type=number],.modal__form form input[type=password],.modal__form form input[type=tel],.modal__form form input[type=text],.modal__form form select,.modal__form form textarea {
    background-color: transparent;
    border: 1px solid hsla(0,0%,100%,.2);
    border-radius: 5px;
    box-sizing: border-box;
    color: inherit;
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    height: 4rem;
    line-height: normal;
    outline: none;
    padding: 0 2rem;
    transition: border-color .15s ease-in;
    width: 100%
}

body.open_form {
    overflow: hidden
}

.modal__form label .hs-form-required {
    color: #fff
}

.modal__form form select {
    appearance: none;
    background-image: url(//24973737.fs1.hubspotusercontent-eu1.net/hubfs/24973737/raw_assets/public/AdwayAB_February2023/images/down_icon.svg);
    background-position: center right 1rem;
    background-repeat: no-repeat;
    background-size: 1.2rem;
    text-overflow: ellipsis
}

.modal__form .legal-consent-container {
    font-size: 1.2rem;
    padding-top: 1.6rem;
    text-align: center
}

.modal__form .legal-consent-container p {
    font-family: PolySans,sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0
}

.modal__form .legal-consent-container a {
    color: #ffb547;
    text-decoration: underline
}

.modal__form .actions {
    margin-top: 2rem;
    text-align: center
}

.modal__form form .hs-button {
    display: block;
    margin: 0 auto;
    max-width: 30rem;
    width: 100%
}

.modal__form .hs-input.invalid.error {
    border-color: red;
    color: #fff;
    opacity: 1
}

.modal__form .form-demo .no-list {
    line-height: 1;
    list-style: none;
    margin-top: .5rem;
    padding-left: 0
}

.modal__form form .inputs-list>li {
    margin: 0
}

.modal__form form .inputs-list>li label {
    color: red;
    opacity: 1;
    padding-left: 0
}

.modal__form form .hs-richtext {
    margin-bottom: 0
}

.modal__form .cursor--pointer img {
    display: inline;
    height: 25px;
    margin-bottom: 0;
    margin-top: 0;
    width: 25px
}

@keyframes mmslideOut {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10%)
    }
}

@keyframes mmfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mmslideIn {
    0% {
        transform: translateY(15%)
    }

    to {
        transform: translateY(0)
    }
}

@media screen and (min-width: 991px){
  .modal__form .actions{
    margin-top: 3rem;
  }
}

@media screen and (min-width: 1024px){
  .modal__form .modal__container{
    border-radius: 3rem;
    max-width: 80rem;
    height: auto;
    position: relative;
  }

  .modal__form .modal__bg {
    display: block;
    position: absolute;
    inset: 0;
  }

  .modal__form .nav__content{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .modal__form .modal__body {
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 2;
  }

  .modal__form .modal__header {
    font-size: 3.6rem;
    line-height: 1;
    padding-bottom: 2rem;
  }

  .modal__form .modal__header:after{
    width: 14rem;
  }

  .modal__form .field {
    margin-top: 2rem;
  }

  .modal__form label {
    font-size: 1.6rem;
  }

  .modal__form form input[type=email],
  .modal__form form input[type=file],
  .modal__form form input[type=number],
  .modal__form form input[type=password],
  .modal__form form input[type=tel],
  .modal__form form input[type=text],
  .modal__form form select,
  .modal__form form textarea{
    height: 5rem;
    font-size: 1.6rem;
  }

}

.show_form .modal__form {
    display: block
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.overlay--purple {
background: linear-gradient(
  180deg,
  rgba(32, 18, 58, 0) 0%,
  rgba(32, 18, 58, 0.58) 50%,
  rgba(32, 18, 58, 0.86) 100%
);
}

.overlay--blur-right::before {
  content: '';
  width: 80rem;
  height: 80rem;
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  background-image: url('https://adway.ai/hubfs/Website%20Assets/overlay/overlay--yellow.webp');
  background-size: cover;
}
.overlay--blur-left::after {
  content: '';
  width: 80rem;
  height: 80rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url('https://adway.ai/hubfs/Website%20Assets/overlay/overlay--purple.webp');
  background-size: cover;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.grid-item {
	 min-height: 40rem;
	 max-width: 100%;
	 width: 100%;
	 overflow: hidden;
	 position: relative;
	 z-index: 1;
	 color: #fff;
	 backface-visibility: hidden;
}
 .grid-item[href]:hover .grid-item__image, .grid-item.js_hovered_within .grid-item__image {
	 transform: scale(1.05);
}
 .grid-item__content {
	 max-width: 60rem;
}
 .grid-item__image {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 object-position: center;
	 transition: transform 0.45s ease-in-out;
}
 .grid-item__image-container {
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 z-index: -1;
	 border-radius: var(--radius--primary);
	 overflow: hidden;
}
 .grid-item__title, .grid-item__text {
	 max-width: 80rem;
}
 .grid-item__text {
	 font-size: 1.8rem;
}
 .grid-item__logo-container {
	 width: 11rem;
	 height: 11rem;
	 position: relative;
	 border-radius: 0.6rem;
}
 .grid-item--sm .overlay::after, .grid-item--sm .overlay::before {
	 opacity: 0.75;
}
 @media screen and (min-width: 991px) {
	 .grid-item {
		 width: 100%;
		 min-height: 70rem;
	}
	 .grid-item:not(.grid-item--small) {
		 grid-column-start: 1;
		 grid-column-end: 3;
	}
	 .grid-item--small .blog-item__title {
		 font-size: 3.8rem;
	}
	 .grid-item--small .blog-item__content {
		 padding-top: 6rem !important;
		 padding-bottom: 6rem !important;
	}
}
 .blog-items {
	 position: relative;
	 z-index: 2;
}
 .blog-item__grid {
	 display: grid;
	 gap: 4rem;
	 grid-template-columns: 1fr;
}
 @media screen and (min-width: 991px) {
	 .blog-item__grid {
		 grid-template-columns: 1fr 1fr;
	}
}

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

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hero {
	 position: relative;
	 min-height: 80rem;
	 padding: 10rem 0 clamp(5rem, 10vw, 10rem) 0;
	 gap: 5rem;
	 color: #fff;
}
 .hero--full-height {
	 min-height: 100vh;
}
 @media screen and (max-width: 991px) {
	 .hero--blog{
			min-height: 55rem;
		}
}
 @media screen and (min-width: 991px) {
	 .hero--has-scroll {
		 margin-bottom: clamp(10rem, 12vw, 12rem);
	}
}
 .hero__bg {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 object-position: center;
}
 .hero__bg-container {
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 z-index: -1;
}
 .hero__scroll {
	 position: absolute;
	 bottom: 0;
	 left: 50%;
	 transform: translate(-50%, 50%);
	 font-weight: 500;
}
 @media screen and (max-width: 991px) {
	 .hero__scroll {
		 display: none;
	}
}
 .hero__scroll p {
	 position: absolute;
	 bottom: 100%;
	 left: 50%;
	 transform: translateX(-50%);
	 padding-bottom: 1rem;
	 white-space: nowrap;
}
 .hero__scroll-line {
	 width: 0.2rem;
	 height: 12rem;
	 background-color: rgba(255, 255, 255, 0.2);
	 position: relative;
	 overflow: hidden;
}
 .hero__scroll-line::before {
	 content: '';
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 background-color: #fff;
	 animation: ScrollAnimation 2s ease-in-out infinite;
}
 @media (max-height: 630px) {
	 .hero__scroll {
		 display: none;
	}
}
 .hero__title {
	 font-size: clamp(4.6rem, 8.2vw, 8.2rem);
	 line-height: 1;
	 hyphens: manual;
}
 .hero__description {
	 margin-top: max(1.2rem, min(3vw, 2.4rem));
}
 .hero__author, .hero__guest {
	 --avatar-size: 6rem;
}
 .hero__author-image, .hero__guest-image {
	 border-radius: 100%;
	 width: var(--avatar-size);
	 height: var(--avatar-size);
	 flex-shrink: 0;
}
 .hero__author-image img, .hero__guest-image img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 object-position: center;
	 border-radius: 100%;
	 display: block;
}
 .hero__guest {
	 --avatar-size: 8rem;
}
 .hero__guest-image img {
	 filter: grayscale(1);
}
 @media screen and (min-width: 991px) {
	 .hero {
		 padding: 11rem 0;
		 gap: 10rem;
	}
	 .hero__guest {
		 --avatar-size: 12rem;
	}
}
.navigation {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  left: 0;
  top: 0;
  z-index: 1029;
  background: var(--color__pu90);
  user-select: none;
  padding-top: 80px;
}

.navigation__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
  overflow: hidden;
}
.navigation__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.navigation__bg-letter {
  position: absolute;
  width: max(620px, min(86.1vw, 1240px));
  right: -260px;
  bottom: -20px;
}

.navigation__inner {
  overflow-y: auto;
  padding-right: 20px;
  padding-left: 40px !important;
  margin-top: auto;
  margin-bottom: auto;
}

.navigation__item {
  font-family: inherit;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  color: #fff;
  font-weight: 500;
  display: block;
  line-height: 1.1;
}

.navigation__item:hover{
  font-family: inherit;
  color: #fff;
}
.navigation__item::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: 6px;
  z-index: -1;
  height: 8px;
  width: 65%;
  background: var(--color__pu30);
  transition: transform 0.15s ease-in-out;
  transform: scaleX(0);
  transform-origin: left center;
}
.navigation__item:hover,
.navigation__item--active {
  opacity: 1;
}
.navigation__item:hover::before,
.navigation__item--active::before {
  transform: scaleX(1);
}
.navigation__contact {
  position: sticky;
  top: 10px;
  min-width: max(30px, min(42.38vw, 420px));
  margin-top: 40px;
}

.navigation__contact .mt-1{
  margin: 10px 0 0 0 !important;
}

.navigation__contact p{
  font-size: max(18px, min(2.01vw, 20px));
  line-height: 1.7;
  font-weight: 400;
}

.navigation__contact .opacity--05{
  margin: 0;
}

.navigation__contact a,
.navigation__contact a:hover{
  font-size: max(20px, min(2.42vw, 24px));
  line-height: 1.2;
  font-weight: 600;
  display: block;
  color: #fff;
}
p.navigation__contact-fakeselect {
  position: relative;
  font-size: max(2.4rem, min(3.63vw, 3.6rem));
  font-weight: 500;
  line-height: 1.22;
  color: var(--color__pu30) !important;
}
.navigation__contact-fakeselect::before {
  content: '';
  width: 28px;
  height: 28px;
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg width='20' height='13' viewBox='0 0 20 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.35 0L10 7.63333L17.65 0L20 2.35L10 12.35L0 2.35L2.35 0Z' fill='%23d5a5ff'/%3E%3C/svg%3E%0A")
          no-repeat center center;
}
.navigation__contact-select {
  position: absolute;
  width: calc(100% + 40px);
  left: -40px;
  top: 0;
  height: 36px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.navigation__contact [data-address]:not(.js-selected) {
  display: none;
}

.navigation {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease-in, visibility 0.15s ease-in;
}
.navigation__items {
  font-size: max(3.6rem, min(6.46vw, 6.4rem));
  margin-top: 4rem;
  gap: clamp(1rem, 2vw, 2rem);
}
.navigation__items span {
  overflow: hidden;
}
.navigation__item {
  opacity: 0;
  transform: translateY(100%);
  position: relative;
}
.navigation__contact {
  opacity: 0;
  transform: translateY(20px);
  margin-top: 4rem;
}
.navigation__footer {
  opacity: 0;
  margin-top: auto;
}
.navigation__footer hr{
  border-color: #fff;
  opacity: .2;
  margin: 0;
  margin-top: 40px;
  width: 100%;
}
.navigation.js-active {
  visibility: visible;
  opacity: 1;
}
.navigation.js-active .navigation__contact,
.navigation.js-active .navigation__footer,
.navigation.js-active .navigation__item {
  opacity: 1;
  transform: none;
}
.navigation.js-active .navigation__items span:nth-child(1) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.05s;
}
.navigation.js-active .navigation__items span:nth-child(2) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.1s;
}
.navigation.js-active .navigation__items span:nth-child(3) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.15s;
}
.navigation.js-active .navigation__items span:nth-child(4) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.2s;
}
.navigation.js-active .navigation__items span:nth-child(5) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.25s;
}
.navigation.js-active .navigation__items span:nth-child(6) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.3s;
}
.navigation.js-active .navigation__items span:nth-child(7) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.35s;
}
.navigation.js-active .navigation__items span:nth-child(8) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
}
.navigation.js-active .navigation__items span:nth-child(9) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.45s;
}
.navigation.js-active .navigation__items span:nth-child(10) a {
  transition: all 0.3s ease-in;
  transition-delay: 0.5s;
}
.navigation.js-active .navigation__contact {
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
}
.navigation.js-active .navigation__footer {
  transition: all 0.3s ease-in;
  transition-delay: 0.5s;
}

@media screen and (min-width: 991px) {
  .navigation__bg-letter {
    bottom: -280px;
    right: -400px;
  }
  
  .navigation__inner {
    padding-left: 100px;
  }

  .navigation__items {
    font-size: 48px;
    gap: 20px;
  }
  .navigation__contact {
    margin-top: auto;
  }
}
.topbar__container-wrapper {
    position: relative;
    z-index: 1111;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.topbar__container {
    --topbar-item-lh: 2rem;
    /* position: absolute; */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #F3F0F4!important;
}

.topbar__container .cta_button[title="Sign In"] {
    align-items: center;
    display: flex;
    font-size: 1.6rem;
    font-weight: 600;
    gap: .6rem;
    height: var(--topbar-item-lh);
    padding: 3rem 1.5rem;
    color: #20123A!important;
}

.topbar__container .cta_button[title="Sign In"]:focus,
.topbar__container .cta_button[title="Sign In"]:hover {
    background-color: #F3F0F4!important;
    color: #20123A!important;
}

.topbar__container .btn {
  padding: 1rem 2.4rem !important;
  color: #20123F;
  border: .2rem solid #20123F!important;
}

.topbar__item {
    color: #20123A!important;
    cursor: default;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: var(--topbar-item-lh);
    padding: 3rem 1.5rem;
    position: relative;
    transition: all ease .3s;
}

a.topbar__item {
    cursor: pointer
}
@media screen and (min-width: 991px) {
  .topbar__item:active,
  .topbar__item:focus,
  .topbar__item:hover {
      background-color: var(--color__pu90);
      color: #F3F0F4!important;
  }
}

.topbar__submenu {
    background-color: var(--color__pu90);
    cursor: default;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.topbar__submenu .column {
    gap: 4rem;
    min-width: 28rem;
    padding: 4rem 2rem;
}

.topbar__submenu .submenu__section a,
.topbar__submenu .submenu__section p {
    line-height: 1;
    margin: 0;
    font-size: 2.2rem;
}

.topbar__submenu .submenu__heading {
    color: var(--color__pu20);
    gap: 1.2rem
}

.topbar__submenu .submenu__link {
    gap: .8rem;
}

.topbar__submenu .submenu__link--mega:not(:first-of-type) {
    margin-top: 2.8rem;
}

.topbar__submenu .submenu__link small {
    letter-spacing: .011em;
	  opacity: 0.6;
}

.topbar__submenu .submenu__link span:after {
    content: " →";
    font-size: 2.2rem;
    opacity: 0
}

.topbar__submenu .submenu__link:focus,
.topbar__submenu .submenu__link:hover {
    color: #fff
}

.topbar__submenu .submenu__link:focus span:after,
.topbar__submenu .submenu__link:hover span:after {
    opacity: 1
}

.topbar__hamburger {
    cursor: pointer;
    margin-right: calc(var(--padding__container)*-1);
    padding: 2rem
}

.topbar__hamburger .hamburger-box {
    display: inline-block;
    height: 2.6rem;
    position: relative;
    width: 3rem
}

.topbar__hamburger .hamburger-box .hamburger-inner {
    background-color: #20123A!important;
    display: block;
    height: .2rem;
    position: absolute;
    top: 50%;
    top: 0;
    transition: background-color 0s linear .13s;
    width: 3rem
}

.topbar__hamburger .hamburger-box .hamburger-inner:after,
.topbar__hamburger .hamburger-box .hamburger-inner:before {
    content: ""
}

.topbar__hamburger .hamburger-box .hamburger-inner:after,
.topbar__hamburger .hamburger-box .hamburger-inner:before {
    background-color: #20123A!important;
    height: .2rem;
    position: absolute;
    width: 3rem
}

.topbar__hamburger .hamburger-box .hamburger-inner:before {
    top: 12px;
    transition: top .1s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19)
}

.topbar__hamburger .hamburger-box .hamburger-inner:after {
    top: 24px;
    transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19)
}

.topbar__hamburger.js-active .hamburger-inner {
    background-color: transparent !important;
    transition-delay: .22s
}

.topbar__hamburger.js-active .hamburger-inner:before {
    top: 0;
    transform: translate3d(0, 15px, 0) rotate(45deg);
    transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .15s, transform .13s cubic-bezier(.215, .61, .355, 1) .22s
}

.topbar__hamburger.js-active .hamburger-inner:after {
    top: 0;
    transform: translate3d(0, 15px, 0) rotate(-45deg);
    transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s cubic-bezier(.215, .61, .355, 1) .22s
}

.navigation {
    background-color: #F3F0F4!important;
    height: 100%;
    left: 0;
    max-height: 100vh;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .15s ease-in, visibility .15s ease-in;
    user-select: none;
    visibility: hidden;
    width: 100%;
    z-index: 1029
}

.navigation .topbar__item {
    font-size: 2.8rem;
    padding: 0
}

.navigation .topbar__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out
}

.navigation .topbar__submenu>.column:first-child {
    border-top: 1px solid rgba(217, 271, 271, .25);
    padding-top: 2rem
}

.navigation__inner {
    overflow: auto
}

.navigation.js-active {
    opacity: 1;
    visibility: visible
}

.js-navigation-opened .topbar__container {
    background-color: var(--color__pu90)
}

@media screen and (max-width: 990px) {
    .topbar__item.active>.topbar__submenu--wrapper {
        grid-template-rows: 1fr;
    }

    .topbar__item>.topbar__submenu--wrapper {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .5s ease-in-out;
    }

    .topbar__item>.topbar__submenu--wrapper>div {
        overflow: hidden;
    }
}

@media screen and (min-width: 991px) {
    .topbar__submenu .column {
        padding: 4rem;
    }

    .topbar__submenu .column+.column {
        padding-left: 0;
    }

    .topbar__submenu .column--last {
        background-color: var(--color__pu20);
        padding-left: 4rem !important;
    }

    .topbar__submenu .column--last * {
        color: var(--color__pu90) !important;
    }

    .topbar__submenu--wrapper {
        opacity: 0;
        visibility: hidden;
        left: 0;
        position: absolute;
        top: 100%;
        z-index: 5;
      display: flex;
      transition: all ease .3s;
    }

    .topbar__submenu {
        flex-direction: row;
        /* gap: 2rem; */
    }

  
    .topbar__item:focus>.topbar__submenu--wrapper,
    .topbar__item:hover>.topbar__submenu--wrapper {
       opacity: 1;
        visibility: visible;
        
    }

    .topbar__item:first-child>.topbar__submenu--wrapper {
        z-index: 10;
    }
}

@media screen and (min-width: 991px) {
    .topbar__item.topbar__item--megamenu-inside {
        position: static;
    }

    .topbar__item.topbar__item--megamenu-inside>.topbar__submenu--wrapper {
        width: 100%;
        justify-content: center;
    }
}

#topbar_rework {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.grid-carousel:not(.flickity-enabled) {
	 display: flex;
	 overflow: auto;
}
 .grid-carousel .grid-item {
	 margin-right: 4rem;
}
 @media screen and (min-width: 991px) {
	 .grid-carousel .grid-item {
		 min-width: 40rem;
	}
	 .grid-carousel .grid-item--sm {
		 width: calc((100% - 4rem * 2) / 3);
	}
	 .grid-carousel .grid-item--md {
		 width: calc((100% - 4rem) / 2);
	}
}
 .flickity-button {
	 position: absolute;
	 top: 0;
	 right: 0;
	 z-index: 2;
	 height: 6rem;
	 width: 6rem;
	 border: none;
	 outline: none;
	 transform: none;
	 background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 30C1 13.9837 13.9837 1 30 1C46.0163 1 59 13.9837 59 30C59 46.0163 46.0163 59 30 59C13.9837 59 1 46.0163 1 30ZM2.62268e-06 30C4.07115e-06 13.4315 13.4315 -2.56454e-07 30 1.19201e-06C46.5685 2.64048e-06 60 13.4315 60 30C60 46.5685 46.5685 60 30 60C13.4315 60 1.17422e-06 46.5685 2.62268e-06 30ZM31.2266 37.1278L29.6203 38.7342L20.5063 29.6203L29.6203 20.5063L31.2266 22.1127L24.8696 28.481L38.7342 28.481L38.7342 30.7595L24.8696 30.7595L31.2266 37.1278Z' fill='%23fff'/%3E%3C/svg%3E%0A") no-repeat center/cover;
}
 .flickity-button:hover {
	 background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 30C1 13.9837 13.9837 1 30 1C46.0163 1 59 13.9837 59 30C59 46.0163 46.0163 59 30 59C13.9837 59 1 46.0163 1 30ZM2.62268e-06 30C4.07115e-06 13.4315 13.4315 -2.56454e-07 30 1.19201e-06C46.5685 2.64048e-06 60 13.4315 60 30C60 46.5685 46.5685 60 30 60C13.4315 60 1.17422e-06 46.5685 2.62268e-06 30ZM31.2266 37.1278L29.6203 38.7342L20.5063 29.6203L29.6203 20.5063L31.2266 22.1127L24.8696 28.481L38.7342 28.481L38.7342 30.7595L24.8696 30.7595L31.2266 37.1278Z' fill='%23B969FF'/%3E%3C/svg%3E%0A") no-repeat center/cover;
}
 .flickity-button.next {
	 transform: rotate(180deg);
	 right: 0;
}
 .flickity-button.previous {
	 left: auto;
	 right: calc(6rem + 1.2rem);
}
 .flickity-button .flickity-button-icon {
	 display: none;
}
 .flickity-button:disabled {
	 display: none;
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.modal:not(#lead_form) {}



/* Micromodal classes */
.modal:not(#lead_form) {
  display: none;
}

.modal:not(#lead_form).is-open {
  display: block;
}

.modal:not(#lead_form) .modal__container {
  background: #20123a;
  border-radius: 3rem;
  max-width: 80rem;
}

.modal:not(#lead_form) .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: start;
  overflow: auto;
  color: #fff;
}

.modal:not(#lead_form) .modal__title-underline{
  width: 14rem;
  height: 0.3rem;
  background-color: #fff;
  border: 0;
}

@media screen and (min-width: 991px){
  .modal:not(#lead_form) .modal__overlay {
    align-items: center;
  }
}



/* Animation stuff */
.modal:not(#lead_form).micromodal-slide {
  display: none;
}

.modal:not(#lead_form).micromodal-slide.is-open {
  display: block;
}

.modal:not(#lead_form).micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.modal:not(#lead_form).micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.modal:not(#lead_form).micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.modal:not(#lead_form).micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.modal:not(#lead_form).micromodal-slide .modal__container,
.modal:not(#lead_form).micromodal-slide .modal__overlay {
  will-change: transform;
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}
.main-footer {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  background-color: #F1E1FF;
  padding-top: 8rem;
}

.main-footer .btm-wrp .copyright,
.main-footer .btm-wrp .policy-wrp a,
.main-footer .col .hs-menu-wrapper > ul > li >a,
.main-footer .col .hs-menu-wrapper ul ul li a {
  color: rgba(32, 18, 58, 1.0);
  transition: all ease .3s;
} 
.main-footer .btm-wrp a:hover,
.main-footer .col .hs-menu-wrapper ul ul.hs-menu-children-wrapper li a:hover {
  color: rgba(32, 18, 58, 0.7000000000000001) !important;
}
.main-footer .logo-btm-content p {
  color: rgba(32, 18, 58, 1.0); 
}

.main-footer .cm-container {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 132rem;
}

.top-wrp {
  padding-bottom: 4rem;
  background-size: 0;
}

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

.btm-wrp {
  font-size: 1.4rem;
  line-height: 1.21;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.logo-btm-content p {
  margin: 0px;
  font-size: 1.6rem;
  margin-top: 3rem;
  padding-bottom: 4rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 23px;
}

.col .hs-menu-wrapper > ul {
  display: block;
  padding-left: 0;
  margin-top: 2rem;
  list-style: none;
}


.col .hs-menu-wrapper > ul > li >a {
  margin: 0;
  padding-bottom: 1rem;
  line-height: 1;
  display: block;
  font-size: 1.17em;
  font-weight: bold;
  cursor: auto;
}

.col .hs-menu-wrapper ul ul li {
  margin-top: 1rem;
}

.col .hs-menu-wrapper ul ul li a {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  transition: opacity .1s ease;
}

.ftr-logo img {
  height: 20px;
  width: 100%!important;
  margin-right: auto;
  margin-left: auto;
}

.ftr-logo > * * * {
  width: 100%;
}

.ftr-logo #hs_cos_wrapper_header_logo_hs_logo_widget {
  width: 100%;
  display: block;
}

.ftr-logo a {
  display: block;
  width: 100%;
}

.main-footer hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-color: #fff;
  opacity: 0.1;
  margin: 0;
}

.copyright {
  margin: 0;
  text-align: center;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
  line-height: 1.21;
}

.policy-wrp {
  margin-top: 2rem;
}

.inner-wrp {
  text-align: center;
  justify-content: center;
  display: flex;
}

.inner-wrp .hs-menu-wrapper ul li a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.main-footer .inner-wrp .hs-menu-wrapper ul li a:hover{
  opacity: .7;
  color: #fff;
}

@media (min-width: 991px){
  .main-footer .cm-container {
    max-width: 132rem;
  }
  .top-wrp {
    padding-top: 12rem;
    padding-bottom: 9.5rem;
    display: flex;
    flex-wrap: wrap;
  }
  .left-wrp {
    margin-right: 11rem;
  }
  .right-wrp {
    text-align: left;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
  }
  .btm-wrp {
    padding-bottom: 3rem;
    padding-top: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
  }
  .logo-btm-content p {
    text-align: left;
  }
  .col .hs-menu-wrapper > ul {
    margin-top: 0;
    padding: 0 3rem 0 0;
  }
  .ftr-logo img {
    margin-right: 0;
    margin-left: 0;
    width: auto!important;
  }
  .main-footer {
    padding-top: 0;
  }
  .policy-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }
}

/* 





.footer {
  box-sizing: border-box;
  background-color: var(--color__pu80);
  padding-top: 8rem;
}
.footer__content {
  padding-bottom: 4rem;
  background-size: 0;
}
@media screen and (min-width: 991px){
  .footer__desc {
    max-width: 33rem;
  }
}
.footer__desc-address {
  color: #fff;
  font-size: 1.4rem;
  padding-bottom: 2rem;
}
.footer__desc-address a {
  color: currentColor;
  margin-top: 1.6rem;
}
.footer__desc-address img {
  margin-right: 0.8rem;
}
.footer__desc-company {
  font-size: 1.6rem;
  margin-top: 3rem;
  padding-bottom: 4rem;
}
.footer__list {
  flex-grow: 1;
  text-align: center;
}
.footer__list-item {
  padding-left: 0;
  margin-top: 2rem;
  list-style: none;
}
.footer__list-header {
  margin: 0;
  padding-bottom: 1rem;
  font-size: max(2rem, min(2.42vw, 2.4rem));
  line-height: 1.2;
}
.footer__list a {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-top: 1rem;
  color: #fff;
  transition: opacity 0.1s ease;
}
.footer__list a:hover {
  opacity: 0.7;
}
.footer__copy{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer__copy .mx-1{
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.footer__copy p{
  font-size: 1.4rem;
    line-height: 1.21;
}
.footer__copy a {
  transition: opacity 0.1s ease;
  font-size: 1.4rem;
    line-height: 1.21;
}
.footer__copy a:hover {
  opacity: 0.7;
}
.footer__copy .lang_switcher {
  display: block;
  margin: 2rem auto 0;
}
@media screen and (min-width: 991px) {
  .footer {
    padding-top: 0;
  }
  .footer__content {
    padding-top: 8rem;
  }
  .footer__desc {
    margin-right: 11rem;
  }
  .footer__list {
    text-align: left;
  }
  .footer__list-item {
    margin-top: 0;
    padding: 0 3rem 0 0;
  }
  .footer__copy{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 991px) {
  .footer__content {
    padding-top: 8rem;
    padding-bottom: 9.5rem;
  }
} 
















.main-footer {
  background-color: rgba(#null, 0.0);
}

.main-footer .logo-btm-content p{
  color: rgba(#null, 0.0);
}

.main-footer .col .hs-menu-wrapper > ul > li >a{
  color: rgba(#null, 0.0);
}

.main-footer .col .hs-menu-wrapper > ul > li >a:hover{
  color: rgba(#null, 0.0);
}

.main-footer .col .hs-menu-wrapper ul ul li a{
  color: rgba(#null, 0.0);
}

.main-footer .col .hs-menu-wrapper ul ul li a:hover{
  color: rgba(#null, 0.0);
}

.main-footer .copyright{
  color: rgba(#null, 0.0);
}

.main-footer .inner-wrp .hs-menu-wrapper ul li a{
  color: rgba(#null, 0.0);
}

.main-footer .inner-wrp .hs-menu-wrapper ul li a:hover{
  color: rgba(#null, 0.0);
}
.main-footer .col .hs-menu-wrapper > ul > li + li{
  margin-top: 2rem;
}

.main-footer {
  position: relative;
  /* z-index: 10; */
  box-sizing: border-box;
  background-color: #45256b;
  padding-top: 8rem;
}

.main-footer .cm-container {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 132rem;
}

.top-wrp {
  padding-bottom: 4rem;
  background-size: 0;
}

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

.btm-wrp {
  font-size: 1.4rem;
  line-height: 1.21;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.logo-btm-content p {
  margin: 0px;
  font-size: 1.6rem;
  margin-top: 3rem;
  padding-bottom: 4rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 23px;
}

.col .hs-menu-wrapper > ul {
  display: block;
  padding-left: 0;
  margin-top: 2rem;
  list-style: none;
}


.col .hs-menu-wrapper > ul > li >a {
  margin: 0;
  padding-bottom: 1rem;
  line-height: 1;
  display: block;
  font-size: 1.17em;
  font-weight: bold;
  cursor: auto;
}

.col .hs-menu-wrapper ul ul li {
  margin-top: 1rem;
}

.col .hs-menu-wrapper ul ul li a {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  transition: opacity .1s ease;
}

.ftr-logo img {
  height: 20px;
  width: 100%!important;
  margin-right: auto;
  margin-left: auto;
}

.ftr-logo > * * * {
  width: 100%;
}

.ftr-logo #hs_cos_wrapper_header_logo_hs_logo_widget {
  width: 100%;
  display: block;
}

.ftr-logo a {
  display: block;
  width: 100%;
}

.main-footer hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-color: #fff;
  opacity: 0.1;
  margin: 0;
}

.copyright {
  margin: 0;
  text-align: center;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
  line-height: 1.21;
}

.policy-wrp {
  margin-top: 2rem;
}

.inner-wrp {
  text-align: center;
  justify-content: center;
  display: flex;
}

.inner-wrp .hs-menu-wrapper ul li a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.main-footer .inner-wrp .hs-menu-wrapper ul li a:hover{
  opacity: .7;
  color: #fff;
}

.main-footer #hs_menu_wrapper_privacy_menu_ li{
  margin: 0;
}

@media (min-width: 991px){
  .main-footer .cm-container {
    max-width: 132rem;
  }
  .top-wrp {
    padding-top: 12rem;
    padding-bottom: 9.5rem;
    display: flex;
    flex-wrap: wrap;
  }
  .left-wrp {
    margin-right: 11rem;
  }
  .right-wrp {
    text-align: left;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
  }
  .btm-wrp {
    padding-bottom: 3rem;
    padding-top: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
  }
  .logo-btm-content p {
    text-align: left;
  }
  .col .hs-menu-wrapper > ul {
    margin-top: 0;
    padding: 0 3rem 0 0;
  }
  .ftr-logo img {
    margin-right: 0;
    margin-left: 0;
    width: auto!important;
  }
  .main-footer {
    padding-top: 0;
  }
  .policy-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }
}


*/

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

.blog-filter__container {
	 color: #fff;
}
 .blog-filter__title {
	 font-size: 3.2rem;
	 font-weight: 500;
 	 padding-bottom: 2.4rem;
}
 .blog-filter__filters {
	 gap: 1rem;
}
 @media screen and (min-width: 991px) {
	 .blog-filter__filters {
		 gap: 1.5rem;
	}
}
 .blog-filter__filters .blog-item__tag {
	 cursor: pointer;
}
 .blog-filter__filters .blog-item__tag.active {
	 box-shadow: none;
	 background: linear-gradient(45deg, #b969ff 0%, #ff47bd 100%);
	 color: #fff;
}
 .container--dark .blog-filter__container {
	 color: #fff;
}
 

.blog-page__content {
	 --embed-margin: 6rem;
	 color: #000;
	 font-size: 1.8rem;
	 line-height: 1.5;
	 padding-bottom: 6rem;
}
 .blog-page__content h1, .blog-page__content h2, .blog-page__content h3, .blog-page__content h4, .blog-page__content h5, .blog-page__content h6 {
	 font-size: 2.4rem;
	 margin-top: 2rem;
}
 .blog-page__content p {
	 margin-top: 2rem;
}
 .blog-page__content a {
	 color: inherit;
	 font-weight: 500;
	 text-decoration: underline;
	 word-break: break-all;
}
 .blog-page__content a:hover {
	 text-decoration: none;
}
 .blog-page__content img {
/* 	 margin: var(--embed-margin) 0; */
	 width: 100%;
	 height: auto;
	 display: block;
}
 .blog-page__content ul {
	 list-style: inherit;
}
 .blog-page__content ol {
	 list-style-type: decimal;
}
 .blog-page__content ol li::marker {
	 color: var(--color__pi40);
	 font-weight: 500;
}
 .blog-page__content strong a {
	 font-weight: inherit;
}
.blog-page__content .hs-embed-wrapper,
.blog-page__content .cms-embed{
	  margin-left: auto;
	  margin-right: auto;
	  width: 100%;
	  max-width: 56rem;
    display: block;
}
.blog-page__content .hs-embed-wrapper > :not(.hs-cta-wrapper),
.blog-page__content .cms-embed > :not(.hs-cta-wrapper){
    margin-top: var(--embed-margin) !important;
		margin-bottom: var(--embed-margin) !important;
}

.blog-page__content .hs-form{
	background: var(--bg--primary);
	background-position: 5% 40%;
	border-radius: var(--radius--primary);
	padding: clamp(2rem,4vw,4rem);
	color: white;
}

.blog-page__form .form-title,
.blog-page__form .hs_cos_wrapper_type_form > h3{
	font-size: clamp(2.4rem,3.63vw,3.4rem);
	line-height: 1.22;
	font-weight: 500;
	text-align: center;
}

 .guest {
	 border-top: 1px solid #e8e5ec;
	 border-bottom: 1px solid #e8e5ec;
	 font-size: 1.6rem;
}
 .guest img {
	 max-width: 12rem;
}
 .guest__name {
	 font-size: 4.8rem;
}
 .guest__button {
	 box-shadow: inset 0 0 0 2px currentColor;
}
 .guest__button:hover {
	 color: #fff;
}
 .guest__button:hover::after {
	 background-color: #000;
}
 @media screen and (min-width: 991px) {
	 .guest {
		 font-size: 1.8rem;
	}
	 .guest img {
		 max-width: 25rem;
	}
	 .guest__content {
		 max-width: 40rem;
	}
}
 .blog-content {
	 max-width: 88rem;
}
 .blog-content--small {
	 max-width: 64rem;
}
 .blog-item__person-image {
	 position: absolute;
	 right: 0;
	 bottom: 0;
	 z-index: -1;
	 width: 55.5rem;
}

/* .hs-cta-wrapper{
	display: block;
	margin-top: calc(var(--embed-margin) * -1);
	margin-bottom: calc(var(--embed-margin) * -1);
}
*/
.hs-cta-wrapper img,
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img{
	width: auto !important;
	margin: 0 auto;
} 

.blog-page__content .blog-page__form{
	background: var(--bg--primary);
	border-radius: var(--radius--primary);
	color: #fff;
}
 
.blog-page__content .blog-page__form .form-title{
	padding-top: clamp(2rem,4vw,4rem);
}

.blog-page__content .blog-page__form .form-title + div > .hs-form {
	padding-top: 0;
}

.scroll__crop{
	overflow: hidden;
}

.scroll__content{
	position: relative;
	overflow-x: scroll;
	
	scrollbar-width: none;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
}

.scroll__content::-webkit-scrollbar{
	display: none;
	width: 0;
	height: 0;
}

.scroll__content .post-item {
	width: clamp(31rem, 40vw, 40rem);
}

.scroll__platter{
	width: 100%;
	display: flex;
	gap: 2rem;
}

@media screen and (min-width: 991px){
	.scroll__content{
		scroll-snap-type: mandatory;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	
	.scroll__platter > div{
		scroll-snap-coordinate: left;
		scroll-snap-align: start;
	}
}
.scroll__platter > div > * {
	display: flex;
	transform: translateX(calc(max(128rem, 100vw)/2 - calc(128rem / 2)));
}

@media screen and (max-width: 1320px){
	.scroll__platter > div:first-of-type > *{
		padding-left: 2rem;
	}
}

.scroll__platter > div:last-of-type > *{
	padding-right: 2rem;
}

@media screen and (max-width: 990px){
	.scroll__button{
		display: none !important;
	}
}

@media screen and (min-width: 991px){
	.scroll__button{
		--size: 5rem;
		width: var(--size);
		height: var(--size);
		border-radius: var(--size);
		position: absolute;
		z-index: 2;
		top: calc(50% - var(--size) / 2);
		background-color: rgba(0,0,0,.2);
		transition: transform 0.5s ease-in, opacity 0.7s cubic-bezier(0.15, 0, 0.2, 1) 0.1s;
		transform: scale(.8);
		opacity: 0;
		border: none;
	}

	.scroll__container:hover .scroll__button:not([disabled]){
		opacity: 1;
		transform: scale(1);
	}

	.scroll__button:not([disabled]):hover{
		background-color: rgba(0,0,0,.28);
	}

	.scroll__button[disabled]{
		transform: scale(.8);
		opacity: 0;
		background-color: rgba(0,0,0,.2);
		pointer-events:none;
	}

	.scroll__button--previous{
		left: 4rem;
	}

	.scroll__button--next{
		right: 4rem;
	}
}

.blog__grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(clamp(28rem, 31vw, 31rem), 1fr));
	gap: 2rem;
}

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

.text-center{
	text-align: center;
}
.cursor--pointer{
  cursor: pointer;
}
.pointer-events--none{
  pointer-events: none;
}

.overflow-auto{
	overflow: auto;
}

.scrollbar-hide{
	scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar{
	display: none;
	width: 0;
	height: 0;
}

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 1rem !important;
}
.mt-1,
.my-1 {
  margin-top: 1rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}
.m-2 {
  margin: 2rem !important;
}
.mt-2,
.my-2 {
  margin-top: 2rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}
.m-3 {
  margin: 3rem !important;
}
.mt-3,
.my-3 {
  margin-top: 3rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}
.m-4 {
  margin: 4rem !important;
}
.mt-4,
.my-4 {
  margin-top: 4rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}
.m-5 {
  margin: 5rem !important;
}
.mt-5,
.my-5 {
  margin-top: 5rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}
.m-05 {
  margin: 0.5rem !important;
}
.mt-05,
.my-05 {
  margin-top: 0.5rem !important;
}
.mr-05,
.mx-05 {
  margin-right: 0.5rem !important;
}
.mb-05,
.my-05 {
  margin-bottom: 0.5rem !important;
}
.ml-05,
.mx-05 {
  margin-left: 0.5rem !important;
}
.m-6 {
  margin: 6rem !important;
}
.mt-6,
.my-6 {
  margin-top: 6rem !important;
}
.mr-6,
.mx-6 {
  margin-right: 6rem !important;
}
.mb-6,
.my-6 {
  margin-bottom: 6rem !important;
}
.ml-6,
.mx-6 {
  margin-left: 6rem !important;
}
.m-7 {
  margin: 7rem !important;
}
.mt-7,
.my-7 {
  margin-top: 7rem !important;
}
.mr-7,
.mx-7 {
  margin-right: 7rem !important;
}
.mb-7,
.my-7 {
  margin-bottom: 7rem !important;
}
.ml-7,
.mx-7 {
  margin-left: 7rem !important;
}
.m-8 {
  margin: 8rem !important;
}
.mt-8,
.my-8 {
  margin-top: 8rem !important;
}
.mr-8,
.mx-8 {
  margin-right: 8rem !important;
}
.mb-8,
.my-8 {
  margin-bottom: 8rem !important;
}
.ml-8,
.mx-8 {
  margin-left: 8rem !important;
}
.m-9 {
  margin: 9rem !important;
}
.mt-9,
.my-9 {
  margin-top: 9rem !important;
}
.mr-9,
.mx-9 {
  margin-right: 9rem !important;
}
.mb-9,
.my-9 {
  margin-bottom: 9rem !important;
}
.ml-9,
.mx-9 {
  margin-left: 9rem !important;
}
.m-10 {
  margin: 10rem !important;
}
.mt-10,
.my-10 {
  margin-top: 10rem !important;
}
.mr-10,
.mx-10 {
  margin-right: 10rem !important;
}
.mb-10,
.my-10 {
  margin-bottom: 10rem !important;
}
.ml-10,
.mx-10 {
  margin-left: 10rem !important;
}
.m-11 {
  margin: 11rem !important;
}
.mt-11,
.my-11 {
  margin-top: 11rem !important;
}
.mr-11,
.mx-11 {
  margin-right: 11rem !important;
}
.mb-11,
.my-11 {
  margin-bottom: 11rem !important;
}
.ml-11,
.mx-11 {
  margin-left: 11rem !important;
}
.m-12 {
  margin: 12rem !important;
}
.mt-12,
.my-12 {
  margin-top: 12rem !important;
}
.mr-12,
.mx-12 {
  margin-right: 12rem !important;
}
.mb-12,
.my-12 {
  margin-bottom: 12rem !important;
}
.ml-12,
.mx-12 {
  margin-left: 12rem !important;
}
.m-15 {
  margin: 15rem !important;
}
.mt-15,
.my-15 {
  margin-top: 15rem !important;
}
.mr-15,
.mx-15 {
  margin-right: 15rem !important;
}
.mb-15,
.my-15 {
  margin-bottom: 15rem !important;
}
.ml-15,
.mx-15 {
  margin-left: 15rem !important;
}
.m-16 {
  margin: 16rem !important;
}
.mt-16,
.my-16 {
  margin-top: 16rem !important;
}
.mr-16,
.mx-16 {
  margin-right: 16rem !important;
}
.mb-16,
.my-16 {
  margin-bottom: 16rem !important;
}
.ml-16,
.mx-16 {
  margin-left: 16rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 1rem !important;
}
.pt-1,
.py-1 {
  padding-top: 1rem !important;
}
.pr-1,
.px-1 {
  padding-right: 1rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}
.pl-1,
.px-1 {
  padding-left: 1rem !important;
}
.p-2 {
  padding: 2rem !important;
}
.pt-2,
.py-2 {
  padding-top: 2rem !important;
}
.pr-2,
.px-2 {
  padding-right: 2rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}
.pl-2,
.px-2 {
  padding-left: 2rem !important;
}
.p-3 {
  padding: 3rem !important;
}
.pt-3,
.py-3 {
  padding-top: 3rem !important;
}
.pr-3,
.px-3 {
  padding-right: 3rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}
.pl-3,
.px-3 {
  padding-left: 3rem !important;
}
.p-4 {
  padding: 4rem !important;
}
.pt-4,
.py-4 {
  padding-top: 4rem !important;
}
.pr-4,
.px-4 {
  padding-right: 4rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 4rem !important;
}
.pl-4,
.px-4 {
  padding-left: 4rem !important;
}
.p-5 {
  padding: 5rem !important;
}
.pt-5,
.py-5 {
  padding-top: 5rem !important;
}
.pr-5,
.px-5 {
  padding-right: 5rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 5rem !important;
}
.pl-5,
.px-5 {
  padding-left: 5rem !important;
}
.p-05 {
  padding: 0.5rem !important;
}
.pt-05,
.py-05 {
  padding-top: 0.5rem !important;
}
.pr-05,
.px-05 {
  padding-right: 0.5rem !important;
}
.pb-05,
.py-05 {
  padding-bottom: 0.5rem !important;
}
.pl-05,
.px-05 {
  padding-left: 0.5rem !important;
}
.p-6 {
  padding: 6rem !important;
}
.pt-6,
.py-6 {
  padding-top: 6rem !important;
}
.pr-6,
.px-6 {
  padding-right: 6rem !important;
}
.pb-6,
.py-6 {
  padding-bottom: 6rem !important;
}
.pl-6,
.px-6 {
  padding-left: 6rem !important;
}
.p-7 {
  padding: 7rem !important;
}
.pt-7,
.py-7 {
  padding-top: 7rem !important;
}
.pr-7,
.px-7 {
  padding-right: 7rem !important;
}
.pb-7,
.py-7 {
  padding-bottom: 7rem !important;
}
.pl-7,
.px-7 {
  padding-left: 7rem !important;
}
.p-8 {
  padding: 8rem !important;
}
.pt-8,
.py-8 {
  padding-top: 8rem !important;
}
.pr-8,
.px-8 {
  padding-right: 8rem !important;
}
.pb-8,
.py-8 {
  padding-bottom: 8rem !important;
}
.pl-8,
.px-8 {
  padding-left: 8rem !important;
}
.p-9 {
  padding: 9rem !important;
}
.pt-9,
.py-9 {
  padding-top: 9rem !important;
}
.pr-9,
.px-9 {
  padding-right: 9rem !important;
}
.pb-9,
.py-9 {
  padding-bottom: 9rem !important;
}
.pl-9,
.px-9 {
  padding-left: 9rem !important;
}
.p-10 {
  padding: 10rem !important;
}
.pt-10,
.py-10 {
  padding-top: 10rem !important;
}
.pr-10,
.px-10 {
  padding-right: 10rem !important;
}
.pb-10,
.py-10 {
  padding-bottom: 10rem !important;
}
.pl-10,
.px-10 {
  padding-left: 10rem !important;
}
.p-11 {
  padding: 11rem !important;
}
.pt-11,
.py-11 {
  padding-top: 11rem !important;
}
.pr-11,
.px-11 {
  padding-right: 11rem !important;
}
.pb-11,
.py-11 {
  padding-bottom: 11rem !important;
}
.pl-11,
.px-11 {
  padding-left: 11rem !important;
}
.p-12 {
  padding: 12rem !important;
}
.pt-12,
.py-12 {
  padding-top: 12rem !important;
}
.pr-12,
.px-12 {
  padding-right: 12rem !important;
}
.pb-12,
.py-12 {
  padding-bottom: 12rem !important;
}
.pl-12,
.px-12 {
  padding-left: 12rem !important;
}
.p-15 {
  padding: 15rem !important;
}
.pt-15,
.py-15 {
  padding-top: 15rem !important;
}
.pr-15,
.px-15 {
  padding-right: 15rem !important;
}
.pb-15,
.py-15 {
  padding-bottom: 15rem !important;
}
.pl-15,
.px-15 {
  padding-left: 15rem !important;
}
.p-16 {
  padding: 16rem !important;
}
.pt-16,
.py-16 {
  padding-top: 16rem !important;
}
.pr-16,
.px-16 {
  padding-right: 16rem !important;
}
.pb-16,
.py-16 {
  padding-bottom: 16rem !important;
}
.pl-16,
.px-16 {
  padding-left: 16rem !important;
}
.m-n1 {
  margin: -1rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -1rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -1rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -1rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -1rem !important;
}
.m-n2 {
  margin: -2rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -2rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -2rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -2rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -2rem !important;
}
.m-n3 {
  margin: -3rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -3rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -3rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -3rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -3rem !important;
}
.m-n4 {
  margin: -4rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -4rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -4rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -4rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -4rem !important;
}
.m-n5 {
  margin: -5rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -5rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -5rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -5rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -5rem !important;
}
.m-n05 {
  margin: -0.5rem !important;
}
.mt-n05,
.my-n05 {
  margin-top: -0.5rem !important;
}
.mr-n05,
.mx-n05 {
  margin-right: -0.5rem !important;
}
.mb-n05,
.my-n05 {
  margin-bottom: -0.5rem !important;
}
.ml-n05,
.mx-n05 {
  margin-left: -0.5rem !important;
}
.m-n6 {
  margin: -6rem !important;
}
.mt-n6,
.my-n6 {
  margin-top: -6rem !important;
}
.mr-n6,
.mx-n6 {
  margin-right: -6rem !important;
}
.mb-n6,
.my-n6 {
  margin-bottom: -6rem !important;
}
.ml-n6,
.mx-n6 {
  margin-left: -6rem !important;
}
.m-n7 {
  margin: -7rem !important;
}
.mt-n7,
.my-n7 {
  margin-top: -7rem !important;
}
.mr-n7,
.mx-n7 {
  margin-right: -7rem !important;
}
.mb-n7,
.my-n7 {
  margin-bottom: -7rem !important;
}
.ml-n7,
.mx-n7 {
  margin-left: -7rem !important;
}
.m-n8 {
  margin: -8rem !important;
}
.mt-n8,
.my-n8 {
  margin-top: -8rem !important;
}
.mr-n8,
.mx-n8 {
  margin-right: -8rem !important;
}
.mb-n8,
.my-n8 {
  margin-bottom: -8rem !important;
}
.ml-n8,
.mx-n8 {
  margin-left: -8rem !important;
}
.m-n9 {
  margin: -9rem !important;
}
.mt-n9,
.my-n9 {
  margin-top: -9rem !important;
}
.mr-n9,
.mx-n9 {
  margin-right: -9rem !important;
}
.mb-n9,
.my-n9 {
  margin-bottom: -9rem !important;
}
.ml-n9,
.mx-n9 {
  margin-left: -9rem !important;
}
.m-n10 {
  margin: -10rem !important;
}
.mt-n10,
.my-n10 {
  margin-top: -10rem !important;
}
.mr-n10,
.mx-n10 {
  margin-right: -10rem !important;
}
.mb-n10,
.my-n10 {
  margin-bottom: -10rem !important;
}
.ml-n10,
.mx-n10 {
  margin-left: -10rem !important;
}
.m-n11 {
  margin: -11rem !important;
}
.mt-n11,
.my-n11 {
  margin-top: -11rem !important;
}
.mr-n11,
.mx-n11 {
  margin-right: -11rem !important;
}
.mb-n11,
.my-n11 {
  margin-bottom: -11rem !important;
}
.ml-n11,
.mx-n11 {
  margin-left: -11rem !important;
}
.m-n12 {
  margin: -12rem !important;
}
.mt-n12,
.my-n12 {
  margin-top: -12rem !important;
}
.mr-n12,
.mx-n12 {
  margin-right: -12rem !important;
}
.mb-n12,
.my-n12 {
  margin-bottom: -12rem !important;
}
.ml-n12,
.mx-n12 {
  margin-left: -12rem !important;
}
.m-n15 {
  margin: -15rem !important;
}
.mt-n15,
.my-n15 {
  margin-top: -15rem !important;
}
.mr-n15,
.mx-n15 {
  margin-right: -15rem !important;
}
.mb-n15,
.my-n15 {
  margin-bottom: -15rem !important;
}
.ml-n15,
.mx-n15 {
  margin-left: -15rem !important;
}
.m-n16 {
  margin: -16rem !important;
}
.mt-n16,
.my-n16 {
  margin-top: -16rem !important;
}
.mr-n16,
.mx-n16 {
  margin-right: -16rem !important;
}
.mb-n16,
.my-n16 {
  margin-bottom: -16rem !important;
}
.ml-n16,
.mx-n16 {
  margin-left: -16rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 991px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 1rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 1rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 1rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 2rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 2rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 2rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 3rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 3rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 3rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 4rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 4rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 5rem !important;
  }
  .m-lg-05 {
    margin: 0.5rem !important;
  }
  .mt-lg-05,
  .my-lg-05 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-05,
  .mx-lg-05 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-05,
  .my-lg-05 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-05,
  .mx-lg-05 {
    margin-left: 0.5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 6rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 7rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 7rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 7rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 8rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 8rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 8rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 9rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 9rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 9rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10rem !important;
  }
  .m-lg-11 {
    margin: 11rem !important;
  }
  .mt-lg-11,
  .my-lg-11 {
    margin-top: 11rem !important;
  }
  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 11rem !important;
  }
  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 11rem !important;
  }
  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 11rem !important;
  }
  .m-lg-12 {
    margin: 12rem !important;
  }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 12rem !important;
  }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 12rem !important;
  }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 12rem !important;
  }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 12rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 15rem !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 15rem !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 15rem !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 15rem !important;
  }
  .m-lg-16 {
    margin: 16rem !important;
  }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 16rem !important;
  }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 16rem !important;
  }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 16rem !important;
  }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 16rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 1rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 1rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 1rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 2rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 2rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 2rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 3rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 3rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 3rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 4rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 4rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 5rem !important;
  }
  .p-lg-05 {
    padding: 0.5rem !important;
  }
  .pt-lg-05,
  .py-lg-05 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-05,
  .px-lg-05 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-05,
  .py-lg-05 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-05,
  .px-lg-05 {
    padding-left: 0.5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 6rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 6rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 7rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 7rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 8rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 8rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 9rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 9rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10rem !important;
  }
  .p-lg-11 {
    padding: 11rem !important;
  }
  .pt-lg-11,
  .py-lg-11 {
    padding-top: 11rem !important;
  }
  .pr-lg-11,
  .px-lg-11 {
    padding-right: 11rem !important;
  }
  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 11rem !important;
  }
  .pl-lg-11,
  .px-lg-11 {
    padding-left: 11rem !important;
  }
  .p-lg-12 {
    padding: 12rem !important;
  }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 12rem !important;
  }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 12rem !important;
  }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 12rem !important;
  }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 12rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 15rem !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 15rem !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 15rem !important;
  }
  .p-lg-16 {
    padding: 16rem !important;
  }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 16rem !important;
  }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 16rem !important;
  }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 16rem !important;
  }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 16rem !important;
  }
  .m-lg-n1 {
    margin: -1rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -1rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -1rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -1rem !important;
  }
  .m-lg-n2 {
    margin: -2rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -2rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -2rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -2rem !important;
  }
  .m-lg-n3 {
    margin: -3rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -3rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -3rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -3rem !important;
  }
  .m-lg-n4 {
    margin: -4rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -4rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -4rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -4rem !important;
  }
  .m-lg-n5 {
    margin: -5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -5rem !important;
  }
  .m-lg-n05 {
    margin: -0.5rem !important;
  }
  .mt-lg-n05,
  .my-lg-n05 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n05,
  .mx-lg-n05 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n05,
  .my-lg-n05 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n05,
  .mx-lg-n05 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -6rem !important;
  }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -6rem !important;
  }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -6rem !important;
  }
  .m-lg-n7 {
    margin: -7rem !important;
  }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -7rem !important;
  }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -7rem !important;
  }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -7rem !important;
  }
  .m-lg-n8 {
    margin: -8rem !important;
  }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -8rem !important;
  }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -8rem !important;
  }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -8rem !important;
  }
  .m-lg-n9 {
    margin: -9rem !important;
  }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -9rem !important;
  }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -9rem !important;
  }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -9rem !important;
  }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -9rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -10rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -10rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -10rem !important;
  }
  .m-lg-n11 {
    margin: -11rem !important;
  }
  .mt-lg-n11,
  .my-lg-n11 {
    margin-top: -11rem !important;
  }
  .mr-lg-n11,
  .mx-lg-n11 {
    margin-right: -11rem !important;
  }
  .mb-lg-n11,
  .my-lg-n11 {
    margin-bottom: -11rem !important;
  }
  .ml-lg-n11,
  .mx-lg-n11 {
    margin-left: -11rem !important;
  }
  .m-lg-n12 {
    margin: -12rem !important;
  }
  .mt-lg-n12,
  .my-lg-n12 {
    margin-top: -12rem !important;
  }
  .mr-lg-n12,
  .mx-lg-n12 {
    margin-right: -12rem !important;
  }
  .mb-lg-n12,
  .my-lg-n12 {
    margin-bottom: -12rem !important;
  }
  .ml-lg-n12,
  .mx-lg-n12 {
    margin-left: -12rem !important;
  }
  .m-lg-n15 {
    margin: -15rem !important;
  }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -15rem !important;
  }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -15rem !important;
  }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -15rem !important;
  }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -15rem !important;
  }
  .m-lg-n16 {
    margin: -16rem !important;
  }
  .mt-lg-n16,
  .my-lg-n16 {
    margin-top: -16rem !important;
  }
  .mr-lg-n16,
  .mx-lg-n16 {
    margin-right: -16rem !important;
  }
  .mb-lg-n16,
  .my-lg-n16 {
    margin-bottom: -16rem !important;
  }
  .ml-lg-n16,
  .mx-lg-n16 {
    margin-left: -16rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.vw-100 {
  width: 100vw !important;
}
.vh-100 {
  height: 100vh !important;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.bg--primary {
	 background-color: var(--bg--primary);
}
 .bg__white--005 {
	 background-color: rgba(255, 255, 255, 0.05);
}
 .bg__gradient--1 {
	 background: linear-gradient(205deg, #ff47bd 0%, #b969ff 100%);
}
 .bg__gradient--2 {
	 background: linear-gradient(45deg, #2d0085 0%, #720094 100%);
}
 .bg__gradient--3 {
	 background: linear-gradient(25deg, #20123a 0%, #711292 100%);
}
 .bg__gradient--4 {
	 background: linear-gradient(45deg, #2d0085 0%, #720094 51.04%, rgba(255, 71, 189, 0.8) 100%);
}
 .bg--pu90 {
	 background-color: var(--color__pu90);
}
 .bg--pu80 {
	 background-color: var(--color__pu80);
}
 .bg--pu70 {
	 background-color: var(--color__pu70);
}
 .bg--pu60 {
	 background-color: var(--color__pu60);
}
 .bg--pu50 {
	 background-color: var(--color__pu50);
}
 .bg--pu40 {
	 background-color: var(--color__pu40);
}
 .bg--pu30 {
	 background-color: var(--color__pu30);
}
 .bg--pu20 {
	 background-color: var(--color__pu20);
}
 .bg--pu10 {
	 background-color: var(--color__pu10);
}
 .bg--pu5 {
	 background-color: var(--color__pu5);
}
 .bg--pi50 {
	 background-color: var(--color__pi50);
}
 .bg--pi40 {
	 background-color: var(--color__pi40);
}
 .bg--pi20 {
	 background-color: var(--color__pi20);
}
 .bg--ye30 {
	 background-color: var(--color__ye30);
}
 .color--accent {
	 color: var(--color__pu40);
}
 .color--white {
	 color: #fff;
}
 .color-primary--1 {
	 color: #b969ff;
}
 .color--pu90 {
	 color: var(--color__pu90);
}
 .color--pu80 {
	 color: var(--color__pu80);
}
 .color--pu70 {
	 color: var(--color__pu70);
}
 .color--pu60 {
	 color: var(--color__pu60);
}
 .color--pu50 {
	 color: var(--color__pu50);
}
 .color--pu40 {
	 color: var(--color__pu40);
}
 .color--pu30 {
	 color: var(--color__pu30);
}
 .color--pu20 {
	 color: var(--color__pu20);
}
 .color--pu10 {
	 color: var(--color__pu10);
}
 .color--pu5 {
	 color: var(--color__pu5);
}
 .color--pi50 {
	 color: var(--color__pi50);
}
 .color--pi40 {
	 color: var(--color__pi40);
}
 .color--pi20 {
	 color: var(--color__pi20);
}
 .color--ye30 {
	 color: var(--color__ye30);
}