html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: flex;
}

video {
  display: flex;
  width: 100%;
  height: auto;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-style: none;
  border-left-width: 0px;
  border-right-style: none;
  border-right-width: 0px;
  border-top-style: none;
  border-top-width: 0px;
  margin-bottom: -1px;
  -webkit-clip-path: inset(1px 1px);
          clip-path: inset(1px 1px);
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: auto;
  overflow-x: auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.flex {
  display: flex;
}

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

@media (min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2;
  }
}

@media (min-width: 768px) {
  .order-md-3 {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .order-xl-1 {
    order: 1;
  }
}

@media (min-width: 1200px) {
  .order-xl-2 {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .order-xl-3 {
    order: 3;
  }
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
  --bs-breakpoint-xxxl: 1600px;
}

.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.container {
  padding: 0 3%;
}
@media (min-width: 1600px) {
  .container {
    padding: 0 6%;
  }
}
.flex .container {
  width: 100%;
}

@media (min-width: 1400px) {
  .hidden-lg {
    display: none;
  }
}

@font-face {
  font-family: "Larken";
  src: url(fonts/Larken-Thin.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Larken";
  src: url(fonts/Larken-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Larken";
  src: url(fonts/Larken-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Larken";
  src: url(fonts/Larken-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Larken";
  src: url(fonts/Larken-Black.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Area Trial";
  src: url(fonts/AreaTrial-LightInktrap.otf) format("openType");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Area Trial";
  src: url(fonts/AreaTrial-MediumInktrap.otf) format("openType");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Area Trial";
  src: url(fonts/AreaTrial-BoldInktrap.otf) format("openType");
  font-weight: 700;
  font-style: normal;
}
body {
  background-color: #F2F2F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #2B2B2B;
}
@media (min-width: 1400px) {
  body {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

h1,
.h1-style {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -1.12px;
}
@media (min-width: 1400px) {
  h1,
  .h1-style {
    font-size: 5rem;
    letter-spacing: -1.6px;
  }
}

h2,
.h2-style {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media (min-width: 1400px) {
  h2,
  .h2-style {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}

h3,
.h3-style {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media (min-width: 1400px) {
  h3,
  .h3-style {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}

h4,
.h4-style {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  h4,
  .h4-style {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}

h5,
.h5-style {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}
@media (min-width: 1400px) {
  h5,
  .h5-style {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}

h6,
.h6-style {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  h6,
  .h6-style {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}

p, blockquote, address, cite {
  margin-bottom: 1rem;
}
p:last-child, blockquote:last-child, address:last-child, cite:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1rem 1rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

.button-container {
  margin-bottom: 1rem;
}
.button-container:last-child {
  margin-bottom: 0;
}

a {
  color: #8245FF;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: underline;
}

blockquote {
  background-color: #E8E8E9;
  padding: 1rem;
}
@media (min-width: 1400px) {
  blockquote {
    padding: 2.5rem;
  }
}
@media (min-width: 1200px) {
  blockquote {
    padding-right: 15%;
  }
}
blockquote:before {
  content: "";
  display: block;
  height: 32px;
  width: 38px;
  background-image: url("icons/quote.svg");
  margin-bottom: 1.5rem;
}
blockquote p {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}
@media (min-width: 1400px) {
  blockquote p {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
blockquote cite {
  margin-top: 2.5rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
}
@media (min-width: 1400px) {
  blockquote cite {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

picture {
  display: block;
}

.nav-button {
  background-color: #EFEF50;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  text-decoration: none;
  border-radius: 1.125rem;
  padding: 0.5625rem 0.9375rem;
  display: inline-flex;
}
@media (min-width: 1400px) {
  .nav-button {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.nav-button:hover, .nav-button:focus, .nav-button:active {
  background-color: #D7D748;
  text-decoration: none;
}

.nav-trigger {
  border: none;
  background: none;
  padding: 0;
  display: flex;
}

.button-container {
  display: flex;
  gap: 1rem;
}
.section .button-container, .hero .button-container {
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .section .button-container, .hero .button-container {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .section .button-container, .hero .button-container {
    flex-direction: row;
  }
}

.primary-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #EFEF50;
  border: 1px solid #EFEF50;
  padding: 1rem 1.1875rem;
  font-size: 0.875rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border-radius: 100px;
  color: #2B2B2B;
}
@media (min-width: 1400px) {
  .primary-button {
    font-size: 1rem;
    letter-spacing: 2.8px;
  }
}
.primary-button .icons {
  width: 14px;
  height: 16px;
  display: flex;
  overflow: hidden;
}
.primary-button .icons > span {
  width: 28px;
  height: 16px;
  display: flex;
  margin-left: -14px;
  transition: margin-left 400ms;
}
.primary-button .icons > span > span {
  width: 14px;
  height: 16px;
  background-image: url("icons/button-arrow.svg");
}
.primary-button:hover, .primary-button:focus, .primary-button:active {
  outline: 0;
  text-decoration: none;
}
.primary-button:hover > .icons > span, .primary-button:focus > .icons > span, .primary-button:active > .icons > span {
  margin-left: 0;
}
.primary-button.transparent {
  border-color: #EFEF50;
  color: #EFEF50;
  background-color: transparent;
}
.primary-button.transparent .icons > span > span {
  background-image: url("icons/button-arrow-primary.svg");
}
.primary-button.transparent.alt {
  border-color: #545454;
  color: #545454;
}
.primary-button.transparent.alt .icons > span > span {
  background-image: url("icons/button-arrow.svg");
}
.primary-button.transparent.alt:hover, .primary-button.transparent.alt:focus, .primary-button.transparent.alt:active {
  background-color: #EFEF50;
}
.primary-button.transparent.alt:disabled {
  background-color: #11CE4B;
}
.primary-button.transparent.alt:disabled .icons > span > span {
  background-image: url("icons/tick.svg");
  background-repeat: no-repeat;
}
.primary-button.transparent.alt:disabled:hover > .icons > span, .primary-button.transparent.alt:disabled:focus > .icons > span, .primary-button.transparent.alt:disabled:active > .icons > span {
  margin-left: -14px;
}
.alt-form .primary-button.transparent {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.alt-form .primary-button.transparent:hover, .alt-form .primary-button.transparent:focus, .alt-form .primary-button.transparent:active {
  background-color: #753EE6;
  text-decoration: none;
}
.alt-form .primary-button.transparent .icons > span > span {
  background-image: url("icons/button-arrow-white.svg");
}
.alt-form .primary-button.transparent:disabled {
  background-color: #198754;
  border-color: #198754;
}
.alt-form .primary-button.transparent:disabled .icons > span > span {
  background-image: url("icons/tick-white.svg");
  background-repeat: no-repeat;
}
.alt-form .primary-button.transparent:disabled:hover > .icons > span, .alt-form .primary-button.transparent:disabled:focus > .icons > span, .alt-form .primary-button.transparent:disabled:active > .icons > span {
  margin-left: -14px;
}

.secondary-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  color: #2B2B2B;
  background-color: transparent;
  border: none;
}
@media (min-width: 1400px) {
  .secondary-button {
    font-size: 1rem;
    letter-spacing: 2.8px;
  }
}
.secondary-button > .circle {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #EFEF50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondary-button > .circle .icons {
  width: 14px;
  height: 16px;
  display: flex;
  overflow: hidden;
}
.secondary-button > .circle .icons > span {
  width: 28px;
  height: 16px;
  display: flex;
  margin-left: -14px;
  transition: margin-left 400ms;
}
.secondary-button > .circle .icons > span > span {
  width: 14px;
  height: 16px;
  background-image: url("icons/button-arrow.svg");
}
.secondary-button:hover, .secondary-button:focus, .secondary-button:active {
  outline: 0;
  text-decoration: none;
}
.secondary-button:hover > .circle > .icons > span, .secondary-button:focus > .circle > .icons > span, .secondary-button:active > .circle > .icons > span {
  margin-left: 0;
}

.contact-button {
  background-color: #8245FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
}
@media (min-width: 1400px) {
  .contact-button {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.contact-button:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  top: -2px;
}
.contact-button.phone:before {
  background-image: url("/icons/phone-white.svg");
}
.contact-button.email:before {
  background-image: url("/icons/envelope-white.svg");
}
.contact-button:hover, .contact-button:focus, .contact-button:active {
  background-color: #753EE6;
  text-decoration: none;
}

.text-link {
  font-size: 0.875rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  color: #2B2B2B;
  text-decoration: none;
}
@media (min-width: 1400px) {
  .text-link {
    font-size: 1rem;
    letter-spacing: 2.8px;
  }
}
.text-link:hover, .text-link:focus, .text-link:active {
  text-decoration: underline;
}

#sitewide-header {
  height: 4.5rem;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  #sitewide-header {
    height: 6rem;
  }
}
@media (min-width: 1200px) {
  #sitewide-header {
    background-color: #F2F2F2;
  }
}
.transparent-header #sitewide-header {
  background-color: transparent;
}
.has-hero #sitewide-header {
  background-color: transparent;
  position: relative;
  z-index: 1;
}
#sitewide-header .logo-link {
  display: flex;
  margin-right: auto;
  width: 4.75rem;
}
@media (min-width: 768px) {
  #sitewide-header .logo-link {
    width: 7.5rem;
  }
}
#sitewide-header .logo-link > img {
  display: block;
}
#sitewide-header .logo-link > img:last-child {
  display: none;
}
.has-hero #sitewide-header .logo-link > img:first-child {
  display: none;
}
.has-hero #sitewide-header .logo-link > img:last-child {
  display: block;
}
#sitewide-header .nav-button {
  margin-right: 1.125rem;
}
@media (min-width: 992px) {
  #sitewide-header .nav-button {
    margin-right: 1.6875rem;
  }
}
#sitewide-header .switcher {
  position: relative;
  margin-right: 1.125rem;
}
@media (max-width: 767.98px) {
  #sitewide-header .switcher {
    display: none;
  }
}
@media (min-width: 1200px) {
  #sitewide-header .switcher {
    margin-right: 0;
  }
}
#sitewide-header .switcher .options {
  position: absolute;
  top: 100%;
  margin-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 120px;
  padding: 0.1875rem;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  display: none;
  z-index: 2;
}
#sitewide-header .switcher .options:before {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  border-left: solid 6px transparent;
  border-bottom: solid 6px #FFFFFF;
  border-right: solid 6px transparent;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}
#sitewide-header .switcher .options .option {
  display: block;
  border-radius: 0.5rem;
  text-align: center;
  white-space: nowrap;
  padding: 0.3125rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  text-decoration: none;
}
@media (min-width: 1400px) {
  #sitewide-header .switcher .options .option {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
#sitewide-header .switcher .options .option:hover, #sitewide-header .switcher .options .option:focus, #sitewide-header .switcher .options .option:active {
  background-color: #E8E8E9;
}
#sitewide-header .switcher .trigger {
  display: flex;
  gap: 0.3125rem;
  align-items: center;
  border: 1px solid #A9AAAA;
  background-color: #E8E8E9;
  border-radius: 0.3125rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #545454;
  font-size: 12px;
  cursor: pointer;
}
@media (min-width: 1400px) {
  #sitewide-header .switcher .trigger {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
#sitewide-header .switcher .trigger:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-left: solid 4px transparent;
  border-top: solid 4px #545454;
  border-right: solid 4px transparent;
}
#sitewide-header .switcher .trigger:hover, #sitewide-header .switcher .trigger:focus, #sitewide-header .switcher .trigger:active {
  background-color: #A9AAAA;
}
#sitewide-header .switcher .trigger:focus + .options, #sitewide-header .switcher .trigger:active + .options {
  display: block;
}
.has-hero #sitewide-header .switcher .trigger {
  background-color: #2B2B2B;
  color: #A9AAAA;
}
.has-hero #sitewide-header .switcher .trigger:after {
  border-top-color: #A9AAAA;
}
@media (min-width: 1200px) {
  #sitewide-header .nav-trigger {
    display: none;
  }
}

#sitewide-navigation {
  display: flex;
}
@media (max-width: 767.98px) {
  #sitewide-navigation {
    display: none;
  }
}
#sitewide-navigation ul {
  display: flex;
  margin: 0;
  list-style: none;
}
#sitewide-navigation > ul {
  display: flex;
}
@media (max-width: 1199.98px) {
  #sitewide-navigation > ul:nth-of-type(2) {
    display: none;
  }
}
#sitewide-navigation > ul > li {
  margin-right: 1.125rem;
}
@media (min-width: 992px) {
  #sitewide-navigation > ul > li {
    margin-right: 1.6875rem;
  }
}
#sitewide-navigation > ul > li.has-sub-menu {
  position: relative;
  padding-right: 0.875rem;
}
#sitewide-navigation > ul > li.has-sub-menu .sub-menu-icon {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 0;
  top: 2px;
}
@media (min-width: 1400px) {
  #sitewide-navigation > ul > li.has-sub-menu .sub-menu-icon {
    top: 5px;
  }
}
#sitewide-navigation > ul > li.has-sub-menu .sub-menu-icon > span {
  background-image: url("icons/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  inset: 0;
  transition: transform 400ms;
  background-size: 8px;
}
.has-hero #sitewide-navigation > ul > li.has-sub-menu .sub-menu-icon > span {
  background-image: url("icons/dropdown-arrow-white.svg");
}
#sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper {
  position: absolute;
  top: 100%;
  padding-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
}
#sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul {
  min-width: 120px;
  padding: 0.1875rem;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  flex-direction: column;
  position: relative;
}
#sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul:before {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  border-left: solid 6px transparent;
  border-bottom: solid 6px #FFFFFF;
  border-right: solid 6px transparent;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}
#sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul > li > a {
  display: block;
  border-radius: 0.5rem;
  white-space: nowrap;
  padding: 0.3125rem;
  text-align: center;
}
#sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul > li > a:hover, #sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul > li > a:focus, #sitewide-navigation > ul > li.has-sub-menu > .sub-menu-wrapper > ul > li > a:active {
  background-color: #E8E8E9;
}
#sitewide-navigation > ul > li.has-sub-menu:hover > .sub-menu-wrapper, #sitewide-navigation > ul > li.has-sub-menu:focus > .sub-menu-wrapper, #sitewide-navigation > ul > li.has-sub-menu:active > .sub-menu-wrapper {
  display: flex;
  flex-direction: column;
}
#sitewide-navigation > ul > li.has-sub-menu:hover .sub-menu-icon > span, #sitewide-navigation > ul > li.has-sub-menu:focus .sub-menu-icon > span, #sitewide-navigation > ul > li.has-sub-menu:active .sub-menu-icon > span {
  transform: rotate(180deg);
}
#sitewide-navigation > ul > li a {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  text-decoration: none;
}
@media (min-width: 1400px) {
  #sitewide-navigation > ul > li a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.has-hero #sitewide-navigation > ul > li > a {
  color: #FFFFFF;
}

#subscribe-trigger {
  padding: 1.25rem 0 3.375rem;
  border: none;
  background-color: #8245FF;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: 300ms padding-bottom;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  #subscribe-trigger {
    padding: 1.25rem 0;
  }
}
#subscribe-trigger:hover {
  background-color: #753EE6;
}
#subscribe-trigger h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  max-width: 23.75rem;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  #subscribe-trigger h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
@media (min-width: 1400px) {
  #subscribe-trigger h2 {
    max-width: 33.75rem;
  }
}
#subscribe-trigger .button-container {
  display: flex;
  justify-content: flex-end;
  transition: 300ms bottom;
  position: absolute;
  bottom: 1.25rem;
  right: 3%;
}
@media (min-width: 768px) {
  #subscribe-trigger .button-container {
    position: static;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }
}
#subscribe-trigger .button-container .pseudo-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
#subscribe-trigger .button-container .pseudo-button > span {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  transition: 300ms opacity;
}
@media (min-width: 1400px) {
  #subscribe-trigger .button-container .pseudo-button > span {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
#subscribe-trigger .button-container .pseudo-button > img {
  width: 34px;
}
#subscribe-trigger .button-container .pseudo-button > img:nth-of-type(2) {
  display: none;
}
#subscribe-trigger.active {
  padding-bottom: 1.25rem;
}
#subscribe-trigger.active:hover {
  background-color: #8245FF;
}
#subscribe-trigger.active .button-container {
  bottom: calc(100% - 3.375rem);
}
#subscribe-trigger.active .button-container .pseudo-button > span {
  opacity: 0;
}
#subscribe-trigger.active .button-container .pseudo-button > img:nth-of-type(1) {
  display: none;
}
#subscribe-trigger.active .button-container .pseudo-button > img:nth-of-type(2) {
  display: inline-block;
}

#subscribe {
  display: none;
  background-color: #8245FF;
  padding-bottom: 2.5rem;
}
#subscribe form {
  margin-top: 1rem;
}

#content-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #content-wrapper {
    height: 100%; /* for IE to behave */
  }
}

#main-content {
  flex: 1;
}

#sitewide-footer {
  background-color: #2B2B2B;
  padding: 2.5rem 0;
  position: relative;
}
#sitewide-footer a:not(.nav-button) {
  color: #FFFFFF;
  text-decoration: none;
}
#sitewide-footer .logo-link {
  display: block;
  width: 180px;
}
#sitewide-footer .button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.375rem;
}
#sitewide-footer ul {
  margin: 0;
  list-style: none;
}
#sitewide-footer .social-links {
  justify-content: flex-end;
  margin: 2rem 0 0;
  position: absolute;
  left: 3%;
}
@media (min-width: 768px) {
  #sitewide-footer .social-links {
    position: static;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  #sitewide-footer .social-links li {
    margin: 10px 0 0px 0;
  }
}
#sitewide-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
}
@media (min-width: 1200px) {
  #sitewide-footer .footer-container {
    margin: 0 0 3.75rem;
  }
}
#sitewide-footer .footer-container > ul {
  margin: 0;
  width: 50%;
}
@media (min-width: 768px) {
  #sitewide-footer .footer-container > ul {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  #sitewide-footer .footer-container > ul {
    width: 20%;
  }
}
#sitewide-footer .footer-container > ul > li > a {
  color: #FFFFFF;
  text-decoration: none;
}
#sitewide-footer .footer-container > div {
  color: #FFFFFF;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 2rem;
}
@media (min-width: 1400px) {
  #sitewide-footer .footer-container > div {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  #sitewide-footer .footer-container > div {
    width: 50%;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  #sitewide-footer .footer-container > div {
    flex: 1;
  }
}
#sitewide-footer .footer-container > div span {
  display: block;
}
#sitewide-footer .bottom-footer-container {
  border-top: 1px solid #A9AAAA;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  color: #A9AAAA;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
}
@media (min-width: 1400px) {
  #sitewide-footer .bottom-footer-container {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
#sitewide-footer .bottom-footer-container .footer-links {
  display: flex;
  gap: 1rem;
}
@media (min-width: 1200px) {
  #sitewide-footer .bottom-footer-container .footer-links {
    justify-content: center;
  }
}
#sitewide-footer .bottom-footer-container .footer-links a {
  color: #A9AAAA;
  text-decoration: underline;
}
#sitewide-footer .bottom-footer-container .copy {
  margin: 1rem 0;
}
@media (min-width: 768px) {
  #sitewide-footer .bottom-footer-container .copy {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  #sitewide-footer .bottom-footer-container .credit {
    text-align: right;
    margin: 1rem 0 0;
  }
}
@media (min-width: 1200px) {
  #sitewide-footer .bottom-footer-container p.copy, #sitewide-footer .bottom-footer-container p.credit {
    margin: 0;
  }
}

#mobile-navigation {
  position: fixed;
  background-color: #2B2B2B;
  inset: 0;
  transform: translateX(100%);
  transition: transform 400ms ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(3% + 2.5rem) 3%;
  z-index: 1000;
}
@media (min-width: 1200px) {
  #mobile-navigation {
    display: none;
  }
}
#mobile-navigation.animated {
  transform: translateX(0);
}
#mobile-navigation #nav-close {
  position: absolute;
  top: 3%;
  right: 3%;
}
#mobile-navigation .navigation-container {
  overflow: auto;
}
#mobile-navigation .navigation-container ul {
  display: flex;
  margin: 0;
  list-style: none;
  flex-direction: column;
}
#mobile-navigation .navigation-container ul li a {
  text-decoration: none;
  color: #FFFFFF;
  display: block;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.75rem 0;
  margin: 0;
}
@media (min-width: 1400px) {
  #mobile-navigation .navigation-container ul li a {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
#mobile-navigation .navigation-container ul li a:hover, #mobile-navigation .navigation-container ul li a:focus, #mobile-navigation .navigation-container ul li a:active {
  color: #EFEF50;
}
#mobile-navigation .navigation-container > ul:first-child {
  border-top: 1px solid #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li {
  border-bottom: 1px solid #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li.contact-link a {
  color: #EFEF50;
}
#mobile-navigation .navigation-container > ul > li.contact-link a:hover, #mobile-navigation .navigation-container > ul > li.contact-link a:focus, #mobile-navigation .navigation-container > ul > li.contact-link a:active {
  color: #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li.has-sub-menu {
  position: relative;
}
#mobile-navigation .navigation-container > ul > li.has-sub-menu .sub-menu-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 2.8125rem;
  width: 2.8125rem;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li.has-sub-menu .sub-menu-trigger > span {
  background-image: url("icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  inset: 0;
  transition: transform 400ms;
}
#mobile-navigation .navigation-container > ul > li.has-sub-menu .sub-menu-trigger.animated > span {
  transform: rotate(180deg);
}
#mobile-navigation .navigation-container > ul > li > ul {
  display: none;
  border-top: 1px solid #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li > ul > li {
  padding-left: 2rem;
  border-bottom: 1px solid #FFFFFF;
}
#mobile-navigation .navigation-container > ul > li > ul > li:last-child {
  border-bottom: none;
}
#mobile-navigation aside {
  position: absolute;
  bottom: 3%;
  left: 3%;
  right: 3%;
}
#mobile-navigation aside #mobile-language-switcher {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column-reverse;
}
#mobile-navigation aside #mobile-language-switcher .trigger {
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.3125rem;
  background-color: transparent;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: #FFFFFF;
}
@media (min-width: 1400px) {
  #mobile-navigation aside #mobile-language-switcher .trigger {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
#mobile-navigation aside #mobile-language-switcher .options {
  display: none;
}
#mobile-navigation aside #mobile-language-switcher .options .option {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.3125rem;
  width: 100%;
}
@media (min-width: 1400px) {
  #mobile-navigation aside #mobile-language-switcher .options .option {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
#mobile-navigation aside #mobile-language-switcher .options .option:hover, #mobile-navigation aside #mobile-language-switcher .options .option:focus, #mobile-navigation aside #mobile-language-switcher .options .option:active {
  background-color: #A9AAAA;
}
#mobile-navigation aside #mobile-language-switcher:hover, #mobile-navigation aside #mobile-language-switcher:focus, #mobile-navigation aside #mobile-language-switcher:active #mobile-navigation aside #mobile-language-switcher.active {
  background-color: #545454;
}
#mobile-navigation aside #mobile-language-switcher.active .options {
  display: flex;
  flex-direction: column;
}

.dropdown-wrapper {
  position: relative;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .dropdown-wrapper {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
.dropdown-wrapper .dropdown-trigger {
  background-color: #E8E8E9;
  border: 1px solid #545454;
  height: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown-wrapper .dropdown-trigger:after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-image: url("/icons/select-chevron.svg");
  margin-left: auto;
  transition: transform 400ms;
}
.dropdown-wrapper .dropdown-trigger.animated:after {
  transform: rotate(180deg);
}
.dropdown-wrapper .dropdown-trigger .required {
  position: relative;
  top: -2px;
  left: 2px;
}
.dropdown-wrapper.error .dropdown-trigger {
  border-color: #FF0000;
  color: #FF0000;
}
.dropdown-wrapper.error .dropdown-trigger:after {
  background-image: url("/icons/select-chevron-error.svg");
}
.dropdown-wrapper .dropdown-choices {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: #E8E8E9;
  border-left: 1px solid #545454;
  border-right: 1px solid #545454;
  display: none;
}
.dropdown-wrapper .dropdown-choices > * {
  position: relative;
  border-bottom: 1px solid #545454;
}
.dropdown-wrapper .dropdown-choices > * input {
  position: absolute;
}
.dropdown-wrapper .dropdown-choices > * label {
  position: relative;
  background-color: #E8E8E9;
  height: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  z-index: 3;
}
.dropdown-wrapper .dropdown-choices > * input:checked + label {
  background-color: #2B2B2B;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-wrapper .dropdown-choices > * input:checked + label:after {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background-image: url("/icons/tick-white.svg");
}
.dropdown-wrapper .dropdown-choices > *:hover label {
  background-color: #545454;
  color: #FFFFFF;
}

.filters-form,
.two-column-form,
.candidate-form,
.alt-form {
  display: flex;
}
.filters-form .form-group,
.two-column-form .form-group,
.candidate-form .form-group,
.alt-form .form-group {
  position: relative;
  margin-bottom: 1rem;
}
.filters-form .form-group .form-input,
.filters-form .form-group .form-textarea,
.two-column-form .form-group .form-input,
.two-column-form .form-group .form-textarea,
.candidate-form .form-group .form-input,
.candidate-form .form-group .form-textarea,
.alt-form .form-group .form-input,
.alt-form .form-group .form-textarea {
  background-color: #E8E8E9;
  border: 1px solid #545454;
  border-radius: 0;
  width: 100%;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 1400px) {
  .filters-form .form-group .form-input,
  .filters-form .form-group .form-textarea,
  .two-column-form .form-group .form-input,
  .two-column-form .form-group .form-textarea,
  .candidate-form .form-group .form-input,
  .candidate-form .form-group .form-textarea,
  .alt-form .form-group .form-input,
  .alt-form .form-group .form-textarea {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.filters-form .form-group .form-input.error,
.filters-form .form-group .form-textarea.error,
.two-column-form .form-group .form-input.error,
.two-column-form .form-group .form-textarea.error,
.candidate-form .form-group .form-input.error,
.candidate-form .form-group .form-textarea.error,
.alt-form .form-group .form-input.error,
.alt-form .form-group .form-textarea.error {
  border-color: #FF0000;
}
.filters-form .form-group .form-input:focus,
.filters-form .form-group .form-textarea:focus,
.two-column-form .form-group .form-input:focus,
.two-column-form .form-group .form-textarea:focus,
.candidate-form .form-group .form-input:focus,
.candidate-form .form-group .form-textarea:focus,
.alt-form .form-group .form-input:focus,
.alt-form .form-group .form-textarea:focus {
  outline: 0;
}
.filters-form .form-group .form-textarea,
.two-column-form .form-group .form-textarea,
.candidate-form .form-group .form-textarea,
.alt-form .form-group .form-textarea {
  min-height: 9.375rem;
}
.filters-form .form-group .form-label,
.two-column-form .form-group .form-label,
.candidate-form .form-group .form-label,
.alt-form .form-group .form-label {
  position: absolute;
  top: 1.0625rem;
  left: 0.75rem;
  transition: all 300ms ease-in-out;
  pointer-events: none;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  transform-origin: top left;
}
@media (min-width: 1400px) {
  .filters-form .form-group .form-label,
  .two-column-form .form-group .form-label,
  .candidate-form .form-group .form-label,
  .alt-form .form-group .form-label {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
@media (min-width: 1400px) {
  .filters-form .form-group .form-label,
  .two-column-form .form-group .form-label,
  .candidate-form .form-group .form-label,
  .alt-form .form-group .form-label {
    top: 0.875rem;
  }
}
.filters-form .form-group .form-label .required,
.two-column-form .form-group .form-label .required,
.candidate-form .form-group .form-label .required,
.alt-form .form-group .form-label .required {
  position: relative;
  top: -2px;
  left: -5px;
}
.filters-form .form-group .form-input:not(:-moz-placeholder-shown) ~ .form-label, .filters-form .form-group .form-textarea:not(:-moz-placeholder-shown) ~ .form-label, .two-column-form .form-group .form-input:not(:-moz-placeholder-shown) ~ .form-label, .two-column-form .form-group .form-textarea:not(:-moz-placeholder-shown) ~ .form-label, .candidate-form .form-group .form-input:not(:-moz-placeholder-shown) ~ .form-label, .candidate-form .form-group .form-textarea:not(:-moz-placeholder-shown) ~ .form-label, .alt-form .form-group .form-input:not(:-moz-placeholder-shown) ~ .form-label, .alt-form .form-group .form-textarea:not(:-moz-placeholder-shown) ~ .form-label {
  top: 2px;
  transform: scale(0.7);
}
.filters-form .form-group .form-input:focus ~ .form-label,
.filters-form .form-group .form-input:not(:placeholder-shown) ~ .form-label,
.filters-form .form-group .form-textarea:focus ~ .form-label,
.filters-form .form-group .form-textarea:not(:placeholder-shown) ~ .form-label,
.two-column-form .form-group .form-input:focus ~ .form-label,
.two-column-form .form-group .form-input:not(:placeholder-shown) ~ .form-label,
.two-column-form .form-group .form-textarea:focus ~ .form-label,
.two-column-form .form-group .form-textarea:not(:placeholder-shown) ~ .form-label,
.candidate-form .form-group .form-input:focus ~ .form-label,
.candidate-form .form-group .form-input:not(:placeholder-shown) ~ .form-label,
.candidate-form .form-group .form-textarea:focus ~ .form-label,
.candidate-form .form-group .form-textarea:not(:placeholder-shown) ~ .form-label,
.alt-form .form-group .form-input:focus ~ .form-label,
.alt-form .form-group .form-input:not(:placeholder-shown) ~ .form-label,
.alt-form .form-group .form-textarea:focus ~ .form-label,
.alt-form .form-group .form-textarea:not(:placeholder-shown) ~ .form-label {
  top: 2px;
  transform: scale(0.7);
}
.filters-form .form-group .form-input.error ~ label,
.two-column-form .form-group .form-input.error ~ label,
.candidate-form .form-group .form-input.error ~ label,
.alt-form .form-group .form-input.error ~ label {
  color: #FF0000;
}
.filters-form .form-group.text .form-input,
.two-column-form .form-group.text .form-input,
.candidate-form .form-group.text .form-input,
.alt-form .form-group.text .form-input {
  height: 50px;
  padding: 20px 10px 0 10px;
}
.filters-form .form-group.textarea .form-textarea,
.two-column-form .form-group.textarea .form-textarea,
.candidate-form .form-group.textarea .form-textarea,
.alt-form .form-group.textarea .form-textarea {
  padding: 20px 10px 0 10px;
}
.filters-form .form-group.file,
.two-column-form .form-group.file,
.candidate-form .form-group.file,
.alt-form .form-group.file {
  position: relative;
}
.filters-form .form-group.file .form-file,
.two-column-form .form-group.file .form-file,
.candidate-form .form-group.file .form-file,
.alt-form .form-group.file .form-file {
  position: absolute;
  width: 1px;
}
.filters-form .form-group.file .file-label,
.two-column-form .form-group.file .file-label,
.candidate-form .form-group.file .file-label,
.alt-form .form-group.file .file-label {
  border: 1px dashed #545454;
  background-color: #E8E8E9;
  position: relative;
  z-index: 2;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
  height: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  gap: 0.625rem;
}
@media (min-width: 1400px) {
  .filters-form .form-group.file .file-label,
  .two-column-form .form-group.file .file-label,
  .candidate-form .form-group.file .file-label,
  .alt-form .form-group.file .file-label {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
.filters-form .form-group.file .file-label .icons,
.two-column-form .form-group.file .file-label .icons,
.candidate-form .form-group.file .file-label .icons,
.alt-form .form-group.file .file-label .icons {
  display: block;
  width: 16px;
  height: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: -4px;
}
.filters-form .form-group.file .file-label .icons > span,
.two-column-form .form-group.file .file-label .icons > span,
.candidate-form .form-group.file .file-label .icons > span,
.alt-form .form-group.file .file-label .icons > span {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.filters-form .form-group.file .file-label .icons > span.border,
.two-column-form .form-group.file .file-label .icons > span.border,
.candidate-form .form-group.file .file-label .icons > span.border,
.alt-form .form-group.file .file-label .icons > span.border {
  height: 5px;
  width: 16px;
  border-bottom: 1px solid #545454;
  border-left: 1px solid #545454;
  border-right: 1px solid #545454;
  border-bottom-right-radius: 0.1875rem;
  border-bottom-left-radius: 0.1875rem;
}
.filters-form .form-group.file .file-label .icons > span > span,
.two-column-form .form-group.file .file-label .icons > span > span,
.candidate-form .form-group.file .file-label .icons > span > span,
.alt-form .form-group.file .file-label .icons > span > span {
  display: flex;
  width: 14px;
  height: 16px;
  background-image: url("/icons/button-arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}
.filters-form .form-group.file .file-label .icons > span > span:first-child,
.two-column-form .form-group.file .file-label .icons > span > span:first-child,
.candidate-form .form-group.file .file-label .icons > span > span:first-child,
.alt-form .form-group.file .file-label .icons > span > span:first-child {
  margin-top: 2px;
  transition: margin-top 400ms;
}
.filters-form .form-group.file .file-label:hover .icons > span > span:first-child, .filters-form .form-group.file .file-label:active .icons > span > span:first-child, .filters-form .form-group.file .file-label:focus .icons > span > span:first-child,
.two-column-form .form-group.file .file-label:hover .icons > span > span:first-child,
.two-column-form .form-group.file .file-label:active .icons > span > span:first-child,
.two-column-form .form-group.file .file-label:focus .icons > span > span:first-child,
.candidate-form .form-group.file .file-label:hover .icons > span > span:first-child,
.candidate-form .form-group.file .file-label:active .icons > span > span:first-child,
.candidate-form .form-group.file .file-label:focus .icons > span > span:first-child,
.alt-form .form-group.file .file-label:hover .icons > span > span:first-child,
.alt-form .form-group.file .file-label:active .icons > span > span:first-child,
.alt-form .form-group.file .file-label:focus .icons > span > span:first-child {
  margin-top: -14px;
}
.filters-form .form-group.file .file-label:hover, .filters-form .form-group.file .file-label:focus, .filters-form .form-group.file .file-label:active,
.two-column-form .form-group.file .file-label:hover,
.two-column-form .form-group.file .file-label:focus,
.two-column-form .form-group.file .file-label:active,
.candidate-form .form-group.file .file-label:hover,
.candidate-form .form-group.file .file-label:focus,
.candidate-form .form-group.file .file-label:active,
.alt-form .form-group.file .file-label:hover,
.alt-form .form-group.file .file-label:focus,
.alt-form .form-group.file .file-label:active {
  border-color: #FFFFFF;
  background-color: #8245FF;
  color: #FFFFFF;
}
.filters-form .form-group.file .file-label:hover .icons > span, .filters-form .form-group.file .file-label:focus .icons > span, .filters-form .form-group.file .file-label:active .icons > span,
.two-column-form .form-group.file .file-label:hover .icons > span,
.two-column-form .form-group.file .file-label:focus .icons > span,
.two-column-form .form-group.file .file-label:active .icons > span,
.candidate-form .form-group.file .file-label:hover .icons > span,
.candidate-form .form-group.file .file-label:focus .icons > span,
.candidate-form .form-group.file .file-label:active .icons > span,
.alt-form .form-group.file .file-label:hover .icons > span,
.alt-form .form-group.file .file-label:focus .icons > span,
.alt-form .form-group.file .file-label:active .icons > span {
  border-color: #FFFFFF;
}
.filters-form .form-group.file .file-label:hover .icons > span > span, .filters-form .form-group.file .file-label:focus .icons > span > span, .filters-form .form-group.file .file-label:active .icons > span > span,
.two-column-form .form-group.file .file-label:hover .icons > span > span,
.two-column-form .form-group.file .file-label:focus .icons > span > span,
.two-column-form .form-group.file .file-label:active .icons > span > span,
.candidate-form .form-group.file .file-label:hover .icons > span > span,
.candidate-form .form-group.file .file-label:focus .icons > span > span,
.candidate-form .form-group.file .file-label:active .icons > span > span,
.alt-form .form-group.file .file-label:hover .icons > span > span,
.alt-form .form-group.file .file-label:focus .icons > span > span,
.alt-form .form-group.file .file-label:active .icons > span > span {
  background-image: url("/icons/button-arrow-white.svg");
}
.filters-form .form-group.file .form-file.error ~ label,
.two-column-form .form-group.file .form-file.error ~ label,
.candidate-form .form-group.file .form-file.error ~ label,
.alt-form .form-group.file .form-file.error ~ label {
  border-color: #FF0000;
  color: #FF0000;
}
.filters-form .form-group.file .form-file.error ~ label .icons,
.two-column-form .form-group.file .form-file.error ~ label .icons,
.candidate-form .form-group.file .form-file.error ~ label .icons,
.alt-form .form-group.file .form-file.error ~ label .icons {
  display: none;
}
.filters-form .form-group.file .files-container,
.two-column-form .form-group.file .files-container,
.candidate-form .form-group.file .files-container,
.alt-form .form-group.file .files-container {
  display: inline-flex;
  flex-direction: column;
}
.filters-form .form-group.file .files-container > span,
.two-column-form .form-group.file .files-container > span,
.candidate-form .form-group.file .files-container > span,
.alt-form .form-group.file .files-container > span {
  color: #A9AAAA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.3125rem;
  overflow: hidden;
}
.filters-form .form-group.file .files-container > span > button,
.two-column-form .form-group.file .files-container > span > button,
.candidate-form .form-group.file .files-container > span > button,
.alt-form .form-group.file .files-container > span > button {
  display: block;
  height: 11px;
  width: 10px;
  background-image: url("/icons/remove.svg");
  background-position: center center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.filters-form .form-group.acceptance,
.two-column-form .form-group.acceptance,
.candidate-form .form-group.acceptance,
.alt-form .form-group.acceptance {
  position: relative;
  margin-bottom: 1.5rem;
}
.filters-form .form-group.acceptance .form-acceptance,
.two-column-form .form-group.acceptance .form-acceptance,
.candidate-form .form-group.acceptance .form-acceptance,
.alt-form .form-group.acceptance .form-acceptance {
  position: absolute;
  height: 1px;
  width: 1px;
  opacity: 0;
}
.filters-form .form-group.acceptance .acceptance-label,
.two-column-form .form-group.acceptance .acceptance-label,
.candidate-form .form-group.acceptance .acceptance-label,
.alt-form .form-group.acceptance .acceptance-label {
  display: flex;
  padding-left: 1.875rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  max-width: 27.5rem;
  position: relative;
}
@media (min-width: 1400px) {
  .filters-form .form-group.acceptance .acceptance-label,
  .two-column-form .form-group.acceptance .acceptance-label,
  .candidate-form .form-group.acceptance .acceptance-label,
  .alt-form .form-group.acceptance .acceptance-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .filters-form .form-group.acceptance .acceptance-label,
  .two-column-form .form-group.acceptance .acceptance-label,
  .candidate-form .form-group.acceptance .acceptance-label,
  .alt-form .form-group.acceptance .acceptance-label {
    max-width: 33.125rem;
  }
}
.filters-form .form-group.acceptance .acceptance-label:before,
.two-column-form .form-group.acceptance .acceptance-label:before,
.candidate-form .form-group.acceptance .acceptance-label:before,
.alt-form .form-group.acceptance .acceptance-label:before {
  content: "";
  height: 16px;
  width: 16px;
  border: 1px solid #545454;
  border-radius: 5px;
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 2;
}
.filters-form .form-group.acceptance .form-acceptance:checked ~ label:before,
.two-column-form .form-group.acceptance .form-acceptance:checked ~ label:before,
.candidate-form .form-group.acceptance .form-acceptance:checked ~ label:before,
.alt-form .form-group.acceptance .form-acceptance:checked ~ label:before {
  background-image: url("/icons/tick.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75%;
}
.filters-form .form-button button:not(:disabled),
.two-column-form .form-button button:not(:disabled),
.candidate-form .form-button button:not(:disabled),
.alt-form .form-button button:not(:disabled) {
  cursor: pointer;
}
.filters-form .error-message,
.two-column-form .error-message,
.candidate-form .error-message,
.alt-form .error-message {
  color: #FF0000;
  margin: 1rem 0 0;
  width: 100%;
}
.filters-form .error-message:before,
.two-column-form .error-message:before,
.candidate-form .error-message:before,
.alt-form .error-message:before {
  content: "*";
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.filters-form.alt-form,
.two-column-form.alt-form,
.candidate-form.alt-form,
.alt-form.alt-form {
  flex-direction: column;
  position: relative;
}
@media (min-width: 1200px) {
  .filters-form.alt-form,
  .two-column-form.alt-form,
  .candidate-form.alt-form,
  .alt-form.alt-form {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .filters-form.alt-form > *,
  .two-column-form.alt-form > *,
  .candidate-form.alt-form > *,
  .alt-form.alt-form > * {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .filters-form.alt-form,
  .two-column-form.alt-form,
  .candidate-form.alt-form,
  .alt-form.alt-form {
    align-items: center;
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .filters-form.alt-form .form-group,
  .two-column-form.alt-form .form-group,
  .candidate-form.alt-form .form-group,
  .alt-form.alt-form .form-group {
    margin-bottom: 0;
  }
}
.filters-form.alt-form .form-input,
.two-column-form.alt-form .form-input,
.candidate-form.alt-form .form-input,
.alt-form.alt-form .form-input {
  border-color: #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}
.filters-form.alt-form .form-label,
.two-column-form.alt-form .form-label,
.candidate-form.alt-form .form-label,
.alt-form.alt-form .form-label {
  color: #FFFFFF;
}
.filters-form.alt-form .form-button,
.two-column-form.alt-form .form-button,
.candidate-form.alt-form .form-button,
.alt-form.alt-form .form-button {
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .filters-form.alt-form .form-button,
  .two-column-form.alt-form .form-button,
  .candidate-form.alt-form .form-button,
  .alt-form.alt-form .form-button {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
  }
}
.filters-form.alt-form .error-message,
.two-column-form.alt-form .error-message,
.candidate-form.alt-form .error-message,
.alt-form.alt-form .error-message {
  position: absolute;
  left: 0;
  bottom: -2rem;
}
.filters-form.two-column-form,
.two-column-form.two-column-form,
.candidate-form.two-column-form,
.alt-form.two-column-form {
  flex-wrap: wrap;
  justify-content: space-between;
}
.filters-form.two-column-form .form-group,
.two-column-form.two-column-form .form-group,
.candidate-form.two-column-form .form-group,
.alt-form.two-column-form .form-group {
  width: 100%;
}
@media (min-width: 1200px) {
  .filters-form.two-column-form .form-group.text,
  .two-column-form.two-column-form .form-group.text,
  .candidate-form.two-column-form .form-group.text,
  .alt-form.two-column-form .form-group.text {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1200px) {
  .filters-form.two-column-form .form-group.textarea,
  .two-column-form.two-column-form .form-group.textarea,
  .candidate-form.two-column-form .form-group.textarea,
  .alt-form.two-column-form .form-group.textarea {
    width: calc(60% - 0.5rem);
  }
}
@media (min-width: 1600px) {
  .filters-form.two-column-form .form-group.textarea,
  .two-column-form.two-column-form .form-group.textarea,
  .candidate-form.two-column-form .form-group.textarea,
  .alt-form.two-column-form .form-group.textarea {
    width: calc(70% - 0.5rem);
  }
}
@media (min-width: 1200px) {
  .filters-form.two-column-form .form-group.file,
  .two-column-form.two-column-form .form-group.file,
  .candidate-form.two-column-form .form-group.file,
  .alt-form.two-column-form .form-group.file {
    width: calc(40% - 0.5rem);
  }
}
@media (min-width: 1600px) {
  .filters-form.two-column-form .form-group.file,
  .two-column-form.two-column-form .form-group.file,
  .candidate-form.two-column-form .form-group.file,
  .alt-form.two-column-form .form-group.file {
    width: calc(30% - 0.5rem);
  }
}
@media (min-width: 1200px) {
  .filters-form.two-column-form .form-group.file label,
  .two-column-form.two-column-form .form-group.file label,
  .candidate-form.two-column-form .form-group.file label,
  .alt-form.two-column-form .form-group.file label {
    height: 9.375rem;
    flex-direction: column;
    gap: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .filters-form.two-column-form .form-group.file label .icons,
  .two-column-form.two-column-form .form-group.file label .icons,
  .candidate-form.two-column-form .form-group.file label .icons,
  .alt-form.two-column-form .form-group.file label .icons {
    top: -7px;
  }
}
.filters-form.candidate-form,
.two-column-form.candidate-form,
.candidate-form.candidate-form,
.alt-form.candidate-form {
  flex-direction: column;
}
.filters-form.filters-form,
.two-column-form.filters-form,
.candidate-form.filters-form,
.alt-form.filters-form {
  gap: 1rem;
  border-bottom: 1px solid #545454;
  align-items: center;
}
.filters-form.filters-form .form-group,
.two-column-form.filters-form .form-group,
.candidate-form.filters-form .form-group,
.alt-form.filters-form .form-group {
  width: 16.875rem;
}
@media (min-width: 1400px) {
  .filters-form.filters-form .form-group,
  .two-column-form.filters-form .form-group,
  .candidate-form.filters-form .form-group,
  .alt-form.filters-form .form-group {
    width: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .filters-form.filters-form .form-group,
  .two-column-form.filters-form .form-group,
  .candidate-form.filters-form .form-group,
  .alt-form.filters-form .form-group {
    width: 20.625rem;
  }
}
.filters-form.filters-form .form-button,
.two-column-form.filters-form .form-button,
.candidate-form.filters-form .form-button,
.alt-form.filters-form .form-button {
  margin-left: auto;
  margin-bottom: 1rem;
}

::-webkit-input-placeholder {
  color: transparent;
}

::-moz-placeholder {
  color: transparent;
}

::-ms-placeholder {
  color: transparent;
}

::-moz-placeholder {
  color: transparent;
}

::placeholder {
  color: transparent;
}

#alert {
  width: 100%;
  height: 40px;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 1s ease-in-out;
}

.slide-up {
  transform: translateY(-40px);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  display: none;
}

.cookie-consent-banner button {
  margin-left: 10px;
  cursor: pointer;
  background-color: #efef50;
  border: 1px solid #efef50;
  padding: 1rem 1.1875rem;
  font-size: 0.875rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border-radius: 100px;
  color: #2b2b2b;
}

.social-links {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 0.875rem;
  align-items: center;
}
.social-links > li > a {
  display: flex;
}
.social-links > li > a > svg {
  height: 1.25rem;
  width: auto;
}
.social-links > li > a:hover > svg path, .social-links > li > a:focus > svg path, .social-links > li > a:active > svg path {
  fill: #EFEF50;
}

.tag {
  border: 1px solid #A9AAAA;
  border-radius: 5px;
  color: #545454;
  text-decoration: none;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
}
@media (min-width: 1400px) {
  .tag {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.tag:hover, .tag:focus, .tag:active {
  text-decoration: none;
}

.post-card .card-link {
  color: #2B2B2B;
  text-decoration: none;
}
.post-card .card-link picture {
  border-radius: 0;
  transition: border-radius 500ms linear;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .post-card .card-link picture {
    border-radius: 100%;
  }
}
.post-card .card-link .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.post-card .card-link .tags-wrapper > span {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
.post-card .card-link h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  margin: 1rem 0 0.75rem;
}
@media (min-width: 1400px) {
  .post-card .card-link h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.post-card .card-link:hover picture, .post-card .card-link:focus picture, .post-card .card-link:active picture {
  border-radius: 100%;
}
.post-card .card-link:hover h3, .post-card .card-link:focus h3, .post-card .card-link:active h3 {
  text-decoration: underline;
}
.post-card cite {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #A9AAAA;
}
@media (min-width: 1400px) {
  .post-card cite {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.post-card cite > a {
  text-decoration: none;
}
.post-card cite > a:hover, .post-card cite > a:focus, .post-card cite > a:active {
  text-decoration: underline;
}

.job-card {
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #545454;
  height: 100%;
  min-height: 12.5rem;
  color: #2B2B2B;
}
@media (min-width: 1200px) {
  .job-card {
    padding: 2rem;
    min-height: 16.25rem;
  }
}
.job-card:hover, .job-card:focus, .job-card:active {
  background-color: #FFFFFF;
  text-decoration: none;
}
.job-card h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  color: #2B2B2B;
}
@media (min-width: 1400px) {
  .job-card h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.job-card .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.job-card .location {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-right: 3.5rem;
  margin-top: auto;
}
.job-card > .circle {
  display: flex;
  height: 40px;
  width: 40px;
  background-color: #EFEF50;
  border-radius: 100%;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .job-card > .circle {
    bottom: 2rem;
    right: 2rem;
  }
}
.job-card > .circle .icons {
  width: 14px;
  height: 16px;
  display: flex;
  overflow: hidden;
}
.job-card > .circle .icons > span {
  width: 28px;
  height: 16px;
  display: flex;
  margin-left: -14px;
  transition: margin-left 400ms;
}
.job-card > .circle .icons > span > span {
  width: 14px;
  height: 16px;
  background-image: url("icons/button-arrow.svg");
}
.job-card:hover, .job-card:focus, .job-card:active {
  outline: 0;
}
.job-card:hover > .circle > .icons > span, .job-card:focus > .circle > .icons > span, .job-card:active > .circle > .icons > span {
  margin-left: 0;
}

.expert-card {
  text-decoration: none;
  color: #FFFFFF;
}
.expert-card > figure {
  position: relative;
  overflow: hidden;
}
.expert-card > figure > picture {
  transition: transform 300ms linear;
}
.expert-card > figure > figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 5rem;
}
.expert-card > figure > figcaption h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .expert-card > figure > figcaption h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.expert-card > figure > .circle {
  display: flex;
  height: 35px;
  width: 35px;
  background-color: #EFEF50;
  border-radius: 100%;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms linear;
}
.expert-card > figure > .circle > span {
  width: 14px;
  height: 16px;
  background-image: url("icons/button-arrow.svg");
}
.expert-card:hover > figure > picture, .expert-card:focus > figure > picture, .expert-card:active > figure > picture {
  transform: scale(1.05);
}
.expert-card:hover > figure > .circle, .expert-card:focus > figure > .circle, .expert-card:active > figure > .circle {
  opacity: 1;
}

.expert-search-card {
  color: #2B2B2B;
}
.expert-search-card > figure > picture {
  position: relative;
  overflow: hidden;
}
.expert-search-card > figure > picture img {
  transition: transform 300ms linear;
}
.expert-search-card > figure > picture::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.expert-search-card > figure > figcaption {
  margin-top: 1.5rem;
}
.expert-search-card > figure > figcaption h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .expert-search-card > figure > figcaption h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.expert-search-card .icons {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.expert-search-card .icons > span {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
}
.expert-search-card .icons > span.phone {
  background-image: url("/icons/phone-purple.svg");
}
.expert-search-card .icons > span.email {
  background-image: url("/icons/envelope-purple.svg");
}
.expert-search-card .icons > span.linkedin {
  background-image: url("/icons/linkedin-purple.svg");
}
.expert-search-card:hover, .expert-search-card:focus, .expert-search-card:active {
  text-decoration: none;
}
.expert-search-card:hover > figure > picture img, .expert-search-card:focus > figure > picture img, .expert-search-card:active > figure > picture img {
  transform: scale(1.05);
}
.expert-search-card:hover h3, .expert-search-card:focus h3, .expert-search-card:active h3 {
  text-decoration: underline;
}

.office-card a {
  color: #2B2B2B;
}
.office-card a picture {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .col-xl-6 > .office-card a picture {
    padding-bottom: calc(50% - 0.5rem);
  }
}
.office-card a picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 300ms linear;
}
.office-card a h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  margin: 1rem 0;
}
@media (min-width: 1400px) {
  .office-card a h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.office-card a span {
  display: block;
}
.office-card a:hover, .office-card a:focus, .office-card a:active {
  text-decoration: none;
}
.office-card a:hover picture img, .office-card a:focus picture img, .office-card a:active picture img {
  transform: scale(1.1);
}
.office-card a:hover h3, .office-card a:focus h3, .office-card a:active h3 {
  text-decoration: underline;
}

.featured-link {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .featured-link {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .featured-link > * {
    flex: 1;
  }
}
.featured-link picture {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .featured-link picture {
    order: 1;
  }
}
.featured-link picture img {
  transition: transform 300ms linear;
}
.featured-link .featured-content {
  background-color: #2B2B2B;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .featured-link .featured-content {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .featured-link .featured-content {
    padding: 1.875rem;
  }
}
.featured-link .featured-content cite {
  color: #A9AAAA;
}
.featured-link .featured-content span {
  color: #FFFFFF;
}
.featured-link .featured-content > span {
  display: block;
  margin-bottom: 1rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .featured-link .featured-content > span {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
.featured-link .featured-content h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  color: #EFEF50;
  flex: 1;
  margin-bottom: 2rem;
  max-width: 25rem;
}
@media (min-width: 1400px) {
  .featured-link .featured-content h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
@media (min-width: 768px) {
  .featured-link .featured-content h2 {
    max-width: 21.25rem;
    margin-top: 4rem;
  }
}
@media (min-width: 992px) {
  .featured-link .featured-content h2 {
    font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.64px;
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .featured-link .featured-content h2 {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}
@media (min-width: 1400px) {
  .featured-link .featured-content h2 {
    max-width: 31.25rem;
  }
}
.featured-link:hover, .featured-link:focus, .featured-link:active {
  text-decoration: none;
}
.featured-link:hover h2, .featured-link:focus h2, .featured-link:active h2 {
  text-decoration: underline;
}
.featured-link:hover picture img, .featured-link:focus picture img, .featured-link:active picture img {
  transform: scale(1.1);
}
@media (min-width: 1400px) {
  .featured-link:hover picture img, .featured-link:focus picture img, .featured-link:active picture img {
    transform: scale(1.05);
  }
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: #545454;
}
.pagination-wrapper > a {
  color: #545454;
}
.pagination-wrapper > .prev:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-right: 6px solid #545454;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.pagination-wrapper > .next:before {
  content: "";
  display: block;
  height: 0;
  width: 6px;
  border-left: 6px solid #545454;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.pagination-wrapper .next:before:hover, .pagination-wrapper .next:before:focus, .pagination-wrapper .next:before:active,
.pagination-wrapper .prev:before:hover,
.pagination-wrapper .prev:before:focus,
.pagination-wrapper .prev:before:active {
  text-decoration: underline;
}
.pagination-wrapper > a:not(.next, .prev) {
  text-decoration: underline;
}
.pagination-wrapper > a:not(.next, .prev):hover, .pagination-wrapper > a:not(.next, .prev):focus, .pagination-wrapper > a:not(.next, .prev):active {
  text-decoration: none;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}
@media (min-width: 1400px) {
  .section {
    padding: 5.5rem 0;
  }
}
.section + .section {
  padding-top: 0;
}
.section h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media (min-width: 1400px) {
  .section h2 {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}
.section .button-container {
  margin-top: 2rem;
}

.hero {
  padding: 2.5rem 0;
  min-height: 31.25rem;
  position: relative;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
}
@media (min-width: 1400px) {
  .hero {
    padding: 5.5rem 0;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 27.5rem;
  }
}
@media (min-width: 1400px) {
  .hero {
    min-height: 37.5rem;
  }
}
.has-hero .hero {
  margin-top: calc(4.5rem * -1);
}
@media (min-width: 768px) {
  .has-hero .hero {
    margin-top: calc(6rem * -1);
  }
}
.has-hero.home .hero {
  height: 700px;
  max-height: 100vh;
}
@media (min-width: 1400px) {
  .has-hero.home .hero {
    height: 100vh;
  }
}
.hero .overlay {
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  inset: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  max-width: 28.125rem;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .hero h1 {
    max-width: 40rem;
  }
}
.page .hero h1 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.8px;
  max-width: 25rem;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .page .hero h1 {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}
@media (min-width: 1400px) {
  .page .hero h1 {
    max-width: 40rem;
  }
}
.hero h1:last-child {
  margin-bottom: 0;
}
.hero h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  margin-bottom: 1.5rem;
  max-width: 33.75rem;
}
@media (min-width: 1400px) {
  .hero h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.page .hero h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}
@media (min-width: 1400px) {
  .page .hero h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.hero h2:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .intro.video video,
  .intro.video picture {
    margin-bottom: 1.5rem;
  }
}
.intro .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .intro .content {
    gap: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .intro .content {
    gap: 2rem;
  }
}
@media (min-width: 1600px) {
  .intro .content {
    padding-right: 3%;
  }
}
.intro .content > p {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .intro .content > p {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
@media (min-width: 768px) {
  .intro .content > p + p {
    margin-top: -1.5rem;
  }
}
@media (min-width: 1200px) {
  .intro .content > p + p {
    margin-top: -1rem;
  }
}
@media (min-width: 1400px) {
  .intro .content > p + p {
    margin-top: -0.5rem;
  }
}
.intro .content .logo-links-container {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .intro .content .logo-links-container {
    max-width: 56.25rem;
  }
}
.intro .content .logo-links-container a {
  display: block;
  background-color: #EFEF50;
  padding-bottom: calc(33.3333333333% - 0.5rem);
  border-radius: 100%;
  position: relative;
  width: calc(33.3333333333% - 0.5rem);
}
.intro .content .logo-links-container a:hover, .intro .content .logo-links-container a:active, .intro .content .logo-links-container a:focus {
  background-color: #D7D748;
}
.intro .content .logo-links-container a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 37.5rem;
  max-height: 37.5rem;
}

.intro.location .location-details {
  border-top: 1px solid #545454;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .intro.location .location-details {
    display: flex;
    gap: 1rem;
  }
}
.intro.location .location-details > div:first-child a {
  display: flex;
  margin-bottom: 1rem;
}
.intro.location .location-details > div:first-child span {
  display: block;
}
@media (min-width: 768px) {
  .intro.location .location-details > div:first-child {
    flex: 1;
  }
}
.intro.location .location-details > div.contact-details-mobile {
  display: flex;
  margin-top: 1rem;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .intro.location .location-details > div.contact-details-mobile {
    margin-top: 0;
    flex-direction: column;
    width: 17.5rem;
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .intro.location .location-details > div.contact-details-mobile {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .intro.location .location-details > div.contact-details-mobile > a {
    flex: 1;
  }
}
.intro.location .location-details > div.contact-details-desktop {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
@media (max-width: 1199.98px) {
  .intro.location .location-details > div.contact-details-desktop {
    display: none;
  }
}
.intro.location .location-details > div.contact-details-desktop .contact-link {
  text-transform: uppercase;
  margin-left: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.intro.location .location-details > div.contact-details-desktop .contact-link:before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
.intro.location .location-details > div.contact-details-desktop .contact-link.phone:before {
  background-image: url("/icons/phone-purple.svg");
}
.intro.location .location-details > div.contact-details-desktop .contact-link.email:before {
  background-image: url("/icons/envelope-purple.svg");
}

.stats {
  overflow: hidden;
  position: relative;
}
.stats .stats-bar {
  position: absolute;
  width: 100%;
  background-color: #2B2B2B;
  height: 1px;
}
@media (max-width: 767.98px) {
  .stats .stats-bar {
    display: none;
  }
}
.stats .stats-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  justify-content: space-between;
  z-index: 2;
}
.stats .stats-container > * {
  flex-basis: calc(50% - 0.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .stats .stats-container > * {
    flex-basis: calc(25% - 0.75rem);
  }
}
.stats .stats-container .circle {
  background-color: #8245FF;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 100%;
}
.stats .stats-container .circle > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  margin: 0;
  color: #FFFFFF;
}
@media (min-width: 1400px) {
  .stats .stats-container .circle > span {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}
.stats .stats-container p {
  text-align: center;
  max-width: 13.125rem;
}

@media (max-width: 767.98px) {
  .image-links .row > *:first-child {
    margin-bottom: 1rem;
  }
}
.image-links .image-link figure {
  position: relative;
  text-decoration: none;
  border-radius: 0;
  overflow: hidden;
  transition: border-radius 300ms linear, filter 300ms linear;
}
@media (max-width: 1199.98px) {
  .image-links .image-link figure {
    border-radius: 100%;
  }
}
.image-links .image-link figure picture {
  position: relative;
  filter: grayscale(100%);
  transition: filter 300ms linear;
}
@media (max-width: 1199.98px) {
  .image-links .image-link figure picture {
    filter: grayscale(0);
  }
}
.image-links .image-link figure figcaption {
  position: absolute;
  color: #FFFFFF;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  max-width: 10.625rem;
}
@media (min-width: 1400px) {
  .image-links .image-link figure figcaption {
    max-width: 13.75rem;
  }
}
.image-links .image-link figure figcaption h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .image-links .image-link figure figcaption h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.image-links .image-link figure .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #EFEF50;
  display: block;
  background-image: url("icons/button-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity 300ms linear;
}
@media (max-width: 1199.98px) {
  .image-links .image-link figure .circle {
    opacity: 1;
  }
}
.image-links .image-link:hover figure, .image-links .image-link:focus figure, .image-links .image-link:active figure {
  border-radius: 100%;
}
.image-links .image-link:hover figure picture, .image-links .image-link:focus figure picture, .image-links .image-link:active figure picture {
  filter: grayscale(0);
}
.image-links .image-link:hover figure .circle, .image-links .image-link:focus figure .circle, .image-links .image-link:active figure .circle {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .image-links.three .row > *:last-child {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .image-links.three .image-link figure figcaption {
    max-width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .image-links.three .image-link figure figcaption {
    max-width: 18.75rem;
  }
}

.testimonial-slider {
  background-color: #EFEF50;
  padding: 2.5rem 0;
}
@media (min-width: 1200px) {
  .testimonial-slider {
    padding: 3.75rem 0;
  }
}
.testimonial-slider blockquote {
  display: block;
  padding: 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .testimonial-slider blockquote {
    max-width: 66.6666666667%;
  }
}
.testimonial-slider blockquote:before {
  content: "";
  display: block;
  height: 32px;
  width: 38px;
  background-image: url("icons/quote.svg");
  margin-bottom: 1.5rem;
}
.testimonial-slider blockquote p {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  .testimonial-slider blockquote p {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.testimonial-slider blockquote cite {
  display: block;
  margin-top: 4rem;
}
.testimonial-slider .swiper-slide > span {
  position: absolute;
  right: 0;
}
.testimonial-slider .swiper-buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.625rem;
  z-index: 1;
  background-color: #EFEF50;
}
@media (max-width: 767.98px) {
  .testimonial-slider .swiper-buttons {
    display: none;
  }
}
.testimonial-slider .swiper-buttons .swiper-button-prev,
.testimonial-slider .swiper-buttons .swiper-button-next {
  height: 40px;
  width: 40px;
  background-image: url("icons/slider-arrow.svg");
}
.testimonial-slider .swiper-buttons .swiper-button-next {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .two-column.right .row > *:first-child {
    order: 2;
  }
}
@media (max-width: 1199.98px) {
  .two-column video,
  .two-column picture {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .two-column video,
  .two-column picture {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .two-column h2 {
    margin-bottom: 2rem;
  }
}

.post-cards {
  overflow: hidden;
  position: relative;
}
.post-cards:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3%;
  background-color: #F2F2F2;
  z-index: 2;
}
@media (min-width: 1600px) {
  .post-cards:before {
    width: 6%;
  }
}
.post-cards .swiper-container {
  margin-top: 1.5rem;
}
.post-cards .swiper {
  overflow: visible;
}
.post-cards .swiper .swiper-slide {
  width: 75%;
}
@media (min-width: 768px) {
  .post-cards .swiper .swiper-slide {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .post-cards .swiper .swiper-slide {
    width: calc(33.3333333333% - 0.6666666667rem);
  }
}
.post-cards .link-container {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .post-cards .link-container {
    margin-top: 0;
    text-align: right;
  }
}
.article .post-cards {
  background-color: #FFFFFF;
}
.article .post-cards:before {
  background-color: #FFFFFF;
}

.logos-grid .logos-container {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #545454;
  border-left: 1px solid #545454;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .logos-grid .logos-container {
    margin-top: 2rem;
  }
}
.logos-grid .logos-container > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  border-bottom: 1px solid #545454;
  border-right: 1px solid #545454;
}
@media (min-width: 768px) {
  .logos-grid .logos-container > * {
    width: 16.6666666667%;
  }
}

.job-cards .row {
  row-gap: 1rem;
}
.vacancy .job-cards {
  background-color: #E8E8E9;
}
.vacancy .job-cards .job-card {
  background-color: #F2F2F2;
}
.vacancy .job-cards .job-card:hover, .vacancy .job-cards .job-card:focus, .vacancy .job-cards .job-card:active {
  background-color: #FFFFFF;
}

.people-slider {
  overflow: hidden;
  position: relative;
}
.people-slider:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3%;
  background-color: #F2F2F2;
  z-index: 2;
}
@media (min-width: 1600px) {
  .people-slider:before {
    width: 6%;
  }
}
.people-slider h2 {
  max-width: 21.875rem;
}
@media (min-width: 768px) {
  .people-slider h2 {
    max-width: 33.75rem;
  }
}
@media (min-width: 1400px) {
  .people-slider h2 {
    max-width: 45rem;
  }
}
.people-slider .people-swiper {
  overflow: visible;
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .people-slider .people-swiper {
    margin-top: 2rem;
    padding-bottom: 2.5rem;
  }
}
.people-slider .people-swiper .swiper-slide {
  width: 75%;
}
@media (min-width: 768px) {
  .people-slider .people-swiper .swiper-slide {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .people-slider .people-swiper .swiper-slide {
    width: calc(25% - 0.75rem);
  }
}
@media (max-width: 1199.98px) {
  .people-slider .people-swiper .swiper-scrollbar {
    display: none;
  }
}
.people-slider .people-swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
  background-color: #545454;
  height: 1px;
  bottom: 0;
}
.people-slider .people-swiper .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  height: 5px;
  top: -2px;
  background-color: #8245FF;
}

.contact-form {
  padding: 2.5rem 0;
  background-color: #E8E8E9;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 5rem 0;
  }
}
@media (min-width: 1400px) {
  .contact-form {
    padding: 5.5rem 0;
  }
}
.contact-form form {
  margin-top: 2.5rem;
}
@media (min-width: 1200px) {
  .contact-form form {
    margin-top: 0;
  }
}

.archive-hero {
  padding-top: 2.5rem;
}
.archive-hero h1 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media (min-width: 1400px) {
  .archive-hero h1 {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}
.archive-hero h1:last-child {
  margin-bottom: 0;
}
.archive-hero h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
  max-width: 27.5rem;
}
@media (min-width: 1400px) {
  .archive-hero h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
@media (min-width: 1400px) {
  .archive-hero h2 {
    max-width: 36.25rem;
  }
}
.archive-hero h2:last-child {
  margin-bottom: 0;
}
.archive-hero .content.large {
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .archive-hero .content.large {
    margin-top: 2rem;
  }
}
.archive-hero .content.large p {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: -0.36px;
}
@media (min-width: 1400px) {
  .archive-hero .content.large p {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.archive-hero .content.large p:last-child {
  margin-bottom: 0;
}

.office-cards .row {
  row-gap: 2.5rem;
}
@media (min-width: 1200px) {
  .office-cards .row {
    row-gap: 5rem;
  }
}

.featured-article {
  margin-top: -1rem;
}
@media (max-width: 1399.98px) {
  .featured-article {
    margin-top: -2.5rem;
  }
}
@media (max-width: 767.98px) {
  .featured-article {
    margin-top: 0;
  }
}

.archive-grid .row {
  row-gap: 2.5rem;
}
@media (min-width: 1200px) {
  .archive-grid .row {
    row-gap: 5rem;
  }
}

.desktop-filters h2 {
  margin: 1rem 0 2.5rem;
}
.desktop-filters .filters-wrapper {
  position: relative;
}
.desktop-filters .sort-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  right: 0;
  bottom: -2.5rem;
}
.desktop-filters .sort-wrapper > span {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
}
@media (min-width: 1400px) {
  .desktop-filters .sort-wrapper > span {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.desktop-filters .switcher {
  position: relative;
}
.desktop-filters .switcher .options {
  position: absolute;
  top: 100%;
  margin-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 150px;
  padding: 0.1875rem;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  display: none;
  z-index: 2;
}
.desktop-filters .switcher .options:before {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  border-left: solid 6px transparent;
  border-bottom: solid 6px #FFFFFF;
  border-right: solid 6px transparent;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}
.desktop-filters .switcher .options .option {
  display: block;
  border-radius: 0.5rem;
  text-align: center;
  white-space: nowrap;
  padding: 0.3125rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  text-decoration: none;
}
@media (min-width: 1400px) {
  .desktop-filters .switcher .options .option {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.desktop-filters .switcher .options .option:hover, .desktop-filters .switcher .options .option:focus, .desktop-filters .switcher .options .option:active {
  background-color: #E8E8E9;
}
.desktop-filters .switcher .trigger {
  display: flex;
  gap: 0.3125rem;
  align-items: center;
  border: 1px solid #A9AAAA;
  background-color: #E8E8E9;
  border-radius: 0.3125rem;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #545454;
  font-size: 12px;
  cursor: pointer;
  height: 1.75rem;
}
@media (min-width: 1400px) {
  .desktop-filters .switcher .trigger {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.desktop-filters .switcher .trigger:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-left: solid 4px transparent;
  border-top: solid 4px #545454;
  border-right: solid 4px transparent;
}
.desktop-filters .switcher .trigger:hover, .desktop-filters .switcher .trigger:focus, .desktop-filters .switcher .trigger:active {
  background-color: #A9AAAA;
}
.desktop-filters .switcher .trigger:focus + .options, .desktop-filters .switcher .trigger:active + .options {
  display: block;
}

.filter-tags {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .filter-tags {
    margin-top: -5rem;
  }
}
@media (min-width: 1400px) {
  .filter-tags {
    margin-top: -5.5rem;
  }
}
.filter-tags .filter-tags-container {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.filter-tags .filter-tags-container > * {
  margin-top: 1rem;
  color: #A9AAAA;
  border-color: #A9AAAA;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-tags .filter-tags-container > * .remove {
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("/icons/remove.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

section.article {
  padding: 5.5rem 0 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  section.article {
    padding: 5.5rem 0 5rem;
  }
}
@media (min-width: 1400px) {
  section.article {
    padding: 5.5rem 0;
  }
}
section.article .row {
  row-gap: 3rem;
}
section.article .back-link {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
}
@media (min-width: 1400px) {
  section.article .back-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
body.vacancy section.article .back-link, body.article section.article .back-link {
  position: absolute;
  top: 1rem;
}
section.article .back-link:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-right: 6px solid #545454;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
section.article header {
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  section.article header {
    margin-bottom: 2rem;
    max-width: 56.25rem;
  }
}
section.article header h1 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media (min-width: 1400px) {
  section.article header h1 {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}
section.article header .strapline {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  section.article header .strapline {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
@media (min-width: 1400px) {
  section.article header .strapline {
    margin-top: 1.5rem;
  }
}
section.article header cite,
section.article header .location {
  display: block;
  padding: 0.5rem 0;
  border-top: 1px solid #545454;
  border-bottom: 1px solid #545454;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #A9AAAA;
}
@media (min-width: 1400px) {
  section.article header cite,
  section.article header .location {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1400px) {
  section.article header cite,
  section.article header .location {
    margin-top: 1.5rem;
  }
}
section.article header .location {
  display: flex;
  gap: 0.625rem;
  color: #2B2B2B;
  margin-top: 1rem;
}
section.article header .location img {
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  section.article header .location {
    margin-top: 1.5rem;
  }
}
section.article header .tags-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 1400px) {
  section.article header .content.large {
    margin-top: 1.5rem;
  }
}
section.article header .content.large p {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article header .content.large p {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
section.article header .content.large p:last-child {
  margin-bottom: 0;
}
section.article header + figure {
  margin-bottom: 1.5rem;
}
section.article header + figure figcaption {
  display: flex;
  justify-content: flex-start;
  color: #FFFFFF;
}
section.article header + figure figcaption span {
  background-color: #2B2B2B;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.3125rem;
  line-height: 1.4;
}
@media (min-width: 1400px) {
  section.article header + figure figcaption span {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1400px) {
  section.article article {
    max-width: 56.25rem;
  }
}
@media (min-width: 1400px) {
  section.article article h1,
  section.article article h2,
  section.article article h3,
  section.article article h4,
  section.article article h5,
  section.article article h6 {
    margin-bottom: 1.5rem;
  }
}
section.article article h1 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media (min-width: 1400px) {
  section.article article h1 {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}
section.article article h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media (min-width: 1400px) {
  section.article article h2 {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}
section.article article h3 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article article h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
section.article article h4 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article article h4 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
section.article article h5 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article article h5 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
section.article article h6 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article article h6 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
@media (min-width: 1400px) {
  section.article article p,
  section.article article blockquote,
  section.article article ul,
  section.article article ol {
    margin-bottom: 1.5rem;
  }
}
section.article article p:last-child,
section.article article blockquote:last-child,
section.article article ul:last-child,
section.article article ol:last-child {
  margin-bottom: 0;
}
section.article article ul li,
section.article article ol li {
  margin-bottom: 0.75rem;
}
section.article article ul li:last-child,
section.article article ol li:last-child {
  margin-bottom: 0;
}
section.article article p strong {
  font-weight: bolder;
}
@media (min-width: 1200px) {
  .article section.article aside {
    position: sticky;
    top: 5.5rem;
  }
}
section.article aside > h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  section.article aside > h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
section.article aside > h3 {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  section.article aside > h3 {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
section.article aside figure {
  margin-bottom: 2.5rem;
}
section.article aside .share {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.article aside .share > a {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: center center;
}
section.article aside .share > a.twitter {
  background-image: url("/icons/twitter-purple.svg");
}
section.article aside .share > a.linkedin {
  background-image: url("/icons/linkedin-purple.svg");
}
body.article section.article .row > *:nth-of-type(2), body.vacancy section.article .row > *:nth-of-type(2) {
  padding-left: 1rem;
  border-left: 1px solid #545454;
}

.expert-details {
  padding: 2.5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .expert-details {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .expert-details {
    padding-top: 1rem;
  }
}
.expert-details .row:nth-of-type(1) {
  row-gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .expert-details .row:nth-of-type(1) > *:first-child {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .expert-details .row:nth-of-type(1) > *:last-child {
    position: absolute;
    right: calc(3% - 0.5rem);
    width: 30%;
  }
}
@media (min-width: 1600px) {
  .expert-details .row:nth-of-type(1) > *:last-child {
    right: calc(6% - 0.5rem);
  }
}
.expert-details .back-link {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #2B2B2B;
  display: none;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 1400px) {
  .expert-details .back-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .expert-details .back-link {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .expert-details .back-link {
    margin-bottom: 3rem;
  }
}
.expert-details .back-link:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-right: 6px solid #545454;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.expert-details aside .back-link {
  display: flex;
}
@media (min-width: 768px) {
  .expert-details aside .back-link {
    display: none;
  }
}
.expert-details header {
  margin-bottom: 2rem;
}
.expert-details header h1 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .expert-details header h1 {
    font-size: 3rem;
    letter-spacing: -0.96px;
  }
}
@media (min-width: 1400px) {
  .expert-details header h1 {
    font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.8px;
  }
}
@media (min-width: 1400px) and (min-width: 1400px) {
  .expert-details header h1 {
    font-size: 4rem;
    letter-spacing: -1.28px;
  }
}
.expert-details header h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
  margin: 0.5rem 0 0;
}
@media (min-width: 1400px) {
  .expert-details header h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.expert-details header .meta-wrapper {
  border-top: 1px solid #545454;
  border-bottom: 1px solid #545454;
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .expert-details header .meta-wrapper {
    display: flex;
    align-items: center;
  }
}
.expert-details header .meta-wrapper > * {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
@media (min-width: 1400px) {
  .expert-details header .meta-wrapper > * {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .expert-details header .meta-wrapper > * {
    padding: 0.75rem 0 0.75rem 1.5rem;
  }
}
@media (min-width: 1200px) {
  .expert-details header .meta-wrapper > * {
    flex: 1;
  }
}
.expert-details header .meta-wrapper > *:first-child {
  border-bottom: 1px solid #545454;
}
@media (min-width: 1200px) {
  .expert-details header .meta-wrapper > *:first-child {
    border-bottom: none;
  }
}
.expert-details header .meta-wrapper > * img {
  position: absolute;
  left: 0;
  height: 16px;
  width: auto;
}
.expert-details header .mobile-contact-details {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .expert-details header .mobile-contact-details {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .expert-details header .mobile-contact-details {
    display: none;
  }
}
.expert-details header .mobile-contact-details > a {
  flex: 1;
  display: flex;
  gap: 0.3125rem;
  align-items: center;
  justify-content: center;
  background-color: #8245FF;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem;
}
@media (min-width: 1400px) {
  .expert-details header .mobile-contact-details > a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.expert-details header .mobile-contact-details > a:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: auto 14px;
  background-position: center center;
}
.expert-details header .mobile-contact-details > a.call:before {
  background-image: url("/icons/phone-white.svg");
}
.expert-details header .mobile-contact-details > a.email:before {
  background-image: url("/icons/envelope-white.svg");
}
.expert-details header .mobile-contact-details > a.connect:before {
  background-image: url("/icons/linkedin-white.svg");
}
.expert-details header .mobile-contact-details > a:hover, .expert-details header .mobile-contact-details > a:focus, .expert-details header .mobile-contact-details > a:active {
  text-decoration: none;
  background-color: #753EE6;
}
.expert-details header .desktop-contact-details {
  display: none;
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .expert-details header .desktop-contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.expert-details header .desktop-contact-details > a {
  text-transform: uppercase;
  display: flex;
  gap: 1rem;
  align-items: center;
  letter-spacing: 2.8px;
}
.expert-details header .desktop-contact-details > a:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
}
.expert-details header .desktop-contact-details > a.call:before {
  background-image: url("/icons/phone-purple.svg");
}
.expert-details header .desktop-contact-details > a.email:before {
  background-image: url("/icons/envelope-purple.svg");
}
.expert-details header .desktop-contact-details > a.connect:before {
  background-image: url("/icons/linkedin-purple.svg");
}
.expert-details .bio {
  border-top: 1px solid #545454;
  padding: 1rem 0 1.5rem;
}
@media (min-width: 1200px) {
  .expert-details .bio {
    padding: 2rem 0;
  }
}
.expert-details .bio h3 {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .expert-details .bio h3 {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
@media (min-width: 768px) {
  .expert-details .bio .content {
    max-width: 75%;
  }
}
@media (min-width: 1200px) {
  .expert-details .bio .content {
    max-width: 100%;
  }
}
.expert-details blockquote {
  width: 106%;
  position: relative;
  left: -3%;
  right: -3%;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .expert-details blockquote {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 75%;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .expert-details blockquote {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1399.98px) {
  .expert-details blockquote {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.expert-details .columns-wrapper {
  border-top: 1px solid #545454;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .expert-details .columns-wrapper {
    display: flex;
    gap: 1rem;
    border-top: none;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .expert-details .columns-wrapper > * {
    border-bottom: none;
    border-top: 1px solid #545454;
    padding-top: 1rem;
    flex: 1;
  }
}
.expert-details .columns-wrapper > *:first-child {
  border-bottom: 1px solid #545454;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .expert-details .columns-wrapper > *:first-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .expert-details .columns-wrapper > * {
    padding: 2rem 0;
  }
}
.expert-details .columns-wrapper > * ul {
  margin-bottom: 0;
}
.expert-details .columns-wrapper > * ul > li {
  margin-bottom: 0.5rem;
}
.expert-details .columns-wrapper h3 {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .expert-details .columns-wrapper h3 {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
.expert-details .columns-wrapper .case-study {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
  color: #FFFFFF;
  height: 50vw;
  max-height: 17.5rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .expert-details .columns-wrapper .case-study {
    max-height: 12.5rem;
  }
}
@media (min-width: 1200px) {
  .expert-details .columns-wrapper .case-study {
    margin-bottom: 0;
  }
}
.expert-details .columns-wrapper .case-study h2 {
  font-family: Larken, Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.48px;
}
@media (min-width: 1400px) {
  .expert-details .columns-wrapper .case-study h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.64px;
  }
}
.expert-details .columns-wrapper .case-study > .circle {
  display: flex;
  height: 35px;
  width: 35px;
  background-color: #EFEF50;
  border-radius: 100%;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms linear;
}
.expert-details .columns-wrapper .case-study > .circle > span {
  width: 14px;
  height: 16px;
  background-image: url("icons/button-arrow.svg");
}
.expert-details .columns-wrapper .case-study:hover, .expert-details .columns-wrapper .case-study:focus, .expert-details .columns-wrapper .case-study:active {
  text-decoration: none;
}
.expert-details .columns-wrapper .case-study:hover > .circle, .expert-details .columns-wrapper .case-study:focus > .circle, .expert-details .columns-wrapper .case-study:active > .circle {
  opacity: 1;
}
.expert-details .columns-wrapper .expertise ul > li {
  margin-bottom: 0;
}
.expert-details .related-expert,
.expert-details .related-content {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #545454;
}
@media (min-width: 1200px) {
  .expert-details .related-expert,
  .expert-details .related-content {
    padding: 2rem 0;
    margin-top: 0;
  }
}
.expert-details .related-expert > h3,
.expert-details .related-content > h3 {
  font-family: "Area Trial", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .expert-details .related-expert > h3,
  .expert-details .related-content > h3 {
    font-size: 0.875rem;
    letter-spacing: 2.8px;
  }
}
.expert-details .related-expert .swiper,
.expert-details .related-content .swiper {
  overflow: visible;
}
.expert-details .related-expert .swiper .swiper-slide,
.expert-details .related-content .swiper .swiper-slide {
  width: 75%;
}
@media (min-width: 768px) {
  .expert-details .related-expert .swiper .swiper-slide,
  .expert-details .related-content .swiper .swiper-slide {
    width: calc(33.3333333333% - 0.6666666667rem);
  }
}
@media (min-width: 768px) {
  .expert-details .related-expert .expert-card {
    display: block;
    width: calc(50% - 0.5rem);
  }
}
.expert-details .related-content {
  position: relative;
}
@media (min-width: 1200px) {
  .expert-details .related-content {
    padding-bottom: 0;
  }
}
.expert-details .related-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3%;
  width: 3%;
  background-color: #F2F2F2;
  z-index: 2;
}
@media (min-width: 1600px) {
  .expert-details .related-content:before {
    left: -6%;
    width: 6%;
  }
}
@media (min-width: 768px) {
  .expert-details aside {
    margin-bottom: 2.5rem;
  }
}

a.animate > span {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
a.animate > span > span {
  position: relative;
  transition: 300ms transform ease-in-out;
}
a.animate > span > span > span:first-child {
  position: absolute;
  top: -100%;
}
a.animate:hover > span > span, a.animate:focus > span > span, a.animate:active > span > span {
  transform: translateY(100%);
}/*# sourceMappingURL=style.css.map */