@charset "UTF-8";
.link {
  white-space: nowrap;
}
.link:not(.button) {
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 1.125rem;
}
@media (max-width: 576px) {
  .link:not(.button) {
    display: block;
    margin: 10px 0;
  }
}
.link:not(.button):after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-blue.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
  white-space: nowrap;
}
.link:not(.button):hover {
  color: var(--color-deep);
}
.link:not(.button):hover:after {
  margin-left: 15px;
  transition: 0.3s all ease-in-out;
}
.link:not(.button).frost:after {
  background-image: url("/assets/images/icons/arrow-frost.svg");
}
.link:not(.button).arrow-down:after {
  rotate: 90deg;
}

.container.no-pad-left {
  padding-left: 0;
}
.container.no-pad-right {
  padding-right: 0;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-orange: #e07b1a;
  --color-blue: #006FFA;
  --color-frost: #00B4FF;
  --color-deep: #002253;
  --color-slate: #595959;
  --color-light-gray: #EFEFEF;
  --color-headings: var(--color-deep);
  --color-text: var(--color-slate);
  --color-borders: var(--color-black);
  --color-focus-outline: var(--color-blue);
  --btn-text-color: var(--color-white);
  --btn-text-color--hover: var(--color-white);
  --content-max-width: min(calc(100vw - var(--container-padding)*2), 930px);
  --container-max-width: 2000px;
  --container-padding: clamp(24px, 6vw, 96px);
  --mobile-padding: 0 30px;
  --font-family-headings: "Montserrat", sans-serif;
  --font-family-base: "Source Sans 3", sans-serif;
  --line-height-base: 1.5;
  --gap: clamp(1.4375rem, 1.875vw, 1.875rem);
  --transitions: 0.3s;
  --font-size-base: 1rem;
  --font-size-h1: clamp(2.5rem, 4.375vw, 4.375rem);
  --font-size-h2: clamp(2.1875rem, 3.125vw, 3.125rem);
  --font-size-h3: clamp(1.875rem, 2.1875vw, 2.1875rem);
  --font-size-h4: clamp(1.25rem, 1.5625vw, 1.5625rem);
  --font-size-h5: clamp(0.9375rem, 1.1875vw, 1.1875rem);
  --font-size-h6: 1rem;
  --font-size-small: .875rem;
  --font-size-micro: 0.875rem;
  --spacing-0: 0;
  --spacing-1: clamp(0.3125rem, 0.625vw, 0.625rem);
  --spacing-2: clamp(0.625rem, 1.25vw, 1.25rem);
  --spacing-3: clamp(0.9375rem, 1.875vw, 1.875rem);
  --spacing-4: clamp(1.25rem, 2.5vw, 2.5rem);
  --spacing-5: clamp(1.5625rem, 3.125vw, 3.125rem);
  --spacing-6: clamp(1.875rem, 3.75vw, 3.75rem);
  --spacing-7: clamp(2.1875rem, 4.375vw, 4.375rem);
  --spacing-8: clamp(2.5rem, 5vw, 5rem);
  --spacing-9: clamp(2.8125rem, 5.625vw, 5.625rem);
  --spacing-10: clamp(3.125rem, 6.25vw, 6.25rem);
  --spacing-11: clamp(3.4375rem, 6.875vw, 6.875rem);
  --spacing-12: clamp(3.75rem, 7.5vw, 7.5rem);
  --spacing-13: clamp(4.0625rem, 8.125vw, 8.125rem);
  --spacing-14: clamp(4.375rem, 8.75vw, 8.75rem);
  --spacing-15: clamp(4.6875rem, 9.375vw, 9.375rem);
  --spacing-16: clamp(5rem, 10vw, 10rem);
  --spacing-17: clamp(5.3125rem, 10.625vw, 10.625rem);
  --spacing-18: clamp(5.625rem, 11.25vw, 11.25rem);
  --spacing-19: clamp(5.9375rem, 11.875vw, 11.875rem);
  --spacing-20: clamp(6.25rem, 12.5vw, 12.5rem);
  --site-header-height: 157px;
}

body {
  --wp--style--global--content-size: var(--content-max-width);
  background-color: #f9f9f9;
}

.color-black {
  color: var(--color-black);
}

.bg-black {
  background-color: var(--color-black);
}

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

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

.color-blue {
  color: var(--color-blue);
}

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

.color-frost {
  color: var(--color-frost);
}

.bg-frost {
  background-color: var(--color-frost);
}

.color-deep {
  color: var(--color-deep);
}

.bg-deep {
  background-color: var(--color-deep);
}

.color-slate {
  color: var(--color-slate);
}

.bg-slate {
  background-color: var(--color-slate);
}

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

.bg-light-gray-gradient {
  background: linear-gradient(0deg, rgba(89, 89, 89, 0.1) 0%, rgba(255, 255, 255, 0.1) 22.64%);
}

.bg-light-gray a.link {
  color: var(--color-deep) !important;
}

.source-sans-3 {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline-color: var(--color-focus-outline, var(--color-white));
  outline-style: solid;
  outline-width: 1px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

[href="#site-main"] {
  position: absolute;
  z-index: 1000;
}

.screen-reader-text,
.visuallyHidden,
.visuallyHidden-focusable:not(:focus):not(:focus-within) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

a {
  transition: var(--transitions);
  color: var(--color-blue);
}

button,
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  color: currentColor;
}

figure {
  margin: 0;
}

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

svg *:focus {
  outline: none;
}

picture {
  display: block;
}

p,
ol,
ul,
dl,
table,
blockquote {
  margin-block: 0.75em 1.25em;
}

strong {
  font-weight: 700;
}

address {
  font-style: normal;
}

.wp-block-separator.wp-block-separator,
hr {
  background-color: var(--color-white);
  border: 0;
  border-top: solid 1px var(--color-slate);
  height: 1px;
  opacity: 0.3;
  max-width: var(--container-max-width);
  width: calc(var(--container-max-width) - 192px);
}
@media (max-width: 2000px) {
  .wp-block-separator.wp-block-separator,
hr {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .wp-block-separator.wp-block-separator,
hr {
    width: 90%;
  }
}

.sr-only {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.section-radius-right {
  border-bottom-right-radius: 100px;
}
@media (max-width: 1200px) {
  .section-radius-right {
    border-bottom-right-radius: 50px;
  }
}

.section-radius-left {
  border-bottom-left-radius: 100px;
}
@media (max-width: 1200px) {
  .section-radius-left {
    border-bottom-left-radius: 50px;
  }
}

.border-top {
  border-top: solid 1px #CDCDCD;
}

.border-bottom {
  border-bottom: solid 1px #CDCDCD;
}

#error404-message .layout {
  padding: 50px 0;
}

.symbol {
  font-size: 0.4em;
  vertical-align: super;
}

.video-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56.25%;
  /* For a 16:9 aspect ratio (9/16 * 100%) */
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  /* Optional: hides any content that might overflow */
}
.video-container iframe,
.video-container div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-element-button,
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  color: currentColor;
  color: var(--btn-text-color);
}
@media (hover: hover) {
  .wp-element-button:hover,
.btn:hover {
    color: var(--btn-text-color--hover);
  }
}

.button,
.btn {
  background-color: var(--color-blue) !important;
  border: 1px solid var(--color-blue) !important;
  color: var(--color-white) !important;
  padding: 10px 25px !important;
  border-radius: 500px !important;
  transition: 0.3s all ease-in-out;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.button:after,
.btn:after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-white.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}
.button.no-arrow:after,
.btn.no-arrow:after {
  display: none;
}
.button:hover,
.btn:hover {
  background-color: var(--color-deep) !important;
  border: 1px solid var(--color-deep) !important;
  color: var(--color-white) !important;
}
@media (max-width: 576px) {
  .button,
.btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
.button.btn-outline,
.btn.btn-outline {
  border: 1px solid var(--color-blue) !important;
  background-color: var(--color-white) !important;
  color: var(--color-blue) !important;
}
.button.btn-outline:hover,
.btn.btn-outline:hover {
  background-color: var(--color-blue) !important;
  border: 1px solid var(--color-blue) !important;
  color: var(--color-white) !important;
}

.wrapper {
  max-width: var(--container-max-width);
  margin-inline: auto;
  box-sizing: border-box;
}

.container {
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  margin-inline: auto;
  box-sizing: border-box;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headings);
  font-style: normal;
  font-weight: 600;
  color: var(--color-headings, var(--color-text));
  text-wrap: balance;
  margin-block: 0.25em;
}
h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
  font-weight: inherit;
}
h1.alignwide,
h2.alignwide,
h3.alignwide,
h4.alignwide,
h5.alignwide,
h6.alignwide {
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  margin-inline: auto;
  box-sizing: border-box;
}

.has-h-1-font-size,
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.15;
}

.has-h-2-font-size,
h2 {
  font-size: var(--font-size-h2);
  line-height: 1.2;
  font-weight: 700;
}

.has-h-3-font-size,
h3 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.2;
}

.has-h-4-font-size,
h4 {
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
}

.has-h-5-font-size,
h5 {
  font-size: var(--font-size-h5);
  line-height: 1.2;
}

.has-h-6-font-size,
h6 {
  font-size: var(--font-size-h6);
}

table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-embed {
  overflow-wrap: break-word;
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}
.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
}
.wp-block-embed .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-block-embed iframe {
  max-width: 100%;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (min-width: 992px) {
  #site-navigation-open {
    display: none;
  }
}

.modal,
.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal {
  z-index: 10000;
  display: flex;
}
.modal[aria-hidden=true] {
  display: none;
}

.modal-dialog {
  max-width: 80% !important;
  margin: 0 auto !important;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  z-index: 2;
  position: relative;
  background-color: var(--color-black);
  border-radius: 0.5rem;
  padding: var(--spacing-4);
}
.modal-content > button {
  position: absolute;
  right: 15px;
  top: 15px;
}
.modal-content .modal-header {
  border: 0;
  padding: 0;
  z-index: 999;
}
.modal-content .modal-header .btn-close {
  width: 15px;
  height: 15px;
}
.modal-content .modal-header .btn-close:after {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  content: "";
  background-image: url("/assets/images/icons/x.svg");
  background-size: contain;
  width: 15px;
  height: 15px;
}
.modal-content .modal-body {
  padding: 0;
}

.video-modal .modal-content {
  padding: 0;
  max-height: 90vh;
}
.video-modal .modal-content button {
  right: -25px;
  top: -25px;
}
@media (hover: hover) {
  .video-modal .modal-content button:hover {
    color: var(--color-white);
  }
}
.video-modal iframe {
  display: block;
  width: min(80vw, 1000px);
  height: auto;
  aspect-ratio: 500/281;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@-webkit-keyframes slide-up {
  from {
    transform: translateY(10%);
  }
}
@keyframes slide-up {
  from {
    transform: translateY(10%);
  }
}
.dialog-overlay {
  -webkit-animation: fade-in 200ms both;
          animation: fade-in 200ms both;
}

/**
   * 1. Add an animation delay equal to the overlay animation duration to
   *    wait for the overlay to appear before animation in the dialog.
   */
.modal-content {
  -webkit-animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
          animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
}

::-moz-placeholder {
  color: var(--color-slate);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-slate);
  opacity: 1;
}

::placeholder {
  color: var(--color-slate);
  opacity: 1;
}

input,
select,
textarea {
  border: 1px solid rgba(0, 111, 255, 0.5) !important;
  background: rgba(0, 111, 255, 0.05) !important;
  border-radius: 100px;
  padding: 15px !important;
  margin-bottom: 10px !important;
  height: 50px;
}

input[type=checkbox],
input[type=radio] {
  width: 20px !important;
  height: 20px !important;
  accent-color: var(--color-accent);
}

input[type=checkbox] {
  border-radius: 5px !important;
}

input[type=text], input[type=number], input[type=email], input[type=search], input[type=url], input[type=tel] {
  font-size: 1rem;
  width: 100%;
}
input[type=range] {
  width: 100%;
  accent-color: var(--color-accent);
}
input[type=submit] {
  color: var(--btn-text-color);
  padding-left: 30px !important;
  padding-right: 30px !important;
}
@media (hover: hover) {
  input[type=submit]:hover {
    color: var(--btn-text-color--hover);
  }
}

select {
  font-size: 1rem;
  background-image: url("/assets/images/icons/arrow-blue-down.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 10px 10px !important;
  background-position: right 20px center !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  font-size: 1rem;
  height: auto;
  display: block;
  resize: vertical;
  width: 100%;
  padding: 15px !important;
  border-radius: 20px !important;
}
textarea.small {
  height: 4em;
}

label {
  font-size: 1.125rem;
  color: var(--color-slate);
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.gfield_label {
  font-weight: 700 !important;
  color: var(--color-deep) !important;
}

.gchoice {
  margin-bottom: 15px !important;
}
.gchoice label {
  margin-top: -5px !important;
  line-height: 1.3rem !important;
}
.gchoice label strong {
  display: block;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
}
.gchoice input {
  vertical-align: top !important;
}

.gfield-choice-input + label,
.gfield_consent_label {
  margin-left: 5px !important;
}

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

.gfield_required_asterisk {
  color: var(--color-slate) !important;
}

.gsection {
  border-bottom: 0 !important;
}
.gsection .gsection_title {
  font-size: var(--font-size-h5);
  font-weight: 700;
  line-height: 1.2;
}

.ginput_counter {
  display: none !important;
}

.gfield_description {
  font-size: 0.75rem !important;
  margin-top: -15px !important;
  margin-bottom: 10px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.validation_message {
  color: red;
  border: 0 !important;
  font-size: 0.75rem !important;
  background: transparent !important;
  margin-top: -5px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.gfield_validation_message {
  border: 0 !important;
  font-size: 0.75rem !important;
  background: transparent !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-top: -5px !important;
}

.large-label label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  color: var(--color-deep) !important;
}

.gf_page_steps {
  max-width: 50%;
  margin: 0 auto;
  border-bottom: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  gap: 0 5px;
}
@media (max-width: 1650px) {
  .gf_page_steps {
    max-width: 80%;
  }
}
@media (max-width: 992px) {
  .gf_page_steps {
    max-width: 100%;
  }
}
.gf_page_steps .gf_step {
  margin-right: 0px !important;
  text-align: center !important;
  padding: 0 35px !important;
  border-bottom: 5px solid rgba(89, 89, 89, 0.2);
  min-width: 25% !important;
}
.gf_page_steps .gf_step.gf_step_active {
  border-bottom: 5px solid var(--color-blue);
}
.gf_page_steps .gf_step.gf_step_active .gf_step_label {
  opacity: 1;
}
.gf_page_steps .gf_step.gf_step_completed {
  border-bottom: 5px solid rgba(0, 111, 255, 0.5) !important;
}
.gf_page_steps .gf_step.gf_step_completed .gf_step_number {
  display: block !important;
  background: none !important;
  border: none !important;
  color: transparent !important;
}
.gf_page_steps .gf_step.gf_step_completed .gf_step_number:before {
  background: none !important;
  border: none !important;
}
.gf_page_steps .gf_step.gf_step_completed .gf_step_number:after {
  color: var(--color-slate) !important;
  opacity: 0.5 !important;
}
.gf_page_steps .gf_step.gf_step_completed .gf_step_label {
  display: none !important;
}
.gf_page_steps .gf_step .gf_step_number {
  display: none !important;
  background: none !important;
  border: none !important;
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin: 0 auto;
  height: auto !important;
}
.gf_page_steps .gf_step .gf_step_number:after {
  background: none !important;
  border: none !important;
}
@media (max-width: 768px) {
  .gf_page_steps .gf_step .gf_step_number {
    display: block !important;
  }
}
.gf_page_steps .gf_step .gf_step_label {
  opacity: 0.3;
  display: block !important;
  text-align: center;
  margin: 0 auto;
  font-weight: 400 !important;
  padding-left: 0 !important;
  padding-bottom: 5px !important;
  font-size: 1rem !important;
}
@media (max-width: 768px) {
  .gf_page_steps .gf_step .gf_step_label {
    display: none !important;
  }
}

.gform_page {
  position: relative !important;
  max-width: 820px;
  margin: 0 auto;
}
.gform_page .gform_page_footer .gform_button {
  position: absolute !important;
  right: 0 !important;
}

.gform_required_legend {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.gform_fields {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .gform_fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gfield--width-full {
  grid-column: 1/-1;
}

.gform_page_footer {
  padding-top: var(--spacing-4);
  border-top: 1px solid rgba(89, 89, 89, 0.3);
  margin-top: 30px !important;
  padding: 30px 0 !important;
}
.gform_page_footer .button {
  background-color: var(--color-blue) !important;
  border: 1px solid var(--color-blue) !important;
  color: var(--color-white) !important;
  padding: 10px 25px !important;
  border-radius: 500px !important;
  transition: 0.3s all ease-in-out;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.gform_page_footer .button:after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-white.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}
.gform_page_footer .button.no-arrow:after {
  display: none;
}
.gform_page_footer .button:hover {
  background-color: var(--color-deep) !important;
  border: 1px solid var(--color-deep) !important;
  color: var(--color-white) !important;
}
@media (max-width: 576px) {
  .gform_page_footer .button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
.gform_page_footer .button.btn-outline {
  border: 1px solid var(--color-blue) !important;
  background-color: var(--color-white) !important;
  color: var(--color-blue) !important;
}
.gform_page_footer .button.btn-outline:hover {
  background-color: var(--color-blue) !important;
  border: 1px solid var(--color-blue) !important;
  color: var(--color-white) !important;
}
.gform_page_footer .gform_previous_button {
  background: rgba(0, 111, 255, 0.1) !important;
  color: var(--color-blue) !important;
  padding: 10px 35px !important;
}
.gform_page_footer .gform_previous_button:hover {
  border: 1px solid var(--color-blue) !important;
  background: var(--color-blue) !important;
  color: var(--color-white) !important;
}
.gform_page_footer .gform_next_button {
  position: absolute !important;
  right: 0 !important;
}

.gform_submission_error {
  padding: 1em;
  margin-bottom: 1em;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  border: 0 !important;
  font-size: 0.75rem !important;
}
.gform_submission_error:focus {
  outline: none;
}

.gfield_error input::-moz-placeholder, .gfield_error textarea::-moz-placeholder {
  color: gray;
}

.gfield_error input:-ms-input-placeholder, .gfield_error textarea:-ms-input-placeholder {
  color: gray;
}

.gfield_error input::placeholder,
.gfield_error textarea::placeholder {
  color: gray;
}

.gform_validation_errors {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 0.75rem !important;
}

/********************************
  Stuff we need from the base CSS
  ********************************/
@font-face {
  font-family: "gform-icons-theme";
  src: url("../../../../plugins/gravityforms/fonts/gform-icons-theme.woff2?a2cayk") format("woff2"), url("../../../../plugins/gravityforms/fonts/gform-icons-theme.ttf?a2cayk") format("truetype"), url("../../../../plugins/gravityforms/fonts/gform-icons-theme.woff?a2cayk") format("woff"), url("../../../../plugins/gravityforms/fonts/gform-icons-theme.svg?a2cayk#gform-icons-theme") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/**
   Honeypot
   */
.gform_validation_container,
body .gform_wrapper .gform_validation_container,
body .gform_wrapper .gform_body .gform_fields .gfield.gform_validation_container,
body .gform_wrapper .gform_fields .gfield.gform_validation_container {
  display: none !important;
  left: -9000px;
  position: absolute !important;
}

/*
  * Hide screen reader text.
  *
  * Used in the basic.css front-end stylesheet.
  */
.gform_wrapper .screen-reader-text,
.gform_wrapper .hidden_label .gfield_label,
.gform_wrapper .hidden_sub_label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.gform_wrapper button.screen-reader-text:focus {
  border: 0;
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: 0;
  position: static !important;
  width: auto;
}

/*
  * Date field.
  *
  * Used in the basic.css front-end stylesheet and admin-theme.css.
  */
.gform-theme-datepicker:not(.gform-legacy-datepicker) {
  background: #fff;
  border: 1px solid #d0d1d3;
  border-radius: 3px;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.11), 0 0 0.25rem rgba(18, 25, 97, 0.0405344);
  color: #607382;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 5px;
  padding: 18px 15px;
  width: auto;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) table,
.gform-theme-datepicker:not(.gform-legacy-datepicker) thead,
.gform-theme-datepicker:not(.gform-legacy-datepicker) tr,
.gform-theme-datepicker:not(.gform-legacy-datepicker) td,
.gform-theme-datepicker:not(.gform-legacy-datepicker) th {
  background: none;
  border: 0;
  margin: 0;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) td,
.gform-theme-datepicker:not(.gform-legacy-datepicker) th {
  padding: 5px;
  text-shadow: none;
  text-transform: none;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header {
  border: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 0 5px;
  padding: 0;
  position: relative;
  width: 100%;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next {
  align-items: center;
  background: none;
  border: 0;
  color: #607382;
  cursor: pointer;
  display: flex;
  font-family: gform-icons-theme !important;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 30px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  speak: never;
  text-decoration: none;
  top: -2px;
  transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border-color 300ms ease-in-out;
  width: 30px;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev:focus,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev:hover,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next:focus,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next:hover {
  color: #2f4054;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev .ui-icon,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next .ui-icon {
  display: none;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev::before,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next::before {
  border: 0;
  height: auto;
  position: static;
  transform: none;
  width: auto;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev::before {
  content: "";
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next::before {
  content: "";
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  background-image: url("../../../../plugins/gravityforms/images/theme/down-arrow.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #585e6a;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  height: auto;
  min-height: 0;
  padding: 0 22px 0 0;
  width: auto;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-month {
  margin-right: 20px;
  -moz-text-align-last: right;
  text-align-last: right;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar span,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar a {
  font-weight: 400;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar th span {
  align-items: center;
  color: #2f4054;
  display: flex;
  font-size: 1.3rem;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar td {
  font-size: 1.3rem;
  height: 50px;
  width: 50px;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default {
  align-items: center;
  background: none;
  border: 1px solid transparent;
  border-radius: 100%;
  box-shadow: none;
  color: #2f4054;
  display: flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border-color 300ms ease-in-out;
  width: 40px;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:hover,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:focus {
  background: none;
  border-color: #607382;
  outline: none;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default:active {
  background: #f2f3f5;
  border-color: #607382;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
  background: #607382;
  border-color: #607382;
  box-shadow: 0 2px 2px rgba(58, 58, 87, 0.0596411);
  color: #fff;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover,
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus {
  border-color: #607382;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled {
  background: none;
}

.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
  align-items: center;
  background: #f2f3f5;
  border: 1px solid rgba(32, 32, 46, 0.079);
  border-radius: 100%;
  box-shadow: 0 2px 2px rgba(58, 58, 87, 0.0596411);
  color: #686e77;
  cursor: text;
  display: flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  width: 40px;
}

html[dir=rtl] #ui-datepicker-div.gform-theme-datepicker[style] {
  right: auto !important;
}

/**
   File Uploads
   */
.gform_drop_area {
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed #ccc;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 32px;
  text-align: center;
}
.gform_drop_area::before {
  content: url("../assets/images/dragandrop.svg");
  display: block;
  margin: 0 0 10px;
}
.gform_drop_area .button {
  color: var(--btn-text-color);
}
@media (hover: hover) {
  .gform_drop_area .button:hover {
    color: var(--btn-text-color--hover);
  }
}

.gform_drop_instructions {
  display: block;
  margin-bottom: 8px;
}

.gform_delete,
.gform_delete_file {
  cursor: pointer;
  vertical-align: middle;
}

.gform_delete_file {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}

.gfield_validation_message ul {
  margin: 16px 0;
  padding-left: 24px;
}

.gfield_validation_message ul:empty {
  display: none;
}

.ginput_preview {
  margin: 16px 0;
}

.gform_fileupload_rules {
  display: block;
  margin-top: 8px;
}

.gform-body .elend-password-field .gform-field-label {
  display: none !important;
}
.gform-body .elend-password-field .gfield_password_strength {
  border: 0 !important;
  border-radius: 100px !important;
  font-size: 10px !important;
  padding: 3px 0 !important;
  width: 30% !important;
  margin-bottom: 10px !important;
}
@media (max-width: 992px) {
  .gform-body .elend-password-field .gfield_password_strength {
    width: 100% !important;
  }
}
.gform-body .elend-password-field .gfield_password_strength.short {
  background-color: #ffcccc !important;
  color: #333 !important;
}
.gform-body .elend-password-field .gfield_password_strength.bad {
  background-color: #ff9999 !important;
  color: #fff !important;
}
.gform-body .elend-password-field .gfield_password_strength.mismatch {
  background-color: #cc0000 !important;
  color: #fff !important;
}
.gform-body .elend-password-field .gfield_password_strength.good {
  background-color: #ccffcc !important;
  color: #333 !important;
}
.gform-body .elend-password-field .gfield_password_strength.strong {
  background-color: #99ff99 !important;
  color: #333 !important;
}

/* SIMPLE CHAT STYLE FORMS */
.simple-chat-form {
  text-align: center;
}
.simple-chat-form .gf_progressbar_wrapper .gf_progressbar_title {
  display: none !important;
  font-family: "Source Sans 3", sans-serif !important;
  color: var(--color-blue) !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
}
.simple-chat-form .gf_progressbar_wrapper .gf_progressbar,
.simple-chat-form .gf_progressbar_wrapper .gf_step_page_name {
  display: none !important;
}
.simple-chat-form .gform_body {
  width: 90% !important;
  margin: 50px auto 0;
}
@media (max-width: 992px) {
  .simple-chat-form .gform_body {
    width: 75% !important;
  }
}
@media (max-width: 768px) {
  .simple-chat-form .gform_body {
    width: 100% !important;
  }
}
.simple-chat-form .gform_body .subtitle {
  color: var(--color-deep);
  font-size: 1.5625rem !important;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 0px;
}
.simple-chat-form .gform_body .simple-chat-buttons {
  margin: 0 auto;
}
.simple-chat-form .gform_body .large-form-wrapper {
  width: 100%;
  margin: -20px auto 0;
}
.simple-chat-form .gform_body .large-form-wrapper .large-form-button {
  display: block;
  max-width: 520px !important;
  width: 100% !important;
  margin: 0 auto 15px;
  text-decoration: none;
  line-height: 1.3rem !important;
  padding: 25px 24px;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background: rgba(0, 111, 255, 0.1);
  color: var(--color-deep);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.simple-chat-form .gform_body .large-form-wrapper .large-form-button:hover {
  background: var(--color-blue);
  color: #fff;
}
@media (max-width: 768px) {
  .simple-chat-form .gform_body .large-form-wrapper .large-form-button {
    max-width: 100% !important;
    font-size: 1rem !important;
  }
}
.simple-chat-form .gform_body .gform_page_fields {
  margin: 0 auto;
}
.simple-chat-form .gform_body .gfield--type-html h3 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--color-blue);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px !important;
}
.simple-chat-form .gform_body .gfield--type-html h2 {
  font-size: 2.1875rem;
}
.simple-chat-form .gform_body .gfield--type-html p {
  width: 50%;
  margin: 0 auto;
}
.simple-chat-form .gform_body .gfield {
  min-width: 100% !important;
}
.simple-chat-form .gform_body .gfield_label.gform-field-label {
  color: var(--color-deep);
  font-size: 1.5625rem !important;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 40px;
}
.simple-chat-form .gform_body .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.simple-chat-form .gform_body .gfield_radio .gchoice {
  width: 100% !important;
}
.simple-chat-form .gform_body .gfield_radio input[type=radio] {
  display: none;
}
.simple-chat-form .gform_body .gfield_radio label {
  display: block;
  max-width: 520px !important;
  width: 100% !important;
  padding: 25px 24px;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background: rgba(0, 111, 255, 0.1);
  color: var(--color-deep);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-left: 0 !important;
}
.simple-chat-form .gform_body .gfield_radio label:hover {
  background: var(--color-blue);
  color: #fff;
}
@media (max-width: 768px) {
  .simple-chat-form .gform_body .gfield_radio label {
    max-width: 100% !important;
    font-size: 1rem !important;
  }
}
.simple-chat-form .gform_body .gfield_radio input[type=radio]:checked + label {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}
.simple-chat-form .gform_page_footer {
  border-top: 0 !important;
  text-align: center;
  margin-top: 0 !important;
}
.simple-chat-form .gform_page_footer .gform_button {
  position: relative !important;
  right: unset !important;
  width: 100% !important;
  height: auto !important;
  margin-left: 0 !important;
  padding: 25px !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem !important;
  font-weight: 700 !important;
}
.simple-chat-form .gform_page_footer .gform_next_button {
  position: absolute;
  right: 0;
  visibility: hidden !important;
}
.simple-chat-form .gform_page_footer .gform_previous_button {
  position: absolute;
  left: 0;
  visibility: hidden !important;
}

.page-template-template-insights .page-content,
.archive .page-content,
.category .page-content {
  padding: 80px 0;
}
.page-template-template-insights .page-content .container .title,
.archive .page-content .container .title,
.category .page-content .container .title {
  text-align: center;
  margin-bottom: 50px;
}
.page-template-template-insights .page-content .container .title .pretext,
.archive .page-content .container .title .pretext,
.category .page-content .container .title .pretext {
  color: var(--color-blue);
  font-weight: 600;
}
.page-template-template-insights .page-content .container .title h1,
.archive .page-content .container .title h1,
.category .page-content .container .title h1 {
  margin-top: 0;
}

.news-layout {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 50px 5%;
}
@media (max-width: 992px) {
  .news-layout {
    gap: 50px 4%;
  }
}
@media (max-width: 992px) {
  .news-layout {
    gap: 50px 0;
  }
}
.news-layout .article {
  width: 30%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .news-layout .article {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .news-layout .article {
    width: 100%;
  }
}

.news-slider-card {
  position: relative;
  height: 100%;
}
.news-slider-card .thumbnail img {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.news-slider-card a {
  text-decoration: none;
}
.news-slider-card a.link {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news-slider-card h4 {
  margin-bottom: 10px;
}
.news-slider-card P {
  font-size: 1.125rem;
  padding-bottom: 25px;
}

.page-template-page-legal main .container {
  max-width: 60ch;
}
.page-template-page-legal .page-content {
  max-width: var(--content-max-width);
  padding-bottom: var(--block-padding);
  margin-inline: auto;
}

.protected-page-form {
  padding: 100px 25px;
  text-align: center;
}
.protected-page-form input {
  width: 300px;
}
@media (max-width: 768px) {
  .protected-page-form input {
    width: 100%;
  }
}

.single-post,
.single-tpo-insight,
.single-direct-insight {
  /* Related css for news-layout in archive.scss */
}
.single-post .page-header,
.single-tpo-insight .page-header,
.single-direct-insight .page-header {
  padding: 80px 0 25px 0;
  text-align: center;
}
.single-post .page-header .category,
.single-tpo-insight .page-header .category,
.single-direct-insight .page-header .category {
  font-size: 1.125rem;
  color: var(--color-blue);
  font-weight: 600;
}
.single-post .page-header .date,
.single-tpo-insight .page-header .date,
.single-direct-insight .page-header .date {
  color: var(--color-slate);
  font-size: 1.125rem;
}
.single-post .entry-content .featured-image,
.single-tpo-insight .entry-content .featured-image,
.single-direct-insight .entry-content .featured-image {
  text-align: center;
  padding: 0 10% 50px 10%;
}
@media (max-width: 992px) {
  .single-post .entry-content .featured-image,
.single-tpo-insight .entry-content .featured-image,
.single-direct-insight .entry-content .featured-image {
    padding: 0;
  }
}
.single-post .entry-content .featured-image img,
.single-tpo-insight .entry-content .featured-image img,
.single-direct-insight .entry-content .featured-image img {
  width: 100%;
  height: auto;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .single-post .entry-content .container,
.single-tpo-insight .entry-content .container,
.single-direct-insight .entry-content .container {
    padding: 0;
  }
}
.single-post .related-articles,
.single-tpo-insight .related-articles,
.single-direct-insight .related-articles {
  padding-bottom: 50px;
}
.single-post .related-articles .title,
.single-tpo-insight .related-articles .title,
.single-direct-insight .related-articles .title {
  margin-bottom: 50px;
}
.single-post .related-articles .title h2:after,
.single-tpo-insight .related-articles .title h2:after,
.single-direct-insight .related-articles .title h2:after {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--color-deep);
}
@media (max-width: 768px) {
  .single-post .related-articles .title h2:after,
.single-tpo-insight .related-articles .title h2:after,
.single-direct-insight .related-articles .title h2:after {
    display: none;
  }
}

.alert-notice {
  padding: 50px 0 20px;
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
}
.alert-notice.elend-alert {
  padding: 20px 0;
}
.alert-notice p {
  color: var(--color-white);
  font-size: 1.125rem;
  margin: 0;
}
.alert-notice a {
  color: var(--color-frost);
}
.alert-notice a:before {
  content: "|";
  display: inline-block;
  height: 20px;
  width: 1px;
  opacity: 0.3;
  color: var(--color-white);
  margin: 0 15px;
}
.alert-notice a:hover {
  color: var(--color-white);
}

#site-header {
  position: relative;
  padding: 0;
  box-shadow: 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.02), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.02), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.01), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.01), 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.01);
  z-index: 999;
  transition: 0.3s all ease-in-out;
  /* Hamburger */
  /* TPO */
  /* Direct */
}
@media (max-width: 1200px) {
  #site-header {
    padding: 0;
  }
}
#site-header #menu-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 992px) {
  #site-header #menu-btn {
    display: flex;
  }
}
#site-header #menu-btn .line {
  width: 30px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#site-header #menu-btn.open .line1 {
  transform: rotate(45deg) translate(5px, 5px);
  margin-top: 4px;
}
#site-header #menu-btn.open .line2 {
  opacity: 0;
}
#site-header #menu-btn.open .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 992px) {
  #site-header .container {
    padding: 0 !important;
  }
}
#site-header .layout {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 0;
}
@media (max-width: 992px) {
  #site-header .layout {
    display: block;
    padding: 25px 0;
  }
}
@media (max-width: 992px) {
  #site-header .site-logo {
    display: block;
    width: 50%;
  }
}
#site-header .site-logo img {
  width: 146px;
  height: auto;
}
@media (max-width: 992px) {
  #site-header .site-logo img {
    margin-left: 25px;
  }
}
#site-header.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
#site-header.sticky .layout {
  justify-content: flex-start;
}
@media (max-width: 992px) {
  #site-header.sticky .secondary-navigation {
    top: auto;
  }
}
#site-header .navigation {
  transition: right 0.3s ease-in-out;
}
@media (max-width: 992px) {
  #site-header .navigation {
    text-align: left;
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    top: 84px;
    right: -100%;
    z-index: 9999;
    overflow-y: auto;
  }
  #site-header .navigation.active {
    display: block;
    right: 0;
  }
}
#site-header .navigation .connect {
  display: none;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 50px;
}
@media (max-width: 992px) {
  #site-header .navigation .connect {
    display: block;
  }
}
#site-header .navigation .connect h5 {
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
  color: var(--color-slate);
  font-weight: 500;
  margin-bottom: 30px;
}
#site-header .navigation .connect a {
  display: inline-block;
  margin: 0 15px;
}
#site-header .secondary-navigation {
  position: absolute;
  top: 60px;
  right: 0;
  transition: 0.5s all ease-in-out;
}
@media (max-width: 992px) {
  #site-header .secondary-navigation {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    top: auto;
    bottom: 170px;
  }
}
#site-header .secondary-navigation ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#site-header .secondary-navigation ul li {
  position: relative;
  display: inline-block;
}
#site-header .secondary-navigation ul li a {
  text-decoration: none;
  color: var(--color-slate);
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 992px) {
  #site-header .secondary-navigation ul li a {
    margin: 0 10px;
  }
}
#site-header .secondary-navigation ul li a.link {
  color: var(--color-blue);
}
@media (max-width: 992px) {
  #site-header .secondary-navigation ul li a.search {
    display: none;
  }
}
#site-header .secondary-navigation ul li a.large {
  color: var(--color-blue);
  font-size: 1.1875rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
}
#site-header .secondary-navigation ul li a.dropdown {
  color: var(--color-blue);
  font-size: 1.1875rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
}
#site-header .secondary-navigation ul li a.dropdown:after {
  display: inline-block;
  width: 10px;
  height: 8px;
  content: "";
  background-image: url("/assets/images/icons/arrow-blue-down.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}
#site-header .secondary-navigation ul li .dropdown-menu {
  display: none;
  position: absolute;
  right: 10px;
  top: 35px;
  width: 100%;
  min-width: 150px;
  padding: 10px 25px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 9px 58px 0 rgba(0, 0, 0, 0.05), 0 3.76px 24.231px 0 rgba(0, 0, 0, 0.04), 0 2.01px 12.955px 0 rgba(0, 0, 0, 0.03), 0 1.127px 7.263px 0 rgba(0, 0, 0, 0.03), 0 0.599px 3.857px 0 rgba(0, 0, 0, 0.02), 0 0.249px 1.605px 0 rgba(0, 0, 0, 0.01);
  transition: right 0.3s ease-in-out;
}
@media (max-width: 1400px) {
  #site-header .secondary-navigation ul li .dropdown-menu {
    top: 45px;
  }
}
@media (max-width: 992px) {
  #site-header .secondary-navigation ul li .dropdown-menu {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 115px;
    left: unset;
    right: -100%;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
    margin-top: 25px;
    padding: 0 50px 0 80px;
    background-color: var(--color-white);
  }
}
#site-header .secondary-navigation ul li .dropdown-menu.active {
  display: block;
}
#site-header .secondary-navigation ul li .dropdown-menu ul {
  padding: 0;
}
#site-header .secondary-navigation ul li .dropdown-menu ul li {
  display: block;
  margin: 10px 0;
}
#site-header .secondary-navigation ul li .dropdown-menu ul li a:hover:after {
  margin-left: 10px;
}
#site-header .subnav {
  position: absolute;
  left: 0;
  bottom: -50px;
  background-color: var(--color-white);
  padding: 10px;
  width: 100%;
  border-radius: 500px;
  box-shadow: 0 9px 58px 0 rgba(0, 0, 0, 0.05), 0 3.76px 24.231px 0 rgba(0, 0, 0, 0.04), 0 2.01px 12.955px 0 rgba(0, 0, 0, 0.03), 0 1.127px 7.263px 0 rgba(0, 0, 0, 0.03), 0 0.599px 3.857px 0 rgba(0, 0, 0, 0.02), 0 0.249px 1.605px 0 rgba(0, 0, 0, 0.01);
  height: 70px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  #site-header .subnav {
    display: block;
    padding: 0 25px;
    position: relative;
    left: unset;
    bottom: unset;
    border-radius: 0;
    box-shadow: none;
    height: auto;
  }
}
#site-header .subnav.sticky {
  position: absolute;
  top: 40px;
}
#site-header .subnav ul {
  list-style-type: none;
  padding: 0 0 0 50px;
  max-width: 80%;
}
@media (max-width: 992px) {
  #site-header .subnav ul {
    max-width: 100%;
    padding: 0;
    border-top: 1px solid rgba(89, 89, 89, 0.3);
  }
}
#site-header .subnav ul li {
  position: relative;
  display: inline-block;
  margin-right: 50px;
}
@media (max-width: 1400px) {
  #site-header .subnav ul li {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li {
    display: block;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(89, 89, 89, 0.3);
  }
}
#site-header .subnav ul li:after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: transparent;
  border-radius: 2px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li:after {
    display: none !important;
  }
}
#site-header .subnav ul li.active:after {
  background-color: var(--color-blue);
}
#site-header .subnav ul li:hover:after {
  background-color: #006ffa;
}
@media (max-width: 1200px) {
  #site-header .subnav ul li.mega {
    position: unset;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li.search {
    text-align: center;
    display: none;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li.search a {
    display: inline-block;
    margin: 0 auto;
  }
}
#site-header .subnav ul li.search img {
  top: 5px;
}
#site-header .subnav ul li a {
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 1400px) {
  #site-header .subnav ul li a {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li a {
    font-size: 1.125rem;
    display: block;
    width: 100%;
    background-image: url("/assets/images/icons/arrow-blue.svg");
    background-repeat: no-repeat;
    background-position: 97% center;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li a:before {
    display: none !important;
  }
}
#site-header .subnav ul li a.dropdown:after {
  display: inline-block;
  width: 10px;
  height: 8px;
  content: "";
  background-image: url("/assets/images/icons/arrow-blue-down.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li a.dropdown:after {
    display: none !important;
  }
}
#site-header .subnav ul li .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 47px;
  min-width: 325px;
  padding: 60px 60px;
  background-color: var(--color-white);
  border-radius: 0 35px 35px 35px;
  box-shadow: 0 9px 58px 0 rgba(0, 0, 0, 0.05), 0 3.76px 24.231px 0 rgba(0, 0, 0, 0.04), 0 2.01px 12.955px 0 rgba(0, 0, 0, 0.03), 0 1.127px 7.263px 0 rgba(0, 0, 0, 0.03), 0 0.599px 3.857px 0 rgba(0, 0, 0, 0.02), 0 0.249px 1.605px 0 rgba(0, 0, 0, 0.01);
  transition: right 0.3s ease-in-out;
}
@media (max-width: 1400px) {
  #site-header .subnav ul li .dropdown-menu {
    top: 45px;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 115px;
    left: unset;
    right: -100%;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
    margin-top: 25px;
    padding: 0 50px 0 80px;
    background-color: var(--color-white);
  }
}
#site-header .subnav ul li .dropdown-menu.active {
  display: block;
  right: 0;
}
#site-header .subnav ul li .dropdown-menu.mega {
  min-width: 950px;
}
@media (max-width: 1200px) {
  #site-header .subnav ul li .dropdown-menu.mega {
    width: 95%;
    min-width: 95%;
    top: 70px;
    left: 2.5%;
    border-radius: 35px;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 115px;
    left: unset;
    right: -100%;
    border-radius: 0;
    overflow-x: hidden;
    box-shadow: none;
    margin-top: 25px;
    padding: 0 50px 0 80px;
    background-color: var(--color-white);
  }
}
#site-header .subnav ul li .dropdown-menu.mega.active {
  display: block;
  right: 0;
}
@media (max-width: 1200px) {
  #site-header .subnav ul li .dropdown-menu.mega .bar {
    display: none;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .title {
  width: 100%;
}
#site-header .subnav ul li .dropdown-menu.mega .content {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content ul {
  width: auto;
  max-width: 250px;
  padding-right: 35px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content ul {
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .subsection-link {
  display: none;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .subsection-link {
    display: block;
    border-top: 1px solid rgba(89, 89, 89, 0.3);
    margin-top: 20px;
    padding-top: 40px;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks {
  border-left: 1px solid rgba(89, 89, 89, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px 5%;
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks {
    display: flex;
    justify-content: flex-start;
    gap: 25px 5%;
    position: absolute;
    z-index: 9999;
    width: 100%;
    top: -25px;
    left: unset;
    right: -100%;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
    margin-top: 5px;
    margin-bottom: 100px;
    padding: 25px 50px 20px 80px;
    background-color: var(--color-white);
    transition: right 0.3s ease-in-out;
  }
}
@media (max-width: 768px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks {
    gap: 15px 0;
    padding: 25px 25px 150px 80px;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks.active {
    right: 0px;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .sub-back-arrow {
  display: none;
  position: absolute;
  top: 32px;
  left: 35px;
  width: auto;
  background: none !important;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .sub-back-arrow {
    display: inline-block;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .sub-back-arrow .back {
  rotate: -180deg;
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .sublink-title {
  display: none;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .sublink-title {
    display: block;
    font-size: 1.25rem;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links {
  width: 30%;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links {
    width: 45%;
  }
}
@media (max-width: 768px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links .title {
    margin-bottom: 5px;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links .title a,
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links .title .subsection-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  background: none !important;
  color: var(--color-blue);
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links .title .subsection-title {
  padding-top: 9px;
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul {
  margin-top: 0;
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul li {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul li {
    padding-bottom: 0;
    margin-top: 5px;
  }
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul li a {
  color: var(--color-slate);
  font-weight: 400;
  line-height: 0;
  white-space: nowrap;
  font-size: 1.0625rem;
}
#site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul li a:after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-gray.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu.mega .content .sublinks .links ul li a {
    line-height: 1.2;
  }
}
#site-header .subnav ul li .dropdown-menu .bar {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-blue);
  width: 96px;
  height: 5px;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu .bar {
    display: none;
  }
}
#site-header .subnav ul li .dropdown-menu .back-arrow {
  display: none;
  position: absolute;
  top: 12px;
  left: 35px;
  width: auto;
  background: none !important;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu .back-arrow {
    display: inline-block;
  }
}
#site-header .subnav ul li .dropdown-menu .back-arrow .back {
  rotate: -180deg;
}
#site-header .subnav ul li .dropdown-menu .title {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 1.5625rem;
}
#site-header .subnav ul li .dropdown-menu .title:before {
  position: absolute;
  top: 15px;
  display: none;
  rotate: -180deg;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-blue.svg");
  background-repeat: no-repeat;
  margin-right: 30px;
  margin-left: -40px;
}
#site-header .subnav ul li .dropdown-menu ul {
  padding: 0;
  max-width: 100%;
  width: 100%;
  display: block;
  border: 0 !important;
}
#site-header .subnav ul li .dropdown-menu ul li {
  margin-bottom: 25px;
  width: 100%;
  margin-right: 0;
  display: block;
  border: 0 !important;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu ul li {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
#site-header .subnav ul li .dropdown-menu ul li:hover:after {
  background-color: transparent !important;
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu ul li a {
    background: none !important;
  }
}
@media (max-width: 992px) {
  #site-header .subnav ul li .dropdown-menu ul li a:after {
    display: inline-block !important;
  }
}
#site-header .subnav ul li .dropdown-menu ul li a:hover:after {
  margin-left: 10px;
}
#site-header .subnav ul li .dropdown-menu ul li a.lock:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  background-image: url(/assets/images/icons/lock.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -20px;
  margin-right: 5px;
}
#site-header .subnav .btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  #site-header .subnav .btn {
    position: relative;
    display: inline-block;
    right: unset;
    top: unset;
    transform: unset;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 576px) {
  #site-header .subnav .btn {
    width: 100%;
    margin: 0 auto;
  }
}
#site-header #primary-navigation {
  transition: 0.5s all ease-in-out;
  margin-top: 2px;
}
@media (max-width: 992px) {
  #site-header #primary-navigation {
    width: 100%;
    padding: 0 25px;
  }
}
#site-header #primary-navigation ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  #site-header #primary-navigation ul {
    border-top: 1px solid rgba(89, 89, 89, 0.3);
    margin: 25px auto 0;
    text-align: left;
  }
}
#site-header #primary-navigation ul li {
  display: inline-block;
  margin-left: 40px;
}
@media (max-width: 992px) {
  #site-header #primary-navigation ul li {
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(89, 89, 89, 0.3);
  }
}
#site-header #primary-navigation ul li:after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: transparent;
  border-radius: 2px;
}
@media (max-width: 992px) {
  #site-header #primary-navigation ul li:after {
    display: none !important;
  }
}
#site-header #primary-navigation ul li.active:after {
  background-color: var(--color-blue);
}
#site-header #primary-navigation ul li:hover:after {
  background-color: #006ffa;
}
#site-header #primary-navigation ul li a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--color-blue);
}
@media (max-width: 992px) {
  #site-header #primary-navigation ul li a {
    display: block;
    width: 100%;
    background-image: url("/assets/images/icons/arrow-blue.svg");
    background-repeat: no-repeat;
    background-position: 97% center;
  }
}
#site-header #primary-navigation ul li a:hover {
  color: var(--color-deep);
}
@media (max-width: 1200px) {
  #site-header.tpo-page {
    padding: 0;
  }
}
#site-header.tpo-page .layout {
  padding: 50px 0;
}
@media (max-width: 1200px) {
  #site-header.tpo-page .layout {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .layout {
    padding: 25px 0;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .navigation {
    top: 115px;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .navigation {
    top: 105px;
  }
}
#site-header.tpo-page.sticky .layout {
  padding: 40px 0;
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .layout {
    padding: 25px 0;
  }
}
#site-header.tpo-page.sticky .site-logo {
  margin-top: -15px;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .site-logo {
    margin-top: 0;
    margin-bottom: 0;
  }
}
#site-header.tpo-page.sticky .secondary-navigation {
  top: 45px;
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .secondary-navigation {
    top: unset;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .subnav {
    position: relative;
    bottom: unset;
  }
}
#site-header.tpo-page.sticky .subnav.sticky {
  top: unset;
  bottom: -35px;
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .subnav.sticky {
    bottom: unset;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page.sticky .subnav ul li {
    margin-right: 0;
  }
}
#site-header.tpo-page .site-logo {
  margin-top: -15px;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  #site-header.tpo-page .site-logo {
    margin-top: -15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .site-logo {
    margin-top: 0;
    margin-bottom: 0;
  }
}
#site-header.tpo-page .site-logo img {
  width: 225px;
  height: auto;
}
@media (max-width: 1200px) {
  #site-header.tpo-page .site-logo img {
    width: 205px;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .site-logo img {
    width: 215px;
  }
}
#site-header.tpo-page .secondary-navigation {
  top: 60px;
}
@media (max-width: 1200px) {
  #site-header.tpo-page .secondary-navigation {
    top: 50px;
  }
}
@media (max-width: 992px) {
  #site-header.tpo-page .secondary-navigation {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    top: auto;
    bottom: 170px;
  }
}
#site-header.tpo-page .subnav {
  bottom: -35px;
}
@media (max-width: 992px) {
  #site-header.tpo-page .subnav {
    padding: 0 25px;
  }
}
@media (max-width: 1200px) {
  #site-header.direct-page {
    padding: 0;
  }
}
#site-header.direct-page .layout {
  padding: 60px 0;
}
@media (max-width: 1200px) {
  #site-header.direct-page .layout {
    padding: 35px 0;
  }
}
@media (max-width: 992px) {
  #site-header.direct-page .navigation {
    top: 80px;
  }
}
#site-header.direct-page.sticky {
  padding: 0;
}
#site-header.direct-page.sticky .secondary-navigation {
  top: 25px;
}
@media (max-width: 992px) {
  #site-header.direct-page.sticky .secondary-navigation {
    top: unset;
  }
}
#site-header.direct-page .site-logo {
  margin-top: -30px;
}
@media (max-width: 1200px) {
  #site-header.direct-page .site-logo {
    margin-top: -20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  #site-header.direct-page .site-logo {
    margin-top: 0px;
    margin-bottom: 0;
  }
}
#site-header.direct-page .site-logo img {
  width: 285px;
  height: auto;
}
@media (max-width: 1200px) {
  #site-header.direct-page .site-logo img {
    width: 250px;
  }
}
@media (max-width: 992px) {
  #site-header.direct-page .site-logo img {
    width: 260px;
  }
}
#site-header.direct-page .secondary-navigation {
  top: 30px;
}
@media (max-width: 992px) {
  #site-header.direct-page .secondary-navigation {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    top: auto;
    bottom: 170px;
  }
}
#site-header.direct-page .subnav {
  bottom: -35px;
}
@media (max-width: 1200px) {
  #site-header.direct-page .subnav {
    bottom: -35px;
  }
}
#site-header.direct-page .subnav.sticky {
  top: unset;
}
@media (max-width: 1200px) {
  #site-header.direct-page .subnav.sticky {
    top: unset;
  }
}
@media (max-width: 992px) {
  #site-header.direct-page .subnav.sticky {
    top: unset;
    position: relative;
  }
}
#site-header.direct-page .subnav ul {
  max-width: 85%;
}
@media (max-width: 992px) {
  #site-header.direct-page .subnav ul {
    max-width: 100%;
  }
}

.search-form label {
  visibility: hidden;
}
.search-form input[type=search] {
  width: 50% !important;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .search-form input[type=search] {
    width: 100% !important;
  }
}

.page-template-search .layout,
.search-results .layout,
.search-no-results .layout {
  text-align: center;
}
.page-template-search .layout h1,
.search-results .layout h1,
.search-no-results .layout h1 {
  margin-bottom: 10px;
}
.page-template-search .layout h3,
.search-results .layout h3,
.search-no-results .layout h3 {
  color: var(--color-slate);
  margin-bottom: 20px;
}
.page-template-search .layout .search-form-area,
.search-results .layout .search-form-area,
.search-no-results .layout .search-form-area {
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-template-search .layout .search-form,
.search-results .layout .search-form,
.search-no-results .layout .search-form {
  padding-top: 50px;
  padding-bottom: 0px;
}
@media (max-width: 576px) {
  .page-template-search .layout .search-form,
.search-results .layout .search-form,
.search-no-results .layout .search-form {
    padding-top: 20px;
  }
}
.page-template-search .layout .search-results,
.search-results .layout .search-results,
.search-no-results .layout .search-results {
  padding-top: 0px;
  padding-bottom: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.page-template-search .layout .search-results .result,
.search-results .layout .search-results .result,
.search-no-results .layout .search-results .result {
  position: relative;
  width: 55%;
  text-align: left;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .page-template-search .layout .search-results .result,
.search-results .layout .search-results .result,
.search-no-results .layout .search-results .result {
    width: 100%;
  }
}
.page-template-search .layout .search-results .result:last-of-type a,
.search-results .layout .search-results .result:last-of-type a,
.search-no-results .layout .search-results .result:last-of-type a {
  border-bottom: 0;
}
.page-template-search .layout .search-results .result .tag,
.search-results .layout .search-results .result .tag,
.search-no-results .layout .search-results .result .tag {
  background-color: var(--color-deep);
  color: var(--color-white);
  position: absolute;
  top: 0;
  right: 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 15px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.page-template-search .layout .search-results .result a,
.search-results .layout .search-results .result a,
.search-no-results .layout .search-results .result a {
  display: block;
  text-decoration: none;
  padding: 0 0 35px 0;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(89, 89, 89, 0.1);
}
.page-template-search .layout .search-results .result a p,
.search-results .layout .search-results .result a p,
.search-no-results .layout .search-results .result a p {
  color: var(--color-text);
  margin-bottom: 20px;
}
.page-template-search .layout .search-results .result a button,
.search-results .layout .search-results .result a button,
.search-no-results .layout .search-results .result a button {
  font-size: 1rem;
}
.page-template-search .layout .search-results .not-found,
.search-results .layout .search-results .not-found,
.search-no-results .layout .search-results .not-found {
  text-align: center;
  width: 100%;
}

.footer-curl {
  margin-top: -50px;
}
@media (max-width: 992px) {
  .footer-curl {
    display: none;
  }
}
.footer-curl .container {
  background-color: #143883;
  width: 100%;
  height: 50px;
  padding-left: 0;
  padding-right: 0;
}
.footer-curl .container .layout .content {
  background-color: var(--color-white);
  width: 100%;
  height: 50px;
}

.email-signup {
  position: relative;
}
@media (max-width: 992px) {
  .email-signup .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.email-signup .container .layout .email-form {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-blue);
  border-radius: 100px;
  margin: 0 auto;
  width: 75%;
  height: 100px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 0;
    text-align: center;
    padding: 25px 0;
  }
}
.email-signup .container .layout .email-form h4 {
  color: var(--color-white);
  display: inline-block;
  margin: 0 25px 0 0;
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form h4 {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.email-signup .container .layout .email-form .gform_validation_errors {
  display: none !important;
}
.email-signup .container .layout .email-form .gfield_validation_message {
  color: var(--color-white) !important;
  margin-top: 0 !important;
}
.email-signup .container .layout .email-form .gform_confirmation_message {
  color: var(--color-white);
}
.email-signup .container .layout .email-form .gform_heading {
  display: none;
}
.email-signup .container .layout .email-form .gform_wrapper {
  display: inline-block;
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form .gform_wrapper {
    display: block;
  }
}
.email-signup .container .layout .email-form .gform_wrapper .gform_body {
  display: inline-block !important;
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_body {
    display: block !important;
  }
}
.email-signup .container .layout .email-form .gform_wrapper .gform_body input[type=email] {
  background-color: var(--color-white) !important;
  width: 330px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 0 !important;
  margin-right: 10px !important;
}
@media (max-width: 1200px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_body input[type=email] {
    width: 200px !important;
  }
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_body input[type=email] {
    display: block;
    margin: 0 auto !important;
    width: 75% !important;
  }
}
@media (max-width: 576px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_body input[type=email] {
    width: 90% !important;
  }
}
.email-signup .container .layout .email-form .gform_wrapper .gform_footer {
  display: inline-block;
  padding: 0 !important;
}
@media (max-width: 992px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_footer {
    display: block;
  }
}
.email-signup .container .layout .email-form .gform_wrapper .gform_footer input {
  background-color: var(--color-white) !important;
  color: var(--color-blue) !important;
  border: 0;
}
@media (max-width: 576px) {
  .email-signup .container .layout .email-form .gform_wrapper .gform_footer input {
    width: 90% !important;
  }
}
.email-signup .container .layout .email-form .gform_wrapper .gform_footer input:hover {
  border: 0 !important;
  background-color: var(--color-deep) !important;
  color: var(--color-white) !important;
}

.site-footer h4,
.site-footer h5 {
  position: relative;
  color: var(--color-white);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .site-footer h4,
.site-footer h5 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .site-footer h4:after,
.site-footer h5:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    background-image: url("/assets/images/icons/arrow-white-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.site-footer .container {
  background: linear-gradient(0deg, rgba(0, 111, 255, 0) 35.23%, rgba(0, 111, 255, 0.3) 91.82%), #002253;
  color: var(--color-white);
  padding-top: 100px;
  padding-bottom: 50px;
}
.site-footer .container.with-email-form {
  padding-top: 120px;
}
@media (max-width: 992px) {
  .site-footer .container.with-email-form {
    padding-top: 50px;
  }
}
.site-footer .layout {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .site-footer .layout .subarea {
    display: none;
  }
}
.site-footer .layout #copyright {
  width: 30%;
}
@media (max-width: 1200px) {
  .site-footer .layout #copyright {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .site-footer .layout #copyright {
    margin-bottom: 25px;
  }
}
.site-footer .layout #copyright img {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .site-footer .layout #copyright img {
    width: 125px;
    height: auto;
  }
}
.site-footer .layout .social {
  width: 15%;
}
@media (max-width: 1200px) {
  .site-footer .layout .social {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .site-footer .layout .social {
    width: 50%;
    margin-bottom: 0px;
  }
}
.site-footer .layout .social .social-icons {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .layout .social .social-icons {
    margin-top: 10px;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.site-footer .layout .social .social-icons img {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.site-footer .layout .social .logos {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 35px;
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .layout .social .logos {
    display: none;
  }
}
@media (max-width: 1200px) {
  .site-footer .layout .footer-menu {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .site-footer .layout .footer-menu {
    width: 100%;
    margin-bottom: 0px;
  }
}
.site-footer .layout .footer-menu ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
.site-footer .layout .footer-menu ul li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .site-footer .layout .footer-menu ul li {
    margin-bottom: 0;
  }
}
.site-footer .layout .footer-menu ul li a {
  color: var(--color-white);
  opacity: 0.7;
  text-decoration: none;
}
.site-footer .layout .footer-menu ul li a:hover {
  opacity: 1;
}
.site-footer .layout .footer-menu .make-payment {
  display: block;
  margin-top: 35px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
}
.site-footer .layout .footer-menu .make-payment:hover {
  color: var(--color-frost);
}
.site-footer .layout .footer-menu .make-payment:before {
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url("/assets/images/icons/money.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
.site-footer .layout .footer-menu .make-payment:after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-white.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}
.site-footer .layout .mobile-logos {
  display: none;
}
@media (max-width: 768px) {
  .site-footer .layout .mobile-logos {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}
.site-footer .layout .mobile-logos .logos {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  align-items: center;
}
.site-footer p {
  color: var(--color-white);
  margin-bottom: 25px;
}

.brand-announcement-container {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100dvh;
}
.brand-announcement-container .container {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.brand-announcement-container .brand-announcement {
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 34, 83, 0.5);
  padding: 100px;
}
@media (max-width: 1650px) {
  .brand-announcement-container .brand-announcement {
    padding: 25px;
  }
}
.brand-announcement-container .brand-announcement .announcement {
  position: relative;
  width: 100%;
  max-height: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-white);
  padding: 100px;
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 992px) {
  .brand-announcement-container .brand-announcement .announcement {
    padding: 80px;
  }
}
@media (max-width: 768px) {
  .brand-announcement-container .brand-announcement .announcement {
    padding: 60px 40px 40px 40px;
  }
}
.brand-announcement-container .brand-announcement .announcement .close-announcement {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
}
.brand-announcement-container .brand-announcement .announcement .old-logos {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}
.brand-announcement-container .brand-announcement .announcement .old-logos .logo {
  text-align: center;
}
.brand-announcement-container .brand-announcement .announcement .old-logos .logo .old-logo {
  width: 80%;
  height: auto;
  max-height: 45px;
}
@media (max-width: 992px) {
  .brand-announcement-container .brand-announcement .announcement .old-logos .logo .old-logo {
    max-height: 30px;
  }
}
.brand-announcement-container .brand-announcement .announcement .old-logos .logo .arrow-left,
.brand-announcement-container .brand-announcement .announcement .old-logos .logo .arrow-right {
  width: auto;
  height: 70px;
  text-align: center;
  margin: 20px auto 0;
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container {
  margin-top: -85px;
}
@media (max-width: 992px) {
  .brand-announcement-container .brand-announcement .announcement .new-logo-container {
    margin-top: -75px;
  }
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container .new-image {
  margin: 40px auto;
}
@media (max-width: 992px) {
  .brand-announcement-container .brand-announcement .announcement .new-logo-container .new-image {
    margin: 30px auto;
  }
}
@media (max-width: 576px) {
  .brand-announcement-container .brand-announcement .announcement .new-logo-container .new-image {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container .elend-new {
  max-width: 740px;
  min-width: 350px;
  width: 40%;
  height: auto;
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container .tpo-new {
  max-width: 800px;
  min-width: 350px;
  width: 50%;
  height: auto;
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container .direct-new {
  max-width: 1000px;
  min-width: 450px;
  width: 50%;
  height: auto;
}
.brand-announcement-container .brand-announcement .announcement .new-logo-container hr {
  max-width: 100%;
  width: auto;
}
.brand-announcement-container .brand-announcement .announcement h2 {
  margin-top: 50px;
}
.brand-announcement-container .brand-announcement .announcement p {
  width: 50%;
  margin: 0 auto 30px;
  font-size: 1.125rem;
}
@media (max-width: 1650px) {
  .brand-announcement-container .brand-announcement .announcement p {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .brand-announcement-container .brand-announcement .announcement p {
    width: 100%;
  }
}
.brand-announcement-container .brand-announcement .announcement .btn {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .brand-announcement-container .brand-announcement .announcement .btn {
    margin-top: 20px;
  }
}

.aligncenter {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .alignright {
    float: right;
    margin: 0 0 0 1.5em;
  }

  .alignleft {
    float: left;
    margin: 0 1.5em 0 0;
  }
}
.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}
.has-text-align-center::before, .has-text-align-center::after {
  margin-inline: auto;
}

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

.is-layout-flex {
  display: flex;
}

.is-content-justification-left {
  justify-content: flex-start;
}

.is-content-justification-center {
  justify-content: center;
}

.is-content-justification-right {
  justify-content: flex-end;
}

.is-content-justification-space-between {
  justify-content: space-between;
}

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

/*Bootstrap grid/reset*/
/*!
 * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

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

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1600px) {
  .sticky-xxxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

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

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow-none {
  box-shadow: 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;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

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

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

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

.border-info {
  border-color: #0dcaf0 !important;
}

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

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

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

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

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

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

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

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

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

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !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;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(2.125rem + 10.5vw) !important;
}

.fs-2 {
  font-size: calc(1.875rem + 7.5vw) !important;
}

.fs-3 {
  font-size: calc(1.625rem + 4.5vw) !important;
}

.fs-4 {
  font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-5 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-6 {
  font-size: 1rem !important;
}

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

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

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

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

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

.text-info {
  color: #0dcaf0 !important;
}

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

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

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

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

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

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

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

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

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

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

.bg-info {
  background-color: #0dcaf0 !important;
}

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

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

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

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

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

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

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

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

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

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

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

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

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

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

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

.rounded-end {
  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-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-sm-0 {
    gap: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .me-sm-0 {
    margin-right: 0 !important;
  }

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

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

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

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

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

  .me-sm-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-sm-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

  .ms-sm-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pe-sm-0 {
    padding-right: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .ps-sm-0 {
    padding-left: 0 !important;
  }

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

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

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

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

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

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-md-0 {
    gap: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .me-md-0 {
    margin-right: 0 !important;
  }

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

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

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

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

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

  .me-md-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-md-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

  .ms-md-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pe-md-0 {
    padding-right: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .ps-md-0 {
    padding-left: 0 !important;
  }

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

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

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

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

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

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-lg-0 {
    gap: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-lg-0 {
    margin-right: 0 !important;
  }

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

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

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

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

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

  .me-lg-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-lg-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

  .ms-lg-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pe-lg-0 {
    padding-right: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .ps-lg-0 {
    padding-left: 0 !important;
  }

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

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

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

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

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

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

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

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

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

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

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

  .d-xxl-grid {
    display: grid !important;
  }

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

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

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

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

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

  .d-xxl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1600px) {
  .float-xxxl-start {
    float: left !important;
  }

  .float-xxxl-end {
    float: right !important;
  }

  .float-xxxl-none {
    float: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxxl-row {
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    flex-direction: column !important;
  }

  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxxl-0 {
    gap: 0 !important;
  }

  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxxl-3 {
    gap: 1rem !important;
  }

  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    align-content: center !important;
  }

  .align-content-xxxl-between {
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }

  .order-xxxl-first {
    order: -1 !important;
  }

  .order-xxxl-0 {
    order: 0 !important;
  }

  .order-xxxl-1 {
    order: 1 !important;
  }

  .order-xxxl-2 {
    order: 2 !important;
  }

  .order-xxxl-3 {
    order: 3 !important;
  }

  .order-xxxl-4 {
    order: 4 !important;
  }

  .order-xxxl-5 {
    order: 5 !important;
  }

  .order-xxxl-last {
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxxl-start {
    text-align: left !important;
  }

  .text-xxxl-end {
    text-align: right !important;
  }

  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 10rem !important;
  }

  .fs-2 {
    font-size: 7.5rem !important;
  }

  .fs-3 {
    font-size: 5rem !important;
  }

  .fs-4 {
    font-size: 3rem !important;
  }

  .fs-5 {
    font-size: 2rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*Optional components*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1599.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
}
.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}
