/* MabryPro */
@font-face {
  font-family: "MabryPro";
  src: url("../fonts/MabryPro/MabryPro.woff2") format("woff2"),
       url("../fonts/MabryPro/MabryPro.woff") format("woff"),
       url("../fonts/MabryPro/MabryPro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* PPFormula Condensed Black */
@font-face {
  font-family: "PPFormula";
  src: url("../fonts/PPFormula/PPFormula-CondensedBlack.woff2") format("woff2"),
       url("../fonts/PPFormula/PPFormula-CondensedBlack.woff") format("woff"),
       url("../fonts/PPFormula/PPFormula-CondensedBlack.ttf") format("truetype"),
       url("../fonts/PPFormula/PPFormula-CondensedBlack.otf") format("opentype");
  font-weight: 900; /* adjust if needed */
  font-style: normal;
  font-display: swap;
}

/* PPWriter Thin */
@font-face {
  font-family: "PPWriter";
  src: url("../fonts/PPWriter/PPWriter-Thin.woff2") format("woff2"),
       url("../fonts/PPWriter/PPWriter-Thin.woff") format("woff"),
       url("../fonts/PPWriter/PPWriter-Thin.ttf") format("truetype"),
       url("../fonts/PPWriter/PPWriter-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family: MabryPro, Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  color: #465660;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
}
p {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}
address {
  font-style: normal;
  line-height: inherit;
}
address,
dl,
ol,
ul {
  margin-bottom: 1rem;
}
dl,
ol,
ul {
  margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  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: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #097abf;
  background-color: transparent;
}
a,
a:hover {
  text-decoration: none;
}
a:hover {
  color: #3cce93;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono,
    Courier New, monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  border-style: none;
}
img,
svg {
  vertical-align: middle;
}
svg {
  overflow: hidden;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #b5bbbf;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 2rem;
  font-family: PPWriter, novel-display, serif;
  font-weight: 900;
  line-height: 1.2381;
  color: #313e48;
}
.h1,
h1 {
  font-size: 3.6rem;
  font-family: PPFormula, novel-display, serif;
  text-transform: uppercase;
}
.h2,
h2 {
  font-size: 2.8rem;
  font-family: PPFormula, novel-display, serif;
  text-transform: uppercase;
}
.h3,
h3 {
  font-size: 2.6rem;
}
.h4,
h4 {
  font-size: 2.2rem;
}
.h5,
h5 {
  font-size: 1.8rem;
}
.h6,
h6 {
  font-size: 1.6rem;
}
.lead {
  font-size: 2rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
}
.display-1,
.display-2 {
  font-weight: 300;
  line-height: 1.2381;
}
.display-2 {
  font-size: 5.5rem;
}
.display-3 {
  font-size: 4.5rem;
}
.display-3,
.display-4 {
  font-weight: 300;
  line-height: 1.2381;
}
.display-4 {
  font-size: 3.5rem;
}
hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 0;
  border-top: 0.1rem solid #dadddf;
}
.small,
small {
  font-size: 1.2rem;
  font-weight: 400;
}
.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-inline,
.list-unstyled,
ol:not([class]),
ul:not([class]) {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.blockquote-footer {
  display: block;
  font-size: 1.2rem;
  color: #7e8890;
}
.blockquote-footer:before {
  content: "\2014\A0";
}
.banner-slider > .swiper-pagination,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xx {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .banner-slider > .swiper-pagination,
  .container,
  .container-sm {
    max-width: 570px;
  }
}
@media (min-width: 768px) {
  .banner-slider > .swiper-pagination,
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .banner-slider > .swiper-pagination,
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .banner-slider > .swiper-pagination,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .banner-slider > .swiper-pagination,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xx {
    max-width: 1170px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto,
.col-xx,
.col-xx-1,
.col-xx-2,
.col-xx-3,
.col-xx-4,
.col-xx-5,
.col-xx-6,
.col-xx-7,
.col-xx-8,
.col-xx-9,
.col-xx-10,
.col-xx-11,
.col-xx-12,
.col-xx-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1440px) {
  .col-xx {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xx-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xx-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xx-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xx-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xx-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xx-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xx-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xx-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xx-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xx-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xx-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xx-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xx-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xx-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xx-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xx-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xx-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xx-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xx-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xx-first {
    order: -1;
  }
  .order-xx-last {
    order: 13;
  }
  .order-xx-0 {
    order: 0;
  }
  .order-xx-1 {
    order: 1;
  }
  .order-xx-2 {
    order: 2;
  }
  .order-xx-3 {
    order: 3;
  }
  .order-xx-4 {
    order: 4;
  }
  .order-xx-5 {
    order: 5;
  }
  .order-xx-6 {
    order: 6;
  }
  .order-xx-7 {
    order: 7;
  }
  .order-xx-8 {
    order: 8;
  }
  .order-xx-9 {
    order: 9;
  }
  .order-xx-10 {
    order: 10;
  }
  .order-xx-11 {
    order: 11;
  }
  .order-xx-12 {
    order: 12;
  }
  .offset-xx-0 {
    margin-left: 0;
  }
  .offset-xx-1 {
    margin-left: 8.33333%;
  }
  .offset-xx-2 {
    margin-left: 16.66667%;
  }
  .offset-xx-3 {
    margin-left: 25%;
  }
  .offset-xx-4 {
    margin-left: 33.33333%;
  }
  .offset-xx-5 {
    margin-left: 41.66667%;
  }
  .offset-xx-6 {
    margin-left: 50%;
  }
  .offset-xx-7 {
    margin-left: 58.33333%;
  }
  .offset-xx-8 {
    margin-left: 66.66667%;
  }
  .offset-xx-9 {
    margin-left: 75%;
  }
  .offset-xx-10 {
    margin-left: 83.33333%;
  }
  .offset-xx-11 {
    margin-left: 91.66667%;
  }
}
.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 {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.gf_label_sr_only .gfield_label,
.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.gf_label_sr_only .gfield_label:active,
.gf_label_sr_only .gfield_label:focus,
.screen-reader-text:active,
.screen-reader-text:focus,
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
[class*=" icon-"],
[class^="icon-"] {
  font-family: icomoon !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-right-up-arrow:before {
  content: "\E92B";
}
.icon-info-alt:before {
  content: "\E92A";
  color: #3cce92;
}
.icon-star-stroke:before {
  content: "\E925";
}
.icon-star:before {
  content: "\E924";
}
.icon-filter:before {
  content: "\E923";
}
.icon-mail:before {
  content: "\E926";
}
.icon-template:before {
  content: "\E927";
}
.icon-white-paper:before {
  content: "\E928";
}
.icon-data-sheets:before {
  content: "\E929";
}
.icon-webinar:before {
  content: "\E921";
}
.icon-case-studies:before {
  content: "\E922";
}
.icon-info:before {
  content: "\E91F";
}
.icon-calendar-alt:before {
  content: "\E920";
}
.icon-phone:before {
  content: "\E91E";
}
.icon-globe:before {
  content: "\E91D";
}
.icon-tick-blob .path1:before {
  content: "\E91B";
  color: #3cce92;
}
.icon-tick-blob .path2:before {
  content: "\E91C";
  margin-left: -1.025390625em;
  color: #fff;
}
.icon-play .path1:before {
  content: "\E918";
  color: #097abf;
}
.icon-play .path2:before {
  content: "\E91A";
  margin-left: -1.01953125em;
  color: #fff;
}
.icon-right-arrow:before {
  content: "\E900";
  color: #3cce92;
}
.icon-icon-tick:before {
  content: "\E906";
  color: #3cce92;
}
.icon-play-button:before {
  content: "\E907";
  color: #3cce92;
}
.icon-quote-icon-2:before {
  content: "\E908";
  color: #3cce92;
}
.icon-quote-icon:before {
  content: "\E909";
  color: #3cce92;
}
.icon-twitter:before {
  content: "\E90B";
}
.icon-linkedin:before {
  content: "\E915";
}
.icon-youtube-1:before {
  content: "\E916";
}
.icon-Facebook:before {
  content: "\E917";
}
.icon-quote:before {
  content: "\E90C";
}
.icon-resource:before {
  content: "\E90D";
}
.icon-search:before {
  content: "\E90F";
}
.icon-star-alt:before {
  content: "\E910";
}
.icon-tick:before {
  content: "\E912";
}
.icon-twitter1 .path1:before {
  content: "\E913";
  color: #55acee;
}
.icon-twitter1 .path2:before {
  content: "\E914";
  margin-left: -1em;
  color: #fff;
}
.icon-ext-link:before {
  content: "\E90A";
}
.icon-lock:before {
  content: "\E919";
}
.icon-chev-down:before {
  content: "\E901";
}
.icon-chev-left:before {
  content: "\E902";
}
.icon-chev-right:before {
  content: "\E903";
}
.icon-chev-up:before {
  content: "\E904";
}
.icon-close:before {
  content: "\E905";
}
.icon-pin:before {
  content: "\E90E";
}
.icon-plus:before {
  content: "\E911";
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--swiper-navigation-size);
  letter-spacing: 0;
  text-transform: none;
  font-variant: normal;
  line-height: 1;
}
.swiper-button-prev {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after {
  content: "prev";
}
.swiper-button-next {
  right: 10px;
  left: auto;
}
.swiper-button-next:after {
  content: "next";
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity 0.3s;
  transform: translateZ(0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
@keyframes slideFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutRight {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(3rem);
  }
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-50%, -50%, 0) rotate(1turn);
  }
}
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
.animate__leftFull {
  animation-name: leftFull;
}
@keyframes leftFull {
  0% {
    opacity: 0;
    left: -100%;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
.animate__RightFull {
  animation-name: RightFull;
}
@keyframes RightFull {
  0% {
    opacity: 0;
    right: -100%;
  }
  to {
    opacity: 1;
    right: 0;
  }
}
.animate__opacityAnimation {
  animation-name: opacityAnimation;
  animation-duration: 0.5s;
  opacity: 1 !important;
  transition-timing-function: linear;
}
@keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  to {
    opacity: 1;
  }
}
@keyframes line-progress {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes card-zoom {
  0% {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes moveLogosLeft {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes bounce {
  0% {
    transform: none;
  }
  to {
    transform: translateY(-2rem);
  }
}
.animated-texts[data-animate-to="0"] .animated-texts__item {
  transform: translateY(0);
}
.animated-texts[data-animate-to="1"] .animated-texts__item {
  transform: translateY(-100%);
}
.animated-texts[data-animate-to="2"] .animated-texts__item {
  transform: translateY(-200%);
}
.animated-texts[data-animate-to="3"] .animated-texts__item {
  transform: translateY(-300%);
}
.animated-texts[data-animate-to="4"] .animated-texts__item {
  transform: translateY(-400%);
}
.animated-texts__row {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 4.2rem;
  vertical-align: top;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .animated-texts__row {
    height: 5.2rem;
  }
}
@media (min-width: 992px) {
  .animated-texts__row {
    height: 6.8rem;
  }
}
.animated-texts__item {
  align-self: flex-start;
  background: #074e62;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .animated-texts__item {
    transition: none;
  }
}
.animated-texts .comma-sep {
  margin-left: -1.25%;
}
.aspect-ratio,
.wp-block-video {
  position: relative;
  overflow: hidden;
}
.aspect-ratio:after,
.wp-block-video:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.aspect-ratio-28:after {
  padding-bottom: 95.19231%;
}
.aspect-ratio-36:after {
  padding-bottom: 36.03604%;
}
.aspect-ratio-43:after {
  padding-bottom: 43.47826%;
}
.aspect-ratio-55:after {
  padding-bottom: 55.55556%;
}
.aspect-ratio-57:after,
.wp-block-video:after {
  padding-bottom: 56.25%;
}
.aspect-ratio-58:after {
  padding-bottom: 58.33333%;
}
.aspect-ratio-64:after {
  padding-bottom: 63.96396%;
}
.aspect-ratio-66:after {
  padding-bottom: 66.66667%;
}
.aspect-ratio-72:after {
  padding-bottom: 71.82131%;
}
.aspect-ratio-77:after {
  padding-bottom: 77.77778%;
}
.aspect-ratio-83:after {
  padding-bottom: 83.33333%;
}
.aspect-ratio-84:after {
  padding-bottom: 83.72093%;
}
.aspect-ratio-85:after {
  padding-bottom: 85%;
}
.aspect-ratio-90:after {
  padding-bottom: 90.27778%;
}
.aspect-ratio-94:after {
  padding-bottom: 93.75%;
}
.aspect-ratio-101:after {
  padding-bottom: 104.34783%;
}
@media (min-width: 992px) {
  .aspect-ratio-lg-28:after {
    padding-bottom: 95.19231%;
  }
  .aspect-ratio-lg-43:after {
    padding-bottom: 43.47826%;
  }
}
.aspect-ratio-item,
.wp-block-video > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.aspect-ratio-item.o-f-p,
.wp-block-video > video.o-f-p {
  object-position: 0 0;
}
.aspect-ratio-item.o-f-t-c,
.wp-block-video > video.o-f-t-c {
  object-position: 50% 0;
}
.wp-block-quote {
  padding-left: 1.5rem;
  border-left: 0.4rem solid #3cce93;
  color: #313e48;
  font-family: MabryPro,Inter,sans-serif;
  font-size: 2rem;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote cite {
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.5;
}
.disable-page-scrolling {
  overflow: hidden !important;
}
.disable-page-scrolling.is-touch .page-container {
  position: fixed;
  width: 100%;
  z-index: 99999;
}
@media (min-width: 992px) {
  .disable-page-scrolling.is-touch .page-container {
    position: relative;
    top: 0 !important;
  }
}
@media (min-width: 992px) {
  .disable-page-scrolling {
    overflow: inherit !important;
  }
}
.play-btn .path1:before {
  color: inherit;
}
.resize-active *,
.resize-active :after,
.resize-active :before {
  transition: none !important;
}
.c-b-l {
  padding-left: 1.5rem;
  border-left: 0.4rem solid #3cce93;
}
.cards-wrap .card {
  border: 1px solid #dadddf;
}
@media (min-width: 768px) {
  .cards-wrap .card:not(:last-child) {
    border-right: 0;
  }
}
.hr-divider.hr-dark {
  border-top: 1px solid #465660;
}
hr.h-4 {
  border-top-width: 0.4rem;
}
hr.w-50 {
  width: 5rem;
}
.gradient-text {
  background: #37aaf0;
  background: linear-gradient(90deg, #37aaf0 12%, #3cce92 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: pre;
}
.t-para {
  font-size: 1.8rem;
}
.t-para.d-block {
  margin-bottom: 1.5rem;
}
.form-card .t-para {
  margin-bottom: 1rem;
  display: block;
}
.form-card .t-para:last-child {
  margin-top: 3rem;
  margin-bottom: 0;
}
.ws-nowrap,
.ws-nowrap-wrap h3,
.ws-nowrap-wrap h4 {
  white-space: nowrap;
}
.text-white {
  color: #fff;
}
::-moz-selection {
  background: #097abf;
  color: #fff;
}
::selection {
  background: #097abf;
  color: #fff;
}
.elem-stacked,
.has-overlay:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
.has-overlay:before {
  content: "";
  background: rgba(7, 78, 98, 0.25);
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .has-overlay:before {
    transition: none;
  }
}
.has-overlay.ol-gradient:before {
  opacity: 0.38;
  background: linear-gradient(143deg, #13405b -2%, #3cce92 72%);
}
.hover-reset-overlay:hover:before {
  opacity: 0 !important;
}
.elem-md-stacked {
  position: relative;
}
@media (min-width: 768px) {
  .elem-md-stacked {
    position: absolute;
  }
}
.is-processing {
  position: relative;
  pointer-events: none;
}
.is-processing:before {
  animation: spinner 0.6s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  z-index: 1;
  content: "";
  display: block;
  border: 0.4rem solid hsla(0, 0%, 100%, 0.25);
  border-top: 0.4rem solid #fff;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .is-processing:before {
    transition: none;
  }
}
.is-processing:after {
  pointer-events: none;
  background: #3cce93;
  border-color: #3cce93;
  border-radius: 5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
}
.is-processing:focus {
  outline: 0;
}
.is-processing.is-white:before {
  border-color: #3cce93;
  border-top-color: rgba(60, 206, 147, 0.5);
}
.is-processing.is-white:after {
  background: #fff;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.pointer-events-none {
  pointer-events: none !important;
}
.pointer-events-auto {
  pointer-events: auto !important;
}
.zindex-back {
  z-index: -1 !important;
}
.zindex-back-2 {
  z-index: -2 !important;
}
.zindex-unset {
  z-index: 0 !important;
}
.zindex-front {
  z-index: 1 !important;
}
.zindex-front-2 {
  z-index: 2 !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.b-0 {
  border: 0 !important;
}
.b-w-2 {
  border-width: 0.2rem !important;
}
.br-50 {
  border-radius: 50% !important;
}
.br-3 {
  border-radius: 0.3rem !important;
}
.br-6 {
  border-radius: 0.6rem !important;
}
.br-8 {
  border-radius: 0.8rem !important;
}
.btr-8 {
  border-radius: 0.8rem 0.8rem 0 0 !important;
}
.br-10 {
  border-radius: 1rem !important;
}
.br-14 {
  border-radius: 1.4rem !important;
}
.br-20 {
  border-radius: 2rem;
}
.btr-10 {
  border-radius: 1rem 1rem 0 0;
}
.btr-20 {
  border-radius: 2rem 2rem 0 0;
}
.brb-20 {
  border-radius: 0 2rem 2rem 0;
}
.btl-20 {
  border-radius: 2rem 0 0 2rem;
}
@media (min-width: 768px) {
  .brb-md-20 {
    border-radius: 0 2rem 2rem 0;
  }
  .br-md-30 {
    border-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .br-lg-24 {
    border-radius: 2.4rem;
  }
  .br-lg-30 {
    border-radius: 3rem;
  }
}
.bs-10 {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1) !important;
}
.nice-select:before {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bb-1 {
  border-bottom: 0.1rem solid #465660;
}
.b-line {
  border-left: 0.3rem solid #097abf;
}
.b-line-r {
  border-right: 0.3rem solid #097abf;
  border-left: 0;
}
.b-line-c-g {
  border-color: #3cce93;
}
.b-line-c-f {
  border-color: #e6edef;
}
.b-line-w-2 {
  border-width: 0.2rem;
}
.b-line-w-4 {
  border-width: 0.4rem;
}
.b-line-h-105 {
  height: 10.5rem;
}
.b-line-title {
  position: relative;
  padding-left: 1.7rem;
}
.b-line-title:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #3cce93;
  height: 11rem;
  width: 0.4rem;
}
.flex-md-row-reverse .b-line-title:before {
  right: 0;
  left: auto;
}
.b-line-title.b-h-205:before {
  height: 20.5rem;
}
.b-line-title.b-h-80-per:before {
  height: 78%;
}
.b-line-title.b-w-6:before {
  width: 0.6rem;
}
.object-cover {
  object-fit: cover !important;
}
.link-primary {
  color: #097abf !important;
}
.link-secondary {
  color: #3cce93 !important;
}
.link-dark {
  color: #313e48 !important;
}
.link-white {
  color: #fff !important;
}
.link-faded {
  color: #b5bbbf !important;
}
.link-faded-dark {
  color: #465660 !important;
}
.link-hover:hover {
  color: #074e62 !important;
}
.link-hover-secondary:hover {
  color: #77dcb3 !important;
}
.link-hover-light:hover {
  color: #fff !important;
}
.link-box {
  background: #e6f2f9;
  color: #097abf;
  padding: 0.3rem 0.7rem;
}
.link-stretched:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
}
.link-decoration {
  text-decoration: underline;
}
.link-toggle .icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .link-toggle .icon {
    transition: none;
  }
}
.link-toggle.is-active .icon {
  transform: rotate(180deg);
}
.media-35 {
  flex: 0 0 3.5rem;
  max-width: 3.5rem;
}
.media-40 {
  flex: 0 0 4rem;
  max-width: 4rem;
}
.media-60 {
  flex: 0 0 6rem;
  max-width: 6rem;
}
.media-90 {
  flex: 0 0 9rem;
  max-width: 9rem;
}
@media (min-width: 768px) {
  .media-md-60 {
    flex: 0 0 6rem;
    max-width: 6rem;
  }
}
@media (min-width: 992px) {
  .media-lg-90 {
    flex: 0 0 9rem;
    max-width: 9rem;
  }
}
@media (min-width: 1200px) {
  .media-xl-60 {
    flex: 0 0 6rem;
    max-width: 6rem;
  }
}
.wh-70 {
  height: 7rem;
  width: 7rem;
}
.w-25 {
  flex: 0 0 2.5rem;
  width: 2.5rem;
}
.w-40 {
  flex: 0 0 4rem;
  width: 4rem;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
@media (min-width: 768px) {
  .h-md-auto {
    height: auto !important;
  }
}
.max-height-40 {
  max-height: 4rem !important;
  width: auto;
}
@media (min-width: 992px) {
  .max-height-lg-99 {
    max-height: 9.9rem !important;
    width: auto;
  }
}
.mw-60 {
  flex: 0 0 6rem;
  max-width: 6rem !important;
}
.mw-95 {
  max-width: 9.5rem !important;
}
.mxw-350 {
  max-width: 35rem !important;
}
.height-vh-55 {
  height: 55vh;
}
@media (min-width: 992px) {
  .min-height-lg-35 {
    min-height: 35rem !important;
  }
}
@media (min-width: 768px) {
  .w-md-40 {
    flex: 0 0 4rem;
    width: 4rem;
  }
}
.object-fit-fill {
  object-fit: fill !important;
  width: auto;
  max-width: 8rem;
  margin-left: 2rem;
}
.sr-skip-link {
  top: 1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  padding: 1.4rem 3.1rem;
  background: #097abf;
  border: 0.1rem solid #097abf;
  border-radius: 0.6rem;
  color: #fff;
  text-align: center;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sr-skip-link {
    transition: none;
  }
}
.sr-skip-link:hover {
  background: #b5d7ec;
  border-color: #b5d7ec;
  color: #fff;
}
.sr-skip-link:focus {
  position: absolute;
  height: 3rem;
  z-index: 1031;
  outline: 0;
}
@media (min-width: 1200px) {
  .sr-skip-link {
    top: 2rem;
  }
  .sr-skip-link:focus {
    height: 4rem;
  }
}
.tagline {
  color: #3cce93;
  font-family: MabryPro,Inter,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.tagline,
.tagline:first-child {
  margin-bottom: 1rem;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1440px) {
  .text-xx-left {
    text-align: left !important;
  }
  .text-xx-right {
    text-align: right !important;
  }
  .text-xx-center {
    text-align: center !important;
  }
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tc-white {
  color: #fff !important;
}
.tc-muted {
  color: #b5bbbf !important;
}
.tc-muted-500 {
  color: #9099a0 !important;
}
.tc-primary {
  color: #097abf !important;
}
.tc-primary-teal {
  color: #074e62 !important;
}
.tc-secondary {
  color: #3cce93 !important;
}
.tc-danger {
  color: #e91d36 !important;
}
.tc-dark {
  color: #313e48 !important;
}
.tc-dark-400 {
  color: #b5bbbf !important;
}
.tc-dark-700 {
  color: #465560 !important;
}
.tc-dark-900 {
  color: #313e48 !important;
}
.tc-grey {
  color: #465660 !important;
}
.tc-grey-300,
.tc-grey-300 > :not([class]) {
  color: #dadddf !important;
}
.tc-inherit {
  color: inherit !important;
}
@media (min-width: 768px) {
  .tc-md-white {
    color: #fff !important;
  }
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.ff-base {
  font-family: MabryPro, Inter, sans-serif !important;
}
.ff-alt {
  font-family: MabryPro,Inter,sans-serif !important;
}
.l-h-1 {
  line-height: 1 !important;
}
.l-h-24 {
  line-height: 2.4rem !important;
}
.l-h-26 {
  line-height: 2.6rem !important;
}
.ts-10 {
  font-size: 1rem !important;
  line-height: 1.6;
}
.ts-12 {
  font-size: 1.2rem !important;
  line-height: 1.33333;
}
.ts-14 {
  font-size: 1.4rem !important;
  line-height: 1.57143;
}
.ts-16 {
  font-size: 1.6rem !important;
}
.ts-18 {
  font-size: 1.8rem !important;
  line-height: 1.44444;
}
.ts-20 {
  font-size: 2rem !important;
  line-height: 1.4;
}
.ts-22 {
  font-size: 2.2rem !important;
  line-height: 1.27273;
}
.ts-24 {
  font-size: 2.4rem !important;
}
.ts-lg-24 {
  font-size: 2.2rem !important;
  line-height: 1.27273;
}
.ts-32 {
  font-size: 3.2rem !important;
}
.ts-50 {
  font-size: 5rem !important;
}
.ts-80 {
  font-size: 8rem !important;
}
.ns-64 {
  font-size: 4.8rem !important;
  line-height: 0.875;
}
@media (min-width: 768px) {
  .ts-md-16 {
    font-size: 1.6rem !important;
    line-height: 1.625;
  }
  .ts-md-18 {
    font-size: 1.8rem !important;
    line-height: 1.44444;
  }
  .ts-md-40 {
    font-size: 4rem !important;
  }
  .ts-md-48 {
    font-size: 4.8rem !important;
  }
  .ts-md-60 {
    font-size: 6rem !important;
  }
}
@media (min-width: 992px) {
  .ts-lg-18 {
    font-size: 1.8rem !important;
    line-height: 1.44444;
  }
  .ts-lg-20 {
    font-size: 2rem !important;
  }
  .ts-lg-22 {
    font-size: 2.2rem !important;
    line-height: 1.27273;
  }
  .ts-lg-24 {
    font-size: 2.4rem !important;
    line-height: 1.25;
  }
}
@media (min-width: 1200px) {
  .ts-xl-16 {
    font-size: 1.6rem !important;
    line-height: 1.625;
  }
  .ns-64 {
    font-size: 6.4rem !important;
  }
  .ts-xl-80 {
    font-size: 8rem !important;
  }
}
img {
  height: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a,
button,
input,
textarea {
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  a,
  button,
  input,
  textarea {
    transition: none;
  }
}
iframe {
  max-width: 100% !important;
}
b,
strong {
  font-weight: 700;
}
a:not([class]) {
  text-decoration: underline;
}
a[href^="mailto:"],
a[href^="tel:"] {
  text-decoration: none;
}
a.active {
  color: #3cce93;
}
html {
  font-size: 62.5%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100%;
}
@media (min-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
blockquote:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
ol:last-child,
p:last-child,
ul:last-child {
  margin-bottom: 0;
}
.heading-h1 h2 {
  font-size: 3.6rem;
  line-height: 1.16667;
}
.heading-h1 h2:last-child {
  margin-bottom: 0;
}
.h1,
.heading-h1 h2,
h1 {
  margin-bottom: 2rem;
  line-height: 1.16667;
}
@media (min-width: 768px) {
  .h1,
  .heading-h1 h2,
  h1 {
    margin-bottom: 2.5rem;
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .h1,
  .heading-h1 h2,
  h1 {
    font-size: 4.8rem;
    line-height: 1.125;
  }
}
@media (min-width: 1200px) {
  .h1,
  .heading-h1 h2,
  h1 {
    margin-bottom: 3rem;
    font-size: 5.6rem;
    line-height: 1.20833;
  }
}
.h2,
h2 {
  margin-bottom: 3rem;
  line-height: 1.28571;
}
@media (max-width: 575.98px) {
  .h2 br,
  h2 br {
    display: none;
  }
}
@media (min-width: 768px) {
  .h2,
  h2 {
    font-size: 3.6rem;
    line-height: 1.22222;
  }
}
@media (min-width: 992px) {
  .h2,
  h2 {
    margin-bottom: 3rem;
    font-size: 4rem;
    line-height: 1.15;
  }
}
@media (min-width: 1200px) {
  .h2,
  h2 {
    margin-bottom: 4rem;
    font-size: 4.8rem;
    line-height: 1.16667;
  }
}
.h3,
h3 {
  line-height: 1.15385;
}
@media (min-width: 992px) {
  .h3,
  h3 {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
    line-height: 1.21875;
  }
}
.h4,
h4 {
  line-height: 1.27273;
}
@media (min-width: 992px) {
  .h4,
  h4 {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    line-height: 1.41667;
  }
}
.h5,
h5 {
  margin-bottom: 1.5rem;
  line-height: 1.44444;
}
@media (min-width: 992px) {
  .h5,
  h5 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.h6,
h6 {
  margin-bottom: 1rem;
  line-height: 1.44444;
}
blockquote {
  font-family: MabryPro,Inter,sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.anchors-nav {
  margin-left: calc(50% - 50vw);
  background: #fff;
  box-shadow: inset 0 -1px 0 0 #dadddf, inset 0 1px 0 0 #dadddf;
  height: 5rem;
  width: 100vw;
}
.anchors-nav.is_stuck {
  border-top: 0;
  z-index: 1029;
}
@media (min-width: 992px) {
  .anchors-nav {
    height: auto;
  }
  .anchors-nav.anchors-nav-vertical {
    margin: 0;
    background: #f8f8f8;
    box-shadow: none;
    width: auto;
  }
  .anchors-nav .anchor-list {
    position: static;
    pointer-events: auto;
    opacity: 1;
    padding: 0;
    background: transparent;
    box-shadow: none;
    float: none;
    visibility: visible;
    transform: none !important;
  }
}
.nav-anchor-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -1.5rem;
  padding: 1.5rem;
  border: 0;
  font: 500 1.4rem/1.2 MabryPro, Inter, sans-serif;
  height: 5rem;
  outline: 0;
  width: calc(100% + 3rem);
}
.nav-anchor-label:before {
  margin-top: 0;
}
.nav-anchor-label > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.anchor-list {
  overflow-x: auto;
  max-height: 40rem;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .anchor-list {
    transition: none;
  }
}
.anchor-list.dropdown-menu {
  left: 50%;
  min-width: 24rem;
  transform: translateX(-50%) translateY(1.5rem);
}
.dropdown.show .anchor-list.dropdown-menu {
  transform: translateX(-50%) translateY(0);
}
.anchor-list a:not(.btn) {
  display: block;
  color: #313e48;
  padding: 0.5rem 2rem;
  font-size: inherit;
  font-weight: 500;
  white-space: nowrap;
}
.anchor-list a:not(.btn).is-active,
.anchor-list a:not(.btn).is-active:hover {
  color: #3cce93;
}
@media (min-width: 992px) {
  .anchor-list {
    overflow: inherit;
    margin-right: -2rem;
    margin-left: -2rem;
    max-height: inherit;
    width: calc(100% + 2.6rem);
  }
  .dropdown.show .anchor-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
  }
  .anchor-list li {
    margin-bottom: 0;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .anchor-list li > a:not(.btn) {
    position: relative;
    padding: 2.2rem 0;
    color: #7e8890;
    font-weight: 700;
  }
  .anchor-list li > a:not(.btn):after {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    content: "";
    background: #3cce93;
    height: 0.4rem;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .anchor-list li > a:not(.btn):after {
    transition: none;
  }
}
@media (min-width: 992px) {
  .anchors-nav-vertical .anchor-list li > a:not(.btn):after {
    display: none;
  }
  .anchor-list li > a:not(.btn):hover {
    color: #3cce93;
  }
  .anchor-list li > a:not(.btn).is-active:after {
    opacity: 1;
  }
  .anchor-list li > a:not(.btn).is-active,
  .anchor-list li > a:not(.btn).is-active:hover {
    color: #313e48;
  }
}
.breadcrumbs {
  pointer-events: auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5;
}
.breadcrumbs a {
  color: #465660;
}
.breadcrumbs a:hover {
  color: #3cce93;
}
.breadcrumbs .icon,
.breadcrumbs .rank-math-breadcrumb .separator > .icon {
  margin: 0 0.2rem;
  font-size: 1rem;
}
.breadcrumbs .rank-math-breadcrumb .separator {
  position: relative;
  top: auto;
  left: auto;
}
.s-mt-n80 {
  margin-top: -5rem;
}
.s-mt-70 {
  margin-top: 3rem;
}
.s-py-40,
.s-py-mb-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.s-mb-40,
.s-py-mb-40 {
  margin-bottom: 4rem;
}
.s-py-50,
.s-py-mb-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-50,
.s-py-mb-50 {
  margin-bottom: 5rem;
}
.s-py-60,
.s-py-mb-60 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-60,
.s-py-mb-60 {
  margin-bottom: 5rem;
}
.s-py-70,
.s-py-mb-70 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-70,
.s-py-mb-70 {
  margin-bottom: 5rem;
}
.s-py-80,
.s-py-mb-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-80,
.s-py-mb-80 {
  margin-bottom: 5rem;
}
.s-py-90,
.s-py-mb-90 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-90,
.s-py-mb-90 {
  margin-bottom: 5rem;
}
.s-py-100,
.s-py-mb-100 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-mb-100,
.s-py-mb-100 {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .s-py-70,
  .s-py-mb-70 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .s-mb-70,
  .s-py-mb-70 {
    margin-bottom: 6rem;
  }
  .s-py-80,
  .s-py-mb-80 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
  .s-mb-80,
  .s-py-mb-80 {
    margin-bottom: 6.5rem;
  }
  .s-py-90,
  .s-py-mb-90 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .s-mb-90,
  .s-py-mb-90 {
    margin-bottom: 7rem;
  }
  .s-py-100,
  .s-py-mb-100 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-mb-100,
  .s-py-mb-100 {
    margin-bottom: 8rem;
  }
  .s-mt-n80 {
    margin-top: -6.5rem;
  }
  .s-py-md-70 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .s-py-md-80 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-py-md-100 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .s-mt-n5 {
    margin-top: -2rem;
  }
}
@media (min-width: 992px) {
  .s-py-lg-120 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .s-mt-n5 {
    margin-top: -3rem;
  }
}
@media (min-width: 1200px) {
  .s-py-60,
  .s-py-mb-60 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .s-mb-60,
  .s-py-mb-60 {
    margin-bottom: 6rem;
  }
  .s-py-70,
  .s-py-mb-70 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .s-mb-70,
  .s-py-mb-70 {
    margin-bottom: 7rem;
  }
  .s-py-80,
  .s-py-mb-80 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-mb-80,
  .s-py-mb-80 {
    margin-bottom: 8rem;
  }
  .s-py-90,
  .s-py-mb-90 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .s-mb-90,
  .s-py-mb-90 {
    margin-bottom: 9rem;
  }
  .s-py-100,
  .s-py-mb-100 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .s-mb-100,
  .s-py-mb-100 {
    margin-bottom: 10rem;
  }
  .s-mt-n80 {
    margin-top: -8rem;
  }
  .s-py-xl-80 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-py-xl-150 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .s-mt-70 {
    margin-top: 60px;
  }
  .s-mt-n2 {
    margin-top: -2rem;
  }
  .s-mt-n3 {
    margin-top: -3rem;
  }
  .s-mt-n4 {
    margin-top: -4rem;
  }
  .s-mt-n5 {
    margin-top: -5rem;
  }
}
.shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.shape svg {
  width: 100%;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bg-light-gray .shape svg path[fill="#D6E9F5"] {
  fill: #eff0f0;
}
.bg-primary-teal .shape svg path {
  fill: #206072;
}
.shape.h-full svg {
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .shape.lines-dots svg {
    width: auto;
  }
}
.shape.a-tr {
  top: 0;
  right: 0;
}
.shape.a-t {
  top: 0;
}
.shape.a-r {
  right: 0;
}
.shape.a-b {
  bottom: 0;
}
.shape.a-l {
  left: 0;
}
.has-separator {
  padding-top: 6.25%;
}
@media (min-width: 768px) {
  .has-separator {
    padding-top: 3.33333%;
  }
}
.has-separator-end {
  padding-bottom: 15.625%;
}
.has-separator-end.a-b {
  bottom: 0;
}
@media (min-width: 768px) {
  .has-separator-end {
    padding-bottom: 6.94444%;
  }
}
.has-separator-mt-top {
  margin-top: 25%;
}
@media (min-width: 768px) {
  .has-separator-mt-top {
    margin-top: 10.41667%;
  }
}
.separator {
  position: absolute;
  top: -0.1rem;
  left: 0;
  line-height: 1;
  width: 101%;
}
.separator.align-end {
  top: auto;
  bottom: -0.1rem;
}
.separator svg {
  width: 100%;
  height: auto;
}
.separator.seperator-ntop {
  width: 100%;
  top: -2rem;
}
@media (min-width: 500px) {
  .separator.seperator-ntop {
    top: -3rem;
  }
}
@media (min-width: 576px) {
  .separator.seperator-ntop {
    top: -3.6rem;
  }
}
@media (min-width: 768px) {
  .separator.seperator-ntop {
    top: -4.8rem;
  }
}
@media (min-width: 1200px) {
  .separator.seperator-ntop {
    top: -7.5rem;
  }
}
@media (min-width: 1440px) {
  .separator.seperator-ntop {
    top: -8.5rem;
  }
}
@media (min-width: 1625px) {
  .separator.seperator-ntop {
    top: -10.2rem;
  }
}
@media (min-width: 768px) {
  .list-inline.app-module-list {
    margin-right: auto;
    margin-left: auto;
    max-width: 55rem;
  }
  .list-inline.app-module-list > ul {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
  }
}
.modules-features-list > li {
  position: relative;
  margin-bottom: 6rem;
  width: 100%;
}
.modules-features-list > li:last-child {
  margin-bottom: 0;
}
.modules-features-list > li:not(:last-child):after {
  position: absolute;
  right: 50%;
  bottom: -4.2rem;
  content: "\E911";
  color: #3cce93;
  font-size: 2.4rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateX(50%);
}
@media (min-width: 576px) {
  .modules-features-list > li {
    margin-bottom: 0;
    flex: 0 0 14rem;
    max-width: 14rem;
  }
  .modules-features-list > li:not(:last-child):after {
    top: 50%;
    right: 0;
    bottom: auto;
    transform: translateX(3.7rem) translateY(-50%);
  }
}
.am-card {
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
  background-color: #065586;
  border-radius: 1.5rem;
  min-height: 13.5rem;
}
@media (min-width: 576px) {
  .am-card {
    padding: 1.2rem 0.8rem;
    border-radius: 0.6rem;
    font-size: 1.2rem;
    line-height: 1.33333;
  }
  .am-card:hover .am-card-hover-show {
    top: 50%;
    transform: translateY(-50%);
  }
  .am-card:hover .am-card-hover-hide {
    opacity: 0;
    transform: translateY(-100%);
  }
  .am-card-hover-hide {
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
  .am-card-hover-hide {
    transition: none;
  }
}
@media (min-width: 576px) {
  .am-card-hover-show {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1rem 0.8rem;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
  .am-card-hover-show {
    transition: none;
  }
}
@media (min-width: 576px) {
  .am-card-title {
    font-size: 1.6rem;
    font-family: MabryPro, Inter, sans-serif;
    line-height: 1.625;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
  .am-card-title {
    transition: none;
  }
}
@media (min-width: 768px) {
  .banner-slider-section .anim-arrow-wrap {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .banner-slider-section .anim-arrow-wrap {
    left: calc(50% + 8rem);
  }
}
.banner-slider.swiper-container-horizontal > .swiper-pagination {
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 991.98px) {
  .banner-slider.swiper-container-horizontal > .swiper-pagination {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .banner-slider.swiper-container-horizontal > .swiper-pagination {
    justify-content: space-between;
  }
}
.banner-slider > .swiper-pagination {
  bottom: 4rem;
  right: 0;
  left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -1.5rem;
}
.banner-slider > .swiper-pagination > .swiper-pagination-bullet {
  position: relative;
  display: block;
  margin-right: 2.5rem;
  margin-left: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 1.4rem;
  line-height: 1.57143;
}
.banner-slider > .swiper-pagination > .swiper-pagination-bullet:after {
  opacity: 0;
  background: #3cce93;
  height: 0.2rem;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  z-index: 0;
  content: "";
}
.banner-slider > .swiper-pagination > .swiper-pagination-bullet-active {
  border-color: #206072;
}
.banner-slider > .swiper-pagination > .swiper-pagination-bullet-active:after {
  animation: line-progress 6s linear forwards;
  opacity: 1;
}
.banner-slider > .swiper-pagination > .swiper-pagination-bullet:hover {
  color: #3cce93;
  border-color: #206072;
}
@media (min-width: 1200px) {
  .banner-slider h1 {
    font-size: 4.8rem;
    line-height: 1.125;
  }
}
.circle-anim {
  position: relative;
}
.circle-anim-wrap {
  text-align: center;
}
.circle-anim-wrap > svg {
  height: 14.2rem;
  width: 14.2rem;
  stroke: #206072;
}
.circle-anim-wrap > svg > circle {
  fill: none;
  stroke-width: 8;
  transform-origin: center center;
  transform: rotate(-90deg);
}
.circle-anim-wrap > svg > circle + circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-opacity: 1;
  stroke: #ef4729;
}
.circle-anim-wrap.animatable > svg > circle + circle {
  transition: stroke-dashoffset 2s ease;
}
.circle-anim-wrap--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.circle-anim-wrap--outer > svg {
  height: 19.8rem;
  width: 19.8rem;
  stroke: #206072;
}
.circle-anim-wrap--outer > svg > circle {
  stroke-width: 6;
}
.circle-anim-wrap--outer > svg > circle + circle {
  stroke: #3cce93;
}
.circle-anim-score {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  color: #3cce93;
  font-family: MabryPro,Inter,sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  transform: translate3d(-50%, -50%, 0);
}
.circle-anim-card > .circle-anim-card-foot {
  color: #dadddf;
}
.circle-anim-card > .circle-anim-card-foot > span:not([class]) {
  color: #ef4729;
  font-family: MabryPro,Inter,sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.s-blob-wrap .blob-node {
  cursor: pointer;
}
.s-blob-wrap .blob-node path {
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .s-blob-wrap .blob-node path {
    transition: none;
  }
}
.s-blob-wrap .blob-node .st1,
.s-blob-wrap .blob-node .st3 {
  fill: #00547a;
}
.s-blob-wrap .blob-node.active + .blob-node path,
.s-blob-wrap .blob-node .st2 {
  fill: #0a3e5c;
}
.s-blob-wrap .blob-node.active path {
  fill: #3cce93;
}
.s-blob-wrap text {
  pointer-events: none;
  font-family: MabryPro,Inter,sans-serif;
  font-weight: 700;
  z-index: -1;
}
.blob-target {
  display: none;
}
.blob-target.active {
  display: block;
}
@media (max-width: 991.98px) {
  .clickable-dots-section .b-line {
    border-left: 0;
  }
}
@media (min-width: 992px) {
  .clickable-dots-section .a-card {
    display: none;
    border: 0;
  }
  .clickable-dots-section .a-card.active,
  .clickable-dots-section .a-card .collapse:not(.show) {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .clickable-dots-section .a-card {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .clickable-dots-wrap {
    padding: 8.46154% 3.07692% 8.46154% 15.38462%;
  }
  .clickable-dots-media {
    display: inline-block;
    vertical-align: top;
  }
  .clickable-dots-media img {
    max-width: 35.4rem;
  }
  .clickable-dot {
    position: absolute;
    color: #313e48;
    cursor: pointer;
    font-family: MabryPro,Inter,sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }
  .clickable-dot.is-active,
  .clickable-dot:hover {
    color: #3cce93;
    outline: none;
  }
  .clickable-dot:before {
    content: "";
    display: block;
    margin-right: 2rem;
    background: #3cce93;
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem;
  }
  .clickable-dot > span {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    transform: translateY(-50%);
    white-space: nowrap;
  }
  .has-6-dots .clickable-dot:nth-child(2) {
    top: -9.84127%;
    left: 45.19774%;
  }
  .has-6-dots .clickable-dot:nth-child(2):before {
    margin-top: 3.5rem;
    margin-right: 0;
  }
  .has-6-dots .clickable-dot:nth-child(2) > span {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .has-6-dots .clickable-dot:nth-child(3) {
    top: 26.98413%;
    right: 8.47458%;
  }
  .has-6-dots .clickable-dot:nth-child(4) {
    top: 74.60317%;
    right: 9.88701%;
  }
  .has-6-dots .clickable-dot:nth-child(5) {
    bottom: -11.42857%;
    right: 52.25989%;
  }
  .has-6-dots .clickable-dot:nth-child(5):before {
    margin-bottom: 3rem;
    margin-right: 0;
  }
  .has-6-dots .clickable-dot:nth-child(5) > span {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .has-6-dots .clickable-dot:nth-child(6):before,
  .has-6-dots .clickable-dot:nth-child(7):before {
    margin-right: 0;
    margin-left: 2.5rem;
  }
  .has-6-dots .clickable-dot:nth-child(6) > span,
  .has-6-dots .clickable-dot:nth-child(7) > span {
    right: 2.5rem;
    left: auto;
  }
  .has-6-dots .clickable-dot:nth-child(6) {
    top: 74.60317%;
    left: 0.28249%;
  }
  .has-6-dots .clickable-dot:nth-child(7) {
    top: 28.57143%;
    left: -2.54237%;
  }
  .has-3-dots .clickable-dot:nth-child(2) {
    top: 73.01587%;
    left: 2.82486%;
  }
  .has-3-dots .clickable-dot:nth-child(2):before {
    margin-right: 0;
    margin-left: 2.5rem;
  }
  .has-3-dots .clickable-dot:nth-child(2) > span {
    right: 2.5rem;
    left: auto;
  }
  .has-3-dots .clickable-dot:nth-child(3) {
    top: -9.84127%;
    left: 49.43503%;
  }
  .has-3-dots .clickable-dot:nth-child(3):before {
    margin-top: 3.5rem;
    margin-right: 0;
  }
  .has-3-dots .clickable-dot:nth-child(3) > span {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .has-3-dots .clickable-dot:nth-child(4) {
    top: 26.98413%;
    right: 2.82486%;
  }
}
@media (min-width: 1200px) {
  .clickable-dot {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .connected-grids .row {
    z-index: 1;
  }
  .connected-grids .row:after {
    position: absolute;
    z-index: -1;
    content: "";
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -19rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: auto;
    width: 50.5rem;
    height: 38.9rem;
  }
  .connected-grids .row.connected-right:after {
    bottom: -17rem;
  }
  .connected-grids .row:last-child:after {
    pointer-events: none;
    background-image: none;
  }
}
@media (max-width: 991.98px) {
  .box-connector-grid:not(.box-arrow-connector-grid) {
    flex-direction: column;
    align-items: center;
  }
}
.box-connector-grid-item:not(:last-child):after {
  position: absolute;
  top: calc(100% + -2.5rem);
  right: 50%;
  content: "\E911";
  color: #3cce93;
  font-size: 3rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateX(50%);
}
@media (min-width: 992px) {
  .box-connector-grid-item:not(:last-child):after {
    top: 50%;
    right: -0.49em;
    transform: translateY(-50%);
  }
}
.box-arrow-connector-grid .wp-editor-media {
  margin-bottom: 1.5rem;
}
.box-arrow-connector-grid .box-connector-grid-item:not(:last-child):after {
  content: "\E900";
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .box-arrow-connector-grid .box-connector-grid-item:not(:last-child):after {
    transform: rotate(90deg);
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .box-arrow-connector-grid .box-connector-grid-item:not(:last-child):after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767.98px) {
  .box-arrow-connector-grid .box-connector-grid-item:after {
    top: calc(100% - 1.8rem);
  }
}
.box-arrow-connector-grid .box-connector-grid-item .card {
  background: #edeeef;
}
.box-arrow-connector-grid .box-connector-grid-item:nth-child(2n) .card {
  background: #e6f2f9;
}
@media (min-width: 768px) {
  .box-arrow-connector-grid .box-connector-grid-item:after {
    right: -0.8em;
  }
  .box-arrow-connector-grid .box-connector-grid-item.has-title:after {
    top: calc(50% + 3rem);
  }
  .box-arrow-connector-grid .box-connector-grid-item:nth-child(2n + 2):after {
    display: none;
  }
}
.content-section .wp-editor-media {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .content-section .wp-editor-media {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 992px) {
  .floating-text-grid {
    position: relative;
  }
  .floating-text-grid__item {
    position: absolute;
    width: 30rem;
  }
  .floating-text-grid__item:nth-child(2) {
    top: 0;
    left: 0;
  }
  .floating-text-grid__item:nth-child(3) {
    top: 0;
    right: 0;
    padding-left: 2rem;
  }
  .floating-text-grid__item:nth-child(3) .floating-text__title:after {
    left: auto;
  }
  .floating-text-grid__item:nth-child(4) {
    bottom: 5rem;
    left: 0;
  }
  .floating-text-grid__item:nth-child(4) .floating-text__title:after {
    bottom: 0;
  }
  .floating-text-grid__item:nth-child(5) {
    bottom: 5rem;
    right: 0;
    padding-left: 2rem;
  }
  .floating-text-grid__item:nth-child(5) .floating-text__title:after {
    bottom: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .floating-text__title {
    position: relative;
  }
  .floating-text__title:after {
    position: absolute;
    right: 0;
    bottom: -5rem;
    left: 0;
    content: "";
    height: 5.1rem;
    width: 35.1rem;
  }
}
.floating-texts {
  position: relative;
  min-height: 55rem;
}
.floating-texts-media {
  width: 32rem;
}
@media (min-width: 768px) {
  .floating-texts-text {
    position: absolute;
    max-width: 30rem;
    min-height: 7.7rem;
  }
  .floating-texts-text:first-of-type,
  .floating-texts-text:nth-of-type(5) {
    top: 0;
  }
  .floating-texts-text:nth-of-type(2),
  .floating-texts-text:nth-of-type(6) {
    top: 19.81818%;
  }
  .floating-texts-text:nth-of-type(3),
  .floating-texts-text:nth-of-type(7) {
    top: 39.63636%;
  }
  .floating-texts-text:nth-of-type(4),
  .floating-texts-text:nth-of-type(8) {
    top: 59.45455%;
  }
  .floating-texts-text:first-of-type {
    right: 4.38596%;
  }
  .floating-texts-text:nth-of-type(2) {
    right: 2.63158%;
  }
  .floating-texts-text:nth-of-type(3) {
    right: 0;
  }
  .floating-texts-text:nth-of-type(4) {
    right: -1.75439%;
  }
  .floating-texts-text:nth-of-type(5) {
    left: 4.38596%;
  }
  .floating-texts-text:nth-of-type(6) {
    left: 2.63158%;
  }
  .floating-texts-text:nth-of-type(7),
  .floating-texts-text:nth-of-type(8) {
    left: 0;
  }
}
@media (min-width: 992px) {
  .floating-texts-text {
    max-width: 36rem;
  }
  .floating-texts-text:first-of-type {
    right: 13.15789%;
  }
  .floating-texts-text:nth-of-type(2) {
    right: 7.89474%;
  }
  .floating-texts-text:nth-of-type(5) {
    left: 13.15789%;
  }
  .floating-texts-text:nth-of-type(6) {
    left: 7.89474%;
  }
}
@media (min-width: 1200px) {
  .floating-texts-text:first-of-type {
    right: 19.29825%;
  }
  .floating-texts-text:nth-of-type(2) {
    right: 12.2807%;
  }
  .floating-texts-text:nth-of-type(5) {
    left: 19.29825%;
  }
  .floating-texts-text:nth-of-type(6) {
    left: 12.2807%;
  }
}
.it-popup-caption {
  padding-left: 0.6rem;
  border-left: 0.2rem solid #3cce93;
}
.it-popup-content {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  opacity: 0;
  pointer-events: none;
  background: #285f72;
  border-radius: 1.5rem;
  color: #fff;
  max-width: 40rem;
  width: 100%;
  transform: translateY(1.5rem);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .it-popup-content {
    transition: none;
  }
}
.it-popup-content.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
.it-popup-content:before {
  position: absolute;
  top: -1.2rem;
  left: 3.8rem;
  content: "";
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.2rem solid #285f72;
}
.it-popup-content-inner {
  padding: 1.5rem;
}
.it-popup-content-inner > :not(:last-child) {
  margin-bottom: 0.6rem;
}
.it-popup-content h5 {
  font-size: 1rem;
}
.it-popup-content ul:not([class]) {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.it-popup-content ul:not([class]) > li {
  flex: 0 0 33.3333333%;
  margin-bottom: 0;
  padding: 0.8rem;
  border: 1px solid #518391;
}
.it-popup-content ul:not([class]) > li:before {
  display: none;
}
.it-popup-content
  ul:not([class])
  > li:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
  border-top: 0;
}
.it-popup-content ul:not([class]) > li:nth-child(3n + 1),
.it-popup-content ul:not([class]) > li:nth-child(3n + 2) {
  border-right: 0;
}
.it-popup-content .it-popup-close {
  padding: 0.5rem;
}
.it-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #fff;
}
.ant-man-wrap.is-visible {
  animation: bounce 0.5s 5 ease alternate;
}
.overlapped-cards-grid {
  position: relative;
}
.overlapped-cards-grid:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: "";
  margin-left: calc(50% - 50vw);
  background: #074e62;
  height: 10rem;
  width: 100vw;
}
@media (min-width: 992px) {
  .overlapped-cards-grid:before {
    height: calc(50% - 1.5rem);
  }
}
.list-cols-2 li > ul {
  columns: 2;
  gap: 1rem;
}
.p-overview-wrap {
  border: 1px solid #3cce93;
  border-radius: 3rem;
}
.p-overview-block-title {
  position: relative;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
@media (max-width: 767.98px) {
  .p-overview-block-title {
    font-size: 1.6rem;
  }
}
.p-overview-block-title:before {
  position: absolute;
  top: 50%;
  left: -0.5rem;
  content: "";
  height: 0.1rem;
  width: calc(100% + 1rem);
}
@media (min-width: 1200px) {
  .p-overview-block-title:before {
    left: -5.5rem;
    width: calc(100% + 11rem);
  }
}
@media (max-width: 767.98px) {
  .p-overview-row > .collapsing {
    height: auto !important;
  }
}
.p-overview-row-title {
  position: relative;
}
@media (max-width: 767.98px) {
  .p-overview-row-title {
    font-size: 1.6rem;
  }
}
.p-overview-row-title:after,
.p-overview-row-title:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background-image: linear-gradient(
    90deg,
    rgba(7, 78, 98, 0) -4%,
    #3cce92 50%,
    rgba(7, 78, 98, 0)
  );
  height: 0.2rem;
  width: 37.17435%;
  transform: translateY(-50%);
}
.p-overview-row-title:after {
  right: 0;
  left: auto;
}
.p-overview-row-title.sep-alt:after,
.p-overview-row-title.sep-alt:before {
  background-image: linear-gradient(
    90deg,
    rgba(7, 78, 98, 0) -4%,
    #37aaf0 50%,
    rgba(7, 78, 98, 0)
  );
}
@media (min-width: 768px) {
  .p-overview-row-title {
    pointer-events: none;
  }
}
.p-icons-text-wrap {
  color: #b5bbbf;
}
.p-icons-text-wrap.active {
  color: #3cce93;
}
.p-icons-text-icon {
  margin-right: 0.6rem;
  max-width: 4.5rem;
}
.p-icons-text-title {
  font-size: 1.4rem;
  line-height: 1.28571;
  max-width: 10rem;
}
@media (min-width: 768px) {
  .p-icons-text-icon {
    margin-right: 0.8rem;
    max-width: inherit;
  }
  .p-icons-text-title {
    font-size: inherit;
    max-width: inherit;
  }
}
@media (min-width: 992px) {
  .p-icons-text-title {
    max-width: 11.5rem;
  }
}
.p-overview-btn {
  position: relative;
  background: linear-gradient(90deg, #37aaf0 12%, #3cce92 80%);
  border-radius: 1.5rem;
  border: 0;
  color: #fff;
  height: 5rem;
  line-height: 1;
  z-index: 1;
}
.p-overview-btn:before {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  content: "";
  background: #074e62;
  border-radius: 1.5rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-overview-btn {
    font-size: 1.8rem;
    height: 6.5rem;
  }
}
@media (min-width: 992px) {
  .p-overview-btn {
    font-size: 2rem;
    height: 8rem;
  }
}
.btn-icon-plus {
  margin-left: 0.6rem;
  background: #3cce93;
  border-radius: 50%;
  font-size: 1.2rem;
  height: 1.9rem;
  width: 1.9rem;
}
@media (min-width: 768px) {
  .btn-icon-plus {
    font-size: 1.4rem;
    height: 2.3rem;
    width: 2.3rem;
  }
}
.p-overview-logos {
  border: 1px solid #097abf;
  border-radius: 3rem;
}
.p-overview-logos-btn {
  color: #fff;
}
.p-overview-logos-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.p-overview-logos-title {
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .p-overview-logos-title {
    font-size: 1.6rem;
  }
}
.p-overview-logos-row {
  padding: 2rem 0;
}
.p-overview-logos-row:nth-child(2) {
  background: linear-gradient(
    180deg,
    #074e62 2.23%,
    rgba(9, 122, 191, 0.25) 103.08%
  );
  border-radius: 0.5rem 0.5rem 0 0;
}
.itc-popup {
  position: absolute;
  top: calc(100% + 2rem);
  left: 0;
  opacity: 0;
  pointer-events: none;
  background: #053745;
  border-radius: 1.5rem;
  color: #b5bbbf;
  width: 32rem;
  transform: translateY(1.5rem);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .itc-popup {
    transition: none;
  }
}
.itc-popup.itc-popup-center {
  left: 50%;
  transform: translateX(-50%) translateY(1.5rem);
}
.itc-popup.itc-popup-center:before {
  left: 50%;
  transform: translateX(-50%);
}
.itc-popup.itc-popup-center.show {
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .collapse .itc-popup {
    display: none;
  }
  .collapse.show .itc-popup.show {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .itc-grid-item:nth-child(2n + 2) .itc-popup {
    right: 0;
    left: auto;
  }
  .itc-grid-item:nth-child(2n + 2) .itc-popup:before {
    right: 11rem;
    left: auto;
  }
}
.itc-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
.itc-popup:before {
  position: absolute;
  top: -1.2rem;
  left: 3.8rem;
  content: "";
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.2rem solid #053745;
}
.itc-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #fff;
}
.itc-popup .itc-popup-close {
  padding: 0.5rem;
}
@media (min-width: 576px) {
  .itc-popup {
    width: 48rem;
  }
}
@media (min-width: 992px) {
  .itc-popup {
    width: 53rem;
  }
  .itc-grid-item:nth-child(4n + 3) .itc-popup,
  .itc-grid-item:nth-child(4n + 4) .itc-popup {
    right: 0;
    left: auto;
  }
  .itc-grid-item:nth-child(4n + 3) .itc-popup:before,
  .itc-grid-item:nth-child(4n + 4) .itc-popup:before {
    right: 18rem;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .quote-grid.has-line .quote-grid-item:first-child {
    flex: 0 0 47%;
    max-width: 47%;
  }
  .quote-grid.has-line .quote-grid-item:last-child {
    flex: 0 0 53%;
    max-width: 53%;
  }
}
.quote-card {
  max-width: 83rem;
}
.quote-card:before {
  display: none;
}
@media (min-width: 768px) {
  .quote-card:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 56rem;
    height: 20.4rem;
    z-index: -1;
  }
}
@media (min-width: 992px) {
  .quote-card:before {
    width: 71.5rem;
    height: 26rem;
  }
}
@media (min-width: 768px) {
  .quote-card .author-wrap {
    flex: 0 0 14.5rem;
    max-width: 14.5rem;
  }
}
.quote-card .quote-icon.bottom {
  right: 0;
  bottom: 0;
}
.quote-card .quote-icon.top {
  top: 0.5rem;
}
.quote-card .quote-icon .icon {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .quote-card .quote-icon.top {
    top: 0.98039%;
    left: 19.87952%;
  }
  .quote-card .quote-icon.bottom {
    bottom: 26.96078%;
    right: 3.8835%;
  }
  .quote-card .quote-icon.oval {
    top: -0.62305%;
    right: 21.56627%;
  }
  .quote-card .quote-icon .icon {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .quote-card .quote-icon.top {
    top: 0;
    left: 19.87952%;
  }
  .quote-card .quote-icon.bottom {
    bottom: 7.78816%;
    right: 3.8835%;
  }
  .quote-card .quote-icon .icon {
    font-size: 4rem;
  }
}
.quote-full {
  position: relative;
}
.quote-full h3:after {
  content: "";
  background: #3cce92;
  height: 0.8rem;
  width: 9.2rem;
  display: block;
  left: 0;
  right: 0;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
.rolling-cards {
  position: relative;
  animation: moveLogosLeft 25s linear infinite;
  transform: translateX(-100px);
  will-change: transform;
}
.rolling-cards:hover {
  animation-play-state: paused;
}
.rolling-cards:nth-child(3) {
  transform: translateX(-200px);
}
.rolling-cards__item {
  flex: 0 0 26rem;
  max-width: 26rem;
}
@media (min-width: 1920px) {
  .rolling-cards__item {
    flex: 0 0 13.5%;
    max-width: 42rem;
  }
}
@media (min-width: 768px) {
  .scic-item.active .scic-content {
    opacity: 1;
    transition: all 0.15s ease-in;
  }
  .scic-item.active .scic-img-alt {
    animation: slideInRight 0.5s ease 0.1s forwards;
  }
  .scic-item.active .scic-img-fade {
    opacity: 1;
  }
  .scic-content-faded {
    opacity: 0.3;
    transition: all 0.15s ease-out;
  }
  .scic-img {
    opacity: 0;
  }
  .scic-img-fade {
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .scic-img-fade {
    transition: none;
  }
}
@media (min-width: 768px) {
  .scic-img-alt {
    animation: slideOutRight 0.3s ease-out 0.1s backwards;
  }
  .progress-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.3rem;
    background: #e8e7eb;
  }
  .progress-bar {
    position: absolute;
    background: #097abf;
    width: 0.3rem;
  }
}
.sliding-cards {
  max-width: 28rem;
}
.sliding-cards--alt {
  max-width: 17.5rem;
}
.sliding-cards__item:last-child {
  margin-right: 0;
}
.sliding-cards__item.swiper-slide-active {
  flex: 0 0 80vw;
  max-width: 40rem;
}
.sliding-cards__item:not(.swiper-slide-active) h2 {
  margin-bottom: 0;
  font-size: 3.2rem;
}
@media (min-width: 576px) {
  .sliding-cards__item.swiper-slide-active {
    flex: 0 0 40rem;
  }
  .sliding-cards--alt .sliding-cards__item.swiper-slide-active {
    flex: 0 0 60rem;
    max-width: inherit;
  }
}
@media (min-width: 992px) {
  .sliding-cards__item.swiper-slide-active {
    flex: 0 0 53rem;
    max-width: inherit;
  }
  .sliding-cards--alt .sliding-cards__item.swiper-slide-active {
    flex: 0 0 74rem;
  }
}
.sliding-card {
  justify-content: center;
  padding: 2rem 1.5rem;
  border-top: 0.8rem solid #ecfaf4;
  border-radius: 0 0 1.6rem 1.6rem;
  box-shadow: 0.6rem 0.7rem 2.3rem 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  min-height: 20.5rem;
  transition: box-shadow 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sliding-card {
    transition: none;
  }
}
.sliding-card:hover .sliding-card__body {
  opacity: 1;
}
.sliding-card:hover .sliding-card__counter {
  color: #3cce93;
}
.sliding-card:hover .sliding-card__title {
  color: #313e48;
}
.swiper-slide-active .sliding-card {
  padding: 3rem 2rem;
  box-shadow: 0.8rem 1.5rem 3.5rem 0 rgba(0, 0, 0, 0.15);
  cursor: default;
}
.swiper-slide-active .sliding-card:before {
  opacity: 1;
}
.swiper-slide-active .sliding-card:hover:before {
  animation-play-state: paused;
}
.sliding-card:before {
  opacity: 0;
  background: #3cce93;
  border-radius: 1.6rem;
  height: 0.8rem;
  position: absolute;
  top: -0.8rem;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 0;
  content: "";
}
.sliding-card__media {
  max-width: 31rem;
}
.sliding-card__inner,
.sliding-card__media {
  display: none;
}
.swiper-slide-active .sliding-card__inner,
.swiper-slide-active .sliding-card__media {
  display: block;
}
.swiper-slide-active .sliding-card__front {
  display: none;
}
.sliding-card__body {
  opacity: 0.2;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sliding-card__body {
    transition: none;
  }
}
.swiper-slide-active .sliding-card__body {
  opacity: 1;
  flex-direction: row;
}
.sliding-card__counter {
  margin-bottom: 1rem;
  font: 700 4.2rem/1 novel-display, serif;
  transition: color 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sliding-card__counter {
    transition: none;
  }
}
.swiper-slide-active .sliding-card__counter {
  margin-right: 1rem;
  margin-bottom: 0;
  color: #3cce93;
}
.sliding-card h2 {
  margin-bottom: 1.5rem;
  transition: color 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sliding-card h2 {
    transition: none;
  }
}
.sliding-card h5 {
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .sliding-card h4 {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .swiper-slide-active .sliding-card {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .sliding-card__counter {
    font-size: 6.2rem;
  }
  .swiper-slide-active .sliding-card__counter {
    margin-right: 2rem;
  }
}
.words-animation-wrap {
  overflow: hidden;
}
.words-animation-wrap .list:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.words-animation-wrap .list.sw-left:before {
  background-image: linear-gradient(270deg, hsla(0, 0%, 97%, 0), #f8f8f8);
  left: 0;
}
@media (min-width: 992px) {
  .words-animation-wrap .list.sw-left:before {
    left: 8vw;
  }
}
.words-animation-wrap .list.sw-right:before {
  right: 0;
  background-image: linear-gradient(90deg, hsla(0, 0%, 97%, 0), #f8f8f8);
}
.bg-primary-teal-dark .words-animation-wrap .list.sw-left:before {
  background-image: linear-gradient(270deg, hsla(0, 0%, 97%, 0), #053745);
}
.bg-primary-teal-dark .words-animation-wrap .list.sw-right:before {
  background-image: linear-gradient(90deg, hsla(0, 0%, 97%, 0), #053745);
}
.words-animation-wrap .list-container {
  list-style: none;
  position: relative;
  display: flex;
  margin: 0.5rem -0.5rem;
  opacity: 0;
}
.words-animation-wrap .list-container:first-child {
  margin-top: 0;
}
.words-animation-wrap .list-container:last-child {
  margin-bottom: 0;
}
.words-animation-wrap .list-container > .list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
  margin: 0.5rem;
  width: auto;
  text-align: center;
  white-space: nowrap;
  font-family: MabryPro,Inter,sans-serif;
  font-size: 1.2rem;
  height: 4.2rem;
}
.words-animation-wrap .list-container > .list-item .icon {
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .words-animation-wrap .list-container > .list-item,
  .words-animation-wrap .list-container > .list-item .icon {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .words-animation-wrap .list-container > .list-item {
    padding: 1.2rem 2.5rem;
  }
}
@media (min-width: 992px) {
  .words-animation-wrap .list-container > .list-item {
    margin-right: 1rem;
    margin-left: 1rem;
    padding-right: 3rem;
    padding-left: 3rem;
    height: 5.3rem;
  }
}
@media (min-width: 1200px) {
  .words-animation-wrap .list-container > .list-item {
    font-size: 2rem;
    height: 5.4rem;
  }
}
@media (min-width: 992px) {
  .words-animation-wrap .list-container {
    margin: 0.7rem -1rem;
  }
}
.words-animation-wrap.layout-1 .block-1 .list-item.fl:last-child,
.words-animation-wrap.layout-1 .block-1 .list-item:first-child {
  background-color: #ecfbf4;
  width: 33.333%;
}
.words-animation-wrap.layout-1 .block-1 .list-item.fl:first-child,
.words-animation-wrap.layout-1 .block-1 .list-item:last-child {
  background-color: #e8f1f7;
  width: 33.333%;
}
.words-animation-wrap.layout-1 .block-2 .list-item.fl:last-child,
.words-animation-wrap.layout-1 .block-2 .list-item:first-child {
  background-color: #e6edef;
  color: #4f8593;
}
@media (min-width: 768px) {
  .words-animation-wrap.layout-1 .block-2 .list-item.fl:last-child,
  .words-animation-wrap.layout-1 .block-2 .list-item:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-1 .block-2 .list-item.fl:first-child,
.words-animation-wrap.layout-1 .block-2 .list-item:last-child {
  background-color: #fef1d1;
  width: 40%;
}
.words-animation-wrap.layout-1 .block-3 .list-item.fl:last-child,
.words-animation-wrap.layout-1 .block-3 .list-item:first-child {
  background-color: #ecfaf4;
  color: #3cce92;
}
.words-animation-wrap.layout-1 .block-3 .list-item:nth-child(2) {
  background-color: #e6edef;
  width: 15%;
}
.words-animation-wrap.layout-1 .block-3 .list-item.fl:first-child,
.words-animation-wrap.layout-1 .block-3 .list-item:last-child {
  background-color: #fbf0fb;
  width: 25%;
}
.words-animation-wrap.layout-1 .block-4 .list-item.fl:last-child,
.words-animation-wrap.layout-1 .block-4 .list-item:first-child {
  background-color: #ebf7fe;
  color: #40aaf0;
}
@media (min-width: 768px) {
  .words-animation-wrap.layout-1 .block-4 .list-item.fl:last-child,
  .words-animation-wrap.layout-1 .block-4 .list-item:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-1 .block-4 .list-item.fl:first-child,
.words-animation-wrap.layout-1 .block-4 .list-item:last-child {
  background-color: #dcf6e9;
  width: 50%;
}
.words-animation-wrap.layout-1 .block-5 .list-item.fl:last-child,
.words-animation-wrap.layout-1 .block-5 .list-item:first-child {
  background-color: #fdf2d0;
  color: #fec016;
}
@media (min-width: 768px) {
  .words-animation-wrap.layout-1 .block-5 .list-item.fl:last-child,
  .words-animation-wrap.layout-1 .block-5 .list-item:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-1 .block-5 .list-item.fl:first-child,
.words-animation-wrap.layout-1 .block-5 .list-item:last-child {
  background-color: #fce6cc;
  width: 45%;
}
.words-animation-wrap.layout-2 .block-1 .list-item.fl:last-child,
.words-animation-wrap.layout-2 .block-1 .list-item.fr:first-child {
  background-color: #fef2e6;
  color: #f78d1d;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-2 .block-1 .list-item.fl:last-child,
  .words-animation-wrap.layout-2 .block-1 .list-item.fr:first-child {
    width: 33.333%;
  }
}
.words-animation-wrap.layout-2 .block-1 .list-item.fl:first-child,
.words-animation-wrap.layout-2 .block-1 .list-item.fr:last-child {
  background-color: #fccfdd;
  color: #f78d1d;
  width: 33.333%;
}
.words-animation-wrap.layout-2 .block-2 .list-item.fl:last-child,
.words-animation-wrap.layout-2 .block-2 .list-item.fr:first-child {
  background-color: #fdf2d0;
  color: #e6ae17;
}
@media (min-width: 768px) {
  .words-animation-wrap.layout-2 .block-2 .list-item.fl:last-child,
  .words-animation-wrap.layout-2 .block-2 .list-item.fr:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-2 .block-2 .list-item.fl:first-child,
.words-animation-wrap.layout-2 .block-2 .list-item.fr:last-child {
  background-color: #cddce0;
  color: #e6ae17;
  width: 42%;
}
.words-animation-wrap.layout-2 .block-3 .list-item.fl:last-child,
.words-animation-wrap.layout-2 .block-3 .list-item.fr:first-child {
  background-color: #e6edef;
  width: 35%;
}
.words-animation-wrap.layout-2 .block-3 .list-item.fl:first-child,
.words-animation-wrap.layout-2 .block-3 .list-item.fr:last-child {
  background-color: #fdf2d3;
  width: 30%;
}
.words-animation-wrap.layout-2 .block-4 .list-item.fl:last-child,
.words-animation-wrap.layout-2 .block-4 .list-item.fr:first-child {
  background-color: #ebf7fe;
  color: #40aaf0;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-2 .block-4 .list-item.fl:last-child,
  .words-animation-wrap.layout-2 .block-4 .list-item.fr:first-child {
    width: 40%;
  }
}
.words-animation-wrap.layout-2 .block-4 .list-item:nth-child(2) {
  background-color: #fef2e6;
  width: 20%;
}
.words-animation-wrap.layout-2 .block-4 .list-item.fl:first-child,
.words-animation-wrap.layout-2 .block-4 .list-item.fr:last-child {
  background-color: #dcf6e9;
  width: 35%;
}
.words-animation-wrap.layout-2 .block-5 .list-item.fl:last-child,
.words-animation-wrap.layout-2 .block-5 .list-item.fr:first-child {
  background-color: #fee7ee;
  width: 30%;
}
.words-animation-wrap.layout-2 .block-5 .list-item.fl:first-child,
.words-animation-wrap.layout-2 .block-5 .list-item.fr:last-child {
  background-color: #e0f3fe;
  width: 50%;
}
.words-animation-wrap.layout-3 .block-1 .list-item.fl:last-child,
.words-animation-wrap.layout-3 .block-1 .list-item.fr:first-child {
  background-color: #fff2d0;
  color: #ffbf18;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-3 .block-1 .list-item.fl:last-child,
  .words-animation-wrap.layout-3 .block-1 .list-item.fr:first-child {
    width: 33.333%;
  }
}
.words-animation-wrap.layout-3 .block-1 .list-item.fl:first-child,
.words-animation-wrap.layout-3 .block-1 .list-item.fr:last-child {
  background-color: #ffe7ce;
  width: 33.333%;
}
.words-animation-wrap.layout-3 .block-2 .list-item.fl:last-child,
.words-animation-wrap.layout-3 .block-2 .list-item.fr:first-child {
  background-color: #feecfc;
  color: #833969;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-3 .block-2 .list-item.fl:last-child,
  .words-animation-wrap.layout-3 .block-2 .list-item.fr:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-3 .block-2 .list-item:nth-child(2) {
  background-color: #e6edef;
  width: 20%;
}
.words-animation-wrap.layout-3 .block-2 .list-item.fl:first-child,
.words-animation-wrap.layout-3 .block-2 .list-item.fr:last-child {
  background-color: #f0e6ec;
  color: #833969;
  width: 25%;
}
.words-animation-wrap.layout-3 .block-3 .list-item.fl:last-child,
.words-animation-wrap.layout-3 .block-3 .list-item.fr:first-child {
  background-color: #ebf7fe;
  color: #36aaf0;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-3 .block-3 .list-item.fl:last-child,
  .words-animation-wrap.layout-3 .block-3 .list-item.fr:first-child {
    width: 30%;
  }
}
.words-animation-wrap.layout-3 .block-3 .list-item.fl:first-child,
.words-animation-wrap.layout-3 .block-3 .list-item.fr:last-child {
  background-color: #dcf6ea;
  width: 55%;
}
.words-animation-wrap.layout-3 .block-4 .list-item.fl:last-child,
.words-animation-wrap.layout-3 .block-4 .list-item.fr:first-child {
  background-color: #fff2d0;
  color: #ffbf18;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-3 .block-4 .list-item.fl:last-child,
  .words-animation-wrap.layout-3 .block-4 .list-item.fr:first-child {
    width: 25%;
  }
}
.words-animation-wrap.layout-3 .block-4 .list-item.fl:first-child,
.words-animation-wrap.layout-3 .block-4 .list-item.fr:last-child {
  background-color: #e6edef;
  color: #508391;
  width: 45%;
}
.words-animation-wrap.layout-3 .block-5 .list-item.fl:last-child,
.words-animation-wrap.layout-3 .block-5 .list-item.fr:first-child {
  background-color: #ecfaf4;
  color: #3cce93;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-3 .block-5 .list-item.fl:last-child,
  .words-animation-wrap.layout-3 .block-5 .list-item.fr:first-child {
    width: 28%;
  }
}
.words-animation-wrap.layout-3 .block-5 .list-item.fl:first-child,
.words-animation-wrap.layout-3 .block-5 .list-item.fr:last-child {
  background-color: #edf8fe;
  color: #508391;
  width: 35%;
}
.words-animation-wrap.layout-4 .list:before {
  width: 50%;
}
.words-animation-wrap.layout-4 .block-1 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-1 .list-item.fr:first-child {
  background-color: #ecfaf4;
  color: #3cce93;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-4 .block-1 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-1 .list-item.fr:first-child {
    width: 33.333%;
  }
}
.words-animation-wrap.layout-4 .block-1 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-1 .list-item.fr:last-child {
  background-color: #fccfdc;
  width: 50%;
}
.words-animation-wrap.layout-4 .block-2 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-2 .list-item.fr:first-child {
  background-color: #fee7ee;
  color: #f85885;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-4 .block-2 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-2 .list-item.fr:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-4 .block-2 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-2 .list-item.fr:last-child {
  background-color: #dff3ff;
  width: 65%;
}
.words-animation-wrap.layout-4 .block-3 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-3 .list-item.fr:first-child {
  background-color: #e6edef;
  color: #518391;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-4 .block-3 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-3 .list-item.fr:first-child {
    width: 40%;
  }
}
.words-animation-wrap.layout-4 .block-3 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-3 .list-item.fr:last-child {
  background-color: #fdf2d0;
  width: 45%;
}
.words-animation-wrap.layout-4 .block-4 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-4 .list-item.fr:first-child {
  background-color: #ebf7fe;
  color: #40aaf0;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-4 .block-4 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-4 .list-item.fr:first-child {
    width: 35%;
  }
}
.words-animation-wrap.layout-4 .block-4 .list-item:nth-child(2) {
  background-color: #fdf2d1;
  width: 33%;
  color: #cb9a11;
}
@media (min-width: 992px) {
  .words-animation-wrap.layout-4 .block-4 .list-item:nth-child(2) {
    width: 30%;
  }
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-4 .block-4 .list-item:nth-child(2) {
    width: 25%;
  }
}
.words-animation-wrap.layout-4 .block-4 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-4 .list-item.fr:last-child {
  background-color: #dcf6eb;
  color: #518391;
  width: 40%;
}
.words-animation-wrap.layout-4 .block-5 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-5 .list-item.fr:first-child {
  background-color: #fef2e6;
  color: #f78001;
}
@media (min-width: 1440px) {
  .words-animation-wrap.layout-4 .block-5 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-5 .list-item.fr:first-child {
    width: 45%;
  }
}
.words-animation-wrap.layout-4 .block-5 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-5 .list-item.fr:last-child {
  background-color: #edf8fe;
  color: #508391;
  width: 45%;
}
.words-animation-wrap.layout-4 .block-6 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-6 .list-item.fr:first-child {
  background-color: #fdf2d0;
  color: #e5ad15;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-4 .block-6 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-6 .list-item.fr:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-4 .block-6 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-6 .list-item.fr:last-child {
  background-color: #fce5cd;
  width: 50%;
}
.words-animation-wrap.layout-4 .block-7 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-7 .list-item.fr:first-child {
  background-color: #f0e6ec;
  color: #93517b;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-4 .block-7 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-7 .list-item.fr:first-child {
    min-width: 30%;
  }
}
.words-animation-wrap.layout-4 .block-7 .list-item:nth-child(2) {
  background-color: #ebf7fe;
  color: #5fbbf3;
  width: 35%;
}
@media (max-width: 767.98px) {
  .words-animation-wrap.layout-4 .block-7 .list-item:nth-child(2) {
    width: 36%;
  }
}
.words-animation-wrap.layout-4 .block-7 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-7 .list-item.fr:last-child {
  background-color: #f1e8ed;
  width: 35%;
}
.words-animation-wrap.layout-4 .block-8 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-8 .list-item.fr:first-child {
  background-color: #ecfaf4;
  color: #3cce93;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-4 .block-8 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-8 .list-item.fr:first-child {
    min-width: 35%;
  }
}
.words-animation-wrap.layout-4 .block-8 .list-item:nth-child(2) {
  background-color: #e6edef;
  width: 35%;
  color: #206073;
}
@media (max-width: 767.98px) {
  .words-animation-wrap.layout-4 .block-8 .list-item:nth-child(2) {
    width: 44%;
  }
}
.words-animation-wrap.layout-4 .block-8 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-8 .list-item.fr:last-child {
  background-color: #dcf0fc;
  width: 35%;
}
.words-animation-wrap.layout-4 .block-9 .list-item.fl:last-child,
.words-animation-wrap.layout-4 .block-9 .list-item.fr:first-child {
  background-color: #fee7ee;
  color: #f85885;
}
@media (min-width: 1200px) {
  .words-animation-wrap.layout-4 .block-9 .list-item.fl:last-child,
  .words-animation-wrap.layout-4 .block-9 .list-item.fr:first-child {
    min-width: 30%;
  }
}
.words-animation-wrap.layout-4 .block-9 .list-item.fl:first-child,
.words-animation-wrap.layout-4 .block-9 .list-item.fr:last-child {
  background-color: #fdf2d0;
  width: 50%;
}
.c-tab-wrap {
  margin-top: 7rem;
  border: 1px solid #edeeef;
  border-radius: 4rem;
  max-width: 96rem;
}
.c-tab-wrap .btn-wrap.s-md {
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-tab-wrap {
    margin-top: 9rem;
    border-radius: 10rem;
  }
}
@media (min-width: 992px) {
  .c-tab-wrap {
    margin-top: 11rem;
  }
}
.c-nav-tabs-wrap {
  margin-left: calc(50% - 50vw);
  border-radius: 6.8rem;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.11);
  background: #fff;
  width: 100vw;
  transform: translateY(-50%);
}
.c-nav-tabs-wrap .nav-item {
  position: relative;
}
.c-nav-tabs-wrap .nav-item:not(:last-child):after {
  position: absolute;
  top: 50%;
  right: -1.7rem;
  content: "+";
  color: #7e8890;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: MabryPro,Inter,sans-serif;
  transform: translateY(-50%);
}
.c-nav-tabs-wrap .nav-item:nth-last-child(2):after {
  content: "=";
}
.c-nav-tabs-wrap a.nav-link {
  position: relative;
  background: #fff;
  border-radius: 5rem;
  background: linear-gradient(90deg, #37aaf0 0, #3cce92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  height: 4rem;
  min-width: 9.8rem;
}
.c-nav-tabs-wrap a.nav-link:after,
.c-nav-tabs-wrap a.nav-link:before {
  position: absolute;
  content: "";
  border-radius: 50px;
  z-index: -1;
}
.c-nav-tabs-wrap a.nav-link:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #37aaf0, #3cce92) border-box;
  border: 2px solid transparent;
}
.c-nav-tabs-wrap a.nav-link:after {
  top: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  opacity: 1;
  background: #fff;
  height: auto;
  width: calc(100% - 0.4rem);
}
.c-nav-tabs-wrap a.nav-link.active,
.c-nav-tabs-wrap a.nav-link:hover {
  background: transparent;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.c-nav-tabs-wrap a.nav-link.active:after,
.c-nav-tabs-wrap a.nav-link:hover:after {
  opacity: 0;
}
@media (min-width: 576px) {
  .c-nav-tabs-wrap .nav-item:not(:last-child):after {
    right: -3rem;
  }
  .c-nav-tabs-wrap a.nav-link {
    font-size: inherit;
    height: 5.4rem;
    width: 15rem;
  }
}
@media (min-width: 992px) {
  .c-nav-tabs-wrap {
    width: auto;
  }
  .c-nav-tabs-wrap a.nav-link {
    width: 17.3rem;
  }
}
.collapse-images-wrap .collapse-image {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .collapse-images-wrap .collapse-image {
    transition: none;
  }
}
.collapse-images-wrap .collapse-image.active {
  position: static;
  opacity: 1;
  transform: none;
}
@media (min-width: 992px) {
  .features-title-wrap {
    max-width: 37rem;
  }
  .features-arrow {
    margin-top: -2rem;
  }
}
.testimonials-slider .testimonial-photo {
  max-width: inherit;
}
@media (min-width: 768px) {
  .testimonials-slider .testimonial-photo {
    flex: 0 0 20rem;
    height: auto;
    max-width: 20rem;
  }
}
@media (min-width: 992px) {
  .testimonials-slider .testimonial-photo {
    flex: 0 0 36rem;
    height: auto;
    max-width: 36rem;
  }
}
@media (min-width: 768px) {
  .testimonials-slider blockquote {
    font-size: 2rem;
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  .testimonials-slider blockquote {
    font-size: 2.2rem;
    line-height: 1.27273;
  }
}
.testimonials-slider .logo-img {
  max-width: 9.2rem;
}
.testimonials-slider .author-photo {
  flex: 0 0 7rem;
  max-width: 7rem;
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1440px) {
  .d-xx-none {
    display: none !important;
  }
  .d-xx-inline {
    display: inline !important;
  }
  .d-xx-inline-block {
    display: inline-block !important;
  }
  .d-xx-block {
    display: block !important;
  }
  .d-xx-flex {
    display: flex !important;
  }
  .d-xx-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1440px) {
  .flex-xx-row {
    flex-direction: row !important;
  }
  .flex-xx-column {
    flex-direction: column !important;
  }
  .flex-xx-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xx-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xx-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xx-grow-1 {
    flex-grow: 1 !important;
  }
  .justify-content-xx-start {
    justify-content: flex-start !important;
  }
  .justify-content-xx-end {
    justify-content: flex-end !important;
  }
  .justify-content-xx-center {
    justify-content: center !important;
  }
  .justify-content-xx-between {
    justify-content: space-between !important;
  }
  .justify-content-xx-around {
    justify-content: space-around !important;
  }
  .align-items-xx-start {
    align-items: flex-start !important;
  }
  .align-items-xx-end {
    align-items: flex-end !important;
  }
  .align-items-xx-center {
    align-items: center !important;
  }
  .align-self-xx-start {
    align-self: flex-start !important;
  }
  .align-self-xx-end {
    align-self: flex-end !important;
  }
  .align-self-xx-center {
    align-self: center !important;
  }
  .align-self-xx-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 1rem !important;
}
.mt-1,
.my-1 {
  margin-top: 1rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}
.m-2 {
  margin: 2rem !important;
}
.mt-2,
.my-2 {
  margin-top: 2rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}
.m-3 {
  margin: 3rem !important;
}
.mt-3,
.my-3 {
  margin-top: 3rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}
.m-4 {
  margin: 4rem !important;
}
.mt-4,
.my-4 {
  margin-top: 4rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}
.m-5 {
  margin: 5rem !important;
}
.mt-5,
.my-5 {
  margin-top: 5rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 1rem !important;
}
.pt-1,
.py-1 {
  padding-top: 1rem !important;
}
.pr-1,
.px-1 {
  padding-right: 1rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}
.pl-1,
.px-1 {
  padding-left: 1rem !important;
}
.p-2 {
  padding: 2rem !important;
}
.pt-2,
.py-2 {
  padding-top: 2rem !important;
}
.pr-2,
.px-2 {
  padding-right: 2rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}
.pl-2,
.px-2 {
  padding-left: 2rem !important;
}
.p-3 {
  padding: 3rem !important;
}
.pt-3,
.py-3 {
  padding-top: 3rem !important;
}
.pr-3,
.px-3 {
  padding-right: 3rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}
.pl-3,
.px-3 {
  padding-left: 3rem !important;
}
.p-4 {
  padding: 4rem !important;
}
.pt-4,
.py-4 {
  padding-top: 4rem !important;
}
.pr-4,
.px-4 {
  padding-right: 4rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 4rem !important;
}
.pl-4,
.px-4 {
  padding-left: 4rem !important;
}
.p-5 {
  padding: 5rem !important;
}
.pt-5,
.py-5 {
  padding-top: 5rem !important;
}
.pr-5,
.px-5 {
  padding-right: 5rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 5rem !important;
}
.pl-5,
.px-5 {
  padding-left: 5rem !important;
}
.mr-n1 {
  margin-right: -1rem !important;
}
.mb-n1 {
  margin-bottom: -1rem !important;
}
.ml-n1 {
  margin-left: -1rem !important;
}
.mr-n2 {
  margin-right: -2rem !important;
}
.mb-n2 {
  margin-bottom: -2rem !important;
}
.ml-n2 {
  margin-left: -2rem !important;
}
.mr-n3 {
  margin-right: -3rem !important;
}
.mb-n3 {
  margin-bottom: -3rem !important;
}
.ml-n3 {
  margin-left: -3rem !important;
}
.mr-n4 {
  margin-right: -4rem !important;
}
.mb-n4 {
  margin-bottom: -4rem !important;
}
.ml-n4 {
  margin-left: -4rem !important;
}
.mr-n5 {
  margin-right: -5rem !important;
}
.mb-n5 {
  margin-bottom: -5rem !important;
}
.ml-n5 {
  margin-left: -5rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 1rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 1rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 1rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 2rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 2rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 2rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 3rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 3rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 3rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 4rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 4rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 5rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 1rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 1rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 1rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 2rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 2rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 2rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 3rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 3rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 3rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 4rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 4rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 5rem !important;
  }
  .mr-sm-n1 {
    margin-right: -1rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n1 {
    margin-left: -1rem !important;
  }
  .mr-sm-n2 {
    margin-right: -2rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n2 {
    margin-left: -2rem !important;
  }
  .mr-sm-n3 {
    margin-right: -3rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n3 {
    margin-left: -3rem !important;
  }
  .mr-sm-n4 {
    margin-right: -4rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-sm-n4 {
    margin-left: -4rem !important;
  }
  .mr-sm-n5 {
    margin-right: -5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-sm-n5 {
    margin-left: -5rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 1rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 1rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 1rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 1rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 2rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 2rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 2rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 2rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 3rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 3rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 3rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 3rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 4rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 4rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 4rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 5rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 1rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 1rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 1rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 1rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 2rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 2rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 2rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 2rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 3rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 3rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 3rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 3rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 4rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 4rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 4rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 5rem !important;
  }
  .mr-md-n1 {
    margin-right: -1rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n1 {
    margin-left: -1rem !important;
  }
  .mr-md-n2 {
    margin-right: -2rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n2 {
    margin-left: -2rem !important;
  }
  .mr-md-n3 {
    margin-right: -3rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n3 {
    margin-left: -3rem !important;
  }
  .mr-md-n4 {
    margin-right: -4rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-md-n4 {
    margin-left: -4rem !important;
  }
  .mr-md-n5 {
    margin-right: -5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-md-n5 {
    margin-left: -5rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 1rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 1rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 1rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 2rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 2rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 2rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 3rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 3rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 3rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 4rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 4rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 5rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 1rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 1rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 1rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 2rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 2rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 2rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 3rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 3rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 3rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 4rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 4rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 5rem !important;
  }
  .mr-lg-n1 {
    margin-right: -1rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n1 {
    margin-left: -1rem !important;
  }
  .mr-lg-n2 {
    margin-right: -2rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n2 {
    margin-left: -2rem !important;
  }
  .mr-lg-n3 {
    margin-right: -3rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n3 {
    margin-left: -3rem !important;
  }
  .mr-lg-n4 {
    margin-right: -4rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-lg-n4 {
    margin-left: -4rem !important;
  }
  .mr-lg-n5 {
    margin-right: -5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-lg-n5 {
    margin-left: -5rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 1rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 1rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 1rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 2rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 2rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 2rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 3rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 3rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 3rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 4rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 4rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 5rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 1rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 1rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 1rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 2rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 2rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 2rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 3rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 3rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 3rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 4rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 4rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 5rem !important;
  }
  .mr-xl-n1 {
    margin-right: -1rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n1 {
    margin-left: -1rem !important;
  }
  .mr-xl-n2 {
    margin-right: -2rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n2 {
    margin-left: -2rem !important;
  }
  .mr-xl-n3 {
    margin-right: -3rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n3 {
    margin-left: -3rem !important;
  }
  .mr-xl-n4 {
    margin-right: -4rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-xl-n4 {
    margin-left: -4rem !important;
  }
  .mr-xl-n5 {
    margin-right: -5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-xl-n5 {
    margin-left: -5rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1440px) {
  .m-xx-0 {
    margin: 0 !important;
  }
  .mt-xx-0,
  .my-xx-0 {
    margin-top: 0 !important;
  }
  .mr-xx-0,
  .mx-xx-0 {
    margin-right: 0 !important;
  }
  .mb-xx-0,
  .my-xx-0 {
    margin-bottom: 0 !important;
  }
  .ml-xx-0,
  .mx-xx-0 {
    margin-left: 0 !important;
  }
  .m-xx-1 {
    margin: 1rem !important;
  }
  .mt-xx-1,
  .my-xx-1 {
    margin-top: 1rem !important;
  }
  .mr-xx-1,
  .mx-xx-1 {
    margin-right: 1rem !important;
  }
  .mb-xx-1,
  .my-xx-1 {
    margin-bottom: 1rem !important;
  }
  .ml-xx-1,
  .mx-xx-1 {
    margin-left: 1rem !important;
  }
  .m-xx-2 {
    margin: 2rem !important;
  }
  .mt-xx-2,
  .my-xx-2 {
    margin-top: 2rem !important;
  }
  .mr-xx-2,
  .mx-xx-2 {
    margin-right: 2rem !important;
  }
  .mb-xx-2,
  .my-xx-2 {
    margin-bottom: 2rem !important;
  }
  .ml-xx-2,
  .mx-xx-2 {
    margin-left: 2rem !important;
  }
  .m-xx-3 {
    margin: 3rem !important;
  }
  .mt-xx-3,
  .my-xx-3 {
    margin-top: 3rem !important;
  }
  .mr-xx-3,
  .mx-xx-3 {
    margin-right: 3rem !important;
  }
  .mb-xx-3,
  .my-xx-3 {
    margin-bottom: 3rem !important;
  }
  .ml-xx-3,
  .mx-xx-3 {
    margin-left: 3rem !important;
  }
  .m-xx-4 {
    margin: 4rem !important;
  }
  .mt-xx-4,
  .my-xx-4 {
    margin-top: 4rem !important;
  }
  .mr-xx-4,
  .mx-xx-4 {
    margin-right: 4rem !important;
  }
  .mb-xx-4,
  .my-xx-4 {
    margin-bottom: 4rem !important;
  }
  .ml-xx-4,
  .mx-xx-4 {
    margin-left: 4rem !important;
  }
  .m-xx-5 {
    margin: 5rem !important;
  }
  .mt-xx-5,
  .my-xx-5 {
    margin-top: 5rem !important;
  }
  .mr-xx-5,
  .mx-xx-5 {
    margin-right: 5rem !important;
  }
  .mb-xx-5,
  .my-xx-5 {
    margin-bottom: 5rem !important;
  }
  .ml-xx-5,
  .mx-xx-5 {
    margin-left: 5rem !important;
  }
  .p-xx-0 {
    padding: 0 !important;
  }
  .pt-xx-0,
  .py-xx-0 {
    padding-top: 0 !important;
  }
  .pr-xx-0,
  .px-xx-0 {
    padding-right: 0 !important;
  }
  .pb-xx-0,
  .py-xx-0 {
    padding-bottom: 0 !important;
  }
  .pl-xx-0,
  .px-xx-0 {
    padding-left: 0 !important;
  }
  .p-xx-1 {
    padding: 1rem !important;
  }
  .pt-xx-1,
  .py-xx-1 {
    padding-top: 1rem !important;
  }
  .pr-xx-1,
  .px-xx-1 {
    padding-right: 1rem !important;
  }
  .pb-xx-1,
  .py-xx-1 {
    padding-bottom: 1rem !important;
  }
  .pl-xx-1,
  .px-xx-1 {
    padding-left: 1rem !important;
  }
  .p-xx-2 {
    padding: 2rem !important;
  }
  .pt-xx-2,
  .py-xx-2 {
    padding-top: 2rem !important;
  }
  .pr-xx-2,
  .px-xx-2 {
    padding-right: 2rem !important;
  }
  .pb-xx-2,
  .py-xx-2 {
    padding-bottom: 2rem !important;
  }
  .pl-xx-2,
  .px-xx-2 {
    padding-left: 2rem !important;
  }
  .p-xx-3 {
    padding: 3rem !important;
  }
  .pt-xx-3,
  .py-xx-3 {
    padding-top: 3rem !important;
  }
  .pr-xx-3,
  .px-xx-3 {
    padding-right: 3rem !important;
  }
  .pb-xx-3,
  .py-xx-3 {
    padding-bottom: 3rem !important;
  }
  .pl-xx-3,
  .px-xx-3 {
    padding-left: 3rem !important;
  }
  .p-xx-4 {
    padding: 4rem !important;
  }
  .pt-xx-4,
  .py-xx-4 {
    padding-top: 4rem !important;
  }
  .pr-xx-4,
  .px-xx-4 {
    padding-right: 4rem !important;
  }
  .pb-xx-4,
  .py-xx-4 {
    padding-bottom: 4rem !important;
  }
  .pl-xx-4,
  .px-xx-4 {
    padding-left: 4rem !important;
  }
  .p-xx-5 {
    padding: 5rem !important;
  }
  .pt-xx-5,
  .py-xx-5 {
    padding-top: 5rem !important;
  }
  .pr-xx-5,
  .px-xx-5 {
    padding-right: 5rem !important;
  }
  .pb-xx-5,
  .py-xx-5 {
    padding-bottom: 5rem !important;
  }
  .pl-xx-5,
  .px-xx-5 {
    padding-left: 5rem !important;
  }
  .mr-xx-n1 {
    margin-right: -1rem !important;
  }
  .mb-xx-n1 {
    margin-bottom: -1rem !important;
  }
  .ml-xx-n1 {
    margin-left: -1rem !important;
  }
  .mr-xx-n2 {
    margin-right: -2rem !important;
  }
  .mb-xx-n2 {
    margin-bottom: -2rem !important;
  }
  .ml-xx-n2 {
    margin-left: -2rem !important;
  }
  .mr-xx-n3 {
    margin-right: -3rem !important;
  }
  .mb-xx-n3 {
    margin-bottom: -3rem !important;
  }
  .ml-xx-n3 {
    margin-left: -3rem !important;
  }
  .mr-xx-n4 {
    margin-right: -4rem !important;
  }
  .mb-xx-n4 {
    margin-bottom: -4rem !important;
  }
  .ml-xx-n4 {
    margin-left: -4rem !important;
  }
  .mr-xx-n5 {
    margin-right: -5rem !important;
  }
  .mb-xx-n5 {
    margin-bottom: -5rem !important;
  }
  .ml-xx-n5 {
    margin-left: -5rem !important;
  }
  .m-xx-auto {
    margin: auto !important;
  }
  .mx-xx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .mt-xx-auto {
    margin-top: auto !important;
  }
  .mr-xx-auto {
    margin-right: auto !important;
  }
  .ml-xx-auto {
    margin-left: auto !important;
  }
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-faded {
  background-color: #465660 !important;
}
.bg-light {
  background-color: #e6f2f9 !important;
}
.bg-primary {
  background-color: #097abf !important;
}
.bg-primary-teal {
  background-color: #074e62 !important;
}
.bg-primary-light-teal {
  background-color: #025a70 !important;
}
.bg-primary-teal-600 {
  background-color: #206072 !important;
}
.bg-primary-700 {
  background-color: #074e62 !important;
}
.bg-primary-800 {
  background-color: #064658 !important;
}
.bg-primary-teal-dark {
  background-color: #053745 !important;
}
.bg-primary-100,
.bkg-primary-100 {
  background-color: #e6f2f9 !important;
}
.bg-secondary {
  background-color: #3cce93 !important;
  color: #fff;
}
.bg-light-gray {
  background-color: #f8f8f8 !important;
}
.bg-green {
  background-color: #ecfaf4 !important;
}
.bg-orange {
  background-color: #fff2e6 !important;
}
.bg-blue {
  background-color: #e6edef !important;
}
.bg-primary-op {
  background-color: hsla(0, 0%, 100%, 0.05) !important;
}
[class*="bg-p"],
[class*="bg-p"] .h1,
[class*="bg-p"] :not([class]):not(strong),
[class*="bg-p"] h1,
[class*="bg-p"] h2,
[class*="bg-p"] h3,
[class*="bg-p"] h4,
[class*="bg-p"] h5,
[class*="bg-top-pattern-teal"],
[class*="bg-top-pattern-teal"] .h1,
[class*="bg-top-pattern-teal"] :not([class]):not(strong),
[class*="bg-top-pattern-teal"] h1,
[class*="bg-top-pattern-teal"] h2,
[class*="bg-top-pattern-teal"] h3,
[class*="bg-top-pattern-teal"] h4,
[class*="bg-top-pattern-teal"] h5 {
  color: #fff;
}
[class*="bg-p"] a:not([class]):hover,
[class*="bg-top-pattern-teal"] a:not([class]):hover {
  color: #30a475;
}
.bg-light-gray + .bg-light-gray,
.bg-primary + .bg-primary,
.bg-primary-teal + .bg-pattern-teal,
.bg-primary-teal + .bg-primary-teal,
.bg-primary-teal-light + .bg-primary-teal-light {
  padding-top: 0;
}
[class*="pattern-teal"] {
  background-size: 100vw;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #074e62 !important;
}
.bg-top-pattern-teal {
  background-position: top !important;
}
.bg-size-contain {
  background-size: contain !important;
}
.bg-purple {
  background-color: #f0e6ec !important;
}
.bg-purple p {
  color: #465660 !important;
}
.bg-blue-mid {
  background-color: #e6f2f9 !important;
}
.blog-navbar {
  top: 9rem;
  box-shadow: 0 0.1rem 0 0 #206072;
  height: 4.4rem;
}
.nb-shown .blog-navbar {
  top: 12rem;
}
@media (min-width: 768px) {
  .blog-navbar {
    top: 9.4rem;
  }
  .nb-shown .blog-navbar {
    top: 12.8rem;
  }
}
@media (min-width: 992px) {
  .blog-navbar {
    top: 11rem;
    height: 7rem;
  }
  .nb-shown .blog-navbar {
    top: 14.4rem;
  }
}
@media (min-width: 992px) {
  .blog-nav {
    margin: 0 -1.5rem;
  }
  .blog-nav > .menu-item {
    position: relative;
    padding: 0 1.5rem;
  }
  .category .blog-nav > .menu-item:first-child > .nav__link:before {
    display: none;
  }
  .blog-nav > .menu-item:first-child:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    margin: 0 auto;
    background-color: #518391;
    width: 0.1rem;
    height: 3rem;
    transform: translateY(-50%);
  }
  .blog-nav > .menu-item > .nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    height: 7rem;
    text-align: center;
    white-space: nowrap;
  }
  .blog-nav > .menu-item > .nav__link:before {
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    left: auto;
    opacity: 0;
    content: "";
    background: #3cce92;
    height: 0.4rem;
    width: 0;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .blog-nav > .menu-item > .nav__link:before {
    transition: none;
  }
}
@media (min-width: 992px) {
  .blog-nav > .menu-item.active .nav__link:before,
  .blog-nav > .menu-item .nav__link:focus:before,
  .blog-nav > .menu-item .nav__link:hover:before {
    opacity: 1;
    right: auto;
    left: 0;
    width: 100%;
  }
  .blog-nav > .menu-item .nav__link:focus,
  .blog-nav > .menu-item .nav__link:hover {
    color: #3cce93;
  }
}
@media (min-width: 1200px) {
  .blog-nav {
    margin: 0 -1.8rem;
  }
  .blog-nav > .menu-item {
    padding: 0 1.8rem;
  }
  .blog-nav > .menu-item:first-child:after {
    right: -0.3rem;
  }
}
@media (min-width: 1440px) {
  .blog-nav > .menu-item > .nav__link {
    font-size: inherit;
  }
}
.container-absolute {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .banner-slider > .swiper-pagination,
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.container-wide {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container-md-full {
    max-width: 100%;
  }
  .container-md-absolute {
    position: absolute;
    top: 0;
    pointer-events: none;
  }
}
@media (min-width: 992px) {
  .container-xs {
    max-width: 78rem;
  }
  .container-sm {
    max-width: 86rem;
  }
}
@media (min-width: 1200px) {
  .container-md-xs {
    max-width: 93rem;
  }
  .container-md-md {
    max-width: 99rem;
  }
  .container-md {
    max-width: 103rem;
  }
  .container-md-xlg {
    max-width: 109rem;
  }
}
.text-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 83rem;
}
.text-container-xxs {
  max-width: 68rem;
}
.text-container-md {
  max-width: 90rem;
}
.text-container-xmd {
  max-width: 93rem;
}
.text-container-lg {
  max-width: 103rem;
}
.text-container-full {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .row-gutter-d-xs-5 {
    margin-right: -5px;
    margin-left: -5px;
  }
  .row-gutter-d-xs-5 > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.row-gutter-5 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-gutter-5 > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.row-gutter-10 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-gutter-10 > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 576px) {
  .row-gutter-sm-4 {
    margin-right: -4px;
    margin-left: -4px;
  }
  .row-gutter-sm-4 > [class*="col-"] {
    padding-right: 4px;
    padding-left: 4px;
  }
  .row-gutter-sm-7 {
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
  .row-gutter-sm-7 > [class*="col-"] {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }
}
@media (min-width: 768px) {
  .row-gutter-60 {
    margin-right: -30px;
    margin-left: -30px;
  }
  .row-gutter-60 > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .row-gutter-20,
  .row-gutter-25,
  .row-gutter-30,
  .row-gutter-40 {
    margin-right: -20px;
    margin-left: -20px;
  }
  .row-gutter-20 > [class*="col-"],
  .row-gutter-25 > [class*="col-"],
  .row-gutter-30 > [class*="col-"],
  .row-gutter-40 > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .row-gutter-60 {
    margin-right: -40px;
    margin-left: -40px;
  }
  .row-gutter-60 > [class*="col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .col-lg-i8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media (min-width: 1200px) {
  .row-gutter-25 {
    margin-right: -25px;
    margin-left: -25px;
  }
  .row-gutter-25 > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .row-gutter-30 {
    margin-right: -30px;
    margin-left: -30px;
  }
  .row-gutter-30 > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .row-gutter-40 {
    margin-right: -40px;
    margin-left: -40px;
  }
  .row-gutter-40 > [class*="col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .row-gutter-60 {
    margin-right: -60px;
    margin-left: -60px;
  }
  .row-gutter-60 > [class*="col-"] {
    padding-right: 60px;
    padding-left: 60px;
  }
  .col-xl-i5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-xl-i8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.vw-50,
.vw-100 {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.vw-100 {
  flex: 0 0 auto;
}
.vw-50,
.vw-md-50 {
  flex: 0 0 auto;
  max-width: inherit;
}
@media (min-width: 768px) {
  .vw-50,
  .vw-md-50 {
    width: 50vw;
  }
  .flex-md-row-reverse .vw-50,
  .flex-md-row-reverse .vw-md-50 {
    margin-right: calc(50% - 50vw);
    margin-left: 0;
  }
}
.is-extended-md-right {
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .is-extended-md-right {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  .is-extended-md-right {
    flex: 0 0 auto;
    max-width: inherit;
    margin-right: -55vw;
    margin-left: 0;
    height: auto;
    width: 55vw;
  }
}
.is-extended-md-left {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  padding-left: 0;
}
@media (max-width: 767.98px) {
  .is-extended-md-left {
    padding-right: 2rem;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .is-extended-md-left {
    flex: 0 0 auto;
    max-width: inherit;
    margin-left: -60vw;
    margin-right: 0;
    height: auto;
    width: 60vw;
  }
}
@media (min-width: 576px) {
  .flex-sm {
    display: flex;
  }
}
.flex-fill {
  flex: 1 1 auto !important;
}
.compact-spacing > h2,
.compact-spacing > h3,
.compact-spacing > h3 + p,
.compact-spacing > h4,
.compact-spacing > p {
  margin-bottom: 1.5rem;
}
.compact-spacing :last-child {
  margin-bottom: 0;
}
.compact-spacing-xs > h2,
.compact-spacing-xs > h3,
.compact-spacing-xs > h4 {
  margin-bottom: 1rem;
}
.c-s-mb-20 > * {
  margin-bottom: 2rem;
}
.compact-spacing-15 h4:not(:last-child),
.compact-spacing-15 > h3:not(:last-child),
.compact-spacing-15 > p:not(:last-child),
.compact-spacing > p:not(:last-child),
.p-s-15 > p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-s-10 > p:not(:last-child) {
  margin-bottom: 1rem;
}
.p-s-20 > p:not(:last-child) {
  margin-bottom: 2rem;
}
.h-sp-15 h2 {
  margin-bottom: 1.5rem;
}
.h3-mb-1 h3 {
  margin-bottom: 1rem;
}
.media-mb-2 .wp-editor-media {
  margin-bottom: 2rem;
}
.mb-n05 {
  margin-bottom: -0.5rem !important;
}
.mb-n15 {
  margin-bottom: -1.5rem !important;
}
.mb-n24 {
  margin-bottom: -2.4rem !important;
}
.mb-02 {
  margin-bottom: 0.2rem !important;
}
.mb-05 {
  margin-bottom: 0.5rem !important;
}
.mb-15 {
  margin-bottom: 1.5rem !important;
}
.mb-24 {
  margin-bottom: 2.4rem !important;
}
.mr-05 {
  margin-right: 0.5rem !important;
}
.mr-n15 {
  margin-right: -1.5rem !important;
}
.mr-15 {
  margin-right: 1.5rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.py-15 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.px-15 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.py-24 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}
.p-24 {
  padding: 2.4rem !important;
}
@media (min-width: 768px) {
  .mt-md-n3 {
    margin-top: -3rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mr-md-13 {
    margin-right: 1.3rem;
  }
  .ml-md-n13 {
    margin-left: -1.3rem;
  }
  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .py-md-15 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .pr-md-7 {
    padding-right: 8rem !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-n4 {
    margin-top: -4rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n24 {
    margin-bottom: -2.4rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-lg-05 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-24 {
    margin-bottom: 2.4rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .px-lg-15 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mt-lg-n5 {
    margin-top: -5rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mr-xl-n6 {
    margin-right: -6rem !important;
  }
  .mr-xl-6 {
    margin-right: 6rem !important;
  }
  .mr-xl-15 {
    margin-right: 1.5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 7rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
  }
}
@media (min-width: 1440px) {
  .mt-xx-8 {
    margin-top: 8rem !important;
  }
  .mb-xx-7 {
    margin-bottom: 7rem !important;
  }
  .px-xx-7 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .pl-xx-7 {
    padding-left: 7rem !important;
  }
}
@media (max-width: 767.98px) {
  .mt-below-sm-n5 {
    margin-top: -5rem;
  }
  .px-xs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .pb-b-md-0 {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .filters-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    pointer-events: none;
    overflow-x: hidden;
    opacity: 0;
    padding: 5rem 2rem;
    background: #fff;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .filters-overlay {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .filters-overlay.show {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.flyout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.filter-list .filter-link {
  position: relative;
  padding: 0.8rem 0;
  color: #fff;
}
.filter-list .filter-link:after {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  background: #3cce93;
  height: 0.3rem;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .filter-list .filter-link:after {
    transition: none;
  }
}
.filter-list .filter-link.active:after {
  opacity: 1;
}
.content-info {
  position: relative;
  flex-shrink: 0;
  background-color: #052929;
  color: #b5bbbf;
  font-size: 1.4rem;
  line-height: 1.57143;
}
.content-info a {
  color: #b5bbbf;
}
.content-info a:hover,
.content-info li.active a {
  color: #3cce93;
}
.content-info-bar {
  border-top: 1px solid #206072;
  font-size: 1.2rem;
  line-height: 1.33333;
}
.footer-nav > li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.footer-links-nav {
  margin: 0 -1.3rem;
}
.footer-links-nav > li {
  padding: 0 1.3rem;
}
@media (min-width: 768px) {
  .footer-links-nav {
    margin: 0 -2.5rem;
  }
  .footer-links-nav > li {
    padding: 0 2.5rem;
  }
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none !important;
}
.form-control,
.gform_fields .large {
  display: block;
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.625;
  color: #465660;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dadddf;
  border-radius: 2.4rem;
  height: 4.8rem;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control,
  .gform_fields .large {
    transition: none;
  }
}
.gform_fields textarea.large,
textarea.form-control {
  min-height: 8rem;
}
.asterisk,
.required {
  color: #e91d36;
}
.input-box {
  display: block;
}
.input-box:not(:last-child) {
  margin-bottom: 1.5rem;
}
.input-box-field {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  height: 0;
  width: 0;
  clip-path: none;
}
.input-box-label {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #313e48;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .input-box-label {
    transition: none;
  }
}
.input-box-label:before {
  flex: 0 0 2rem;
  max-width: 2rem;
  display: block;
  content: "";
  margin-right: 1.2rem;
  box-shadow: inset 0 0 0 0.1rem #3cce93;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  height: 2rem;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .input-box-label:before {
    transition: none;
  }
}
.input-box-label:after {
  position: absolute;
  top: 0.33em;
  left: 0.33em;
  opacity: 0;
  content: "";
  border-color: #3cce93;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  height: 0.6rem;
  width: 1rem;
  transform: rotate(125deg);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .input-box-label:after {
    transition: none;
  }
}
.input-box .input-box-field[type="checkbox"]:checked + .input-box-label {
  color: #3cce93;
  font-weight: 700;
}
.input-box .input-box-field[type="checkbox"]:checked + .input-box-label:after {
  opacity: 1;
}
.input-box .input-box-field[type="checkbox"]:focus + .input-box-label {
  font-weight: 700;
}
.input-box .input-box-field[type="checkbox"][disabled] + .input-box-label {
  color: #9099a0;
}
.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 0.1rem 0 0 #edeeef;
  transition: all 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .banner {
    transition: none;
  }
}
@media (min-width: 992px) {
  .has-scrollbar.mfp-open .banner {
    margin-right: 1.7rem;
  }
}
.admin-bar .banner {
  top: 4.6rem;
}
@media (min-width: 781px) {
  .admin-bar .banner {
    top: 3.2rem;
  }
}
@media (max-width: 991.98px) {
  .header-actions {
    opacity: 0;
  }
  .navbar-collapse.is-shown .header-actions {
    animation: slideFadeInUp 1s ease 0.5s forwards;
  }
}
.banner-bar {
  background: #053745;
  font-size: 1.4rem;
  font-weight: 400;
  height: 3rem;
  line-height: 1.57143;
}
.banner-bar a {
  color: #edeeef;
  text-decoration: none;
}
.banner-bar .nav a:hover,
.banner-bar a:hover,
.banner-bar li.active a {
  color: #3cce93;
}
@media (min-width: 768px) {
  .banner-bar {
    height: 3.4rem;
  }
}
.banner-actions-list {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.banner-actions-list > li {
  position: relative;
}
.banner-actions-list > li:not(:last-child) > a:before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  background: #9099a0;
  height: 50%;
  width: 1px;
  transform: translateY(-50%);
}
.banner-actions-list > li > a {
  padding: 0 1.5rem;
  height: 3rem;
}
.banner-actions-list > li > a:after {
  color: inherit;
}
@media (min-width: 992px) {
  .banner-actions-list > li > a {
    height: 3.4rem;
  }
}
.banner-actions-list > li.dropdown:hover .dropdown-toggle {
  color: #3cce93;
}
.banner-actions-list > li.dropdown:hover .dropdown-toggle:after {
  transform: rotate(180deg);
}
.banner-actions-list > li.dropdown:not(.disable-hover):hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  z-index: 1001;
}
.banner-actions-list .show .dropdown-toggle {
  color: #3cce93;
}
.banner-actions-list .icon {
  margin-right: 0.5rem;
}
.mega-menu-wrap {
  display: none;
}
@media (max-width: 991.98px) {
  .mega-menu-wrap .banner-slider > .swiper-pagination,
  .mega-menu-wrap .container {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .mega-menu-wrap {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: block !important;
    background: linear-gradient(90deg, #fff 50%, #f8f8f8 0);
    box-shadow: 0 1.2rem 1.5rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .mega-menu-wrap {
    transition: none;
  }
}
@media (min-width: 992px) {
  .nav-expanded .mega-menu-wrap {
    transition: none;
  }
  .megamenu-show .mega-menu-wrap {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}
@media (max-width: 991.98px) {
  .menu-grid__item:nth-child(2) {
    border-top: 1px solid #edeeef;
  }
}
@media (min-width: 992px) {
  .menu-grid {
    position: relative;
    min-height: 43rem;
  }
  .menu-grid__item {
    flex: 0 0 21.92982%;
    max-width: 21.92982%;
    padding: 3rem 0;
  }
  .menu-grid__item:first-child {
    border-right: 1px solid #edeeef;
  }
  .menu-grid__item:nth-child(2) {
    flex: 0 0 28.94737%;
    max-width: 28.94737%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    background: #fff;
  }
  .menu-grid__item:nth-child(2).split-items {
    flex: 0 0 47.36842%;
    max-width: 47.36842%;
  }
  .menu-grid__item:last-of-type {
    flex: 1 1 0;
    max-width: inherit;
    padding-left: 4rem;
  }
  .menu-grid .split-items .m-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .menu-grid .split-items .m-menu > li {
    padding-right: 1rem;
    padding-left: 1rem;
    flex: 0 0 45%;
  }
  .menu-grid .split-items .m-menu > li:nth-child(odd) {
    flex: 0 0 55%;
  }
  .menu-grid .mm-close {
    position: absolute;
    top: 2rem;
    right: 0;
    padding: 1rem;
    font-size: 1.4rem;
  }
  .menu-grid .mm-close:hover {
    color: #3cce93;
  }
}
@media (min-width: 992px) {
  .menu-content:not(.shown),
  .menu-widget:not(.shown) {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .menu-widget.level-2 {
    opacity: 0;
  }
  .navbar-collapse.is-shown .menu-widget.level-2 {
    animation: slideFadeInUp 1s ease 0.05s forwards;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:first-of-type {
    animation-delay: 0.05s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(2) {
    animation-delay: 0.1s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(3) {
    animation-delay: 0.15s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(4) {
    animation-delay: 0.2s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(5) {
    animation-delay: 0.25s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(6) {
    animation-delay: 0.3s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(7) {
    animation-delay: 0.35s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(8) {
    animation-delay: 0.4s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(9) {
    animation-delay: 0.45s;
  }
  .navbar-collapse.is-shown .menu-widget.level-2:nth-of-type(10) {
    animation-delay: 0.5s;
  }
  .menu-widget:not(:last-child) {
    border-bottom: 1px solid #edeeef;
  }
  .menu-widget .mm-link {
    position: relative;
    padding: 1.4rem 2rem 1.4rem 4rem;
    color: #313e48;
    font-weight: 500;
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .menu-widget .mm-link {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991.98px) {
  .menu-widget .mm-level2-link {
    padding-left: 5rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .menu-widget .mm-level2-link {
    padding-left: 3rem;
  }
}
@media (max-width: 991.98px) {
  .menu-widget .dropdown-toggle {
    color: #313e48;
  }
}
@media (min-width: 992px) {
  .m-menu {
    display: flex !important;
    flex-direction: column;
  }
  .menu-grid .m-menu {
    margin-bottom: -0.5rem;
  }
  .m-menu.menu-level-1 a {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.625;
  }
  .m-menu li {
    margin-bottom: 0.5rem;
  }
  .m-menu li.is-current a {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    background: #ecfaf4;
    color: #313e48;
  }
  .m-menu a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #313e48;
    font-size: 1.4rem;
    line-height: 1.57143;
    min-height: 3.6rem;
  }
  .m-menu a:hover {
    color: #3cce93;
  }
}
.menu-content {
  font-size: 1.4rem;
  line-height: 1.57143;
}
.menu-content h4,
.menu-content p {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .menu-content {
    max-width: 38rem;
  }
}
@media (max-width: 991.98px) {
  .mm-content-holder {
    display: none;
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
  .mm-content-holder > li:not(:last-child) {
    margin-bottom: 1.2rem;
  }
  .mm-content-holder > li > a:not(.btn) {
    color: #313e48;
    line-height: 1.625;
  }
}
@media (min-width: 992px) {
  .megamenu-backdrop {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: fixed;
    top: 11.1rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .megamenu-backdrop {
    transition: none;
  }
}
@media (min-width: 992px) {
  .megamenu-backdrop.shown {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nb-shown .megamenu-backdrop {
    top: 14.5rem;
  }
}
.navbar {
  display: flex;
  height: 6rem;
}
.navbar-brand {
  flex: 0 0 16rem;
}
@media (min-width: 992px) {
  .navbar {
    height: 7.6rem;
  }
  .navbar-brand {
    flex: 0 0 13.5rem;
  }
}
@media (min-width: 1200px) {
  .navbar-brand {
    flex: 0 0 auto;
  }
}
.navbar-toggle {
  position: relative;
  margin-left: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 2rem;
  width: 3rem;
  -webkit-appearance: none;
}
.navbar-toggle-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 1;
  background: #074e62;
  backface-visibility: hidden;
  height: 0.3rem;
  width: 3rem;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggle-line {
    transition: none;
  }
}
.navbar-toggle-line:first-child {
  top: 0.1rem;
}
.navbar-toggle-line:nth-child(2),
.navbar-toggle-line:nth-child(3) {
  top: 0.9rem;
}
.navbar-toggle-line:nth-child(4) {
  top: 1.7rem;
}
.navbar-toggle.is-expanded .navbar-toggle-line:first-child,
.navbar-toggle.is-expanded .navbar-toggle-line:nth-child(4) {
  left: 50%;
  opacity: 0;
  width: 0;
}
.navbar-toggle.is-expanded .navbar-toggle-line:nth-child(2),
.navbar-toggle.is-expanded .navbar-toggle-line:nth-child(3) {
  left: 0;
}
.navbar-toggle.is-expanded .navbar-toggle-line:nth-child(2) {
  transform: rotate(45deg);
}
.navbar-toggle.is-expanded .navbar-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}
.navbar-collapse {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 9rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 1px 0 0 1px #edeeef;
  transition: all 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-collapse {
    transition: none;
  }
}
.nb-shown .navbar-collapse {
  top: 12rem;
}
.navbar-collapse.is-shown {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 576px) {
  .navbar-collapse-inner {
    margin: 0 auto;
    max-width: 53rem;
  }
}
@media (min-width: 768px) {
  .navbar-collapse {
    top: 9.4rem;
  }
  .nb-shown .navbar-collapse {
    top: 12.8rem;
  }
  .navbar-collapse-inner {
    max-width: 69rem;
  }
}
@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    overflow: inherit;
    pointer-events: auto;
    opacity: 1;
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    transition: none !important;
    visibility: visible;
  }
  .navbar-collapse-inner {
    display: flex;
    align-items: center;
    margin-right: 0;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .main-nav > li .dropdown-menu {
    left: 50%;
    display: block !important;
    border-radius: 0.4rem;
    transform: translateX(-50%) translateY(1.5rem);
  }
  .main-nav > li:hover > a:after {
    transform: rotate(-180deg);
  }
  .main-nav > li:hover .dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.primary-nav li {
  opacity: 0;
  line-height: 1;
}
.navbar-collapse.is-shown .primary-nav li {
  animation: slideFadeInUp 1s ease 0.05s forwards;
}
.navbar-collapse.is-shown .primary-nav li:first-of-type {
  animation-delay: 0.05s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(2) {
  animation-delay: 0.1s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(3) {
  animation-delay: 0.15s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(4) {
  animation-delay: 0.2s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(5) {
  animation-delay: 0.25s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(6) {
  animation-delay: 0.3s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(7) {
  animation-delay: 0.35s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(8) {
  animation-delay: 0.4s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(9) {
  animation-delay: 0.45s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(10) {
  animation-delay: 0.5s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(11) {
  animation-delay: 0.55s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(12) {
  animation-delay: 0.6s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(13) {
  animation-delay: 0.65s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(14) {
  animation-delay: 0.7s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(15) {
  animation-delay: 0.75s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(16) {
  animation-delay: 0.8s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(17) {
  animation-delay: 0.85s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(18) {
  animation-delay: 0.9s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(19) {
  animation-delay: 0.95s;
}
.navbar-collapse.is-shown .primary-nav li:nth-of-type(20) {
  animation-delay: 1s;
}
.primary-nav > li {
  border-bottom: 0.1rem solid #edeeef;
}
.primary-nav > li .dropdown-menu > li > a {
  display: block;
  color: #3f4d56;
  line-height: 1.625;
}
.primary-nav > li .dropdown-menu > li > a:hover {
  color: #3cce93;
}
@media (max-width: 575.98px) {
  .primary-nav > li .dropdown-menu > li > a {
    padding: 0 2rem 0 4rem;
  }
}
.primary-nav > li .dropdown-menu > li.active > a {
  color: #3cce93;
}
@media (max-width: 991.98px) {
  .primary-nav > li .dropdown-menu {
    position: static;
    overflow: hidden;
    display: none;
    padding: 1rem 0 2.5rem;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .navbar-collapse.is-shown .primary-nav > li .dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  .primary-nav > li .dropdown-menu > li {
    margin-bottom: 1.2rem;
  }
  .primary-nav > li .dropdown-menu > li:last-of-type {
    margin-bottom: 0;
  }
}
.primary-nav > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.4rem 2rem;
  color: #313e48;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}
.primary-nav > li > a:after {
  display: none;
}
@media (min-width: 576px) {
  .primary-nav > li > a {
    padding-right: 0;
    padding-left: 0;
  }
}
.primary-nav > li.active > a {
  color: #3cce93;
}
@media (min-width: 992px) {
  .primary-nav {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
    flex: 1 1 0;
  }
  .primary-nav li {
    animation: none !important;
    opacity: 1;
    transform: none !important;
  }
  .primary-nav > li {
    margin: 0 1.2rem;
    border-bottom: 0;
  }
  .primary-nav > li.active > a,
  .primary-nav > li.megamenu-show > a,
  .primary-nav > li:hover > a {
    background: transparent;
    color: #313e48;
  }
  .primary-nav > li.active > a:before,
  .primary-nav > li.megamenu-show > a:before,
  .primary-nav > li:hover > a:before {
    opacity: 1;
    right: auto;
    left: 0;
    width: 100%;
  }
  .primary-nav > li > a {
    justify-content: center;
    padding: 3rem 0;
    font-weight: 400;
  }
  .primary-nav > li > a:before {
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    left: auto;
    opacity: 0;
    content: "";
    background: #3cce93;
    height: 0.3rem;
    width: 0;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .primary-nav > li > a:before {
    transition: none;
  }
}
@media (min-width: 1200px) {
  .primary-nav {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .primary-nav > li {
    margin: 0 1.5rem;
  }
}
.notification-bar {
  background: #097abf;
  color: #fff;
  font-size: 1.4rem;
  height: 3rem;
}
.notification-bar .btn-link {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 600;
}
.notification-bar .btn-link:hover {
  color: #3cce93;
}
.notification-bar .close {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .notification-bar {
    font-size: inherit;
    height: 3.4rem;
  }
  .notification-bar .close {
    right: 0;
  }
}
@media (min-width: 992px) {
  .notification-bar {
    background: #3cce93;
    color: #fff;
  }
  .notification-bar .btn-link:hover {
    color: #097abf;
  }
}
.notification-text {
  padding: 0.1rem 0;
}
@media (max-width: 767.98px) {
  .notification-text-wrap {
    height: 3rem;
    width: 100%;
  }
  .notification-text {
    position: absolute;
    left: 0;
  }
}
.search-form-wrap {
  position: absolute;
  top: 100%;
  z-index: 3;
}
.search-form {
  position: relative;
}
.gform_fields .search-form .large,
.search-form .form-control,
.search-form .gform_fields .large {
  font-size: inherit;
  background: #fff;
  border-radius: 0;
  height: 6rem;
}
.search-form-btn {
  position: absolute;
  top: 50%;
  right: 0;
  border: 0;
  height: 100%;
  width: 6rem;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .search-form-btn {
    transition: none;
  }
}
.search-form-submit-btn {
  font-size: 2.4rem;
}
.is-filled .search-form-submit-btn,
.search-form-reset-btn {
  opacity: 0;
  visibility: hidden;
}
.search-form-reset-btn {
  font-size: 1.8rem;
}
.is-filled .search-form-reset-btn {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .gform_fields .search-form .large,
  .search-form .form-control,
  .search-form .gform_fields .large {
    height: 7.6rem;
    font-size: 1.8rem;
  }
}
.autocomplete-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - 9rem);
  overflow-x: auto;
  opacity: 0;
  background: #fff;
  border-bottom: 1px solid #dadddf;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  min-height: 25rem;
  z-index: 1;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .autocomplete-search {
    transition: none;
  }
}
.opened .autocomplete-search {
  opacity: 1;
  visibility: visible;
}
.nb-shown .autocomplete-search {
  height: calc(100vh - 12rem);
}
.autocomplete-search .search-widget a {
  padding: 0;
  white-space: normal;
}
@media (min-width: 992px) {
  .autocomplete-search {
    height: inherit !important;
  }
}
.sl-tab-list.sl-tab-list--sm > li > a {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sl-tab-list > li > a {
  padding: 2.5rem 0;
  color: #b5bbbf;
}
.sl-tab-list > li > a.active {
  color: #313e48;
}
.sl-tab-list > li > a.active:before {
  opacity: 1;
  height: 100%;
}
.sl-tab-list > li > a:before {
  position: absolute;
  top: 0;
  right: -3.3rem;
  opacity: 0;
  content: "";
  background: #097abf;
  height: 0;
  width: 0.4rem;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .sl-tab-list > li > a:before {
    transition: none;
  }
}
.flex-md-row-reverse .sl-tab-list > li > a:before,
.order-1 .sl-tab-list > li > a:before {
  right: auto;
  left: -3.3rem;
}
.sl-tab-list > li > a:after {
  display: none;
}
.sl-tab-list > li span {
  margin-left: 0.4rem;
  color: #3cce93;
}
.page-container {
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 9rem;
  min-height: 100vh;
}
.has-sticky-buttons .page-container {
  padding-bottom: 4.4rem;
}
.blog-page .page-container {
  padding-top: 13.8rem;
}
.page-container.nb-shown {
  padding-top: 12rem;
}
.blog-page .page-container.nb-shown {
  padding-top: 16.4rem;
}
@media (min-width: 768px) {
  .page-container {
    overflow: initial;
    padding-top: 9.4rem;
  }
  .has-sticky-buttons .page-container {
    padding-bottom: 0;
  }
  .page-container.nb-shown {
    padding-top: 12.8rem;
  }
  .blog-page .page-container.nb-shown {
    padding-top: 17.2rem;
  }
}
@media (min-width: 992px) {
  .page-container {
    padding-top: 11rem;
  }
  .page-container.nb-shown {
    padding-top: 14.4rem;
  }
  .blog-page .page-container.nb-shown {
    padding-top: 21.4rem;
  }
  .blog-page .page-container {
    padding-top: 18rem;
  }
}
#content {
  flex: 1 1 0;
}
@media (min-width: 768px) {
  .sticky-sidebar {
    position: sticky;
    position: -webkit-sticky;
    top: 12.4rem;
  }
  .has-anchor-links.nb-shown .sticky-sidebar {
    top: 20.8rem;
  }
  .nb-shown .sticky-sidebar {
    top: 15.4rem;
  }
  .has-anchor-links .sticky-sidebar {
    top: 17.4rem;
  }
}
@media (min-width: 992px) {
  .sticky-sidebar {
    top: 13.6rem;
  }
  .has-anchor-links.nb-shown .sticky-sidebar {
    top: 23.4rem;
  }
  .nb-shown .sticky-sidebar {
    top: 17rem;
  }
  .has-anchor-links .sticky-sidebar {
    top: 20rem;
  }
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
.wp-block-buttons {
  justify-content: center;
}
.wp-block-image.size-full > img {
  width: 100%;
}
[class*="wp-block-"] figcaption {
  margin-top: 1rem;
  line-height: 1.375;
}
.wp-block-gallery[class*="wp-container"] {
  gap: 0;
}
.wp-block-gallery > .wp-block-image {
  align-self: flex-start;
  flex: 0 0 100%;
  margin-bottom: 2rem;
}
.wp-block-gallery > .wp-block-image:last-of-type {
  margin-bottom: 0;
}
.wp-block-gallery > figcaption {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .wp-block-gallery {
    margin-bottom: -2rem;
  }
  .wp-block-gallery.columns-2 > .wp-block-image {
    flex: 0 0 calc(50% - 2rem / 2);
    max-width: calc(50% - 2rem / 2);
  }
  .wp-block-gallery.columns-2 > .wp-block-image:nth-of-type(2n + 2) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-2
    > .wp-block-image:nth-last-of-type(2):nth-child(odd) {
    margin-bottom: 0;
  }
  .wp-block-gallery.columns-3 > .wp-block-image {
    flex: 0 0 calc(33.3333333% - 4rem / 3);
    max-width: calc(33.3333333% - 4rem / 3);
  }
  .wp-block-gallery.columns-3 > .wp-block-image:nth-of-type(3n + 3) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-3
    > .wp-block-image:nth-last-of-type(2):nth-child(2n),
  .wp-block-gallery.columns-3
    > .wp-block-image:nth-last-of-type(2):nth-child(odd),
  .wp-block-gallery.columns-3
    > .wp-block-image:nth-last-of-type(3):nth-child(2n),
  .wp-block-gallery.columns-3
    > .wp-block-image:nth-last-of-type(3):nth-child(odd) {
    margin-bottom: 0;
  }
  .wp-block-gallery > .wp-block-image {
    position: relative;
    overflow: hidden;
    margin-right: 2rem;
  }
  .wp-block-gallery > .wp-block-image:after {
    content: "";
    display: block;
    padding-bottom: 66.6666666%;
  }
  .wp-block-gallery > .wp-block-image > img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}
.wp-block-quote {
  padding-bottom: 3rem;
  max-width: 55rem;
}
.wp-content > :first-child {
  margin-top: 0;
}
.wp-content :last-child {
  margin-bottom: 0;
}
.wp-content a:not([class]) {
  color: #3cce93;
}
.wp-content a:not([class]):hover {
  color: #097abf;
}
.wp-editor-content > :not(p) {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.wp-editor-content > h3,
.wp-editor-content > h4,
.wp-editor-content > h5 {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.wp-editor-content > h3 + ol,
.wp-editor-content > h3 + ul,
.wp-editor-content > h4 + ol,
.wp-editor-content > h4 + ul,
.wp-editor-content > h5 + ol,
.wp-editor-content > h5 + ul {
  margin-top: 2.5rem;
}
.wp-editor-content > h2:first-of-type,
.wp-editor-content > h3:first-of-type {
  margin-top: 0;
}
.single-post .wp-editor-content > ul > li {
  margin-bottom: 2.5rem;
}
.wp-editor-sm-content > * {
  margin-bottom: 3rem;
}
.wp-editor-sm-content > h2,
.wp-editor-sm-content > h3 {
  margin-bottom: 2.5rem;
}
.wp-editor-sm-content > h4,
.wp-editor-sm-content > h5,
.wp-grid-content > * {
  margin-bottom: 2rem;
}
.wp-grid-content .tagline {
  margin-bottom: 1rem;
}
.wp-grid-content .list-inline,
.wp-wysiwyg-content > * {
  margin-bottom: 3rem;
}
.wp-wysiwyg-content > h4,
.wp-wysiwyg-content > h5 {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .wp-wysiwyg-content > h2 {
    margin-bottom: 4rem;
  }
}
.wp-editor-media {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.wp-editor-media:first-child {
  margin-top: 0;
}
.wp-editor-media:last-child {
  margin-bottom: 0;
}
.wp-editor-media .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alert {
  position: relative;
  padding: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
}
.alert-link {
  font-weight: 700;
}
.alert-success {
  color: #235a21;
  background-color: #d9efd9;
  border-color: #cae8ca;
}
.alert-success hr {
  border-top-color: #b8e0b8;
}
.alert-success .alert-link {
  color: #143513;
}
.alert-danger {
  color: #790f1c;
  background-color: #fbd2d7;
  border-color: #f9c0c7;
}
.alert-danger hr {
  border-top-color: #f7a9b2;
}
.alert-danger .alert-link {
  color: #4c0912;
}
.accordion--alt .a-card {
  border-width: 0.2rem;
}
.a-card {
  border-top: 0.1rem solid #dadddf;
  border-bottom: 0.1rem solid #dadddf;
}
[class*="bg-p"] .a-card {
  border-color: #518391;
}
.a-card:not(:last-of-type) {
  border-bottom: 0;
}
.a-card--flat {
  border: 0;
}
.a-card-x-b {
  padding-right: 2rem;
  padding-left: 2rem;
  border-right: 1px solid #dadddf;
  border-left: 1px solid #dadddf;
}
.a-card-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.8rem 2.5rem 1.8rem 0;
  background: transparent;
  border: 0;
  color: #313e48;
  font: 700 1.8rem/1.44444 novel-display, serif;
  text-align: left;
  width: 100%;
  -webkit-appearance: none;
  z-index: 1;
}
[class*="bg-p"] .a-card-link {
  color: #fff;
}
[class*="bg-p"] .a-card-link:after,
[class*="bg-p"] .a-card-link:before {
  background: #fff;
}
.a-card-link.has-arrow:before {
  display: none;
}
.a-card-link.has-arrow:after {
  content: "\E901";
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none;
  border: 0;
  height: auto;
  width: auto;
  transform: translateY(-50%) rotate(-180deg);
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .a-card-link.has-arrow:after {
    transition: none;
  }
}
.a-card-link.has-arrow:hover:after {
  background: none;
}
.a-card-link.has-arrow.collapsed:after {
  transform: translateY(-50%);
}
.a-card-link.is-sec:after,
.a-card-link:hover {
  color: #3cce93;
}
.a-card-link:hover:after,
.a-card-link:hover:before {
  background: #3cce93;
}
.a-card-link:after,
.a-card-link:before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  background: #313e48;
  border-radius: 0.2rem;
  height: 0.2rem;
  width: 1.6rem;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .a-card-link:after,
  .a-card-link:before {
    transition: none;
  }
}
.a-card-link:before {
  opacity: 0;
}
.a-card-link:after {
  transform: rotate(-180deg);
}
.a-card-link.collapsed:before {
  opacity: 1;
}
.a-card-link.collapsed:after {
  transform: translate3d(0, -50%, 0) rotate(90deg);
}
.nav-tabs {
  display: inline-flex;
  margin-bottom: 2rem;
  vertical-align: top;
}
.nav-tabs.has-b-line {
  border-bottom: 1px solid #dadddf;
}
@media (max-width: 767.98px) {
  .nav-tabs.has-b-line .nav-link {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .nav-tabs-card .nav-item {
    margin-top: -3.5rem;
    margin-bottom: 1rem;
  }
  .nav-tabs-card .nav-item:nth-child(2n) {
    padding-top: 3.5rem;
  }
  .nav-tabs-card .nav-item:nth-child(n + 1):nth-child(-n + 8) {
    margin-top: 0;
  }
  .nav-tabs-card .nav-link {
    padding: 1.2rem 1rem;
    background: #206072;
    border-radius: 0.6rem;
    font-size: inherit;
    line-height: 1.5;
    height: 13rem;
  }
  .nav-tabs-card .nav-link:after {
    display: none;
  }
  .nav-tabs.nav-tabs-card .nav-link.active,
  .nav-tabs.nav-tabs-card .nav-link:hover {
    background: #fff;
    color: #313e48;
  }
}
.nav-link {
  position: relative;
  display: block;
  padding: 0.8rem 0;
  color: #313e48;
  font: 700 1.8rem/1 novel-display, serif;
  text-align: center;
  text-decoration: none;
}
.nav-link-lg {
  padding-bottom: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.25;
}
.nav-link:after {
  opacity: 0;
  height: 0.4rem;
  width: 0;
  background: #3cce93;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  content: "";
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link:after {
    transition: none;
  }
}
.nav-link.active:after {
  right: auto;
  left: 0;
  opacity: 1;
  width: 100%;
}
[class*="bg-primary-"] .nav-link {
  color: #fff;
}
[class*="bg-primary-"] .nav-link:hover {
  color: #3cce93;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
@media (min-width: 992px) {
  .tab-content .a-card {
    border: 0;
  }
  .tab-content .collapse {
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .accordion .tab-pane {
    opacity: 1;
  }
  .accordion .tab-pane:not(:last-child) .a-card {
    border-bottom: 0;
  }
}
@media (min-width: 992px) {
  .accordion .tab-pane {
    display: none;
  }
  .accordion .tab-pane.active {
    display: block;
  }
}
.dropdown {
  position: relative;
}
.box-dropdown .dropdown-toggle {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border: 1px solid #dadddf;
  height: 4.4rem;
}
.box-dropdown .dropdown-toggle:after {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .box-dropdown .btn,
  .box-dropdown .wp-block-buttons .wp-block-button__link,
  .wp-block-buttons .box-dropdown .wp-block-button__link {
    padding: 1rem 1.5rem;
    border: 0;
    justify-content: flex-start;
    height: auto;
  }
  .box-dropdown .btn.is-active,
  .box-dropdown .btn:focus,
  .box-dropdown .wp-block-buttons .is-active.wp-block-button__link,
  .box-dropdown .wp-block-buttons .wp-block-button__link:focus,
  .wp-block-buttons .box-dropdown .is-active.wp-block-button__link,
  .wp-block-buttons .box-dropdown .wp-block-button__link:focus {
    background: none;
    color: #3cce93;
  }
  .box-dropdown .dropdown-menu {
    width: 100%;
  }
}
.dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .dropdown-toggle {
    transition: none;
  }
}
.dropdown-toggle.no-caret:after {
  display: none;
}
.dropdown-toggle-caret:after,
.dropdown-toggle:after {
  content: "\E901";
  margin-left: 0.5rem;
  color: #313e48;
  font-size: 1.2rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dropdown-toggle-caret:after,
  .dropdown-toggle:after {
    transition: none;
  }
}
.dropdown.show .dropdown-toggle-caret:after,
.dropdown.show .dropdown-toggle:after {
  transform: rotate(-180deg);
}
[class*="bg-primary"] .dropdown-toggle-caret:after,
[class*="bg-primary"] .dropdown-toggle:after {
  color: inherit;
}
.dropdown-toggle-caret {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: #313e48;
  width: 4.4rem;
  z-index: 1;
}
.dropdown-toggle-caret:after {
  font-size: 1.4rem;
}
.has-megamenu .dropdown-toggle-caret:after {
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 576px) {
  .dropdown-toggle-caret {
    justify-content: flex-end;
  }
}
.is-active .dropdown-toggle-caret:after {
  transform: rotate(-180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  display: block;
  min-width: 18rem;
  padding: 2rem 0;
  font-size: 1.6rem;
  color: #465660;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.5rem;
  box-shadow: 0.4rem 0.5rem 2.2rem 0 rgba(0, 0, 0, 0.25);
  transform: translateY(1.5rem);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .dropdown-menu {
    transition: none;
  }
}
.x-center .dropdown-menu {
  left: 50%;
  transform: translateX(-50%) translateY(1.5rem);
}
.w-xs .dropdown-menu {
  min-width: 14rem;
}
.dropdown.show .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .dropdown-menu-lg-static {
    position: static;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }
}
.dropdown-menu > li > a {
  padding: 0.5rem 2rem;
  color: #313e48;
  white-space: nowrap;
  width: 100%;
}
.dropdown-menu > li > a:not(.btn) {
  display: block;
}
.dropdown-menu > li.active a,
.dropdown-menu a.active {
  color: #3cce93;
}
@media (min-width: 992px) {
  .form-card .gform_wrapper {
    margin-top: 3rem;
  }
}
.gform_ajax_spinner,
.gform_hidden,
.gform_previous_button,
.gform_validation_container {
  display: none !important;
}
.gform_heading {
  margin-bottom: 2rem;
}
.gform_fields {
  padding: 0;
  list-style: none;
}
.gform_fields > .gfield {
  margin-bottom: 2.5rem;
  line-height: 1;
}
.gform_fields > .gfield.gfield_html,
.gform_fields > .gfield.gfield_normal {
  line-height: inherit;
}
.gform_fields > .gfield:not(.gfield_normal) .large {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.gform_fields .large {
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
[class*="bg-primary-"] .gform_fields .large {
  border-color: #fff;
}
.gform_fields .large.nice-select {
  line-height: 3.4rem;
}
.gform_fields .large:last-child {
  margin-bottom: 0;
}
.gform_fields textarea.large {
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .gform_fields {
    display: flex;
    flex-wrap: wrap;
  }
  .gform_wrapper .gform_fields {
    margin: 0 -0.8rem -2.5rem;
  }
  .gform_fields > .gfield {
    flex: 0 0 100%;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
}
.gfield > label {
  margin-bottom: 1rem;
  color: #313e48;
}
[class*="bg-primary-"] .gfield > label {
  color: #fff;
}
.gfield .ginput_container:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gf_col_md_6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
.gfield_required {
  color: #e91d36;
}
.gform_footer {
  margin-top: 2.5rem;
  text-align: center;
}
.gfield:not(.gfield_normal) {
  position: relative;
}
.gfield:not(.gfield_normal) > label {
  position: absolute;
  top: 0.1rem;
  right: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 1rem 1.4rem 1.2rem;
  color: #7e8890;
  font-weight: 400;
  height: 4.8rem;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .gfield:not(.gfield_normal) > label {
    transition: none;
  }
}
.gfield:not(.gfield_normal).filled > label,
.gfield:not(.gfield_normal).focused > label {
  font-size: 1.1rem;
  transform: translateY(-1.2rem);
}
@media (min-width: 768px) {
  .gfield:not(.gfield_normal) > label {
    right: 0.8rem;
    left: 0.9rem;
  }
}
.ginput_container_consent input[type="checkbox"] + label {
  cursor: pointer;
}
.ginput_container_consent .gfield_consent_label {
  position: relative;
  display: flex;
  align-items: start;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.4rem;
}
.ginput_container_consent .gfield_consent_label:before {
  flex: 0 0 2rem;
  max-width: 2rem;
  display: block;
  content: "";
  margin-right: 1.2rem;
  box-shadow: inset 0 0 0 0.1rem #b5bbbf;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  height: 2rem;
  margin-top: 0.2rem;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .ginput_container_consent .gfield_consent_label:before {
    transition: none;
  }
}
.ginput_container_consent .gfield_consent_label:after {
  position: absolute;
  top: 0.5em;
  left: 0.33em;
  opacity: 0;
  content: "";
  border-color: #fff;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  height: 0.6rem;
  width: 1rem;
  transform: rotate(125deg);
}
.ginput_container_consent .gfield_required_asterisk,
.ginput_container_consent .gfield_required_text,
.ginput_container_consent input[type="checkbox"] {
  display: block;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  height: 0;
  width: 0;
  clip-path: none;
}
.ginput_container_consent
  .gfield_required_asterisk:checked
  + .gfield_consent_label:before,
.ginput_container_consent
  .gfield_required_text:checked
  + .gfield_consent_label:before,
.ginput_container_consent
  input[type="checkbox"]:checked
  + .gfield_consent_label:before {
  content: "\E91E";
  background: #3cce93;
  box-shadow: none;
  color: #fff;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ginput_container_consent
  .gfield_required_asterisk:checked
  + .gfield_consent_label:after,
.ginput_container_consent
  .gfield_required_text:checked
  + .gfield_consent_label:after,
.ginput_container_consent
  input[type="checkbox"]:checked
  + .gfield_consent_label:after {
  opacity: 1;
}
.gfield_consent_description {
  margin-left: 3rem;
  font-size: 1.4rem;
}
.gf_inline_form {
  position: relative;
}
.gf_inline_form .gform_fields,
.gf_inline_form .gform_fields .gfield {
  margin-bottom: 0;
}
.gf_inline_form .gform_fields .large {
  padding-right: 11rem;
  background: transparent;
  border-color: #3cce93;
  border-radius: 2.6rem;
  color: #fff;
}
.gf_inline_form .gform_footer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
}
.gf_inline_form .btn,
.gf_inline_form .wp-block-buttons .wp-block-button__link,
.wp-block-buttons .gf_inline_form .wp-block-button__link {
  padding: 0.5rem 1.5rem;
  font-family: MabryPro, Inter, sans-serif;
  font-size: 1.4rem;
  height: 4.8rem;
  min-width: inherit;
  width: 11rem;
}
@media (min-width: 768px) {
  .footer-widget .gf_inline_form .btn,
  .footer-widget .gf_inline_form .wp-block-buttons .wp-block-button__link,
  .wp-block-buttons .footer-widget .gf_inline_form .wp-block-button__link {
    font-size: 1.2rem;
    width: 9rem;
  }
}
.gf_inline_form_wrapper .gform_validation_errors {
  margin-bottom: 1rem;
}
.gf_inline_form_wrapper .validation_error,
.gf_inline_form_wrapper .validation_message {
  font-size: 1.2rem;
}
.gf_inline_form_wrapper .validation_error {
  padding: 1rem;
}
@media (min-width: 768px) {
  .nl-wrap .nl-form {
    min-width: 30.5rem;
    flex: 30.5rem;
  }
}
.footer-widget .gfield_required,
.nl-form .gfield_required {
  display: none;
}
.gform_validation_errors {
  margin-bottom: 2rem;
}
.gform_confirmation_message,
.validation_error {
  padding: 2rem;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.42857;
}
.validation_error {
  background: #e91d36;
}
.validation_error > .validation_error {
  margin-bottom: 0;
  padding: 0;
}
.gform_confirmation_message {
  background: #43ae40;
}
.validation_message {
  color: #e91d36;
  font-size: 1.4rem;
  line-height: 1.2;
}
.gform_fields .gfield_error .large {
  border-color: #e91d36;
}
.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}
@keyframes skeletonAnimation {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  to {
    opacity: 0.8;
  }
}
.pending_el {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #edeeef !important;
  background-color: #edeeef !important;
  border: 0 !important;
  height: 2.4rem;
  vertical-align: top;
}
.pending_el > .pending_el {
  opacity: 0;
}
.pending_el:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  animation: progress 1.5s ease infinite forwards;
  background: linear-gradient(90deg, #edeeef, #f8f8f8, #edeeef);
}
@keyframes progress {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(100%, 0, 0);
  }
}
.skeleton-media {
  display: block;
  border: 0 !important;
  height: auto;
}
.skeleton-media:before {
  animation: progress 1s ease infinite forwards;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, #edeeef, #f8f8f8, #edeeef);
}
.skeleton-media:after {
  background: #edeeef;
}
.skeleton-title {
  height: 8rem;
}
.skeleton-para {
  height: 6rem;
}
.skeleton-w-100 {
  width: 10rem;
}
.mfp-wrap .mfp-container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.mfp-wrap .mfp-close {
  opacity: 1;
  padding: 0;
  font-size: 4rem;
  font-weight: 400;
  height: 4rem;
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .mfp-wrap .mfp-close {
    transition: none;
  }
}
.mfp-wrap .mfp-close:hover {
  opacity: 0.5;
}
.nice-select {
  float: none;
  color: #7e8890;
}
.nice-select:before {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  content: "\E901";
  color: #465660;
  font-size: 1.4rem;
  font-weight: 600;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nice-select:before {
    transition: none;
  }
}
.nice-select:after {
  display: none;
}
.nice-select.open:before {
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select .current {
  overflow: hidden;
  opacity: 0;
  display: block;
  padding-right: 1rem;
  color: #7e8890;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filled .nice-select .current,
.focused .nice-select .current {
  opacity: 1;
}
.nice-select .list {
  left: -0.3rem;
  overflow-y: auto;
  margin: 0.2rem;
  box-shadow: 0.4rem 0.5rem 2.2rem 0 rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  max-height: 40rem;
  min-width: calc(100% + 0.2rem);
  z-index: 2;
}
.nice-select .list > li {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  color: #7e8890;
  height: 3.6rem;
  min-height: 3.6rem;
}
.nice-select .list > li.selected {
  pointer-events: none;
  font-weight: 500;
}
.swiper-container-wrap {
  position: relative;
}
.swiper-container-wrap.has-nav-outside .swiper-button-prev {
  transform: translateX(-50%) translateY(-50%);
}
.swiper-container-wrap.has-nav-outside .swiper-button-next {
  transform: translateX(50%) translateY(-50%);
}
.swiper-container-wrap.hide-controls .swiper-controls {
  display: none;
}
@media (min-width: 1200px) {
  .swiper-container-wrap.has-nav-outside .swiper-button-prev {
    transform: translateX(calc(-100% - 3rem)) translateY(-50%);
  }
  .swiper-container-wrap.has-nav-outside .swiper-button-next {
    transform: translateX(calc(100% + 3rem)) translateY(-50%);
  }
}
.swiper-container {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .swiper-container {
    transition: none;
  }
}
.swiper-container.swiper-container-initialized {
  opacity: 1;
}
.swiper-slide-auto-height {
  display: flex;
  height: auto !important;
}
.swiper-button {
  top: 50%;
  margin-top: auto;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #465660;
  font-size: 1.3rem;
  height: 3.2rem;
  width: 3.2rem;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  outline: none;
  font-size: 1.8rem;
  height: 4rem;
  width: 4rem;
}
@media (prefers-reduced-motion: reduce) {
  .swiper-button {
    transition: none;
  }
}
.has-static-nav .swiper-button {
  transform: none;
}
.bg-white .swiper-button {
  background: transparent;
  border-color: transparent;
}
.swiper-button:hover {
  color: #3cce93;
  outline: none;
}
.swiper-button:focus {
  outline: none;
}
.swiper-button:after {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: inherit;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev:after {
  content: "\E902";
}
.swiper-button-next {
  right: 0;
}
.swiper-button-next:after {
  content: "\E903";
}
.swiper-button[disabled] {
  opacity: 0.75;
}
@media (min-width: 992px) {
  .swiper-button {
    font-size: 2rem;
    height: 4.8rem;
    width: 4.8rem;
  }
}
.swiper-pagination {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  line-height: 1;
  width: 100%;
}
.swiper-container-horizontal > .swiper-pagination {
  width: calc(100% + 0.5rem);
}
.swiper-pagination.swiper-pagination-static {
  position: static;
}
.swiper-pagination-bullet {
  pointer-events: auto;
  opacity: 1;
  margin: 0 0.5rem;
  background: transparent;
  border: 1px solid #fff;
  height: 1.2rem;
  width: 1.2rem;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .swiper-pagination-bullet {
    transition: none;
  }
}
.bg-white .swiper-pagination-bullet {
  border-color: #565656;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: #fff;
}
.bg-white .swiper-pagination-bullet-active,
.bg-white .swiper-pagination-bullet:hover {
  background: #565656;
}
.swiper-pagination-progressbar {
  border-radius: 0.4rem;
  background: #dadddf;
  height: 0.3rem;
}
.swiper-pagination-progressbar-fill {
  background: #097abf;
  border-radius: 0.4rem;
  height: 100%;
  width: 100%;
  transform-origin: 0;
}
.anchor-card {
  border: 0.2rem solid #3cce93;
}
.anchor-card-list li:not(:last-child) {
  margin-bottom: 0.7rem;
}
.anchor-card-list a {
  color: #3cce93;
  font-weight: 700;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .anchor-card-list a {
    font-size: 1.8rem;
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  min-width: 0;
  background-clip: border-box;
}
.card-has-bg {
  background-color: #206072;
  color: #fff;
}
.card-has-bg-hover:hover {
  background-color: #3cce93;
  color: #074e62;
}
.bg-light-gray .card {
  background-color: #fff;
}
.card--boxed .wp-editor-media {
  margin-bottom: 2rem;
}
.card.is-styled {
  border: 1px solid #dadddf;
}
[class*="bg-p"] .card.is-styled {
  border-color: #518391;
}
.card.is-styled.bc-lb {
  border-color: #83a7b1;
}
.card.has-shadow {
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
}
.card.is-shadowed {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 4px 8px 22px 0 rgba(0, 0, 0, 0.19);
}
.bg-white .card.is-shadowed {
  backdrop-filter: none;
  border: 1px solid #dadddf;
  box-shadow: none;
}
.card.has-hover {
  transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .card.has-hover {
    transition: none;
  }
}
.card.has-hover:hover {
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.1);
}
.card .cat-badge {
  max-width: 12rem;
  white-space: pre-line;
  word-break: break-word;
}
.card time {
  color: #b5bbbf;
}
.card.text-center .btn,
.card.text-center .btn-link,
.card.text-center .wp-block-buttons .wp-block-button__link,
.wp-block-buttons .card.text-center .wp-block-button__link {
  align-self: center;
}
.card .btn-link:last-child,
.card .btn:last-child,
.card .wp-block-buttons .wp-block-button__link:last-child,
.card .wp-editor-media:last-child,
.wp-block-buttons .card .wp-block-button__link:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.card .wp-media-40 img {
  max-height: 4rem;
  width: auto;
}
[class*="bg-p"] .card a:not([class]) {
  color: #3cce93;
  text-decoration: none;
}
[class*="bg-p"] .card a:not([class]) > * {
  color: inherit;
}
[class*="bg-p"] .card .card-link,
[class*="bg-p"] .card a:not([class]):hover {
  color: #fff;
}
.card.card-inline {
  box-shadow: inset 0 0 0 0.1rem #dadddf;
  border-radius: 1rem;
}
.card.card-inline:hover {
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .card.card-inline,
  .card.card-inline:hover {
    box-shadow: none;
  }
}
.card-link {
  color: #313e48;
}
.card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 3rem 1.2rem;
}
.card__body .btn-wrap {
  margin-top: auto;
}
.card__media {
  flex-shrink: 0;
  width: 100%;
}
.card-inline .card__media {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
@media (min-width: 992px) {
  .card-inline .card__media {
    flex: 0 0 10.4rem;
    max-width: 10.4rem;
    border-radius: 0;
  }
  .card-inline .card__media img {
    border-radius: 1rem;
  }
}
.card__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 3.2rem;
}
.video-card {
  backdrop-filter: blur(1.2rem);
  box-shadow: 0.4rem 0.8rem 2.2rem 0 rgba(0, 0, 0, 0.19);
}
.con-card:not(:last-child) {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .con-card {
    position: relative;
    z-index: 1;
  }
  .con-card:not(:last-child) {
    padding-bottom: 12rem;
  }
  .con-card:not(:last-child):after {
    position: absolute;
    bottom: -12.5rem;
    left: 50%;
    content: "";
    width: 50.5rem;
    height: 38.9rem;
    transform: translateX(-50%);
    z-index: -1;
  }
}
.flip-card {
  display: flex;
  background-color: transparent;
  min-height: 30rem;
  perspective: 100rem;
}
.flip-card__inner {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}
.flip-card__front {
  position: relative;
  background-color: #fff;
  backface-visibility: hidden;
  border: 1px solid #074e62;
  z-index: 1;
}
.flip-card__back {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-color: #074e62;
  backface-visibility: hidden;
  color: #fff;
  height: 100%;
  width: 100%;
  transform: rotateY(-180deg);
}
.flip-card__close {
  position: absolute;
  top: 2rem;
  right: 1rem;
  pointer-events: auto;
  font-size: 1.4rem;
  color: #3cce93;
}
.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}
@media (min-width: 576px) {
  .flip-card {
    min-height: 38rem;
  }
}
@media (min-width: 1440px) {
  .flip-card {
    min-height: 35rem;
  }
}
.sp-card__media {
  flex: 0 0 7rem;
  max-width: 7rem;
}
.ty-card {
  max-width: 35rem;
}
.ty-card__media {
  flex: 0 0 12rem;
  max-width: 12rem;
}
.anim-arrow {
  position: relative;
  color: #3cce93;
  font-size: 2.1rem;
  height: 5rem;
  width: 3rem;
}
.anim-arrow-icon {
  position: absolute;
  top: -5%;
  bottom: 0;
  opacity: 0;
  height: 0.5rem;
  width: 2.1rem;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
  will-change: auto;
}
.anim-arrow-icon:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
  will-change: auto;
}
.anim-arrow-icon:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
  will-change: auto;
}
.anim-arrow:hover {
  color: #097abf;
}
[class*="bg-p"] .anim-arrow:hover {
  color: #fff;
}
@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(1.5rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(2.6rem);
  }
  to {
    opacity: 0;
    transform: translateY(4rem) scale(0.5);
  }
}
.badge {
  padding: 0.8rem 1.8rem;
  background: #fff2d0;
  border-radius: 1rem;
  color: #7f600b;
  height: 3.6rem;
  white-space: nowrap;
}
.page-banner.is-sm,
.page-banner.is-xs {
  min-height: 20rem;
}
.page-banner.is-xl {
  min-height: 40rem;
}
.page-banner .breadcrumbs {
  padding-top: 2rem;
}
.page-banner .blob-wrap {
  max-width: 69rem;
}
@media (min-width: 768px) {
  .page-banner {
    min-height: 35rem;
  }
  .page-banner.is-sm {
    min-height: 30rem;
  }
  .page-banner.is-lg,
  .page-banner.is-xl {
    min-height: 42rem;
  }
}
@media (min-width: 992px) {
  .page-banner .breadcrumbs {
    padding-top: 3rem;
  }
  .page-banner.is-xl {
    min-height: 48rem;
  }
}
@media (min-width: 1200px) {
  .page-banner {
    min-height: 45rem;
  }
  .page-banner.is-sm {
    min-height: 36rem;
  }
  .page-banner.is-lg {
    min-height: 54rem;
  }
  .page-banner.is-xl {
    min-height: 62rem;
  }
  .page-banner h1 {
    font-size: 4.8rem;
    line-height: 1.125;
  }
}
@media (max-width: 991.98px) and (min-width: 768px) {
  .banner-grid .btn-wrap {
    flex-wrap: nowrap;
    margin-right: -7.5rem;
  }
}
button.btn-reset {
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
}
.btn,
.btn-round,
.wp-block-buttons .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn,
.wp-block-buttons .wp-block-button__link {
  align-self: flex-start;
  padding: 1.8rem 3.1rem;
  background-color: #3cce93;
  border: 0;
  border: 0.2rem solid #3cce93;
  border-radius: 2.7rem;
  box-shadow: none;
  color: #fff;
  font-family: MabryPro,Inter,sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  height: 5.4rem;
  min-width: 15rem;
  text-align: center;
  user-select: none;
  vertical-align: top;
  white-space: nowrap;
  background-repeat: repeat-x;
  background-position: 0 -100%;
  transition: 1.1s ease;
}
.btn:hover,
.wp-block-buttons .wp-block-button__link:hover {
  background-position: 500% 99%;
  border-color: #77dcb3;
  color: #fff;
}
.btn-primary {
  background-color: #097abf;
  border-color: #097abf;
  color: #fff;
}
.btn-primary:hover {
  border-color: #53a2d2;
  color: #fff;
}
.btn-light {
  background-color: #fff;
  color: #097abf;
}
.btn-light:hover {
  color: #fff;
}
.btn-outline-primary {
  border-color: #097abf;
  color: #097abf;
}
.btn-outline-primary:hover {
  border-color: #097abf;
  color: #fff;
}
.btn-outline-secondary {
  border-color: #3cce93;
  color: #3cce93;
}
.btn-outline-secondary:hover {
  border-color: transparent;
  color: #fff;
}
.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #097abf;
  color: #fff;
}
.btn-sm {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  height: 4.4rem;
}
.btn-xs {
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  font-family: MabryPro, Inter, sans-serif;
  font-size: 1.2rem;
  height: 3.6rem;
}
.btn-xxs {
  padding: 0.5rem 1rem;
  border-width: 1px;
  font-size: 1.2rem;
  font-weight: 400;
  height: 2.6rem;
}
.btn.mw-auto,
.wp-block-buttons .mw-auto.wp-block-button__link {
  min-width: inherit;
}
.btn-filter {
  padding-right: 1.3rem;
  padding-left: 1.3rem;
  color: #313e48;
  font-size: inherit;
  height: 4.8rem;
}
.btn.is-active,
.wp-block-buttons .is-active.wp-block-button__link {
  background: #3cce93;
  color: #fff;
}
.btn-block,
.btn-md-block,
.btn-sm-block {
  display: flex;
  width: 100%;
}
.btn .disabled,
.btn [aria-disabled],
.btn [disabled],
.wp-block-buttons .wp-block-button__link .disabled,
.wp-block-buttons .wp-block-button__link [aria-disabled],
.wp-block-buttons .wp-block-button__link [disabled] {
  background: #edeeef;
  color: #b5bbbf;
  cursor: not-allowed;
}
@media (min-width: 576px) {
  .btn-sm-block {
    display: inline-flex;
    vertical-align: middle;
    width: auto;
  }
}
[class*="btn-outline-"] {
  background-color: transparent;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: #097abf;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: MabryPro,Inter,sans-serif;
}
.btn-link:after {
  content: "\E900";
  margin-left: 0.5rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2rem;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-link:after {
    transition: none;
  }
}
.btn-link-green,
.btn-link-green:after {
  color: #3cce93;
}
.btn-link-green:hover,
.btn-link-green:hover:after {
  color: #77dcb3;
}
.btn-link-light {
  color: #fff;
}
.btn-link:hover:after {
  transform: translateX(0.5rem);
}
@media (max-width: 767.98px) {
  .col-6 .btn-link {
    font-size: 1.4rem;
  }
}
.btn-round {
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.18);
  height: 4.8rem;
  width: 4.8rem;
}
.btn-round.is-xs {
  height: 3rem;
  width: 3rem;
}
.btn-round.is-sm {
  font-size: 1.4rem;
  height: 3.6rem;
  width: 3.6rem;
}
.btn-round.is-outlined {
  border: 0.4rem solid #3cce93;
}
.btn-round.is-danger {
  border-color: #e91d36;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #dadddf;
  font-size: 2.4rem;
  height: 4.4rem;
  width: 4.4rem;
}
.btn-wrap,
.wp-content .btn-wrap {
  margin-bottom: -1.5rem;
}
.btn-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.btn-wrap:not(:last-child) {
  margin-bottom: 1rem;
}
.btn-wrap.a-start > .btn,
.wp-block-buttons .btn-wrap.a-start > .wp-block-button__link {
  align-self: flex-start;
}
.btn-wrap.a-center,
.btn-wrap.a-md-start {
  justify-content: center;
}
.btn-wrap.a-center > .btn,
.btn-wrap.a-center > .btn-link,
.btn-wrap.a-md-start > .btn,
.btn-wrap.a-md-start > .btn-link,
.wp-block-buttons .btn-wrap.a-center > .wp-block-button__link,
.wp-block-buttons .btn-wrap.a-md-start > .wp-block-button__link {
  align-self: center;
}
.btn-wrap.a-center .btn-link,
.btn-wrap.a-md-start .btn-link {
  justify-content: center;
}
.btn-wrap > .btn,
.btn-wrap > .btn-link,
.wp-block-buttons .btn-wrap > .wp-block-button__link {
  margin-right: 0;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (min-width: 576px) {
  .btn-wrap > .btn,
  .btn-wrap > .btn-link,
  .wp-block-buttons .btn-wrap > .wp-block-button__link {
    width: auto;
    margin-right: 2rem;
  }
}
.btn-wrap.flex-row > .btn,
.wp-block-buttons .btn-wrap.flex-row > .wp-block-button__link {
  margin-right: 2rem;
}
@media (min-width: 576px) {
  .btn-wrap.s-md {
    flex-direction: row;
  }
  .btn-wrap.s-col {
    flex-direction: column;
  }
  .btn-wrap.s-col > a:first-child {
    margin-bottom: 2rem;
  }
  .btn-wrap.a-md-start {
    justify-content: flex-start;
  }
  .btn-wrap.a-md-start > .btn,
  .btn-wrap.a-md-start > .btn-link,
  .wp-block-buttons .btn-wrap.a-md-start > .wp-block-button__link {
    align-self: self-start;
  }
  .btn-wrap > .btn-link:last-child,
  .btn-wrap > .btn:last-child,
  .wp-block-buttons .btn-wrap > .wp-block-button__link:last-child {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .btn-wrap:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .btn-wrap.s-lg {
    flex-direction: row;
  }
}
.cta-nav-header .js-anchor-link {
  font-size: 1.2rem;
  height: 2rem;
  padding: 1rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  line-height: 0;
}
.btn-reset.a-card-link:focus,
.btn-reset.p-icons-text-wrap:focus {
  outline: none;
}
.text-arrow-link {
  position: relative;
}
.text-arrow-link:after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\E92B";
  margin-left: auto;
  background: #fff;
  border-radius: 50%;
  color: #3cce93;
  font-size: 2.2rem;
  height: 3rem;
  width: 3rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol:not([class]):last-child,
ul:not([class]):last-child {
  margin-bottom: -0.5rem;
}
.list-inline.gap-lg > ol:not([class]):last-child,
.list-inline.gap-lg > ul:not([class]):last-child {
  margin-bottom: -1.5rem;
}
ol:not([class]) > li,
ul:not([class]) > li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
}
.list-gap-xlg ol:not([class]) > li,
.list-gap-xlg ul:not([class]) > li,
.list-inline.gap-lg > ol:not([class]) > li,
.list-inline.gap-lg > ul:not([class]) > li {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .list-gap-xlg ol:not([class]) > li,
  .list-gap-xlg ul:not([class]) > li {
    margin-bottom: 3rem;
  }
}
ol:not([class]) > li:before,
ul:not([class]) > li:before {
  position: absolute;
  left: 0;
}
ul:not([class]) > li {
  padding-left: 1.6rem;
}
.list-tick ul:not([class]) > li {
  padding-left: 2.4rem;
}
.list-tick ul:not([class]) > li:before {
  content: "\E906";
  border: 0;
  color: #3cce93;
  font-size: 1.3rem;
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.marker-blue ul:not([class]) > li:before {
  border-color: #097abf;
}
.marker-green ul:not([class]) > li:before {
  border-color: #3cce93;
}
ul:not([class]) > li:before,
ul:not([class]) ul:not([class]) > li:before {
  top: 0.5em;
  content: "";
  border: 0.3rem solid;
  border-radius: 50%;
}
ul:not([class]) > li > ul:not([class]) {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
ul:not([class]) > li > ul:not([class]) > li {
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
  break-inside: avoid;
}
ul:not([class]) > li > ul:not([class]) > li:before {
  top: 0.6em;
  border-color: inherit;
  color: inherit;
  max-width: 0.5rem;
}
ol:not([class]) {
  counter-reset: follow-counter;
}
ol:not([class]) > li {
  padding-left: 1.8rem;
  counter-increment: follow-counter;
}
ol:not([class]) > li:before {
  content: counter(follow-counter) ".";
}
.list-inline {
  display: flex;
}
.list-inline:not([class*="list-inline-"]) li:last-child {
  margin-bottom: 0;
}
.list-inline.a-center {
  justify-content: center;
}
.list-inline li {
  break-inside: avoid;
}
.list-inline.list-inline-all-2 ul {
  column-count: 2;
}
.list-inline.gap-40 ul {
  gap: 4rem;
}
.list-inline.circle-lg > ul > li:before {
  top: 0.4em;
  border-width: 0.4rem;
}
@media (min-width: 768px) {
  .list-inline-4 ul,
  .list-inline-5 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
  }
  .list-inline-4 li,
  .list-inline-5 li {
    padding: 0 1.5rem;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .list-break-md.list-inline-2 ul {
    column-count: 2;
  }
  .list-break-md.list-inline-3 ul {
    column-count: 3;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .list-break-xs.list-inline-2 ul {
    column-count: 2;
  }
  .list-break-xs.list-inline-3 ul {
    column-count: 3;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .list-break-sm.list-inline-2 ul {
    column-count: 2;
  }
  .list-break-sm.list-inline-3 ul {
    column-count: 3;
  }
}
@media (min-width: 992px) {
  .list-inline-2 ul {
    column-count: 2;
  }
  .list-inline-3 ul {
    column-count: 3;
  }
  .list-inline-4 li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .list-inline-5 li {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.list-none > ul > li {
  padding-left: 0;
}
.list-none > ul > li:before {
  display: none;
}
.list-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.mobile-slider {
  overflow: visible;
}
.mobile-slider__col {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .mobile-slider-sm {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .mobile-slider {
    opacity: 1;
  }
  .mobile-slider__row {
    margin: 0 -1.5rem;
    width: auto;
  }
  .mobile-slider__col {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .mobile-slider__col.is-full {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.pagination-nav {
  display: flex;
}
.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -0.3rem;
  margin-left: -0.3rem;
  padding-left: 0;
  list-style: none;
  vertical-align: top;
}
.page-item {
  display: flex;
  margin-bottom: 1rem;
  padding-right: 0.3rem;
  padding-left: 0.3rem;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  background: transparent;
  border: 0;
  color: #9099a0;
  font-weight: 600;
  text-decoration: none;
}
.page-link.current,
li.active .page-link {
  pointer-events: none;
  color: #313e48;
}
.page-link:focus,
.page-link:hover {
  color: #097abf;
}
.page-link.next,
.page-link.prev {
  color: #3cce93;
}
.page-link.next:hover,
.page-link.prev:hover {
  color: #097abf;
}
.page-link.disabled,
.page-link[disabled],
li.disabled .page-link {
  background: transparent;
  color: #dadddf;
  cursor: not-allowed;
}
li.disabled .page-link:hover {
  color: #dadddf;
}
.sb-widget__title {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #dadddf;
}
.social-media a {
  color: #053745;
}
.social-media-round a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.4rem 1rem 1.5rem;
  border-radius: 50%;
  background-color: #fff;
  height: 4rem;
  width: 4rem;
  background-repeat: repeat-x;
  background-position: 0 -100%;
  transition: 1.5s ease;
}
.social-media-round a:focus,
.social-media-round a:hover {
  background-position: 500% 100%;
  color: #fff !important;
}
.ratings-wrap {
  position: relative;
}
.ratings-wrap .ratings > .icon:not(:last-child) {
  margin-right: 0.3rem;
}
.ratings-wrap .ratings-active {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.ratings-wrap .ratings-active > .icon:not(:last-child) {
  margin-right: 0.17rem;
}
.sticky-buttons {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
@media (prefers-reduced-motion: reduce) {
  .sticky-buttons {
    transition: none;
  }
}
.sticky-buttons li {
  flex: 1 1 0;
  border-right: 1px solid #065586;
}
.sticky-buttons li:last-child {
  border-right: 0;
}
.sticky-buttons .btn,
.sticky-buttons .wp-block-buttons .wp-block-button__link,
.wp-block-buttons .sticky-buttons .wp-block-button__link {
  border-radius: 0;
  font-size: inherit;
  height: 4.4rem;
  min-width: 12rem;
  width: 100%;
}
@media (min-width: 768px) {
  .sticky-buttons {
    top: calc(50% + 7.2rem);
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
  .sticky-buttons li {
    border-right: 0;
  }
  .sticky-buttons .btn,
  .sticky-buttons .wp-block-buttons .wp-block-button__link,
  .wp-block-buttons .sticky-buttons .wp-block-button__link {
    border-radius: 4.4rem 0 0 4.4rem;
  }
}
.table {
  width: 100%;
}
@media (min-width: 768px) {
  .table th:first-of-type {
    width: 29.82456%;
  }
}
@media (min-width: 1200px) {
  .table th {
    width: 35.96491%;
  }
  .table th:first-of-type {
    width: 28.07018%;
  }
}
.compare-table {
  table-layout: fixed;
}
@media (max-width: 767.98px) {
  .compare-table thead {
    display: none;
  }
}
.compare-table td,
.compare-table th {
  padding: 1.5rem;
  min-height: 8.9rem;
  vertical-align: middle;
  border-bottom: 1px solid #dadddf;
}
.compare-table td:first-child,
.compare-table th:first-child {
  padding-left: 0;
}
.compare-table td:nth-child(2),
.compare-table th:nth-child(2) {
  background-color: #f8f8f8;
}
.compare-table td:last-child,
.compare-table th:last-child {
  padding-right: 0;
}
@media (min-width: 992px) {
  .compare-table td,
  .compare-table th {
    padding: 2.5rem;
  }
}
.compare-table th:last-child {
  font-size: 2.4rem;
}
.compare-table td {
  color: #3a3d42;
}
@media (max-width: 767.98px) {
  .compare-table td {
    font-size: 1.4rem;
  }
  .compare-table td.others-data:not(.td-show),
  .compare-table td.td-hide {
    display: none;
  }
}
.table-actions li {
  flex: 0 0 50%;
  max-width: 50%;
}
.table-actions li:first-child button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.table-actions li:last-child button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.table-actions-btn {
  padding: 1rem;
  border: 1px;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  height: 6rem;
  width: 100%;
}
.table-actions-btn.active {
  background-color: #cddce0;
}
.video-quote__media {
  flex: 0 0 20rem;
  max-width: 20rem;
}
.video-quote__media:before {
  opacity: 0.38;
  background-image: linear-gradient(151deg, #13405b -4%, #3cce92 80%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .video-quote__media:before {
    transition: none;
  }
}
.video-quote__media:hover:before {
  background: transparent;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .template-blog .posts-grid-item:nth-of-type(9) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .template-blog .posts-grid-item:nth-of-type(9) .card {
    flex-direction: row;
  }
  .template-blog .posts-grid-item:nth-of-type(9) .card__media {
    flex: 0 0 50%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1rem;
  }
  .template-blog .posts-grid-item:nth-of-type(9) .card__body {
    justify-content: center;
  }
}
.template-form .free-trial-btn {
  display: none;
}
.privacy-policy .wp-wysiwyg-content > p + ol,
.privacy-policy .wp-wysiwyg-content > p + ul,
.terms-and-conditions .wp-wysiwyg-content > p + ol,
.terms-and-conditions .wp-wysiwyg-content > p + ul {
  margin-top: -1rem;
}
.privacy-policy .wp-wysiwyg-content ol,
.privacy-policy .wp-wysiwyg-content ul,
.terms-and-conditions .wp-wysiwyg-content ol,
.terms-and-conditions .wp-wysiwyg-content ul {
  padding-left: 2rem;
}
@media (min-width: 992px) {
  .privacy-policy .wp-wysiwyg-content,
  .terms-and-conditions .wp-wysiwyg-content {
    margin: 0 auto;
    max-width: 76rem;
  }
}
.terms-and-conditions ul:not([class]) {
  counter-reset: follow-alpha;
}
.terms-and-conditions ul:not([class]) > li {
  padding-left: 2rem;
  counter-increment: follow-alpha;
}
.terms-and-conditions ul:not([class]) > li:before {
  top: 0;
  content: counter(follow-alpha, lower-alpha) ".";
  border: 0;
}

.tax-resource_cat .page-banner .shape {
  display: none;
}

.single-resource .page-banner .shape{
  display: none;
}

.bg-connected-lines-faded {
  background: none;
}

.bg-top-pattern-teal {
  background: none;
}

.shape{
  display: none !important;
}