/*
Utilities
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Restore semantic styling after reset */
em, i:not([class]) {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

ol {
  list-style: decimal;
  margin: 0 0 1rem 1.25rem;
}
ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style: disc;
  margin: 0 0 1rem 1.25rem;
}
ul:last-child {
  margin-bottom: 0;
}

/*
Components
*/
h1 {
  color: var(--color-black);
  font-size: clamp(2.125rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 0.125em;
}
h1:last-child {
  margin-bottom: 0;
}

h2 {
  color: var(--color-black);
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 0.5em;
}
h2:last-child {
  margin-bottom: 0;
}

h3 {
  color: var(--color-black);
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 0.25em;
}
h3:last-child {
  margin-bottom: 0;
}

h4 {
  color: var(--color-black);
  font-size: clamp(1.3rem, 5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  color: var(--color-black);
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.1em;
  margin-bottom: 0.25em;
}
h5:last-child {
  margin-bottom: 0;
}

h6 {
  color: var(--color-black);
  font-size: clamp(1rem, 5vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}
h6:last-child {
  margin-bottom: 0;
}

p {
  line-height: 1.4em;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
p.large {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 500;
}

li {
  line-height: 1.4em;
}

a {
  color: var(--color-blue);
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
a:hover {
  color: var(--color-blue-dark);
}

.text-gray {
  color: var(--color-gray);
}

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

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

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

@media screen and (max-width: 980px) {
  .text-center-mobile {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}
@media screen and (max-width: 980px) {
  .text-right {
    text-align: left;
  }
}

.highlight {
  color: var(--color-blue);
  font-weight: 700;
}

.small {
  font-size: 0.85em;
}

.btn {
  background-color: var(--color-blue);
  border: none;
  border-radius: 0.5rem;
  color: var(--color-white);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1em;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.btn i {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:hover {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}
.btn.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.btn.btn-white:hover {
  background-color: var(--color-blue-light);
  color: var(--color-blue-dark);
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
form .form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
form label {
  font-weight: 600;
  margin: 0 0 0.25rem;
}
form label .form-req {
  color: var(--color-blue);
  margin-left: 0.125rem;
}
form input,
form textarea,
form select {
  background-color: var(--color-white);
  border: none;
  border-radius: 1rem;
  color: var(--color-black);
  display: block;
  font-size: 1.125rem;
  line-height: 1.4em;
  outline: none;
  padding: 1rem;
  width: 100%;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder, form select::-webkit-input-placeholder {
  color: var(--color-gray);
}
form input::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: var(--color-gray);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder, form select:-ms-input-placeholder {
  color: var(--color-gray);
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder, form select::-ms-input-placeholder {
  color: var(--color-gray);
}
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: var(--color-gray);
}
form textarea {
  min-height: 8rem;
}

.hero {
  border-radius: 0 0 3rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 27.5rem;
  overflow: hidden;
  padding: calc(76px + 4rem) 0 3rem;
  position: relative;
  text-align: center;
}
.hero.hero-large {
  min-height: 80dvh;
}
.hero .background-image-wrapper {
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.hero .background-image-wrapper:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 12, 24, 0)), to(rgba(1, 12, 24, 0.8))), rgba(1, 12, 24, 0.6);
  background: linear-gradient(180deg, rgba(1, 12, 24, 0) 0%, rgba(1, 12, 24, 0.8) 100%), rgba(1, 12, 24, 0.6);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero .background-image-wrapper img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hero .container {
  max-width: 61.25rem;
  position: relative;
  z-index: 2;
}
.hero .container .section-title .btn {
  margin-top: 0.5rem;
}

.card {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue-light);
  border-radius: 1rem;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 31.25rem;
  overflow: hidden;
  /* text-align: center; */
  width: 100%;
}
.card .card-image {
  position: relative;
}
.card .card-image .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  line-height: 1.3em;
  max-width: calc(100% - 2rem);
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  text-align: left;
}
.card .card-image .post-meta a {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  text-transform: capitalize;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: auto;
}
.card .card-image img {
  display: block;
  height: 18.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .card .card-image img {
    height: 15rem;
  }
}
.card .card-content {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.card .card-content h3,
.card .card-content h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
}
.card .card-content h3:after,
.card .card-content h4:after {
  background-color: var(--color-blue-light);
  content: "";
  height: 50%;
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  width: calc(100% + 0.5rem);
  z-index: -1;
}
.card .card-content h3 i,
.card .card-content h4 i {
  color: var(--color-blue);
}
.card .card-content p {
  font-size: 1rem;
}
.card .card-content .btn {
  font-size: 1rem;
}
.card .card-content .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}
.card .card-content .link i {
  font-size: 0.875rem;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 980px) {
  .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-row.flex-mobile-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flex-row.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-row.flex-align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.flex-row.flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-row > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.flex-row .image-column {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .flex-row .image-column {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.flex-row .image-column img {
  border-radius: 2rem;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .flex-row .image-column img {
    max-height: 25rem;
  }
}
.flex-row .image-column.double-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.flex-row .image-column.double-image img {
  height: calc(100% + 5rem);
  width: calc(100% - 5rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .flex-row .image-column.double-image img {
    height: calc(100% + 3rem);
    min-height: 15rem;
    width: calc(100% - 3rem);
  }
}
.flex-row .image-column.double-image img:first-child {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: -5rem;
}
@media screen and (max-width: 768px) {
  .flex-row .image-column.double-image img:first-child {
    margin-bottom: -3rem;
  }
}
.flex-row .image-column.double-image img:last-child {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 980px) {
  .flex-row .image-column.double-image img:first-child {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .flex-row .image-column.double-image img:last-child {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.flex-row .image-column.double-image:before {
  border-left: 4px dashed var(--color-blue-light);
  border-right: 4px dashed var(--color-blue-light);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: calc(100% - 5rem);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .flex-row .image-column.double-image:before {
    height: calc(100% - 2rem);
    top: 1rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
  }
}
.flex-row .image-column.double-image:first-child img:first-child {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.flex-row .image-column.double-image:first-child img:last-child {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 980px) {
  .flex-row .content-column {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 981px) {
  .flex-row .content-column {
    -ms-flex-item-align: center;
        align-self: center;
    padding: 4rem 0;
  }
}

.styled-checklist {
  list-style: none;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 980px) {
  .styled-checklist {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.styled-checklist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75rem;
}
.styled-checklist li i {
  background-color: var(--color-blue-light);
  border-radius: 0.5rem;
  color: var(--color-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  font-size: 0.875rem;
  height: 2rem;
  width: 2rem;
}
.styled-checklist li + li {
  margin-top: 0.75rem;
}

.icon-list {
  border-left: 4px dashed var(--color-blue-light);
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .icon-list {
    padding-left: 1.5rem;
  }
}
.icon-list .list-item + .list-item {
  margin-top: 2rem;
}
.icon-list h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.75rem;
}
.icon-list h4:after {
  background-color: var(--color-blue-light);
  content: "";
  height: 50%;
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  width: calc(100% + 0.5rem);
  z-index: -1;
}
.icon-list h4 i {
  color: var(--color-blue);
}
.icon-list h4 i.fa-arrow-turn-up {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.icon-row {
  text-align: center;
}
@media screen and (min-width: 1201px) {
  .icon-row {
    padding: 0 5rem;
  }
}
.icon-row .icon-item {
  margin: 0 auto;
  max-width: 30rem;
  width: 100%;
}
.icon-row .icon-item .icon-circle {
  border: 2px solid var(--color-blue-light);
  border-radius: 5rem;
  color: var(--color-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  height: 5rem;
  width: 5rem;
}
.icon-row .icon-item h3 {
  margin: 0 auto 1rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.icon-row .icon-item h3:after {
  background-color: var(--color-blue-light);
  content: "";
  height: 50%;
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  width: calc(100% + 0.5rem);
  z-index: -1;
}
.icon-row .icon-item p {
  font-size: 1rem;
}

.cta-callout .cta-wrapper {
  background-color: var(--color-blue-light);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 75rem;
  width: 90%;
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 980px) {
  .cta-callout .cta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
}
.cta-callout .cta-wrapper .cta-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .cta-callout .cta-wrapper .cta-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}
.cta-callout .cta-wrapper .cta-content .cta-icon {
  color: var(--color-blue);
  font-size: 3rem;
}
@media screen and (max-width: 980px) {
  .cta-callout .cta-wrapper .cta-content .cta-icon {
    display: none;
  }
}
.cta-callout .cta-wrapper .cta-content h3 {
  margin: 0 0 0.35rem;
}
@media screen and (max-width: 980px) {
  .cta-callout .cta-wrapper .cta-content h3 {
    margin: 0 0 1.25rem;
  }
}
.cta-callout .cta-wrapper .cta-content h3 + p {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 500;
  line-height: 1.1em;
}
.cta-callout .cta-wrapper .cta-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cta-callout.cta-newsletter form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 981px) {
  .cta-callout.cta-newsletter form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cta-callout.cta-newsletter form .form-field input {
  border-radius: 0.5rem;
  line-height: 1em;
  height: 3rem;
}
.cta-callout.cta-newsletter form .btn {
  height: 3rem;
}

#testimonials {
  gap: 3rem;
  min-width: 0;
}
@media screen and (max-width: 980px) {
  #testimonials {
    gap: 2rem;
  }
}
#testimonials .section-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media screen and (min-width: 981px) {
  #testimonials .section-title {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 980px) {
  #testimonials .section-title br {
    display: none;
  }
}
#testimonials .swiper-outer-container {
  background-color: var(--color-white);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 980px) {
  #testimonials .swiper-outer-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem 1.5rem;
  }
  #testimonials .swiper-outer-container .swiper {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
#testimonials .swiper-outer-container .swiper-button-prev,
#testimonials .swiper-outer-container .swiper-button-next {
  background-color: var(--color-blue-light);
  border-radius: 0.5rem;
  color: var(--color-blue);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3rem;
          flex: 0 0 3rem;
  margin: 0;
  position: unset;
  width: 3rem;
  height: 3rem;
}
#testimonials .swiper-outer-container .swiper-button-prev:after,
#testimonials .swiper-outer-container .swiper-button-next:after {
  font-size: 1.25rem;
}
@media screen and (max-width: 980px) {
  #testimonials .swiper-outer-container .swiper-button-prev,
  #testimonials .swiper-outer-container .swiper-button-next {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#testimonials .swiper-outer-container .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
#testimonials .swiper-outer-container .swiper-slide .client-logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-height: 4rem;
  width: auto;
}
#testimonials .swiper-outer-container .swiper-slide p {
  font-style: italic;
}
#testimonials .swiper-outer-container .swiper-slide p .small {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 1rem;
}

/*
Layout
*/
:root {
  --color-black: #010c18;
  --color-blue: #4399ff;
  --color-blue-dark: #005dcc;
  --color-blue-light: #e0eeff;
  --color-highlight: #58daf2;
  --color-highlight-light: #def8fc;
  --color-purple: #8958fe;
  --color-purple-light: #eae1ff;
  --color-gray: #81868c;
  --color-white: #fff;
  --nav-height-desktop: 76px;
  --nav-height-mobile: 64px;
  --font-family: Inter, Helvetica, Arial, sans-serif;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-padding-top: 76px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }
}
html * {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html h1,
html h2,
html h3,
html h4 {
  font-family: "Inter", Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: clamp(1rem, 5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7em;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 95rem;
  width: 90%;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
}

@media screen and (max-width: 980px) {
  .desktop-only {
    display: none;
  }
}

@media screen and (min-width: 981px) {
  .mobile-only {
    display: none;
  }
}

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

img,
video {
  max-width: 100%;
}

.section-title.text-center {
  margin: 0 auto;
  max-width: 61.25rem;
}
.section-title h1,
.section-title h2 {
  margin: 0 0 1rem;
}
.section-title h1:last-child,
.section-title h2:last-child {
  margin: 0;
}
.section-title h1 + p,
.section-title h2 + p {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 500;
}

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

.pt-md {
  padding-top: 7.5rem;
}
@media screen and (max-width: 980px) {
  .pt-md {
    padding-top: 4rem;
  }
}

.pt-lg {
  padding-top: 10rem;
}
@media screen and (max-width: 980px) {
  .pt-lg {
    padding-top: 7.5rem;
  }
}

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

.pb-md {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 980px) {
  .pb-md {
    padding-bottom: 4rem;
  }
}

.pb-lg {
  padding-bottom: 10rem;
}
@media screen and (max-width: 980px) {
  .pb-lg {
    padding-bottom: 7.5rem;
  }
}

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

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

.mt-lg {
  margin-top: 3rem;
}

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

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

.mb-lg {
  margin-bottom: 3rem;
}

.svg-arrow-left .highlight {
  position: relative;
}
.svg-arrow-left .highlight:before {
  background-image: url("../images/arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 5rem;
  content: "";
  position: absolute;
  top: -4.25rem;
  left: 0;
  width: 4.5rem;
}

.svg-arrow-right .highlight {
  position: relative;
}
.svg-arrow-right .highlight:before {
  background-image: url("../images/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 5rem;
  content: "";
  position: absolute;
  top: -4.5rem;
  left: -3rem;
  width: 4.5rem;
}

.svg-arrow-center .highlight {
  position: relative;
}
.svg-arrow-center .highlight:before {
  background-image: url("../images/arrow-center.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -4.5rem;
  width: 4.5rem;
}

.svg-line-bottom,
.svg-line-center {
  position: relative;
}
.svg-line-bottom:before,
.svg-line-center:before {
  background-image: url("../images/wave-line.svg");
  background-repeat: repeat-x;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.svg-line-bottom:before {
  background-position: center 100%;
}
.svg-line-bottom.pb-lg:before {
  background-position: center calc(100% - (10rem - 2rem));
}
@media screen and (max-width: 980px) {
  .svg-line-bottom.pb-lg:before {
    background-position: center calc(100% - (7.5rem - 2rem));
  }
}
.svg-line-bottom.pb-md:before {
  background-position: center calc(100% - (7.5rem - 2rem));
}
@media screen and (max-width: 980px) {
  .svg-line-bottom.pb-md:before {
    background-position: center calc(100% - (4rem - 2rem));
  }
}

.svg-line-center:before {
  background-position: center;
}

.svg-line-flip:before {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

body.no-scroll header {
  border-radius: 1rem 1rem 0 0;
}

header {
  background-color: var(--color-blue);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
  max-width: 95rem;
  padding: 0 2rem;
  position: fixed;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 999;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
@media screen and (min-width: 1201px) {
  header {
    height: 76px;
    width: 90%;
  }
}
header .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 170px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  header .logo {
    max-width: 130px;
  }
}
header .logo img {
  width: 100%;
}
header #main-nav-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 1200px) {
  header #main-nav-cta {
    display: none;
  }
}
header #main-nav-cta .btn {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
header #main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 1201px) {
  header #main-nav {
    height: 100%;
  }
}
header #main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}
@media screen and (min-width: 1201px) {
  header #main-nav ul .nav-item.mobile-cta {
    display: none;
  }
}
header #main-nav ul .nav-item .nav-link {
  background-color: transparent;
  border: none;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  height: 100%;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.75px;
  margin: 0;
  padding: 0 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
header #main-nav ul .nav-item:hover .nav-link, header #main-nav ul .nav-item.active .nav-link {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1200px) {
  header #main-nav {
    background-color: var(--color-blue);
    border-radius: 0 0 1rem 1rem;
    overflow-y: auto;
    padding: 1rem;
    position: absolute;
    top: 64px;
    right: -100%;
    width: calc(100vw - 2rem);
    height: calc(100dvh - 64px - 2rem);
    visibility: hidden;
    z-index: 99;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
  }
  header #main-nav > ul {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (min-height: 600px) {
  header #main-nav > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  header #main-nav > ul > .nav-item .nav-link {
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    padding: 1.5rem 1rem;
    width: 100%;
  }
  header #main-nav > ul > .nav-item.mobile-cta {
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
}
header .nav-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3rem;
          flex: 0 0 3rem;
  justify-self: flex-end;
  height: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0;
  position: relative;
  width: 3rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
@media screen and (min-width: 1201px) {
  header .nav-toggle {
    display: none;
  }
}
header .nav-toggle span {
  display: block;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  opacity: 1;
  position: absolute;
  top: calc(50% - 0.725rem);
  left: 0.25rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  height: 0.25rem;
  width: 2.5rem;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
header .nav-toggle span:nth-child(2) {
  top: calc(50% - 0.125rem);
}
header .nav-toggle span:nth-child(3) {
  top: calc(50% + 0.525rem);
}
header .nav-toggle:hover span {
  background-color: var(--color-blue-light);
}
header .nav-toggle.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
header .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
header .nav-toggle.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
header .nav-toggle.open ~ #main-nav {
  visibility: visible;
  right: 0;
}

footer {
  background-color: var(--color-blue);
  padding: 2rem 0;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 980px) {
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .container .footer-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 170px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  footer .container .footer-logo a {
    max-width: 130px;
  }
}
footer .container .footer-logo a img {
  width: 100%;
}
footer .container .footer-copyright {
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 980px) {
  footer .container .footer-copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
footer .container .footer-copyright .sep {
  opacity: 0.5;
  padding: 0 0.5rem;
}
footer .container .footer-copyright a {
  color: inherit;
}
footer .container .footer-copyright a:hover {
  color: var(--color-blue-light);
}
footer .container .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 980px) {
  footer .container .footer-social {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer .container .footer-social a {
  color: var(--color-white);
  font-size: 2rem;
  text-decoration: none;
}

/*
Page-Specific Styles
*/
.homepage #intro .styled-checklist {
  margin: 2rem 0;
}
@media screen and (max-width: 980px) {
  .homepage #intro .styled-checklist {
    margin: 2rem auto;
  }
}
.homepage #services .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}
.homepage #process .icon-list {
  margin-top: 3rem;
}
.homepage #grow .flex-row {
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 980px) {
  .homepage #grow .flex-row {
    margin-top: 2rem;
  }
}
.homepage #grow .flex-row .stats-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 1.5rem;
  text-align: center;
}
.homepage #grow .flex-row .stats-item .stats-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1em;
}
.homepage #grow .flex-row .stats-item .stats-number i {
  color: var(--color-blue);
  font-size: 2rem;
}
.homepage #grow .flex-row .stats-item p {
  font-weight: 700;
  line-height: 1.1em;
  margin: 0.5rem auto 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.homepage #grow .flex-row .stats-item p:after {
  background-color: var(--color-blue-light);
  content: "";
  height: 50%;
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  width: calc(100% + 0.5rem);
  z-index: -1;
}
.homepage #client-success .container {
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 980px) {
  .homepage #client-success .container {
    padding: 3rem 1.5rem;
    width: 100%;
  }
}
.homepage #client-success .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}
.homepage #client-success #testimonials {
  border-top: 4px dashed var(--color-white);
  padding-top: 3rem;
}

.why-us #intro .flex-row {
  margin-top: 3rem;
}
@media screen and (max-width: 980px) {
  .why-us #intro .flex-row {
    margin-top: 2rem;
  }
}
.why-us #process .icon-list {
  margin-top: 3rem;
}
.why-us #client-success .container {
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 980px) {
  .why-us #client-success .container {
    padding: 3rem 1.5rem;
    width: 100%;
  }
}
.why-us #client-success .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-detail #intro .flex-row {
  margin-top: 3rem;
}
@media screen and (max-width: 980px) {
  .service-detail #intro .flex-row {
    margin-top: 2rem;
  }
}
.service-detail #process .icon-list {
  margin-top: 3rem;
}
.service-detail #services .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-detail #services .flex-row + .flex-row {
  margin-top: 1.5rem;
}
.service-detail #client-success .container {
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 980px) {
  .service-detail #client-success .container {
    padding: 3rem 1.5rem;
    width: 100%;
  }
}
.service-detail #client-success .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-detail #client-success #testimonials {
  border-top: 4px dashed var(--color-white);
  padding-top: 3rem;
}

.contact #contact-form .container {
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 980px) {
  .contact #contact-form .container {
    padding: 3rem 1.5rem;
    width: 100%;
  }
}

.blog #hero .back-to-blog {
  color: #fff;
  display: inline-block;
  margin: 0 auto 0.75rem;
  opacity: 0.65;
  text-decoration: none;
}
.blog #hero .back-to-blog:hover {
  color: #fff;
  opacity: 1;
}
.blog #blog-posts .container .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem 2rem;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 980px) {
  .blog #blog-posts .container .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog #blog-posts .container .section-title h3 {
  margin: 0;
}
.blog #blog-posts .container .blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 980px) {
  .blog #blog-posts .container .blog-post-grid {
    grid-template-columns: 1fr;
  }
}
.blog #blog-posts .container .card {
  text-align: left;
}
.blog #blog-posts .container .card .card-content h3:after,
.blog #blog-posts .container .card .card-content h4:after {
  content: none;
}
.blog #blog-posts .container .card .card-content .link {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1rem;
}
.blog #blog-posts .container .featured-card .card-image {
  padding: 0.5rem;
}
.blog #blog-posts .container .featured-card .card-image .post-meta {
  bottom: 1rem;
}
.blog #blog-posts .container .featured-card .card-image img {
  border-radius: 1rem;
}
@media screen and (min-width: 981px) {
  .blog #blog-posts .container .featured-card {
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  .blog #blog-posts .container .featured-card .card-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .blog #blog-posts .container .featured-card .card-image img {
    height: 25rem;
  }
  .blog #blog-posts .container .featured-card .card-content {
    -webkit-box-flex: 1.25;
        -ms-flex: 1.25;
            flex: 1.25;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blog #blog-posts .container .featured-card .card-content h3,
  .blog #blog-posts .container .featured-card .card-content h4 {
    margin-left: 0;
  }
  .blog #blog-posts .container .featured-card .card-content p {
    font-size: 1.125rem;
  }
}
.blog .load-more-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-single #hero .back-to-blog {
  color: #fff;
  display: inline-block;
  margin: 0 auto 0.75rem;
  opacity: 0.65;
  text-decoration: none;
}
.blog-single #hero .back-to-blog:hover {
  color: #fff;
  opacity: 1;
}
.blog-single #hero .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin: 2rem auto 0;
}
.blog-single #hero .post-meta .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-single #hero .post-meta .post-categories a {
  background-color: var(--color-gray);
  border-radius: 0.5rem;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1em;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  text-transform: capitalize;
}
.blog-single #hero .post-meta .post-categories a:hover {
  background-color: var(--color-blue-dark);
}
.blog-single #hero .post-meta .post-byline {
  line-height: 1.3em;
  opacity: 0.85;
}
.blog-single #page-content .about-the-author {
  border: 2px solid var(--color-blue-light);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 1.5rem;
}
.blog-single #related-posts .container .flex-row {
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-single #related-posts .container .flex-row .card {
  text-align: left;
}
.blog-single #related-posts .container .flex-row .card .card-content h4:after {
  content: none;
}
.blog-single #related-posts .container .flex-row .card .card-content .link {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1rem;
}

.text-based-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 100dvh;
}
.text-based-content #main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.text-based-content #main #page-content .container {
  max-width: 60rem;
}
.text-based-content #main #page-content .container ul:not(:last-child),
.text-based-content #main #page-content .container ol:not(:last-child) {
  margin-bottom: 2em;
}
.text-based-content #main #page-content .container ul:not(.styled-checklist),
.text-based-content #main #page-content .container ol:not(.styled-checklist) {
  margin-left: 1.25rem;
}
.text-based-content #main #page-content .container img {
  border-radius: 2rem;
  display: block;
  margin: 2rem 0;
}

.thank-you #page-content .container {
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 980px) {
  .thank-you #page-content .container {
    padding: 3rem 1.5rem;
  }
}

/*
==================================================
CUSTOM COMPONENTS AND UTILITIES
From custom.css - Consolidated into main stylesheet
==================================================
*/

.pt-zero {
  padding-top: 0;
}

.pb-zero {
  padding-bottom: 0;
}

.pb-86 {
  padding-bottom: 86px;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mt-36 {
  margin-top: 36px;
}

/* ==================================================
   REUSABLE COMPONENTS
   ================================================== */

/* Engagement Outcomes - Responsive Table/Accordion */
.outcomes-wrapper {
    margin: 2rem 0 18px 0;
}

/* Desktop table */
.outcomes-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: var(--font-family);
}

.outcomes-table th {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 1.5rem 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: left;
    vertical-align: top;
    border: none;
}

.outcomes-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--color-blue-light);
    text-align: left;
    vertical-align: top;
    line-height: 1.5em;
}

.outcomes-table tbody tr:last-child td {
    border-bottom: none;
}

.outcomes-table tbody tr:hover {
    background-color: var(--color-blue-light);
    transition: background-color 0.2s ease;
}

/* Mobile accordion */
.outcomes-accordion {
    display: none;
}

@media (max-width: 980px) {
    .outcomes-table {
        display: none;
    }
    .outcomes-accordion {
        display: block;
    }

    .outcomes-accordion details {
        margin-bottom: 1rem;
        border: 2px solid var(--color-blue-light);
        border-radius: 1rem;
        padding: 0;
        background-color: var(--color-white);
        overflow: hidden;
        transition: all ease-in-out 0.2s;
    }

    .outcomes-accordion details:hover {
        border-color: var(--color-blue);
    }

    .outcomes-accordion details[open] {
        border-color: var(--color-blue);
    }

    .outcomes-accordion summary {
        font-weight: 600;
        font-size: 1.125rem;
        cursor: pointer;
        outline: none;
        padding: 1.25rem 1.5rem;
        background-color: var(--color-blue-light);
        color: var(--color-black);
        position: relative;
        transition: background-color 0.2s ease;
    }

    .outcomes-accordion summary:hover {
        background-color: var(--color-blue);
        color: var(--color-white);
    }

    .outcomes-accordion details[open] summary {
        background-color: var(--color-blue);
        color: var(--color-white);
    }

    .outcomes-accordion summary::-webkit-details-marker {
        display: none;
    }

    .outcomes-accordion summary::after {
        content: '+';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        font-weight: 300;
        transition: transform 0.2s ease;
    }

    .outcomes-accordion details[open] summary::after {
        content: '−';
        transform: translateY(-50%);
    }

    .outcomes-accordion details > div {
        padding: 1.5rem;
    }

    .outcomes-accordion p {
        margin-bottom: 1rem;
        line-height: 1.5em;
    }

    .outcomes-accordion p:last-child {
        margin-bottom: 0;
    }

    .outcomes-accordion strong {
        color: var(--color-blue);
        font-weight: 600;
    }
}

/* Styled Ordered List - Reusable Component */
.styled-ordered-list {
    list-style: decimal;
    margin-left: 0;
    margin-bottom: 18px!important;
    padding-left: 0.7rem;
}

.styled-ordered-list li::marker {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
}

.styled-ordered-list li {
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.styled-ordered-list li:last-child {
    margin-bottom: 0;
}

.styled-ordered-list strong {
    color: var(--color-blue);
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    line-height: 1.1em;
    display: block;
    margin-bottom: 0.75rem;
    position: relative;
    width: fit-content;
}

.styled-ordered-list strong:after {
    background-color: var(--color-blue-light);
    content: "";
    height: 50%;
    position: absolute;
    bottom: -0.25rem;
    left: -0.25rem;
    width: calc(100% + 0.5rem);
    z-index: -1;
}

.styled-ordered-list p {
    margin-bottom: 0;
}

/* FAQ Accordion - Reusable Component */
.faq-accordion {
    margin: 2rem 0;
}

.faq-accordion details {
    margin-bottom: 1rem;
    border: 2px solid var(--color-blue-light);
    border-radius: 1rem;
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
    transition: all ease-in-out 0.2s;
}

.faq-accordion details:hover {
    border-color: var(--color-blue);
}

.faq-accordion details[open] {
    border-color: var(--color-blue);
}

.faq-accordion summary {
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    outline: none;
    padding: 1.25rem 1.5rem;
    background-color: var(--color-blue-light);
    color: var(--color-black);
    position: relative;
    transition: background-color 0.2s ease;
}

.faq-accordion summary:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.faq-accordion details[open] summary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-accordion details[open] summary::after {
    content: '−';
    transform: translateY(-50%);
}

.faq-accordion details > div {
    padding: 1.5rem;
}

.faq-accordion p {
    margin-bottom: 1rem;
    line-height: 1.5em;
}

.faq-accordion p:last-child {
    margin-bottom: 0;
}

.faq-accordion a {
    color: var(--color-blue);
    font-weight: 600;
}

/* Services Mini Navigation - Reusable Component */
.services-nav {
    margin: 1.5rem 0 2rem;
    border-bottom: 2px solid var(--color-blue-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.services-nav-container {
    display: flex;
    gap: 0;
    min-width: fit-content;
    padding-bottom: 0;
}

.services-nav-link {
    flex: 1;
    min-width: fit-content;
    padding: 0.75rem 1.5rem 1rem;
    color: var(--color-gray);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all ease-in-out 0.2s;
    position: relative;
    white-space: nowrap;
}

.services-nav-link:hover {
    color: var(--color-blue);
    background-color: var(--color-blue-light);
}

.services-nav-link.active {
    color: var(--color-blue);
    font-weight: 600;
    border-bottom-color: var(--color-blue);
}

.services-nav-link.active:hover {
    background-color: transparent;
}

.services-nav-text {
    display: block;
}

@media (max-width: 768px) {
    .services-nav {
        margin: 1rem 0 1.5rem;
        border-bottom: none;
        overflow-x: visible;
    }

    .services-nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 0;
    }

    .services-nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-bottom: none;
        border-radius: 0.5rem;
        background-color: var(--color-blue-light);
        border: 2px solid var(--color-blue-light);
        text-align: center;
        white-space: normal;
    }

    .services-nav-link:hover {
        background-color: var(--color-blue);
        color: var(--color-white);
        border-color: var(--color-blue);
    }

    .services-nav-link.active {
        background-color: var(--color-blue);
        color: var(--color-white);
        border-color: var(--color-blue);
    }

         .services-nav-link.active:hover {
         background-color: var(--color-blue-dark);
         border-color: var(--color-blue-dark);
     }
 }

/* Process Timeline - Reusable Component */
.process-timeline {
    border-left: 4px dashed var(--color-blue-light);
    padding-left: 2rem;
    margin: 3rem 0;
    margin-bottom: 18px;
    position: relative;
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 1.5rem;
    }
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -3.25rem;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .step-marker {
        left: -2.75rem;
    }
}

.step-number {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(67, 153, 255, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
    font-size: 1rem;
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.2s;
}

.process-step:hover .step-icon {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: scale(1.1);
}

.step-content {
    margin-left: 0;
}

.step-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    width: fit-content;
    margin: 0 0 0.75rem;
}

.step-content h3:after {
    background-color: var(--color-blue-light);
    content: "";
    height: 50%;
    position: absolute;
    bottom: -0.25rem;
    left: -0.25rem;
    width: calc(100% + 0.5rem);
    z-index: -1;
}

.step-content h3 i {
    color: var(--color-blue);
    transform: rotate(90deg);
}

.step-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.step-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .step-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.detail-section h4 {
    color: var(--color-blue);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    width: fit-content;
}

.detail-section h4:after {
    background-color: var(--color-blue-light);
    content: "";
    height: 40%;
    position: absolute;
    bottom: 0;
    left: -0.25rem;
    width: calc(100% + 0.5rem);
    z-index: -1;
}

.detail-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-section ul:not(.styled-checklist) li {
    color: var(--color-black);
    line-height: 1.5em;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-section ul:not(.styled-checklist) li:before {
    content: "→";
    color: var(--color-blue);
    font-weight: 600;
    position: absolute;
    left: 0;
}

.step-outcome {
    background-color: var(--color-blue-light);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-blue);
}

.step-outcome strong {
    color: var(--color-blue);
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .process-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-item {
    background-color: var(--color-blue-light);
    border-radius: 1rem;
    padding: 2rem 1rem;
    transition: all ease-in-out 0.2s;
}

.stat-item:hover {
    background-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 153, 255, 0.2);
}

.stat-item:hover .stat-number {
    color: var(--color-white);
}

.stat-item:hover .stat-label {
    color: var(--color-white);
}

.stat-number {
    color: var(--color-blue);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.stat-label {
    color: var(--color-black);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

/* Additional button variant */
.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn.btn-outline:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .process-phase {
        padding: 1.5rem;
    }

    .process-phase-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .process-phase-number,
    .process-phase-icon {
        min-width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .process-connector {
        margin: 1rem 0;
    }

    .process-connector-line {
        height: 2rem;
    }
}

/* Blockquote Styles for Insights Articles */
.text-based-content blockquote,
.blog-single blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background-color: var(--color-blue-light);
    border-left: 4px solid var(--color-blue);
    border-radius: 0 1rem 1rem 0;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-black);
    quotes: """ """ "'" "'";
}

.text-based-content blockquote:before,
.blog-single blockquote:before {
    content: open-quote;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--color-blue);
    font-family: Georgia, serif;
    line-height: 1;
}

.text-based-content blockquote p,
.blog-single blockquote p {
    margin: 0;
    line-height: 1.6em;
}

.text-based-content blockquote p:last-child,
.blog-single blockquote p:last-child {
    margin-bottom: 0;
}

/* Add citation support if needed */
.text-based-content blockquote cite,
.blog-single blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-blue);
}

.text-based-content blockquote cite:before,
.blog-single blockquote cite:before {
    content: "— ";
}

@media (max-width: 768px) {
    .text-based-content blockquote,
    .blog-single blockquote {
        margin: 2rem 0;
        padding: 1.5rem 2rem;
        font-size: 1.125rem;
    }

    .text-based-content blockquote:before,
    .blog-single blockquote:before {
        font-size: 3rem;
        top: -0.25rem;
        left: 0.75rem;
    }
}