@import "../fonts/AktivGrotesk.css";
@import "../fonts/SegoeUI.css";
@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap";

:root {
  --lba-black: #000;
  --lba-white: #fff;
  --lba-primary: #404d80;
  --lba-secondary: #76777a;
  --lba-white-rgb: 255, 255, 255;
  --lba-black-rgb: 0, 0, 0;
  --lba-body-color-rgb: 65, 64, 66;
  --lba-body-bg-rgb: 255, 255, 255;
  --lba-font-sans-serif: "Montserrat", sans-serif;
  --lba-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --lba-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --lba-body-font-family: Montserrat, sans-serif;
  --lba-body-font-size: 1rem;
  --lba-body-font-weight: 400;
  --lba-body-line-height: 1.5;
  --lba-body-color: #414042;
  --lba-body-bg: #fff;
  --lba-border-width: 1px;
  --lba-border-style: solid;
  --lba-border-color: #dee2e6;
  --lba-border-color-translucent: rgba(0, 0, 0, 0.175);
  --lba-border-radius: 0.375rem;
  --lba-border-radius-sm: 0.25rem;
  --lba-border-radius-lg: 0.5rem;
  --lba-border-radius-xl: 1rem;
  --lba-border-radius-2xl: 2rem;
  --lba-border-radius-pill: 50rem;
  --lba-link-color: #404d80;
  --lba-link-hover-color: rgb(51.2, 61.6, 102.4);
  --lba-code-color: #d63384;
  --lba-highlight-bg: rgb(255, 242.6, 205.4);
}

:root {
  --lba-root-font-size: 15px;
  --lba-font-serif: "Playfair", serif;
  --lba-page-max-width: 100%;
  --lba-container-gutter-x: 60px;
  --lba-container-offset-x: var(--lba-container-gutter-x);
  --lba-container-max-width: calc(
    var(--lba-page-max-width) - var(--lba-container-gutter-x)
  );
  --lba-container-max-width: 80.5rem;
}

@media (min-width: 1280px) {
  :root {
    --lba-container-max-width: 1288px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  :root {
    --lba-container-max-width: 1610px;
  }
}

@media (min-width: 1280px) {
  :root {
    --lba-root-font-size: 16px;
    --lba-container-gutter-x: 4rem;
    --lba-page-max-width: 1600px;
  }
}

@media (min-width: 1600px) {
  :root {
    --lba-root-font-size: 20px;
    --lba-page-max-width: 1920px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--lba-body-font-family);
  font-size: var(--lba-body-font-size);
  font-weight: var(--lba-body-font-weight);
  line-height: var(--lba-body-line-height);
  color: var(--lba-body-color);
  text-align: var(--lba-body-text-align);
  background-color: var(--lba-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--lba-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--lba-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--lba-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--lba-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--lba-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--lba-body-bg);
  background-color: var(--lba-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not(
    [type="week"]
  ):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-contents {
  display: contents !important;
}

.d-inherit {
  display: inherit !important;
}

.d-reset {
  display: initial !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

.italic {
  font-style: italic !important;
}

.not-italic {
  font-style: normal !important;
}

.font-serif {
  font-family: var(--lba-font-serif) !important;
}

.font-sans-serif {
  font-family: var(--lba-font-sans-serif) !important;
}

.font-thin {
  font-weight: 100 !important;
}

.font-extralight {
  font-weight: 200 !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-black {
  font-weight: 900 !important;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #404d80 !important;
}

.text-secondary {
  color: #76777a !important;
}

.text-body {
  color: #414042 !important;
}

.text-inherit {
  color: inherit !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-primary {
  background-color: #404d80 !important;
}

.bg-secondary {
  background-color: #76777a !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;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mr-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;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin-left: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mr-n1 {
  margin-right: -0.25rem !important;
}

.mr-n2 {
  margin-right: -0.5rem !important;
}

.mr-n3 {
  margin-right: -1rem !important;
}

.mr-n4 {
  margin-right: -1.5rem !important;
}

.mr-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ml-n1 {
  margin-left: -0.25rem !important;
}

.ml-n2 {
  margin-left: -0.5rem !important;
}

.ml-n3 {
  margin-left: -1rem !important;
}

.ml-n4 {
  margin-left: -1.5rem !important;
}

.ml-n5 {
  margin-left: -3rem !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;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-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;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-contents {
    display: contents !important;
  }

  .d-sm-inherit {
    display: inherit !important;
  }

  .d-sm-reset {
    display: initial !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-justify {
    text-align: justify !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;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mr-sm-3 {
    margin-right: 1rem !important;
  }

  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mr-sm-5 {
    margin-right: 3rem !important;
  }

  .mr-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;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ml-sm-3 {
    margin-left: 1rem !important;
  }

  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ml-sm-5 {
    margin-left: 3rem !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .m-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin-left: -3rem !important;
  }

  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-sm-n3 {
    margin-top: -1rem !important;
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-sm-n3 {
    margin-right: -1rem !important;
  }

  .mr-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-sm-n3 {
    margin-left: -1rem !important;
  }

  .ml-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-sm-n5 {
    margin-left: -3rem !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;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pr-sm-3 {
    padding-right: 1rem !important;
  }

  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pr-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;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }

  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }

  .pl-sm-3 {
    padding-left: 1rem !important;
  }

  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }

  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-contents {
    display: contents !important;
  }

  .d-md-inherit {
    display: inherit !important;
  }

  .d-md-reset {
    display: initial !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .text-md-justify {
    text-align: justify !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;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mr-md-1 {
    margin-right: 0.25rem !important;
  }

  .mr-md-2 {
    margin-right: 0.5rem !important;
  }

  .mr-md-3 {
    margin-right: 1rem !important;
  }

  .mr-md-4 {
    margin-right: 1.5rem !important;
  }

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .mr-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;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .ml-md-1 {
    margin-left: 0.25rem !important;
  }

  .ml-md-2 {
    margin-left: 0.5rem !important;
  }

  .ml-md-3 {
    margin-left: 1rem !important;
  }

  .ml-md-4 {
    margin-left: 1.5rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin-left: -3rem !important;
  }

  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -1rem !important;
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-md-n3 {
    margin-right: -1rem !important;
  }

  .mr-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-md-n3 {
    margin-left: -1rem !important;
  }

  .ml-md-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-md-n5 {
    margin-left: -3rem !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;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pr-md-1 {
    padding-right: 0.25rem !important;
  }

  .pr-md-2 {
    padding-right: 0.5rem !important;
  }

  .pr-md-3 {
    padding-right: 1rem !important;
  }

  .pr-md-4 {
    padding-right: 1.5rem !important;
  }

  .pr-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;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .pl-md-1 {
    padding-left: 0.25rem !important;
  }

  .pl-md-2 {
    padding-left: 0.5rem !important;
  }

  .pl-md-3 {
    padding-left: 1rem !important;
  }

  .pl-md-4 {
    padding-left: 1.5rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-contents {
    display: contents !important;
  }

  .d-lg-inherit {
    display: inherit !important;
  }

  .d-lg-reset {
    display: initial !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-justify {
    text-align: justify !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;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mr-lg-3 {
    margin-right: 1rem !important;
  }

  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mr-lg-5 {
    margin-right: 3rem !important;
  }

  .mr-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;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ml-lg-3 {
    margin-left: 1rem !important;
  }

  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ml-lg-5 {
    margin-left: 3rem !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin-left: -3rem !important;
  }

  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-lg-n3 {
    margin-right: -1rem !important;
  }

  .mr-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-lg-n3 {
    margin-left: -1rem !important;
  }

  .ml-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-lg-n5 {
    margin-left: -3rem !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;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pr-lg-3 {
    padding-right: 1rem !important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pr-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;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }

  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }

  .pl-lg-3 {
    padding-left: 1rem !important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-contents {
    display: contents !important;
  }

  .d-xl-inherit {
    display: inherit !important;
  }

  .d-xl-reset {
    display: initial !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .text-xl-justify {
    text-align: justify !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;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mr-xl-3 {
    margin-right: 1rem !important;
  }

  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mr-xl-5 {
    margin-right: 3rem !important;
  }

  .mr-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;
  }

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ml-xl-3 {
    margin-left: 1rem !important;
  }

  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ml-xl-5 {
    margin-left: 3rem !important;
  }

  .ml-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin-left: -3rem !important;
  }

  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-xl-n3 {
    margin-right: -1rem !important;
  }

  .mr-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-xl-n3 {
    margin-left: -1rem !important;
  }

  .ml-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-xl-n5 {
    margin-left: -3rem !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;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }

  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pr-xl-3 {
    padding-right: 1rem !important;
  }

  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pr-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;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }

  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }

  .pl-xl-3 {
    padding-left: 1rem !important;
  }

  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }

  .pl-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-contents {
    display: contents !important;
  }

  .d-xxl-inherit {
    display: inherit !important;
  }

  .d-xxl-reset {
    display: initial !important;
  }

  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }

  .text-xxl-justify {
    text-align: justify !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;
  }

  .mr-xxl-0 {
    margin-right: 0 !important;
  }

  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mr-xxl-3 {
    margin-right: 1rem !important;
  }

  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mr-xxl-5 {
    margin-right: 3rem !important;
  }

  .mr-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;
  }

  .ml-xxl-0 {
    margin-left: 0 !important;
  }

  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ml-xxl-3 {
    margin-left: 1rem !important;
  }

  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ml-xxl-5 {
    margin-left: 3rem !important;
  }

  .ml-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin-left: -3rem !important;
  }

  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mr-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-xxl-n3 {
    margin-left: -1rem !important;
  }

  .ml-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-xxl-n5 {
    margin-left: -3rem !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;
  }

  .pr-xxl-0 {
    padding-right: 0 !important;
  }

  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pr-xxl-3 {
    padding-right: 1rem !important;
  }

  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pr-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;
  }

  .pl-xxl-0 {
    padding-left: 0 !important;
  }

  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .pl-xxl-3 {
    padding-left: 1rem !important;
  }

  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
}

html {
  font-size: var(--lba-root-font-size);
}

.site {
  overflow: clip;
  position: relative;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.sr-only {
  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;
}

.container,
.container-fluid {
  --lba-gutter-x: var(--lba-container-gutter-x);
  --lba-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--lba-gutter-x) * 0.5);
  padding-left: calc(var(--lba-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: calc(
    var(--lba-container-max-width) + var(--lba-container-gutter-x)
  );
}

.submenu,
.menu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  display: flex;
}

.menu a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.social-media {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.social-media a {
  display: block;
  aspect-ratio: 1;
  width: 15px;
  overflow: hidden;
  background-color: #404d80;
}

.social-media a.facebook {
  -webkit-mask: url("../images/facebook.svg") center/contain no-repeat;
  mask: url("../images/facebook.svg") center/contain no-repeat;
}

.social-media a.instagram {
  -webkit-mask: url("../images/instagram.svg") center/contain no-repeat;
  mask: url("../images/instagram.svg") center/contain no-repeat;
}

.site-header {
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 9;
}

@media (max-width: 1279.98px) {
  .site-header {
    border-bottom: 1px solid #404d80;
    box-shadow: none;
  }

  .site-header::before {
    content: "";
    display: block;
    height: 5px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: absolute;
    inset: -5px;
  }
}

.site-header .inner {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1279.98px) {
  .site-header .inner {
    padding-top: 20px;
    padding-bottom: 12px;
    position: relative;
    justify-content: center;
  }
}

.site-header .site-logo {
  flex-shrink: 0;
  margin-left: -1.5rem;
}

@media (max-width: 1279.98px) {
  .site-header .site-logo {
    margin: 0;
  }
}

.site-header .beside-logo {
  flex-grow: 1;
  align-self: flex-end;
  max-width: 46rem;
}

@media (max-width: 1279.98px) {
  .site-header .beside-logo {
    width: calc(100% + var(--lba-container-gutter-x) * 0.5);
    max-width: none;
    min-height: 90vh;
    max-height: calc(100vh - 10px);
    padding: 35px 30px 10px;
    background: linear-gradient(to left, #fff, #b9c5ed);
    border-radius: 25px 0 0 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translate(100%, 0);
    position: absolute;
    top: 5px;
    right: calc(var(--lba-container-gutter-x) * -0.5);
    z-index: 1;
  }
}
.beside-logo > div p {
  font-weight: 700;
  margin: 0;
  order: 1;
}
.beside-logo > div a {
  order: 2;
}
.site-header .beside-logo .client-button-wrapper {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}
.site-header .beside-logo .client-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10.2rem;
  height: 2.35rem;
  padding: 0 0.85rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important;
  color: #fff;
  background-color: #e82925;
}
@media (max-width: 1279.98px) {
  .beside-logo > div p,
  .beside-logo > div a {
    order: unset;
  }
  .site-header .beside-logo .client-button-wrapper {
    justify-content: flex-start;
  }
}
.site-header .beside-logo .client-button::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 2.15rem;
  height: 2.35rem;
  margin-right: -0.5rem;
  background-color: #fff;
  -webkit-mask: url("../images/profile.png") center/contain no-repeat;
  mask: url("../images/profile.png") center/contain no-repeat;
}

.site-header .menu-open {
  display: none;
  width: 51px;
  height: 51px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: -5px;
}

@media (max-width: 1279.98px) {
  .site-header .menu-open {
    display: block;
  }
}

.site-header .menu-open::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: url("../images/menu-bars.svg") center/35px no-repeat;
}

.site-header .menu-close {
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
  position: absolute;
  top: 5px;
  right: 40px;
}

@media (max-width: 1279.98px) {
  .site-header .menu-close {
    display: block;
  }
}

.site-header .menu-close::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: url("../images/menu-close.svg") center/25px no-repeat;
}

@media (min-width: 1280px) {
  .mobile-menu-open {
    overflow: auto !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1279.98px) {
  .mobile-menu-open {
    position: relative;
  }

  .mobile-menu-open::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 8;
  }

  .mobile-menu-open .beside-logo {
    opacity: 1;
    transform: translate(0, 0);
    transition: 0.25s ease-in-out;
  }

  .mobile-menu-open.closing .beside-logo {
    opacity: 0;
    transform: translate(100%, 0);
    transition: 0.2s ease-in-out;
  }
}

.site-logo {
  margin: 0;
}

.site-logo a {
  display: block;
  overflow: hidden;
  aspect-ratio: 662/152;
  width: 33.1rem;
}

@media (max-width: 1279.98px) {
  .site-logo a {
    width: 341px;
  }
}

.site-logo a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/logo.png") center/contain no-repeat;
}

@media only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-logo a::before {
    background-image: url("../images/logo@2x.png");
  }
}

.site-menu {
  margin-right: -0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #404d80;
}

@media (max-width: 1279.98px) {
  .site-menu {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
  }
}

.site-menu .menu {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1279.98px) {
  .site-menu .menu {
    flex-direction: column;
    align-items: stretch;
  }
}

.site-menu .menu > li {
  display: contents;
}

@media (max-width: 1279.98px) {
  .site-menu .menu > li {
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
}

.site-menu .menu > li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.8rem;
  background-color: #e82925;
}

@media (max-width: 1279.98px) {
  .site-menu .menu > li + li::before {
    display: none;
  }
}

@media (max-width: 1279.98px) {
  .site-menu .menu > li + li {
    border-top: 1px solid #fff;
  }
}

.site-menu .menu > li > a {
  padding: 0.35rem 0.5rem;
}

@media (max-width: 1279.98px) {
  .site-menu .menu > li > a {
    padding: 10px;
    margin: 0 -12px;
  }
}

.site-menu .social-media {
  display: none;
}

@media (max-width: 1279.98px) {
  .site-menu .social-media {
    margin-left: 15px;
    display: flex;
    gap: 9px;
  }
}

.site-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}

.site-content a > * {
  text-decoration: inherit;
}

.site-content img {
  max-width: 100%;
  height: auto;
}

.content-header {
  background: url("../images/hero-bg.jpg") center/cover;
  background-color: hsl(0, 0%, 15%);
  position: relative;
  z-index: 1;
}

@media (max-width: 1279.98px) {
  .content-header .container {
    max-width: 800px;
  }
}

@media (max-width: 767.98px) {
  .content-header {
    height: 12.36rem;
  }
}

.content-header .inner {
  display: flex;
  color: #fff;
  position: relative;
}

@media (max-width: 767.98px) {
  .content-header .inner {
    position: absolute;
    inset: 0;
  }
}

.content-header .inner::before {
  content: "";
  flex-shrink: 0;
  align-self: flex-end;
  height: 20.6rem;
  aspect-ratio: 324/412;
  background: url("../images/hero-icon.png") center bottom/contain no-repeat;
  margin-left: 2.75rem;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .content-header .inner::before {
    height: 15.11rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .content-header .inner::before {
    height: 100%;
    position: absolute;
    right: 78%;
    bottom: 0;
  }
}

.content-header .inner::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: 17.75rem;
  right: -7.75rem;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(64, 77, 128, 0.42)
  );
  mix-blend-mode: multiply;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .content-header .inner::after {
    left: 20%;
    right: -40%;
  }
}

@media (max-width: 767.98px) {
  .content-header .inner::after {
    left: 0;
    right: 0;
  }
}

.content-header .inner .header-text {
  min-width: 43rem;
  margin-left: auto;
  margin-top: 6.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1279.98px) {
  .content-header .inner .header-text {
    font-size: 1rem;
    min-width: 440px;
    flex-basis: 50%;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .content-header .inner .header-text {
    margin-top: 5.2rem;
  }
}

.content-header .inner .header-text p {
  margin: 0;
}

@media (max-width: 1279.98px) {
  .content-header .inner .header-text p {
    padding-top: 3px;
  }
}

@media (max-width: 767.98px) {
  .content-header .inner .header-text p {
    width: 69%;
    position: absolute;
    top: 50%;
    right: calc(var(--lba-container-gutter-x) * 0.5);
  }
}

.content-header .inner .content-title {
  margin: 0;
  font-family: "Playfair", serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  border-bottom: 2px solid #fff;
}

@media (max-width: 1279.98px) {
  .content-header .inner .content-title {
    padding-bottom: 2px;
    font-size: 2.33rem;
    border-bottom-width: 1px;
  }
}

@media (max-width: 767.98px) {
  .content-header .inner .content-title {
    width: 69%;
    font-size: 2.1rem;
    position: absolute;
    bottom: 50%;
    right: calc(var(--lba-container-gutter-x) * 0.5);
  }
}

.content-header .inner .content-title sup {
  font-size: 0.3428571429em;
  top: -1.1em;
}

.content-body {
  position: relative;
}

.content-body::before {
  content: "";
  display: block;
  background: url("../images/bg.jpg");
  background-size: 100% 100%;
  opacity: 0.48;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.head-section {
  background-color: #fff;
  border: 0 solid #404d80;
  border-width: 0.25rem 0;
  text-align: center;
  color: #404d80;
}

@media (max-width: 1279.98px) {
  .head-section {
    border-width: 2px 0;
  }
}

.head-section .container {
  padding-top: 2.25rem;
  padding-bottom: 1.8rem;
  position: relative;
}

@media (max-width: 1279.98px) {
  .head-section .container {
    padding-top: 1.47rem;
    padding-bottom: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .head-section .container {
    padding-top: 0.8rem;
  }
}

.head-section .container::before {
  content: "";
  display: block;
  width: 24.25rem;
  aspect-ratio: 485/194;
  background: url("../images/icon.svg") center/contain no-repeat;
  position: absolute;
  top: -0.45rem;
  right: 65%;
}

@media (max-width: 1279.98px) {
  .head-section .container::before {
    width: 13.33rem;
    top: -0.2rem;
  }
}

@media (max-width: 767.98px) {
  .head-section .container::before {
    right: 70%;
  }
}

@media (max-width: 575.98px) {
  .head-section .container::before {
    display: none;
  }
}

.head-section .section-title {
  padding: 0 15%;
}

@media (max-width: 575.98px) {
  .head-section .section-title {
    padding: 0;
  }
}

.section-title {
  margin: 0;
  font-family: "Playfair", serif;
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1279.98px) {
  .section-title {
    font-size: 2.13rem;
  }
}

.section-subtitle {
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1279.98px) {
  .section-subtitle {
    font-size: 1.6rem;
  }
}

.first-section {
  --lba-container-max-width: 67.5rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: #404d80;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.38;
  position: relative;
}

@media (min-width: 1280px) {
  .first-section {
    --lba-container-max-width: 1080px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .first-section {
    --lba-container-max-width: 1350px;
  }
}

@media (max-width: 1279.98px) {
  .first-section {
    font-size: 1.07rem;
  }
}

.first-section::before {
  content: "";
  display: block;
  background-color: #d2e2f6;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.first-section .separator {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.first-section .separator::before {
  content: "";
  width: 75%;
  max-width: 39.7rem;
  height: 2px;
  background-color: #869ec4;
}

@media (max-width: 1279.98px) {
  .first-section .separator::before {
    height: 1px;
  }
}

.site-footer {
  --lba-container-max-width: 70rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
  background-color: #76777a;
}

@media (min-width: 1280px) {
  .site-footer {
    --lba-container-max-width: 1120px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .site-footer {
    --lba-container-max-width: 1400px;
  }
}

@media (max-width: 1279.98px) {
  .site-footer {
    padding-top: 20px;
    padding-bottom: 12px;
    font-size: 12px;
  }
}

.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  color: inherit;
}

.site-footer .inner {
  display: flex;
  align-items: center;
  gap: 12px 3.25rem;
}

@media (max-width: 1279.98px) {
  .site-footer .inner {
    flex-direction: column;
  }
}

.site-footer .copyright-wrapper {
  display: contents;
}

@media (max-width: 1279.98px) {
  .site-footer .copyright-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

.site-footer .copyright {
  margin: 0;
  flex-grow: 1;
  font-family: "Aktiv Grotesk", sans-serif;
}

@media (max-width: 1279.98px) {
  .site-footer .copyright {
    max-width: 280px;
    text-align: left;
    line-height: 1.6;
  }
}

.site-footer .powered {
  flex-shrink: 0;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1279.98px) {
  .site-footer .powered {
    font-size: 15px;
    white-space: nowrap;
  }
}

.site-footer .powered a {
  flex-shrink: 0;
  aspect-ratio: 232/47;
  width: 11.6rem;
  overflow: hidden;
}

@media (max-width: 1279.98px) {
  .site-footer .powered a {
    width: 215px;
  }
}

.site-footer .powered a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/365dtm-logo.png") center/contain no-repeat;
}

@media only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-footer .powered a::before {
    background-image: url("../images/365dtm-logo@2x.png");
  }
}

.site-footer .social-media {
  order: 99;
  flex-shrink: 0;
  gap: 3px 0.9rem;
}

@media (max-width: 1279.98px) {
  .site-footer .social-media {
    flex-direction: column;
  }
}

.site-footer .social-media a {
  width: 3rem;
  background-color: transparent;
}

@media (max-width: 1279.98px) {
  .site-footer .social-media a {
    width: 14px;
  }
}

.page-about .first-section {
  --lba-container-max-width: 65rem;
}

@media (min-width: 1280px) {
  .page-about .first-section {
    --lba-container-max-width: 1040px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-about .first-section {
    --lba-container-max-width: 1300px;
  }
}

@media (max-width: 1279.98px) {
  .page-about .first-section .container {
    max-width: 720px;
  }
}

.page-about .team-section {
  --lba-container-max-width: 70.75rem;
  color: #404d80;
}

@media (min-width: 1280px) {
  .page-about .team-section {
    --lba-container-max-width: 1132px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-about .team-section {
    --lba-container-max-width: 1415px;
  }
}

.page-about .team-wrapper {
  padding-top: 5rem;
  padding-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 0 3rem;
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-about .team-wrapper {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-about .team-wrapper {
    justify-content: space-around;
  }
}

.page-about .team-wrapper:not(:first-child)::before {
  content: "";
  display: block;
  height: 1px;
  border-top: 1px solid #404d80;
  position: absolute;
  top: 0;
  left: 2%;
  right: 2%;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-about .team-wrapper:not(:first-child)::before {
    left: 3.5%;
    right: 3.5%;
  }
}

@media (max-width: 767.98px) {
  .page-about .team-wrapper:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .page-about .team-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .page-about .team-wrapper:first-child .team-item:first-child::before {
    display: none !important;
  }
}

.page-about .team-item {
  width: 100%;
  max-width: 30.5rem;
  position: relative;
}

@media (max-width: 767.98px) {
  .page-about .team-item {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .page-about .team-item::before {
    content: "";
    display: block;
    height: 1px;
    border-top: 1px solid #404d80;
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
  }
}

.page-about .team-head {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 12.65rem 1fr;
  grid-template-rows: 1fr 35%;
  gap: 0.5rem 2.25rem;
}

@media (max-width: 1279.98px) {
  .page-about .team-head {
    font-size: 0.93rem;
    grid-template-columns: 7.33rem 1fr;
    gap: 0.25rem 1rem;
  }
}

.page-about .team-head > * {
  width: 115%;
  margin: 0;
}

.page-about .team-head .name {
  align-self: end;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1279.98px) {
  .page-about .team-head .name {
    font-size: 1.33rem;
  }
}

.page-about .team-head .photo {
  grid-row-start: span 2;
  aspect-ratio: 1;
  border-radius: 50%;
}

.page-about .team-body {
  line-height: 1.35;
}

.page-about .why-section {
  --lba-container-max-width: 81.5rem;
  color: #fff;
  background-color: rgba(64, 77, 128, 0.68);
  font-size: 1.25rem;
  line-height: 1.64;
  font-weight: 500;
  position: relative;
}

@media (min-width: 1280px) {
  .page-about .why-section {
    --lba-container-max-width: 1304px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-about .why-section {
    --lba-container-max-width: 1630px;
  }
}

@media (max-width: 1279.98px) {
  .page-about .why-section {
    font-size: 1rem;
  }
}

.page-about .why-section::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  inset: 1rem 0 0;
  z-index: -1;
}

.page-about .why-section .section-title {
  margin-bottom: 0.5rem;
}

.page-about .why-section .inner {
  width: 37.5rem;
  margin-left: auto;
  padding-top: 4.25rem;
  padding-bottom: 2.5rem;
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-about .why-section .inner {
    width: 100%;
    max-width: 50rem;
    margin: auto;
  }
}

.page-about .why-section .inner::before {
  content: "";
  display: block;
  width: 115.7333333333%;
  aspect-ratio: 868/807;
  background: url("../images/why-section.png") bottom/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: calc(100% + 2.75rem);
}

@media (max-width: 1279.98px) {
  .page-about .why-section .inner::before {
    display: none;
  }
}

.page-resource .first-section {
  --lba-container-max-width: 67.25rem;
}

@media (min-width: 1280px) {
  .page-resource .first-section {
    --lba-container-max-width: 1076px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-resource .first-section {
    --lba-container-max-width: 1345px;
  }
}

@media (max-width: 1279.98px) {
  .page-resource .first-section .container {
    max-width: 720px;
  }
}

.page-resource .employer-section {
  --lba-container-max-width: 62.5rem;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #404d80;
}

@media (min-width: 1280px) {
  .page-resource .employer-section {
    --lba-container-max-width: 1000px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-resource .employer-section {
    --lba-container-max-width: 1250px;
  }
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section {
    font-size: 1rem;
  }
}

.page-resource .employer-section .section-subtitle {
  margin-bottom: 1.25rem;
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section .section-subtitle {
    margin-bottom: 1rem;
  }
}

.page-resource .employer-section .block-btn {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  color: #fff !important;
  background-color: #404d80;
  border-radius: 0.25rem;
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section .block-btn {
    font-size: 1.33rem;
    padding: 0.4em 1em;
  }
}

.page-resource .employer-section .outlined-btn {
  display: inline-flex;
  gap: 0.625em;
  padding: 0.4rem 1.8rem;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  color: #404d80 !important;
  border: 1px solid #404d80;
  border-radius: 0.25rem;
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section .outlined-btn {
    font-size: 1.33rem;
    padding: 0.4em 1em;
  }
}

.page-resource .employer-section .outlined-btn::before {
  content: "";
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 0.9166666667em;
  aspect-ratio: 44/33;
  margin-left: -0.1666666667em;
  background-color: #404d80;
  -webkit-mask: url("../images/arrow-up.svg") center/contain no-repeat;
  mask: url("../images/arrow-up.svg") center/contain no-repeat;
}

.page-resource .toolbox-section {
  --lba-container-max-width: 70.75rem;
  padding-top: 4.25rem;
  padding-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.42;
  color: #404d80;
}

@media (min-width: 1280px) {
  .page-resource .toolbox-section {
    --lba-container-max-width: 1132px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-resource .toolbox-section {
    --lba-container-max-width: 1415px;
  }
}

@media (max-width: 1279.98px) {
  .page-resource .toolbox-section {
    padding-top: 2.5rem;
    font-size: 1rem;
  }
}

.page-resource .toolbox-section .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

@media (max-width: 1279.98px) {
  .page-resource .toolbox-section .row {
    max-width: 725px;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 767.98px) {
  .page-resource .toolbox-section .row {
    flex-direction: column;
    gap: 1rem;
  }
}

.page-resource .toolbox-section .row .col-left {
  flex-basis: 42.4028268551%;
}

.page-resource .toolbox-section .row .col-right {
  flex-basis: 53.0035335689%;
}

.page-resource .toolbox-section .collapse-area {
  padding-left: 5rem;
}

@media (max-width: 1279.98px) {
  .page-resource .toolbox-section .collapse-area {
    padding-left: 3.33rem;
  }
}

.page-resource .employer-section .collapse-btn {
  display: flex;
  gap: 0.625em;
  margin-bottom: 0.7291666667em;
  padding: 0.4rem 1.6rem;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  color: #404d80 !important;
  border: 1px solid #404d80;
  border-radius: 0.25rem;
}

@media (max-width: 1279.98px) {
  .page-resource .employer-section .collapse-btn {
    font-size: 1.33rem;
    padding: 0.4em 1em;
  }
}

.page-resource .employer-section .collapse-btn::before {
  content: "";
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 0.9166666667em;
  aspect-ratio: 44/33;
  margin-left: -0.1666666667em;
  background-color: #404d80;
  -webkit-mask: url("../images/arrow-up.svg") center/contain no-repeat;
  mask: url("../images/arrow-up.svg") center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}

.page-resource .employer-section .collapse-btn.collapsed::before {
  transform: rotate(180deg);
}

.page-resource .toolbox-section .collapse-btn {
  display: flex;
  gap: 0.625em;
  margin-bottom: 0.7291666667em;
  padding: 0.4rem 1.6rem;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  color: #404d80 !important;
  border: 1px solid #404d80;
  border-radius: 0.25rem;
}

@media (max-width: 1279.98px) {
  .page-resource .toolbox-section .collapse-btn {
    font-size: 1.33rem;
    padding: 0.4em 1em;
  }
}

.page-resource .toolbox-section .collapse-btn::before {
  content: "";
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 0.9166666667em;
  aspect-ratio: 44/33;
  margin-left: -0.1666666667em;
  background-color: #404d80;
  -webkit-mask: url("../images/arrow-up.svg") center/contain no-repeat;
  mask: url("../images/arrow-up.svg") center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}

.page-resource .toolbox-section .collapse-btn.collapsed::before {
  transform: rotate(180deg);
}

.page-solutions .first-section {
  --lba-container-max-width: 61.75rem;
}

@media (min-width: 1280px) {
  .page-solutions .first-section {
    --lba-container-max-width: 988px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-solutions .first-section {
    --lba-container-max-width: 1235px;
  }
}

@media (max-width: 1279.98px) {
  .page-solutions .first-section .container {
    max-width: 700px;
  }
}

.page-solutions .cards-section {
  --lba-container-max-width: 80.5rem;
  padding-top: 4rem;
}

@media (min-width: 1280px) {
  .page-solutions .cards-section {
    --lba-container-max-width: 1288px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-solutions .cards-section {
    --lba-container-max-width: 1610px;
  }
}

.page-solutions .cards-section .card-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4.25rem;
}

@media (max-width: 1279.98px) {
  .page-solutions .cards-section .card-list {
    justify-content: center;
    gap: 2rem;
  }
}

.page-solutions .cards-section .card-item {
  max-width: calc(50% - 2.125rem);
  width: 31.5416666667em;
  padding: 1.4583333333em 2.5em;
  padding-left: 9.5rem;
  color: #404d80;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 1.1;
  border: 1px solid #404d80;
  border-radius: 1.4583333333em;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-solutions .cards-section .card-item {
    max-width: 100%;
    padding-left: 5.67rem;
    font-size: 1rem;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  }
}

.page-solutions .cards-section .card-icon {
  width: 7.4rem;
  position: absolute;
  top: 1.4583333333em;
  left: 0.8333333333em;
}

@media (max-width: 1279.98px) {
  .page-solutions .cards-section .card-icon {
    width: 4.27rem;
  }
}

.page-solutions .cards-section .card-title {
  margin-bottom: 0.5208333333em;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.05;
}

@media (max-width: 1279.98px) {
  .page-solutions .cards-section .card-title {
    font-size: 1.47rem;
    line-height: 1;
  }
}

.page-solutions .offer-section {
  margin-top: -1rem;
  padding-top: 7.25rem;
  padding-bottom: 1rem;
  color: #404d80;
  position: relative;
}

.page-solutions .offer-section::before {
  content: "";
  display: block;
  background: url("../images/offer-bg.jpg") center/cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 4rem);
  mask-image: linear-gradient(to bottom, transparent, black 4rem);
  position: absolute;
  inset: 0;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .page-solutions .offer-section::before {
    background-position: 75%;
  }
}

.page-solutions .offer-section ul {
  padding-left: 0;
  list-style: none;
  font-size: 1.35rem;
  line-height: 1.1;
}

@media (max-width: 1279.98px) {
  .page-solutions .offer-section ul {
    font-size: 1.07rem;
  }
}

.page-solutions .offer-section ul > li {
  margin-top: 1rem;
  padding-left: 1em;
}

.page-solutions .offer-section ul > li::before {
  content: "•";
  float: left;
  margin-left: -0.75em;
}

.page-solutions .offer-section .inner {
  padding-left: 43.4782608696%;
}

@media (max-width: 767.98px) {
  .page-solutions .offer-section .inner {
    max-width: 500px;
    margin: auto;
    padding-left: 3.5rem;
  }
}

.page-solutions .offer-section .section-title {
  margin-bottom: 0.4464285714em;
  font-size: 2.8rem;
  position: relative;
  left: -0.1785714286em;
}

@media (max-width: 1279.98px) {
  .page-solutions .offer-section .section-title {
    font-size: 1.67rem;
  }
}

.page-solutions .offer-section .section-title::before {
  content: "";
  display: block;
  width: 1.5892857143em;
  aspect-ratio: 89/111;
  background: url("../images/shield.svg") center/contain no-repeat;
  position: absolute;
  right: calc(100% + 0.5714285714em);
  top: -0.4464285714em;
}

.page-solutions .offer-section .notes {
  max-width: 37.5em;
  margin-top: 2em;
  font-size: 1rem;
}

@media (max-width: 1279.98px) {
  .page-solutions .offer-section .notes {
    font-size: 0.8rem;
  }
}

.page-solutions .partner-section {
  --lba-container-max-width: 89rem;
}

@media (min-width: 1280px) {
  .page-solutions .partner-section {
    --lba-container-max-width: 1424px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-solutions .partner-section {
    --lba-container-max-width: 1780px;
  }
}

.page-solutions .partner-section .heading {
  padding: 0.35rem 0;
  font-family: "Playfair", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #404d80;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .heading {
    font-size: 1.67rem;
  }
}

.page-solutions .partner-section .heading * {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.page-solutions .partner-section .logos {
  padding: 2.5rem 0;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .logos {
    padding: 1.5rem 0;
  }
}

.page-solutions .partner-section .slide-logo {
  padding-left: 0;
  list-style: none;
  margin: 0 1.75rem;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .slide-logo {
    margin: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .page-solutions .partner-section .slide-logo {
    margin: 0 calc(var(--lba-container-gutter-x) * -0.5);
  }
}

.page-solutions .partner-section .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .logo-item {
    width: 180px;
    padding: 0 10px;
  }
}

.page-solutions .partner-section .logo-item img {
  width: 13.5rem;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .logo-item img {
    max-width: 160px;
  }
}

.page-solutions .partner-section .slick-arrow {
  width: 2.75rem;
  height: 0;
  padding-top: 5.5rem;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  z-index: 1;
}

@media (max-width: 1279.98px) {
  .page-solutions .partner-section .slick-arrow {
    width: 2.2rem;
    padding-top: 4.4rem;
  }
}

@media (max-width: 767.98px) {
  .page-solutions .partner-section .slick-arrow {
    background-color: hsla(0, 0%, 100%, 0.75);
  }
}

.page-solutions .partner-section .slick-arrow::before {
  content: "";
  display: block;
  background: url("../images/slide-arrow.svg") center/contain no-repeat;
  position: absolute;
  inset: 0.45rem 0.45rem;
}

.page-solutions .partner-section .slick-arrow.slick-prev {
  right: 100%;
  transform: translate(15%, -50%);
}

@media (max-width: 767.98px) {
  .page-solutions .partner-section .slick-arrow.slick-prev {
    right: calc(100% - 2.2rem);
  }
}

.page-solutions .partner-section .slick-arrow.slick-next {
  left: 100%;
  transform: translate(-15%, -50%);
}

@media (max-width: 767.98px) {
  .page-solutions .partner-section .slick-arrow.slick-next {
    left: calc(100% - 2.2rem);
  }
}

.page-solutions .partner-section .slick-arrow.slick-next::before {
  transform: scale(-1);
}

.page-contact .form-section {
  --lba-container-max-width: 84rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1280px) {
  .page-contact .form-section {
    --lba-container-max-width: 1344px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-contact .form-section {
    --lba-container-max-width: 1680px;
  }
}

.page-contact .form-area {
  width: 52.5rem;
  min-height: 35rem;
  margin-top: -2rem;
  margin-left: auto;
  background-color: #d2e2f6;
  border: 0.35rem solid #fff;
  border-radius: 1.6rem;
  box-shadow: 0px 4.64px 4.64px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-contact .form-area {
    width: 100%;
    max-width: 720px;
    margin-top: -1.5rem;
  }
}

@media (max-width: 991.98px) {
  .page-contact .form-area {
    margin-right: auto;
  }
}

.page-contact .form-area::before {
  content: "";
  display: block;
  width: 60.7rem;
  aspect-ratio: 1214/687;
  background: url("../images/contact-section.png") right top/contain no-repeat;
  position: absolute;
  top: -5.6rem;
  right: calc(100% - 12.75rem);
}

@media (max-width: 1279.98px) {
  .page-contact .form-area::before {
    width: 660px;
    top: -50px;
    right: calc(100% - 140px);
  }
}

@media (max-width: 991.98px) {
  .page-contact .form-area::before {
    display: none;
  }
}

.page-contact .form-area .inner {
  position: relative;
  overflow: hidden;
}

.page-contact .site-footer {
  position: relative;
  z-index: 1;
}

.page-lbarx-betterthancobra .section-title {
  font-size: 3.25rem;
  color: #404d80;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .section-title {
    font-size: 1.87rem;
  }
}

.page-lbarx-betterthancobra .first-section {
  --lba-container-max-width: 79rem;
}

@media (min-width: 1280px) {
  .page-lbarx-betterthancobra .first-section {
    --lba-container-max-width: 1264px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-lbarx-betterthancobra .first-section {
    --lba-container-max-width: 1580px;
  }
}

.page-lbarx-betterthancobra .first-section .row {
  display: flex;
  gap: 0.5rem 1.5rem;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .first-section .row {
    max-width: 770px;
    margin: auto;
  }
}

@media (max-width: 991.98px) {
  .page-lbarx-betterthancobra .first-section .row {
    flex-direction: column;
  }
}

.page-lbarx-betterthancobra .first-section .row .col-left {
  flex-shrink: 0;
  margin-top: -0.9rem;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .first-section .row .col-left {
    margin-top: -5px;
  }
}

.page-lbarx-betterthancobra .space-section {
  height: 1.35rem;
  background-color: #404d80;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .space-section {
    height: 10px;
  }
}

.page-lbarx-betterthancobra .lbarx-section {
  --lba-container-max-width: 82rem;
}

@media (min-width: 1280px) {
  .page-lbarx-betterthancobra .lbarx-section {
    --lba-container-max-width: 1312px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-lbarx-betterthancobra .lbarx-section {
    --lba-container-max-width: 1640px;
  }
}

.page-lbarx-betterthancobra .lbarx-section .inner {
  width: 100%;
  max-width: 51.5rem;
  margin-left: auto;
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .inner {
    margin-right: auto;
  }
}

.page-lbarx-betterthancobra .lbarx-section .inner::before {
  content: "";
  display: block;
  width: 59.6116504854%;
  aspect-ratio: 614/923;
  background: url("../images/why-LBARx.png") bottom/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: calc(100% + 1.5rem);
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .inner::before {
    display: none;
  }
}

.page-lbarx-betterthancobra .lbarx-section .section-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.page-lbarx-betterthancobra .lbarx-section .section-title::before {
  content: "";
  flex-shrink: 0;
  width: 2.4em;
  aspect-ratio: 156/134;
  margin-left: -0.7384615385em;
  margin-bottom: -0.2307692308em;
  background: url("../images/LBARx-logo.png") center/contain no-repeat;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .section-title::before {
    margin-left: 0;
  }
}

.page-lbarx-betterthancobra .lbarx-section .why-items {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.1rem;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .why-items {
    row-gap: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-lbarx-betterthancobra .lbarx-section .why-items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.page-lbarx-betterthancobra .lbarx-section .why-items .item-title {
  margin: 0;
  padding: 0.5rem;
  padding-left: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.29;
  color: #fff;
  background-color: #404d80;
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .why-items .item-title {
    font-size: 1.07rem;
    padding-left: 2.5rem;
  }
}

.page-lbarx-betterthancobra .lbarx-section .why-items .item-title::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0 solid rgba(0, 0, 0, 0);
  border-width: 0 0.5416666667em 0.9166666667em;
  border-bottom-color: #fff;
  position: absolute;
  top: 0.5833333333em;
  left: 0.5em;
}

@media (min-width: 1600px) {
  .page-lbarx-betterthancobra .lbarx-section .why-items .item-title::before {
    top: 0.5em;
  }
}

.page-lbarx-betterthancobra .lbarx-section .why-items .item-body {
  padding: 0.5rem;
  padding-left: 3rem;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1279.98px) {
  .page-lbarx-betterthancobra .lbarx-section .why-items .item-body {
    padding-left: 2.5rem;
  }
}

.page-lbarx-betterthancobra .betterthancobra-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
  font-size: 1rem;
  line-height: 1.55;
}

.page-lbarx-betterthancobra .betterthancobra-section .section-title {
  text-align: center;
  margin-bottom: 2.25rem;
}

.page-lbarx-betterthancobra .betterthancobra-section .section-title sup {
  margin-left: -0.25em;
  font-size: 0.7em;
  top: -0.25em;
  font-weight: 600;
}

.page-lbarx-betterthancobra .betterthancobra-section .inner {
  max-width: 47rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-lbarx-betterthancobra .betterthancobra-section .inner img {
  width: 22.5rem;
  margin: 0 auto 2.75rem;
}

.page-lbarx-betterthancobra .betterthancobra-section .key-block {
  max-width: 44.8rem;
  padding: 1.5rem 2.25rem;
  font-size: 0.9rem;
  line-height: 1.56;
  background-color: #fff;
  border: 1px solid #404d80;
  border-radius: 1.4rem;
}

.page-lbarx-betterthancobra .betterthancobra-section .key-block .caption {
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #404d80;
}

.page-lbarx-betterthancobra .betterthancobra-section .key-block .columns {
  display: flex;
  gap: 0 0.75rem;
  margin-bottom: -0.5rem;
}

@media (max-width: 767.98px) {
  .page-lbarx-betterthancobra .betterthancobra-section .key-block .columns {
    flex-direction: column;
  }
}

.page-lbarx-betterthancobra .betterthancobra-section .key-block ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.page-lbarx-betterthancobra .betterthancobra-section .key-block ul > li {
  margin-bottom: 1.25rem;
  padding-left: 1.5em;
}

.page-lbarx-betterthancobra
  .betterthancobra-section
  .key-block
  ul
  > li::before {
  content: "•";
  float: left;
  margin-left: -0.9em;
  font-weight: 500;
}

.page-lbarx-betterthancobra
  .betterthancobra-section
  .key-block
  ul
  > li
  > strong:first-child {
  font-weight: 500;
}

.page-home .content-header {
  height: auto;
  background-image: url("../images/hero-home.jpg");
  background-size: auto 100%;
}

.page-home .content-header::after {
  display: block;
  background-color: hsla(0, 0%, 100%, 0.33);
  position: absolute;
  inset: 0;
}

.page-home .content-header .inner {
  display: block !important;
  height: 30.8rem;
  position: relative !important;
  z-index: 1;
}

@media (max-width: 1599.98px) {
  .page-home .content-header .inner {
    height: 32.34rem;
  }
}

@media (max-width: 1279.98px) {
  .page-home .content-header .inner {
    height: 412px;
  }
}

@media (max-width: 991.98px) {
  .page-home .content-header .inner {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .page-home .content-header .inner {
    height: 250px;
  }
}

@media (max-width: 575.98px) {
  .page-home .content-header .inner {
    height: 198px;
  }
}

.page-home .content-header .inner::before,
.page-home .content-header .inner::after {
  height: 126.461038961%;
  aspect-ratio: 1920/779;
  margin: 0;
  background: url("../images/handshake.png") center/contain no-repeat;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
}

@media (min-width: 1280px) and (max-width: 1599.98px) {
  .page-home .content-header .inner::before,
  .page-home .content-header .inner::after {
    width: 1600px;
  }
}

.page-home .content-header .inner::before {
  transform: translate(-50%, -47.25%);
}

.page-home .content-header .inner::after {
  transform: translate(-50%, -44.75%);
  opacity: 40%;
  filter: brightness(0) blur(0.4rem);
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content-header .inner::after {
    filter: brightness(0) blur(5px);
  }
}

@media (max-width: 767.98px) {
  .page-home .content-header .inner::after {
    filter: brightness(0) blur(3px);
  }
}

.page-home .content-header .header-text {
  margin: 0 !important;
  font-family: "Playfair", serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #404d80;
  text-transform: uppercase;
  text-shadow: none;
  position: static;
}

@media (max-width: 1279.98px) {
  .page-home .content-header .header-text {
    font-size: 45px;
  }
}

@media (max-width: 991.98px) {
  .page-home .content-header .header-text {
    font-size: 35px;
  }
}

@media (max-width: 767.98px) {
  .page-home .content-header .header-text {
    font-size: 27px;
  }
}

@media (max-width: 575.98px) {
  .page-home .content-header .header-text {
    font-size: 23px;
  }
}

.page-home .content-header .header-text > * {
  transform: translate(0, 50%);
  position: absolute;
  bottom: 76%;
  z-index: 2;
}

.page-home .content-header .header-text > *:first-child {
  right: 60%;
}

@media (min-width: 1280px) and (max-width: 1599.98px) {
  .page-home .content-header .header-text > *:first-child {
    right: 60.5%;
  }
}

@media (max-width: 1279.98px) {
  .page-home .content-header .header-text > *:first-child {
    right: 64.5%;
  }
}

@media (max-width: 991.98px) {
  .page-home .content-header .header-text > *:first-child {
    right: 61.5%;
  }
}

@media (max-width: 767.98px) {
  .page-home .content-header .header-text > *:first-child {
    right: calc(50% + 2.4em);
  }
}

@media (max-width: 575.98px) {
  .page-home .content-header .header-text > *:first-child {
    right: calc(50% + 2.25em);
  }
}

.page-home .content-header .header-text > *:last-child {
  left: 58.5%;
}

@media (min-width: 1280px) and (max-width: 1599.98px) {
  .page-home .content-header .header-text > *:last-child {
    left: 59%;
  }
}

@media (max-width: 1279.98px) {
  .page-home .content-header .header-text > *:last-child {
    left: 62.5%;
  }
}

@media (max-width: 991.98px) {
  .page-home .content-header .header-text > *:last-child {
    left: 59.75%;
  }
}

@media (max-width: 767.98px) {
  .page-home .content-header .header-text > *:last-child {
    left: calc(50% + 2.1em);
  }
}

@media (max-width: 575.98px) {
  .page-home .content-header .header-text > *:last-child {
    left: calc(50% + 1.9em);
  }
}

.page-home .first-section {
  --lba-container-max-width: 59rem;
  padding-top: 6.75rem;
  padding-bottom: 2.5rem;
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 1280px) {
  .page-home .first-section {
    --lba-container-max-width: 944px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-home .first-section {
    --lba-container-max-width: 1180px;
  }
}

@media (max-width: 1279.98px) {
  .page-home .first-section {
    padding-bottom: 1em;
    font-size: 1.67rem;
  }

  .page-home .first-section .container {
    max-width: 27.4em;
  }
}

@media (max-width: 767.98px) {
  .page-home .first-section {
    font-size: 1rem;
    line-height: 1.33;
  }

  .page-home .first-section .container {
    width: 92.5%;
  }
}

@media (max-width: 1279.98px) {
  .page-home .first-section {
    padding-top: 4em;
  }
}

@media (max-width: 991.98px) {
  .page-home .first-section {
    padding-top: 3em;
  }
}

@media (max-width: 767.98px) {
  .page-home .first-section {
    padding-top: 4em;
  }
}

@media (max-width: 575.98px) {
  .page-home .first-section {
    padding-top: 3em;
  }
}

.page-home .first-section .separator {
  margin: 1.5rem auto;
}

@media (max-width: 1279.98px) {
  .page-home .first-section .separator {
    margin: 1rem auto;
  }
}

.page-home .featured-section {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  position: relative;
}

.page-home .featured-section .inner {
  width: 60.45rem;
  margin-left: auto;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .inner {
    width: auto;
    margin: 0;
  }
}

.page-home .featured-section .inner::before {
  content: "";
  display: block;
  width: 38.7rem;
  background: url("../images/featured-section.jpg") center/cover;
  position: absolute;
  top: 0;
  right: 60.45rem;
  bottom: 0;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .inner::before {
    display: none;
  }
}

.page-home .featured-section .feat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12.55rem;
  height: 12.55rem;
  margin: 0 auto 1rem;
  padding-top: 1.5rem;
  color: #fff;
  background-color: #404d80;
  border-radius: 50%;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .feat-head {
    width: 112px;
    height: 112px;
    padding-top: 12px;
  }
}

.page-home .featured-section .feat-item {
  width: 15rem;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .feat-item {
    width: 100%;
    max-width: 285px;
  }
}

.page-home .featured-section .feat-icon {
  width: 6.5rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .feat-icon {
    width: 58px;
    margin-bottom: 1px;
  }
}

.page-home .featured-section .feat-title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .feat-title {
    font-size: 11px;
  }
}

.page-home .featured-section .feat-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 1279.98px) {
  .page-home .featured-section .feat-list {
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.page-home .featured-section .feat-list > *:nth-child(even) .feat-head {
  background-color: #d43d30;
}

.page-home .testimonial-section {
  --lba-container-max-width: 80rem;
  color: #fff;
  background: url("../images/testimonial-bg.jpg") center/cover;
  background-size: 96rem 100%;
  background-color: rgba(64, 77, 128, 0.68);
  background-blend-mode: multiply;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .page-home .testimonial-section {
    --lba-container-max-width: 1280px;
    --lba-container-offset-x: calc(
      var(--lba-page-max-width) - var(--lba-container-max-width)
    );
  }
}

@media (min-width: 1600px) {
  .page-home .testimonial-section {
    --lba-container-max-width: 1600px;
  }
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section {
    background: rgba(0, 0, 0, 0);
    position: relative;
  }

  .page-home .testimonial-section::before {
    content: "";
    display: block;
    background-color: rgba(64, 77, 128, 0.68);
    mix-blend-mode: multiply;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}

.page-home .testimonial-section .inner {
  position: relative;
  width: 47.9375%;
  min-height: 35.75rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .inner {
    width: 100%;
    max-width: 600px;
    min-height: auto;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 20px;
  }
}

.page-home .testimonial-section .inner::before {
  content: "";
  display: block;
  width: 46.6rem;
  background: url("../images/testimonial-section.png") left bottom no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 107.8226857888%;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .inner::before {
    display: none;
  }
}

.page-home .testimonial-section .inner > * {
  width: 100%;
}

.page-home .testimonial-section .section-title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .section-title {
    font-weight: 700;
  }
}

.page-home .testimonial-section .testimonials {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.75rem;
  padding: 0 3.5rem;
  position: relative;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .testimonials {
    padding: 0 15px;
    margin-bottom: 20px;
  }
}

.page-home .testimonial-section .testimonials .slick-slide {
  padding: 0 2rem;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .testimonials .slick-slide {
    padding: 0;
  }

  .page-home .testimonial-section .testimonials .slick-slide > * {
    max-width: 90%;
    margin: auto;
  }
}

.page-home .testimonial-section .testimonials .slick-arrow {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  z-index: 1;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .testimonials .slick-arrow {
    width: 40px;
    height: 40px;
  }
}

.page-home .testimonial-section .testimonials .slick-arrow::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: url("../images/slide-arrow.png") center/contain no-repeat;
}

.page-home .testimonial-section .testimonials .slick-arrow.slick-prev {
  left: 0;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .testimonials .slick-arrow.slick-prev {
    left: -15px;
  }
}

.page-home .testimonial-section .testimonials .slick-arrow.slick-next {
  right: 0;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .testimonials .slick-arrow.slick-next {
    right: -15px;
  }
}

.page-home .testimonial-section .testimonials .slick-arrow.slick-next::before {
  transform: scale(-1);
}

.page-home .testimonial-section blockquote {
  margin: 0;
  font-family: "Playfair", serif;
  font-size: 1.6rem;
  line-height: 1.13;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section blockquote {
    font-size: 16px;
  }
}

.page-home .testimonial-section blockquote > * {
  margin-bottom: 0;
}

.page-home .testimonial-section .review-btn {
  display: block;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  width: 23rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.24;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
  background-color: #404d80;
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1279.98px) {
  .page-home .testimonial-section .review-btn {
    width: 230px;
    padding: 5px 20px;
    font-size: 15px;
    border-width: 1px;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  }
}


.socialcontact {
  margin-bottom: 20px;
  text-align: center;
}

.socialcontact a {
  text-decoration: none;
}