/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 500ms ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

@media (max-width: 1024px) {
  .content-wrapper {
    padding: 0 2rem;
  }

}

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .content-wrapper {
    padding: 0 1rem;
  }
}

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

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

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0rem;
}

h1 {
  font-family: "gelica", sans-serif; 
  font-weight: 400; 
  font-style: normal;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}


@media (max-width: 767px) {
  
  h1 {
    text-align: center;
  }
  
  p {
    text-align: center;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  width: 100%;
}

.hs-input {
  width: 100% !important;
}

.hs_website {
  width: 100%;
}

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

form fieldset {
  display: flex;
  gap: 1rem;
  max-width: 100% !important;
}

@media (max-width: 767px) {
  form fieldset {
    display: block !important;
  }
  
  .hs-form-field {
    width: 100% !important;
  }
  
  form .form-columns-2 {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.3rem 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;
}

form .hs-richtext img {
  max-width: 100% !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 .hs_submit {
  display: flex;
  justify-content: center;
}

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



/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* @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    */
/*****************************************/

ul {
  padding: 0;
  margin: 0;
  margin-left: 1rem;
  list-style: none;
}

li {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* @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 {
  --primary-color: #000000;
  --secondary-color: #FA5B50;
  --border-color: #dddddd;;
  --border-dark-color: #CCCCCC;
  --grey-color: #F6F6F6;
  --header-height: 70px;
  --container-width: 1700px;
  --half-container-width: 850.0px;
  --brand-gradient-start: #f36a62;
  --brand-gradient-center: #e96c6f;
  --brand-gradient-end: #e06e7c;
}
/* @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    */
/*****************************************/

.tag {
  background-color: #f6f6f6;
  border-radius: 5px;
  color: black;
  font-size: 12px;
  font-weight: 500;
  padding: .5rem .7rem;
  width: fit-content;
  line-height: 1;
}

.tag:hover {
  color: var(--accent-color);
}

.brand__gradient {
  background-image: linear-gradient(
    to right,
    var(--brand-gradient-start),
    var(--brand-gradient-end)
  );
}

.animated_underline {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-width: 2px;
  border-style: none;
  color: black !important;
  padding-bottom: 4px;
  position: relative;
}

.animated_underline:after {
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #000;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}

.animated_underline:hover:after,
.animated_underline:focus:after{ 
  width: 0; 
  left: 50%; 
}

.animated_underline_invert {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-width: 2px;
  border-style: none;
  color: black !important;
  padding-bottom: 4px;
  position: relative;
}

.animated_underline_invert:after {
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #000;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.animated_underline_invert:hover:after,
.animated_underline_invert:focus:after{ 
  width: 100%; 
  left: 0; 
}

/* Primary CTA */
.cta__primary {
  -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  background: linear-gradient(
      to right,
      #f36a62,
      #e06e7c
    ) !important;
  border-radius: 50px !important;
  border-width: 0px !important;
  color: #FFFFFF !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: fit-content !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

/* Primary CTA */
.cta__primary__full__width {
  -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  background: linear-gradient(
      to right,
      #f36a62,
      #e06e7c
    ) !important;
  border-radius: 50px !important;
  border-width: 0px !important;
  color: #FFFFFF !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: auto !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__primary span,
.cta__primary__full__width span {
transition: all .2s ease;
}

.cta__primary img,
.cta__primary__full__width img {
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transition: all .2s ease;
  transform: translateY(-50%);
  visibility: hidden;
}

/* Secondary CTA */
.cta__secondary {
    -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  border: 2px solid black;
  border-radius: 50px !important;
  color: black !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: fit-content !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__secondary__full__width {
    -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  border: 2px solid black;
  border-radius: 50px !important;
  color: black !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: auto !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__secondary span,
.cta__secondary__full__width span {
  transition: all .2s ease;
}

.cta__secondary img,
.cta__secondary__full__width img {
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transition: all .2s ease;
  transform: translateY(-50%);
  visibility: hidden;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

/* Tertiary CTA */
.cta__tertiary {
    -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  background: #041527 !important;
  border-radius: 50px !important;
  color: white !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: fit-content !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__tertiary__full__width {
    -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  background: #041527 !important;
  border-radius: 50px !important;
  color: white !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: auto !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__tertiary span,
.cta__tertiary__full__width span {
  transition: all .2s ease;
}

.cta__tertiary img,
.cta__tertiary__full__width img {
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transition: all .2s ease;
  transform: translateY(-50%);
  visibility: hidden;
}

.cta__secondary:hover span,
.cta__primary:hover span,
.cta__tertiary:hover span,
.cta__primary__full__width:hover span,
.cta__secondary__full__width:hover span,
.cta__tertiary__full__width:hover span {
  transform: translateX(-10px);
}

.cta__secondary:hover img,
.cta__primary:hover img,
.cta__tertiary:hover img,
.cta__primary__full__width:hover img,
.cta__secondary__full__width:hover img,
.cta__tertiary__full__width:hover img{
  opacity: 1;
  visibility: visible;
}

/* GLIDE CAROUSEL */
.glide {
  position: relative;
}

.glide__bullets {
  display: flex;
  gap: .5rem;
  width: 100%;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: auto;
}

.glide__bullets .glide__bullet {
  all: unset;
  display: block;
  width: 5px;
  height: 5px;
  padding: 0.1rem;
  border-radius: 50%;
  border: none;
  color: black;
  background: var(--border-color);
  padding: 0.1rem;
  cursor: pointer;
}

.glide__bullets .glide__bullet--active {
  background-color: var(--secondary-color);
}

.glide__slide {
  height: auto !important;
}

.glide__controls {
  position: absolute;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-70%);
  z-index: 2;
}

.glide__controls--left {
 left: 0; 
}

.glide__controls--right {
  right: 0;
}

.glide__controls .glide__arrow {
  border: none;
  color: black;
  padding: 1rem;
  background: transparent;
}

/* TEXT ACCORDION */
.text__accordion__container {
  display: grid;
  grid-template-columns:50% 50%;
  width:100%;
  height: 700px;
}

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

.text__accordion {
  width: 100%;
  padding-right: 4rem;
}

.text__accordion > .text__accordion__title > * {
  margin: 0px !important;
  font-size: 30px;
  font-weight: 400;
}

.text__accordion .text__accordion__item {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.text__accordion .text__accordion__item .text__accordion__title {
  padding-top: 1rem;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  text-align: left;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text__accordion .text__accordion__item .text__accordion__title img {
  transition: all .2s linear;
}

.text__accordion .text__accordion__item .text__accordion__title.active img {
  transform: rotate(180deg);
}

.text__accordion .text__accordion__item .text__accordion__content {
  margin: 0px;
  opacity: 0;
  padding-top: 1rem;
  max-height: 0px;
  transition: max-height 0.5s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  pointer-events: none;
}

.text__accordion .text__accordion__item .text__accordion__content p {
  padding-bottom: 1rem;
  max-width: 600px;
}

.text__accordion .text__accordion__item .text__accordion__content.active {
  opacity: 1 !important;
  max-height: 500px !important;
  pointer-events: unset !important;
}

.accordion__image {
  background-repeat:no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
}

.h2__primary,
.h2__secondary {
  font-size: 50px;
  color: #000;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.h2__primary {
  font-family: Gelica, sans-serif !important;

}

.h2__secondary {
  font-family: Poppins, sans-serif !important;
}

@media (max-width: 767px) {
  .h2__primary {
    font-size: 27px !important;
  }
  
  .h2__secondary {
    font-size: 27px !important;
  }
}
/* https://gist.github.com/JacobLett/12a8fbdce4960a54029c53c560a09c7e */
.gap-half {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color:  !important;
}

.bg-secondary {
  background-color:  !important;
}

.bg-accent-1 {
  background-color:  !important;
}
.bg-accent-2 {
  background-color:  !important;
}
.bg-accent-3 {
  background-color:  !important;
}
.bg-accent-4 {
  background-color:  !important;
}
.bg-link {
  background-color:  !important;
}

.bg-black {
  background-color:  !important;
}

.bg-white {
  background-color:  !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-muted {
  background-color: #e2e2e2 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color:  !important;
}

.border-secondary {
  border-color:  !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-1 {
  border-radius: 0.5rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.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: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  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: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

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

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

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

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

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

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

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

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !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;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  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;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-fit-content {
  width: fit-content !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;
}

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

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

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

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

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

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

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

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

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

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

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

.p-8 {
  padding: 6rem !important;
}

.pt-8,
.py-8 {
  padding-top: 6rem !important;
}

.pr-8,
.px-8 {
  padding-right: 6rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 6rem !important;
}

.pl-8,
.px-8 {
  padding-left: 6rem !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-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-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-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-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;
}

.text-justify {
  text-align: justify !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;
}

.text-underline {
  text-decoration: underline;
}

@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-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color:  !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color:  !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color:  !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;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}


img.hs-image-widget,
.blog-post__body img,
figure img,
.img-fluid{
  max-width:100%;
  height:auto
}

/* Create the parallax scrolling effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

@media (min-width: 960px) {
  .breakout-row-l {
    margin-left: -80px;
    width: auto;
  }
}

/* Transformations */
.rotate180 {
  transform: rotate(180deg);
}

/* TOOLTIPS */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  opacity: 0;
  width: 250px;
  background-color: #2f2f2f;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 15px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -125px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.2;
  transition: .2s linear;
  pointer-events: none;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2f2f2f transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

/* TOOLTIPS END */

/* Success Stories
CSS for the Success Stories blog
*/
/* @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_success__story__hero {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 700px;
  align-items: end;
  margin-bottom: 5rem;
}

.m_success__story__hero .left__section {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m_success__story__hero .breadcrumb__section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.m_success__story__hero .breadcrumb__section a:first-of-type {
  font-weight: 600;
  color: var(--secondary-color);
}

.m_success__story__hero .breadcrumb__section i {
  padding: 0rem 1rem;
  font-size: 12px;
}


/* .m_success__story__hero {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 700px;
  align-items: end;
  margin-bottom: 5rem;
}

.m_success__story__hero .left__section {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m_success__story__hero .breadcrumb__section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.m_success__story__hero .breadcrumb__section a:first-of-type {
  font-weight: 600;
  color: var(--secondary-color);
}

.m_success__story__hero .breadcrumb__section i {
  padding: 0rem 1rem;
  font-size: 12px;
}

.m_success__story__hero .left__section h1 {
  font-weight: 600;
  font-family: Poppins;
}

.m_success__story__hero .right__section {
  width: 100%;
  height: 500px;
  
  background: green;
}

.m_success__story__hero .right__section img {
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
}  */
.body-container--blog-index {
  padding-top: var(--header-height);
}

.body-container--blog-index .largeBlogPost {
  border-bottom: 2px solid var(--border-color);
}

.blog__post__grid__container {
  width: 100%;
}

.blog__post__grid__container .blog__post__grid__section {
  display: none;
}

.blog__post__grid__container .blog__post__grid__section.active {
  display: block;
}

.blog__post__grid__container .blog__post__grid__section.active {
  display: block;
}

.blog__post__grid__container .blog__post__grid__tab.active {
  font-weight: bold;
  color: #000;
}

.blog__post__grid__container .blog__post__grid__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0 1.5rem 0;
  position: relative;
}

.blog__post__grid__container .blog__post__grid__header .blog__post__grid__tabs {
  display: flex;
}

.blog__post__grid__container .blog__post__grid__header .blog__post__grid__tabs .blog__post__grid__tab {
  text-decoration: none;
  margin-right: 2rem;
  padding-bottom: 0.5rem;
  font-size: 18px;
  color: black;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: none;
}

.blog__post__grid__container .blog__post__grid__header .blog__post__grid__tabs .blog__post__grid__tab:hover, 
.blog__post__grid__container .blog__post__grid__header .blog__post__grid__tabs .blog__post__grid__tab.active {
    border-bottom: 4px solid var(--secondary-color);
}

.blog__post__grid__container .blog__post__grid__header .blog__post__grid__searchbar {
  display: flex;
  align-items: center;
}

.blog__post__grid__container .blog__post__grid__header .blog__post__grid__searchbar input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
}

.blog__post__grid__container .blog__post__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  height: auto;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item:hover {
  transform: translateY(-10px);
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__image {
  height: 300px !important;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .header__link span:hover {
  box-shadow: inset 0 -5px var(--secondary-color);
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .header__link {
  transition: none;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .header__link:hover {
  color: black;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__content .blog__post__tag {
  background-color: #f6f6f6;
  border-radius: 5px;
  color: black;
  font-size: 12px;
  font-weight: 500;
  padding: .5rem .7rem;
  width: fit-content;
  line-height: 1;
  transition: none;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__content .blog__post__tag:hover {
  background: var(--secondary-color);
  color: white;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__content .header__link {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.blog__post__grid__container .blog__post__grid .blog__post__grid__item .blog__post__grid__item__content .desc__link {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 1.7;
}

.blog__post__grid__container .blog__post__grid__item .blog__post__grid__item__content .read__story {
  width: fit-content;
  display: flex;
  gap: .7rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  align-items: center;
  font-weight: 500;
  margin-top: 2rem;
  transition: none !important;
}

.blog__post__grid__container .blog__post__grid__item .blog__post__grid__item__content .read__story:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(36%) saturate(1057%) hue-rotate(314deg) brightness(101%) contrast(120%);
}

.filter__options {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter__options .results__header {
  font-size: 22px;
  font-weight: 500;
}

.filter__options .filter__options__container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter__options .filter__options__container .filter__options__wrapper {
  display: flex;
}

.filter__checkbox__dropdown {
  width: 200px;
  border: 1px solid #000;
  padding: 10px;
  padding-left: 1.2rem;
  position: relative;
  margin: 0 auto;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter__checkbox__dropdown:first-of-type {
  border-radius: 25px 0px 0px 25px;
  border-right: none;
}

.filter__checkbox__dropdown:last-of-type {
  border-radius: 0px 25px 25px 0px;
}

.filter__checkbox__dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background: #fff;
  top: calc(100% + 30px);
  left: 50%; /* align the dropdown to the left */
  opacity: 0; /* hide the dropdown */
  width: 300px;
  transform: translate(-50%);
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  pointer-events: none; /* avoid mouse click events inside the dropdown */
  display: flex;
  flex-direction: column;
}

.filter__checkbox__dropdown__list .integrationCheckbox,
.filter__checkbox__dropdown__list .integrationCheckbox {
  accent-color: var(--brand-gradient-center);
  pointer-events: none;
}

.filter__checkbox__dropdown__list:before{
  content: "";
  border-width: 11px;
  border-style: solid;
  border-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) rotate(45deg);
  box-shadow: -1px -1px 0 0 #000;
}

.is-active .filter__checkbox__dropdown__list {
  opacity: 1; /* display the dropdown */
  pointer-events: auto; /* make sure that the user still can select checkboxes */
  border: 1px solid black;
  border-radius: 10px;
  padding: 1rem;
  overflow: visible;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.is-active img {
  transform: rotate(180deg);
}

.filter__checkbox__dropdown__list li {
  display: block;
  padding: 0.5rem;
  transition: all 0.2s ease-out;
}

.filter__checkbox__dropdown__list button {
  background: linear-gradient(to right, #f36a62, #e06e7c);
  color: #fff;
  font-size: 16px;
  margin-top: 1rem;
}

.filter__checkbox__dropdown__list button:hover {
  background: #fff;
  color: var(--brand-gradient-center);
}

/* Numbered Pagination */
.blog-pagination {
  display: block;
  text-align: center;
  padding: 4rem 0rem;
}
.blog-pagination > div {
  display: inline-block;
}
.blog-pagination-left {
  text-align: right;
}
.blog-pagination-right {
  text-align: left;
}
.blog-pagination a {
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  padding: 5px 10px;
}
.blog-pagination a:hover,
.blog-pagination a:focus {
  background-color: var(--secondary-color);
  text-decoration: none;
  color: #fff;
}
.blog-pagination a.elipses {
  border: 0;
}
.blog-pagination a.active {
  background-color: var(--secondary-color);
  color: #fff;
  pointer-events: none;
  cursor: default;
}
.blog-pagination a.next-link,
.blog-pagination a.prev-link {
  background-color: var(--secondary-color);
  color: #fff;
}
.blog-pagination a.next-link:hover,
.blog-pagination a.prev-link:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

@media (max-width: 767px) {
  .blog__post__grid__container .blog__post__grid {
    grid-template-columns: 1fr;
  }
  
  .body-container--blog-index .largeBlogPost {
    display: none;
  }
  
  .blog__post__grid__container .blog__post__grid__header .blog__post__grid__tabs {
    width: 100%;
    justify-content: center;
  }
  
  .blog__post__grid__container .blog__post__grid__header {
    flex-direction: column-reverse;
    margin: 5rem 0 1.5rem;
  }
  
  .filter__options .filter__options__container {
    flex-direction: column;
    width: 100%;
    align-items: start;
    gap: .5rem;
    position: relative;
  }
  
  .filter__options .filter__options__container .filter__options__wrapper {
    width: 100%;
  }
  
  #integrationFilter .filter__checkbox__dropdown__list:before {
    left: 25%;
  }
  
  #industryFilter .filter__checkbox__dropdown__list:before {
    left: 75%;
  }
  
  .filter__checkbox__dropdown {
    position: unset;
    width: 100%;
  }
  
  .filter__options {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}

/* Blog
CSS for the Blog
*/
.blog__content__container {
  align-items: start;
  display: grid;
  grid-template-columns: 100%;
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  max-width: 1200px !important;
}

.blog__content__container .blog__content img {
  object-fit: contain !important;
  width: 100% !important;
  max-height: 500px;
}

.blog__content__container .blog__content ul {
  padding-right: 4rem;
}

.blog__content__container .blog__content ul li {
  list-style-type: disc;
  margin-top: 1rem;
}

.blog__content__container #table-of-contents {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 1.5rem;
  margin-left: 3rem;
}

.blog__content__container #table-of-contents h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog__content__container #table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog__content__container #table-of-contents li {
  margin: 0;
}

.blog__content_table__of__contents__container {
  width: 100%;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.blog__content__container #table-of-contents a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #999;
  display: block;
  border-left: 3px solid #fbdfdf;
  padding: 0.7rem 1rem 0.7rem 1rem;
  transition: none;
}

.blog__content__container .blog__content__toc h2 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog__content__container .blog__content h2 {
  scroll-margin-top: 100px;
}

.blog__content__container #table-of-contents a:hover,
.blog__content__container #table-of-contents a.active {
  color: #000;
  text-decoration: underline;
  border-left-color: var(--secondary-color);
}


@media screen and (max-width: 1024px) {
  .blog__content__container {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 2rem;
  }
  
  .blog__content__container #table-of-contents {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  
  .blog__content__container p {
    text-align: left;
  }

  .blog__content__container .blog__content {
    padding-right: 0;
  }
  
  .blog__content_table__of__contents__container {
    position: unset; 
  }
}

/* Header & Footer
Stlying for site navigation
*/
/* @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    */
/*****************************************/


/* Primary CTA */
.cta__primary {
  -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  background: linear-gradient(
      to right,
      #f36a62,
      #e06e7c
    ) !important;
  border-radius: 50px !important;
  border-width: 0px !important;
  color: #FFFFFF !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: fit-content !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}

.cta__primary span {
transition: all .2s ease;
}

.cta__primary img {
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transition: all .2s ease;
  transform: translateY(-50%);
  visibility: hidden;
}

/* Secondary CTA */
.cta__secondary {
    -webkit-font-smoothing: antialiased !important;
  cursor: pointer !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -o-user-select: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  text-align: center !important;
  text-decoration: none !important;
  -moz-transition: all .2s ease !important;
  -webkit-transition: all .2s ease !important;
  -o-transition: all .2s ease !important;
  border: 2px solid black;
  border-radius: 50px !important;
  color: black !important;
  font-family: sans-serif !important;
  font-weight: 500;
  height: 50px !important;
  transition: all .4s ease !important;
  padding: 0px 26px;
  text-shadow: none !important;
  width: fit-content !important;
  font-size: 16px !important;
  font-family: Poppins !important;
  line-height: 1.5em !important;
  position: relative;
}
.cta__secondary span {
  transition: all .2s ease;
}

.cta__secondary img {
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transition: all .2s ease;
  transform: translateY(-50%);
  visibility: hidden;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.cta__secondary:hover span,
.cta__primary:hover span {
  transform: translateX(-10px);
}

.cta__secondary:hover img,
.cta__primary:hover img {
  opacity: 1;
  visibility: visible;
}

.header {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  height: 70px;
  border-bottom: 2px solid #f5f5f5;
}

.header ul {
  margin: 0;
}

.scroll {
/*   outline: 2px solid #F5F5F5; */
/*   box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px; */
  background: #fff !important;
}

.header #submenu__overlay {
  height: 100vh;
  background: #121212;
  opacity: 10%;
  width: 100%;
  position: absolute;
  display: none;
}

.header .header__container {
  display: flex;
  align-items: center;
  height: 100%;
}

.header .header__container .mobile__menu {
  display: none;
}

.header .header__container .desktop__menu {
  height: 100%;
}

.header .header__container #hs_menu_wrapper_menu > ul {
  margin-left: 3.5rem;
  display: flex;
  height: 100%;
  align-items: center;
  list-style: none;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 {
  margin: 0;
  height: 100%;
  transition: .1s linear;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 .icon_hover {
 transform: rotate(180deg);
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 i {
  margin-left: 0.5rem;
  font-size: 12px;
  transition: transform .1s linear;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 > a {
  font-weight: 500;
  font-size: 16px;
  color: black;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0rem 1.5rem;
  border-bottom: 3px solid #fff;
  border-top: 2px solid #fff;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 .hovered {
  border-bottom: 3px solid var(--secondary-color);
  color: var(--secondary-color);
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 {
  display: flex;
  gap: 1rem;
  width: 350px;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-3 {
  padding-top: 0.5rem;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a img {
  opacity: .5;
  margin-top: 2px;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a:hover {
  color: black;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a:hover img {
  opacity: 1;
}

.header .header__container #hs_menu_wrapper_menu .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.header .header__container #hs_menu_wrapper_menu .subheading {
  font-weight: 400;
  color: #9F9F9F;
  font-size: 16px;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-3 a:hover {
  color: #9F9F9F;
}

.header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a:hover {
  background: var(--grey-color);
}

.header .header__menu #hs_menu_wrapper_menu > ul .hs-menu-depth-1:last-of-type {
  display: none;
}

.header .header__container .header__menu {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.header .header__container #hs_menu_wrapper_menu.desktop__menu .hs-menu-depth-1:hover > .hs-menu-children-wrapper {
  display: grid !important;
}

.header .header__container .header__menu .two-rows {
  grid-template-rows: repeat(2, 1fr) !important;
}

.header .header__container .hs-menu-depth-1>.hs-menu-children-wrapper {
  display: none;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: auto;
  grid-auto-flow: column;
  margin: 0;
  position: absolute;
  background: #fff;
  height: auto;
  padding: 1rem;
  gap: 0.5rem;
  top: var(--header-height);
  border-radius: 0px 0px 16px 16px;
  z-index: 1;
  border-top: 2px solid #f5f5f5;
}

.header .header__container .header__buttons--container {
  display: flex;
  gap: 0.5rem;
}

.header .header__container .header__buttons--container .header__button--wrapper {
  display: flex;
}

.header .header__container .header__buttons--container .header__button--wrapper.mobile {
  display: none;
}

.header .header__container .mobile {
  display: none; 
}

/* HAMBURGER MENU */

#hamburger-menu {
  width: 23px;
  height: 23px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}

#hamburger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #2f2f2f;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger-menu span:nth-child(1) {
  top: 0px;
}

#hamburger-menu span:nth-child(2),#hamburger-menu span:nth-child(3) {
  top: 8px;
}

#hamburger-menu span:nth-child(4) {
  top: 16px;
}

#hamburger-menu.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#hamburger-menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* For Tablets and iPad Pro (11 inch viewport) */
@media (max-width: 1250px) {
  .header .header__container #hs_menu_wrapper_menu>ul {
    margin-left: 1.5rem
  }
  
  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1>a {
    padding: 0 1rem;
  }
}
  
/* For Tablets */
@media (max-width: 1024px) {
          
  .header .header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0rem 1rem !important;
  }
  
  .header .header__logo img {
    width: 120px !important;
  }
  
  .header .header__logo__klaviyo img {
    width: 200px !important;
  }
  
  .header .header__menu {
    position: absolute;
    top: 69px;
    right: 0;
    bottom: 0;
    left: -100vw;
    opacity: 0;
    background: #fff;
    display: flex !important;
    flex-direction: column;
    height: calc(100dvh - 69px) !important;
    align-items: start !important;
    transition: all .2s linear;
    border-top: 1px solid var(--grey-color);
  }
  
  .header .header__buttons--container, 
  .header .hs_cos_wrapper, 
  .header .hs-menu-wrapper, 
  .header li, 
  .header .header__menu ul a {
    width: 100%;
  }
  
  .header .header__container .header__buttons--container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .header .header__container .desktop__menu {
    display: none;
  }
  
  .header .header__container .mobile__menu {
    display: flex;
    width: 100%;
  }
  
  .header .header__container .header__menu {
    justify-content: start;
  }

  .header .header__container #hs_menu_wrapper_menu > ul {
    width: 100%;
    height: 100%;
    margin: 0;
    flex-direction: column;
  }
  
  .header .header__container #hs_menu_wrapper_menu .heading {
    font-weight: 500;
    font-size: 16px;
  }

  .header .header__container #hs_menu_wrapper_menu .subheading {
    display: none;
  }

  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 .hovered {
    border-bottom: 1px solid var(--grey-color);
    color: black;
  }
  
  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-1 > a {
    justify-content: space-between;
    padding: 1.5rem 1rem;
    border-top: 0;
    border-bottom: 1px solid var(--grey-color);
    height: auto;
  }

  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 {
    width: 100%;
  }

  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 img {
    height: 15px;
    width: 15px;
    margin-top: 0px !important;
  }
  
  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a {
    padding: 1rem;
    align-items: center;
    border-radius: 8px;
  }
  
  .header .header__container #hs_menu_wrapper_menu .hs-menu-depth-2 a:focused {
    background: #f5f5f5;
  }
    
  .header .header__container .hs-menu-depth-1 > .hs-menu-children-wrapper {
    background: #fafafa;
    flex-direction: column;
    padding: 1rem;
    display: none !important;
    width: 100%;
    border-radius: 0px;
    position: unset;
  }
  
  .header .header__container .header__buttons--container .nonmobile {
    display: none; 
  }
  
  .header .header__container .mobile {
    display: block; 
  }
  
  .header .header__container .hs-menu-depth-1 > .hs-menu-children-wrapper.open {
   display: flex !important;
  }
 
  .header #submenu__overlay {
    display: none !important;
  }
  
  #hamburger-menu {
    display: block;
  }
  
}

/* For Mobile Devices */
@media (max-width: 767px) {  
  .header .header__container .header__buttons--container {
    padding: 1rem;
  }
}
/* @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    */
/*****************************************/

.footer {
  display: flex;
  flex-direction: column;
}

.footer .footer__container {
  width: 100%;
}

.footer .footer__top {
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
}

.footer .footer__bottom {
  border-top: 2px solid var(--border-color);
  display: flex;
  padding: 2rem 0;
  height: 100%;
}

.footer .footer__subscribe {
  max-width: 500px;
}

.footer .footer__subscribe form > div {
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  width: 100%;
}

.footer .footer__subscribe form {
  display: flex;
  align-items: self-end;
  flex-direction: row;
  gap: 0rem;
  margin-top: 0.5rem;
}

.footer .footer__subscribe form input[type=email] {
  border-radius: 50px;
}

.footer .footer__subscribe form .hs-button {
  min-height: 50px;
  padding: 0rem 1.2rem !important;
  border-radius: 40px;
  text-align: center;
  border: 2px solid transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-gradient-center);
  transition: all 0.2s linear;
}

.footer .footer__subscribe form .hs-button:hover {
  color: #fa6959 !important;
  background: #fff;
  border: 2px solid #f9877c !important;
}

.footer .footer__subscribe .hs-error-msgs {
  display: none;
}

.footer .footer__subscribe form > div:nth-of-type(2n) {
  margin-right:0;
}

.footer .footer__subscribe form > div.hs_submit {
  vertical-align: bottom;
  width: auto;
}

.footer .footer__subscribe > div {
  width: 100%;
}

.footer .footer__top .footer__links {
  width: 60%;
}

.footer .footer__top .footer__subscribe {
  width: 40%;
}

.footer .footer__top .footer__links ul:not(.hs-menu-children-wrapper) {
  display: flex;
  gap: 6rem;
  font-size: 14px;
}

.footer .footer__top .footer__links ul:not(.hs-menu-children-wrapper) > li > a {
  font-size: 16px;
  font-weight: 500;
  cursor: default;
  color: inherit !important;  
}

.footer .footer__top .footer__links .hs-menu-children-wrapper li {
  margin-top: 1rem;
}

.footer .footer__top .footer__subscribe {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .footer__top .footer__subscribe p {
  text-align: left;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.footer .footer__top .footer__subscribe p:first-child {
  font-weight: 500;
  font-size: 16px;
}

.footer .footer__bottom .footer__bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer .footer__bottom .footer__bottom__right {
  display: flex;
  gap: 1rem;
  height: 15px;
}

.footer .footer__bottom .footer__bottom__right a {
  display: flex;
}

.footer .footer__bottom .footer__bottom__right a img {
  object-fit: contain;
}

.footer .footer__bottom .footer__bottom__right > a {
  display: none;
}

.footer .footer__bottom .footer__bottom__left {
  display: flex;
  gap: 3rem;
  width: 100%;
}

.footer .footer__bottom .footer__bottom__left a:first-of-type {
  font-weight: 500;
}

.footer .footer__bottom .footer__bottom__left a {
  font-size: 14px;
}

/* For Tablet Devices */
@media (max-width: 1024px) {
  .footer .footer__top .footer__links ul:not(.hs-menu-children-wrapper) {
    gap: 3rem;
  }
}

/* For Mobile Devices */
@media (max-width: 767px) {
  .footer .footer__top {
    flex-direction: column;
    padding: 0;
    padding-top: 3rem;
  }
  
  .footer .footer__top .footer__subscribe {
    width: 100%;
    padding: 3rem 0;
  }
  
  .footer .footer__top .footer__subscribe p:last-of-type {
    display: none;
  }
  
  .footer .footer__top .footer__links {
    width: 100%;
  }
  
  .footer .footer__top .footer__links ul:not(.hs-menu-children-wrapper) {
    flex-wrap: wrap;
    row-gap: 3rem;
    column-gap: 6rem;
  }
  
  .footer .footer__bottom .footer__bottom__left a:first-of-type {
    display: none;
  }
  
  .footer .footer__bottom .footer__bottom__wrapper { 
    flex-direction: column-reverse;
    row-gap: 2rem;
  }
  
  .footer .footer__bottom .footer__bottom__left {
    gap: 1rem;
  }
  
  .footer .footer__bottom .footer__bottom__right {
    justify-content: space-between;
    width: 100%;
  }
  
  .footer .footer__bottom .footer__bottom__right > a {
    display: block;
  }
}
#lightspeed_x_marsello_header {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.lightspeed_x_marsello_navbar {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 790px) {
  .lightspeed_x_marsello_navbar .wrapper:last-child {
    display: none;
  }
  
  .acr_nlightspeed_x_marsello_navbaravbar {
    justify-content: center;
  }
}
#marsello_ai_header {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.marsello_ai_navbar {
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

 .marsello_ai_navbar .marsello_ai_logo {
  object-fit: contain;
   height: auto;
   width: 170px;
}

@media only screen and (max-width: 790px) {
  .marsello_ai_navbar .wrapper:last-child {
    display: none;
  }
  
  .marsello_ai_navbar .marsello_ai_logo {
    width: 100px;
  }
}

@media (max-width: 1024px) {
  .header .marsello_ai_navbar .hs_cos_wrapper {
    width: auto !important;
  }
}