img:not([width]) {
  width: 100%;
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex-desktop {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex-desktop {
    flex-direction: column;
  }
}

.wrap {
  flex-wrap: wrap;
}

.just-start {
  justify-self: flex-start;
}

.just-middle {
  justify-self: center;
}

@media screen and (min-width: 768px) {
  .just-end {
    justify-self: flex-end;
  }
}

.just-initial {
  justify-self: initial;
}

.align-top {
  align-self: flex-start;
}

.align-middle {
  align-self: center;
}

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

.align--initial {
  align-self: initial;
}

.bg-center {
  background-position: center;
}

.bg-bottom {
  background-position: bottom;
}

.desktop {
  display: none;
}
@media screen and (min-width: 450px) {
  .desktop {
    display: block;
  }
  .desktop.flex {
    display: flex;
  }
}

.mobile {
  display: block;
}
.mobile.flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
}

.footnote.sup {
  position: relative;
}
.footnote.sup sup:first-of-type {
  position: absolute;
  width: 10px;
  text-align: right;
  display: block;
  left: -10px;
  top: 5px;
}
.footnote.asterisk span:first-of-type {
  left: -4px;
}
.footnote + .footnote {
  margin-top: 0;
}

.asterisk {
  position: relative;
}
.asterisk span:first-of-type {
  position: absolute;
  left: -4px;
}
@media screen and (min-width: 768px) {
  .asterisk span:first-of-type {
    left: -7px;
  }
}

.small-caps {
  text-transform: uppercase;
  font-size: 80%;
}

a.external-link,
.external-link a {
  position: relative;
  margin-right: 25px;
}
a.external-link:after,
.external-link a:after {
  background-image: url(../icon/external.svg);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  top: 2px;
  left: auto;
  right: -25px;
  bottom: auto;
  filter: var(--svg-white);
}

.arrow-link {
  position: relative;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  font-variation-settings: "wdth" 150;
}
.arrow-link:after {
  background-image: url(../icon/arrow.svg);
  background-repeat: no-repeat;
  filter: var(--svg-purple);
}
.arrow-link.just-start {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .arrow-link.just-start {
    margin-top: var(--space-xs);
    margin-bottom: var(--space-md);
  }
}
.arrow-link.just-start:after {
  transform: rotate(180deg);
  position: absolute;
  display: block;
  content: "";
  width: 19px;
  height: 16px;
  top: 0;
  left: -30px;
  right: auto;
  bottom: auto;
}
.arrow-link.just-end {
  margin-right: 30px;
  text-align: right;
}
.arrow-link.just-end:after {
  position: absolute;
  display: block;
  content: "";
  width: 19px;
  height: 16px;
  top: 0;
  left: auto;
  right: -30px;
  bottom: auto;
}
@media (hover: hover) {
  .arrow-link:hover {
    text-decoration: underline;
  }
}

.radius-full {
  border-radius: var(--radius-full);
}

.radius {
  border-radius: var(--radius);
}

.gap-xl {
  gap: var(--gap-xl);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-xs {
  gap: var(--gap-xs);
}

.website-width {
  max-width: var(--website-width);
}

.width-xl {
  max-width: var(--width-xl);
}

.width-lg {
  max-width: var(--width-lg);
}

.width-md {
  max-width: var(--width-md);
}

.width-sm {
  max-width: var(--width-sm);
}

.width-xs {
  max-width: var(--width-xs);
}

.website-width,
.width-xl,
.width-lg,
.width-md,
.width-sm,
.width-xs {
  width: 100%;
}
.website-width.center,
.width-xl.center,
.width-lg.center,
.width-md.center,
.width-sm.center,
.width-xs.center {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-blur {
  backdrop-filter: blur(30px);
}
.bg-blur.bg-purple {
  background-color: rgba(38, 38, 38, 0.3);
}
.bg-blur.bg-grey {
  background-color: rgba(53, 31, 101, 0.05);
}
.bg-blur.bg-lightGrey {
  background: rgba(255, 255, 255, 0.175);
}
.bg-blur.bg-white {
  background: rgba(255, 255, 255, 0.4);
}

.bg-overlay {
  background-blend-mode: normal, multiply;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.has-video {
  background: transparent;
}
.has-video.bg-purple .bg-overlay {
  background: linear-gradient(257deg, rgba(53, 31, 101, 0) -3.14%, rgba(53, 31, 101, 0.7) 40.6%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.has-video.bg-grey .bg-overlay {
  background-color: rgba(38, 38, 38, 0.5);
}
.has-video.bg-lightGrey .bg-overlay {
  background: rgba(53, 31, 101, 0.3);
}
.has-video.bg-white .bg-overlay {
  background: linear-gradient(267deg, rgba(0, 0, 0, 0) 25.1%, rgba(0, 0, 0, 0.2) 63.43%);
}

@media screen and (max-width: 768px) {
  .background-orb-container {
    display: none;
  }
}
.background-orb-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  pointer-events: none;
}
.background-orb-container img {
  position: absolute;
  width: 100vw;
  z-index: -1;
}
.background-orb-container[class*=-left] .orb1 {
  left: 0%;
}
.background-orb-container[class*=-left] .orb2 {
  left: 30%;
}
.background-orb-container[class*=-right] .orb1 {
  left: 100%;
}
.background-orb-container[class*=-right] .orb2 {
  left: 70%;
}
.background-orb-container[class*=middle-] .background-orb {
  top: 30%;
}
.background-orb-container[class*=bottom-] .background-orb {
  top: 80%;
}
.background-orb-container[class*=bottom-] img {
  bottom: 0;
}

.background-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.orb1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(53, 31, 101, 0.6509803922), #E5E2E9);
}

.orb2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at center, rgba(255, 158, 27, 0.5411764706), #FDF3E7);
}

@font-face {
  font-family: "Kern";
  src: url("/wp-content/themes/aw-theme/library/fonts/kern.ttf") format("truetype");
}
body {
  font-family: "Kern", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.code {
  font-family: monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  color: var(--copy);
}

h1,
.heading1 {
  font-size: var(--font-h1);
  font-variation-settings: "wdth" 150;
  font-weight: 700;
  line-height: 115%;
}

h2,
.heading2 {
  font-size: var(--font-h2);
  font-variation-settings: "wdth" 150;
  font-weight: 400;
  line-height: 115%;
}

h3,
.heading3 {
  font-size: var(--font-h3);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  line-height: 115%;
}

h4,
.heading4 {
  font-size: var(--font-h4);
  font-variation-settings: "wdth" 150;
  font-weight: 300;
  line-height: 115%;
}

h5,
.heading5 {
  font-size: var(--font-h5);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  line-height: 115%;
}

h6,
.heading6,
th {
  font-size: var(--font-h6);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  line-height: 115%;
}

p,
li,
td,
.heading-copy {
  font-size: var(--font-copy);
  font-variation-settings: "wdth" 100;
  font-weight: 400;
  line-height: 125%;
}

.footnote {
  font-size: var(--font-footnote);
}

strong,
b {
  font-size: inherit;
  font-weight: 700;
}
strong strong,
strong b,
b strong,
b b {
  font-weight: 900;
}

em,
i {
  font-style: oblique;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  a:not(.btn):not(.arrow-link):hover {
    text-decoration: none;
  }
}

sup {
  font-size: 0.55em;
  line-height: 0;
}
.btn sup {
  margin-top: -8px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  color: var(--copy);
}

ul {
  padding: 0 0 0 30px;
}
ul ul {
  list-style-type: disc;
}

ol {
  display: inline;
  list-style-position: inside;
}
ol li {
  display: inline list-item;
}
ol li::marker {
  font-weight: 600;
}

table {
  width: 1050px;
}
.cta:has(table) {
  overflow-x: auto;
}

th {
  color: var(--purple);
  text-align: left;
}

td {
  width: 425px;
}
td:first-of-type {
  width: 200px;
}

th, td {
  padding-bottom: var(--space-xs);
}

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

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

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

#onetrust-consent-sdk #onetrust-pc-sdk h3,
#onetrust-consent-sdk #onetrust-pc-sdk h4,
#onetrust-consent-sdk #onetrust-pc-sdk h5,
#onetrust-consent-sdk #onetrust-pc-sdk h6,
#onetrust-consent-sdk #onetrust-pc-sdk p,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title p[aria-level="3"],
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name,
#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span,
#onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler,
#onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal {
  font-size: 14px !important;
  line-height: 18.3667px !important;
}

#onetrust-consent-sdk #onetrust-banner-sdk *:focus,
#onetrust-consent-sdk #onetrust-banner-sdk:focus {
  outline-width: 0 !important;
}

main {
  overflow: hidden;
}

html,
body {
  position: relative;
  min-height: 100%;
  overflow: inherit;
  margin: 0 auto;
}

body {
  background-color: var(--white);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.fixed {
  overflow: hidden;
}

main {
  overflow: hidden;
  margin-bottom: calc(-1 * var(--footer-height));
}

section {
  background-size: cover;
  position: relative;
}
section:last-of-type {
  padding-bottom: var(--footer-height);
}
section:has(.fade-in-out) * {
  color: inherit;
}

.container,
.grid {
  margin: 0 auto;
  width: 95vw;
  max-width: var(--website-width);
}
@media screen and (max-width: 992px) {
  .container,
  .grid {
    width: calc(100% - 40px);
  }
  .container .container,
  .grid .container {
    width: 100%;
  }
}

.full-width-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.has-video {
  position: relative;
}
.has-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

input,
textarea {
  background: transparent;
  margin-top: var(--space-xs);
  box-sizing: border-box;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  font-size: var(--font-copy);
}

input {
  border: 0;
  height: 40px;
  border-bottom: 1px solid var(--copy);
}

textarea {
  font-family: "Kern", system-ui, sans-serif;
  resize: none;
  border: 1px solid var(--copy);
  border-radius: var(--radius);
  padding: 12px;
  height: 150px;
}

option {
  color: var(--copy);
}

label {
  font-size: var(--font-copy);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  color: var(--copy);
}

#gform_fields_1,
#gform_fields_2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
#gform_fields_1 > div,
#gform_fields_2 > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #gform_fields_1 > div:nth-of-type(1), #gform_fields_1 > div:nth-of-type(2),
  #gform_fields_2 > div:nth-of-type(1),
  #gform_fields_2 > div:nth-of-type(2) {
    flex: 1 0 0;
  }
}

#field_1_1,
#field_1_3,
#field_2_1,
#field_2_3 {
  width: 50%;
}

.required {
  color: var(--copy);
}

.validation_message {
  color: var(--alert);
  font-weight: 600;
  padding-top: calc(var(--space-xs) / 2);
}

.gform_submission_error {
  display: none;
}

.gfield--type-captcha {
  display: none;
}

@media screen and (min-width: 1050px) {
  section[style*=background-image] .align-top:has(form) {
    margin-right: calc(-50vw + 80%);
  }
  section[style*=background-image] .align-top:has(form) form {
    width: calc(100% + -50vw + 80%);
  }
}
footer {
  width: 100%;
  max-width: var(--width-xl);
  background: var(--purple-gradient);
  backdrop-filter: blur(10px);
  border-radius: var(--radius) var(--radius) 0 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  z-index: 9;
  height: var(--footer-height);
}
footer p,
footer li,
footer a {
  color: var(--white);
  transition: 0s;
}
footer .container {
  padding: var(--space-lg) 0 0;
  box-sizing: border-box;
}
@media (hover: hover) {
  footer a:hover {
    font-weight: 700;
  }
}

@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column-reverse;
    gap: var(--space-lg);
  }
}
.footer-menu {
  width: 100%;
  max-width: var(--width-md);
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0 auto var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-menu li {
  padding: 0;
  margin: 0;
}
.footer-menu a {
  text-decoration: none;
  font-variation-settings: "wght" 700, "wdth" 150;
}
@media (hover: hover) {
  .footer-menu a:hover {
    font-variation-settings: "wght" 900, "wdth" 150;
    text-decoration: underline;
  }
}

.footer-logo {
  width: 99px;
  margin-left: auto;
}
.footer-logo img {
  filter: var(--svg-white);
}

.syneos-menu {
  width: 100%;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0 var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
}
.syneos-menu li {
  padding: 0;
  margin: 0;
}

.footer-tagline {
  font-size: clamp(1rem, 11vw, 9rem);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  text-align: center;
}
.footer-tagline .char {
  display: inline-block;
}

#hamburger {
  display: none;
}

@media screen and (max-width: 800px) {
  #hamburger {
    display: block;
    width: 38px;
    height: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    z-index: 999;
    background-color: transparent;
    border: 0;
  }
  #hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--copy);
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #hamburger span:nth-child(1) {
    top: 0px;
  }
  #hamburger span:nth-child(2), #hamburger span:nth-child(3) {
    top: 13px;
  }
  #hamburger span:nth-child(4) {
    top: 26px;
  }
  #hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  #hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #hamburger ._block, ._pill #hamburger {
    right: 35px;
  }
}
header {
  width: 100%;
  z-index: 999;
  position: relative;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(30px);
}
header > .container {
  min-height: var(--header-logo);
  box-sizing: border-box;
}
header:not(._full-width) {
  box-sizing: border-box;
  max-width: var(--width-xl);
}
header._sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header:not(._sticky) + main {
  margin-top: calc(var(--header-logo) * -1);
}
header._block .main-menu, header._pill .main-menu {
  max-width: var(--website-width);
  margin-left: auto;
  margin-right: auto;
}
header._pill {
  border-radius: 0 0 var(--radius) var(--radius);
}

.header-logo img {
  max-width: 68px;
  max-height: var(--header-logo);
}

#navigation {
  position: relative;
  display: flex;
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  #navigation {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s linear;
    position: absolute;
    background-color: var(--white);
    margin-top: 0;
    top: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
  }
  #navigation.open {
    max-height: 700px;
    border-bottom: 1px solid var(--copy);
  }
}

.main-menu {
  width: 100%;
  justify-content: flex-start;
  gap: 32px;
}
.main-menu.space-between {
  justify-content: space-between;
}
.main-menu.right-align {
  justify-content: flex-end;
}
.main-menu.center-align {
  justify-content: center;
}
.main-menu.class {
  justify-content: flex-end;
}

.header-menu {
  display: flex;
  padding: 0;
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 800px;
  gap: var(--space-sm);
}
@media screen and (max-width: 800px) {
  .header-menu {
    height: 100%;
    gap: 0;
    flex-direction: column;
  }
}
@media (min-width: 450px) and (max-width: 800px) {
  .header-menu {
    border-left: 1px solid var(--white);
    border-top: 1px solid var(--white);
  }
}
@media screen and (min-width: 800px) {
  .header-menu {
    justify-content: flex-end;
  }
}
.header-menu > li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0;
}
.header-menu > li:not(.header-btn) {
  padding-top: 10px;
}
@media screen and (max-width: 800px) {
  .header-menu > li {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: block;
  }
  .header-menu > li.header-btn {
    margin: 10px auto 20px;
  }
}
@media (hover: hover) {
  .header-menu > li:not(.header-btn):hover > a {
    text-decoration: underline;
    font-weight: 800;
  }
  .header-menu > li:not(.header-btn):hover .sub-menu {
    display: block;
  }
}
.header-menu a {
  text-decoration: none;
  cursor: pointer;
  color: var(--copy);
  font-size: var(--font-small);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .header-menu a {
    font-size: var(--font-copy);
    height: 40px;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
  }
}

@media screen and (min-width: 800px) {
  .header-menu .current-menu-item > a,
  .header-menu .current-page-parent > a {
    font-weight: 800;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal h4,
.modal p {
  text-align: center;
  color: var(--purple);
  margin: 0 20px;
}
.modal h4 + p,
.modal p + p {
  margin-top: 20px;
}
.modal a {
  text-decoration: none;
}
.modal button,
.modal #gform_submit_button_5,
.modal #gform_submit_button_6 {
  max-width: 370px;
  width: 100%;
  border-color: var(--purple);
  color: var(--purple);
  background-color: var(--white);
}
.modal button:hover,
.modal #gform_submit_button_5:hover,
.modal #gform_submit_button_6:hover {
  background-color: var(--purple);
  color: var(--white);
}
.modal .logo {
  background-image: url("/content/uploads/2020/08/onureg-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 0 auto 25px;
  width: 300px;
  height: 75px;
}
@media screen and (max-width: 768px) {
  .modal .logo {
    width: 200px;
    height: 55px;
  }
}

.modal-close {
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url("/content/uploads/2020/08/modal-close.svg");
  background-repeat: no-repeat;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: 10% auto;
  padding: 50px;
  border-radius: 10px;
  border: none;
  width: 80%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 90vw;
    padding: 30px 0;
  }
}

.button-row {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.button-row a {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .button-row a:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .button-row a:not(:first-of-type) {
    margin-left: 55px;
  }
}
@media screen and (max-width: 768px) {
  .button-row {
    flex-direction: column;
    align-items: center;
  }
}

#modal-intro .button-content {
  font-size: 13px;
  letter-spacing: initial;
}
@media screen and (min-width: 768px) {
  #modal-intro .button-content {
    font-size: 15px;
  }
}
#modal-intro .button-row {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  #modal-intro .button-row a {
    width: 350px;
  }
}

#modal-email p {
  font-size: 16px;
}
#modal-email .gform_wrapper {
  margin-top: 0;
}

.modal-email-form {
  width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modal-email-form .gform_confirmation_wrapper {
    margin-top: 30px;
  }
}
.modal-email-form .gform_confirmation_wrapper p {
  width: inherit;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-email-form p {
    width: 450px;
    margin-left: -69px;
  }
}

#input_5_1,
#input_6_1 {
  border: 1px solid #58585B !important;
  border-radius: 10px;
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  #input_5_1,
  #input_6_1 {
    width: 415px !important;
    margin-left: -50px;
    height: 40px;
    margin-top: 0;
  }
}

#validation_message_5_1,
#validation_message_6_1 {
  position: relative;
  top: -25px;
}
@media screen and (min-width: 768px) {
  #validation_message_5_1,
  #validation_message_6_1 {
    left: -50px;
  }
}

#modal-calendar-form .modal-form {
  padding: 0 25px;
}
#modal-calendar-form .modal-form img {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #modal-calendar-form .modal-form img {
    max-width: 300px;
  }
}
#modal-calendar-form .modal-form .gform_wrapper .gform_body .gfield_html p {
  max-width: 600px;
  margin: 0 auto 10px;
  color: var(--purple);
  font-size: 16px;
}
#modal-calendar-form .modal-form .gform_wrapper .gform_body .gfield_html p strong {
  font-size: 16px;
  color: var(--purple);
  display: inline;
}
#modal-calendar-form .modal-form .gform_wrapper .gform_body .gfield {
  text-align: center;
}
#modal-calendar-form .modal-form .gform_wrapper .gform_body .gfield input[type=text] {
  border: 1px solid #58585B;
  font-size: 14px;
  padding: 10px;
}
#modal-calendar-form .modal-form .gform_wrapper .gform_footer {
  text-align: center;
}
#modal-calendar-form .modal-form .gform_wrapper .gform_footer .gform_button {
  min-width: 300px;
  outline: none;
  color: var(--purple);
  padding: 7px 50px 5px;
  background-color: #fff;
  border: 2px solid var(--purple);
}
@media (max-width: 420px) {
  #modal-calendar-form .modal-form .gform_wrapper .gform_footer .gform_button {
    min-width: 0px;
    width: 100%;
  }
}
#modal-calendar-form .modal-form .gform_confirmation_wrapper .gform_confirmation_message {
  text-align: center;
  color: var(--purple);
  font-weight: bold;
}
@media (max-width: 991px) {
  #modal-calendar-form .modal-form .gform_confirmation_wrapper .gform_confirmation_message {
    margin-top: 30px;
  }
}

.references {
  margin: 35px 0 0;
}
.references .ref-item {
  display: inline;
}
.references .title {
  font-weight: bold;
}

.search-bar {
  width: calc(100% - 40px);
  max-width: 350px;
  border: 2px solid var(--copy);
  border-radius: var(--radius);
  margin: 0 0 var(--space-xs) 10px;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .search-bar {
    margin: 0 0 var(--space-xs) auto;
  }
}
.search-bar input {
  border: 0;
  outline: none;
}
.search-bar-container {
  margin: 0 auto;
  width: 95vw;
  max-width: var(--website-width);
}
.search-bar-container.desktop {
  display: none;
}
.search-bar-container.desktop.open {
  display: block;
}
.search-bar-icon {
  width: 25px;
  height: 25px;
  margin-top: 12px;
  margin-left: var(--space-sm);
  cursor: pointer;
}

.swp-result-item {
  border-bottom: 1px solid var(--copy);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.entry-title {
  font-size: var(--font-h6);
  font-weight: 500;
  color: var(--purple);
}
.entry-title a {
  text-decoration: none;
}
@media (hover: hover) {
  .entry-title a:hover {
    text-decoration: underline;
  }
}

.swp-result-item--desc {
  padding: var(--space-xs) 0;
}

header form.searchwp-form input.swp-input--search {
  background-image: url("/wp-content/themes/aw-theme/library/icon/search.svg");
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

@media screen and (min-width: 800px) {
  .menu-item-has-children a {
    align-self: flex-end;
  }
}

.header-menu .sub-menu {
  list-style: none;
}
@media screen and (min-width: 800px) {
  .header-menu .sub-menu {
    display: none;
    padding: 0 0 15px;
    position: relative;
    left: 93px;
  }
}
.header-menu .sub-menu li {
  margin: var(--gap-sm) 0 0;
}
@media (hover: none), screen and (max-width: 800px) {
  .header-menu .sub-menu li {
    padding: 0;
  }
}
@media (hover: hover) {
  .header-menu .sub-menu li {
    transition: 0.3s;
  }
  .header-menu .sub-menu li:hover a {
    text-decoration: underline;
  }
}
.header-menu .sub-menu a {
  font-weight: 500;
  color: var(--copy);
  text-transform: none;
}
@media (hover: none), screen and (max-width: 800px) {
  .header-menu .sub-menu a {
    height: 50px;
  }
}

.portfolio-feed,
.insights-feed {
  display: grid;
  row-gap: var(--gap-lg);
  column-gap: var(--gap-md);
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
}
@media screen and (min-width: 768px) {
  .portfolio-feed,
  .insights-feed {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .portfolio-feed,
  .insights-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .portfolio-feed > * {
    grid-column: span 1;
  }
  .portfolio-feed > :nth-child(10n+1), .portfolio-feed > :nth-child(10n+9) {
    grid-column: span 2;
  }
  .portfolio-feed > :nth-child(10n+3), .portfolio-feed > :nth-child(10n+7), .portfolio-feed > :nth-child(10n+10) {
    grid-column: span 3;
  }
  .insights-feed > * {
    grid-column: span 1;
  }
  .insights-feed > :nth-child(4n+1), .insights-feed > :nth-child(4n+4) {
    grid-column: span 2;
  }
}
.col-single {
  flex-basis: 100%;
  flex-shrink: 0;
}

.col-double {
  display: grid;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}
.col-double:not([class*=width-]) {
  max-width: calc(var(--website-width) / 2);
}
.col-double > div {
  box-sizing: border-box;
}
.col-double > div:has(.img) {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .col-double:not([class*=width-]) {
    max-width: 100%;
  }
  .col-double.md-md {
    grid-template-columns: 1fr 1fr;
  }
  .col-double.lg-sm {
    grid-template-columns: 5fr 3fr;
  }
  .col-double.sm-lg {
    grid-template-columns: 3fr 5fr;
  }
  .col-double.xl-xs {
    grid-template-columns: 3fr 1fr;
  }
  .col-double.xs-xl {
    grid-template-columns: 1fr 3fr;
  }
}

.col-trio {
  display: grid;
  grid-template-columns: 1fr;
  max-width: calc(var(--website-width) / 3);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .col-trio {
    max-width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  .overlap-top,
  .overlap-bottom {
    position: relative;
    z-index: 99;
  }
  .overlap-top {
    transform: translateY(-100px);
  }
  .overlap-bottom {
    transform: translateY(80px);
  }
}
.hero > .flex {
  gap: var(--space-lg);
  justify-content: space-between;
}

.headline-container {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center left;
}
@media screen and (min-width: 768px) {
  .headline-container {
    height: 545px;
  }
}
@media screen and (min-width: 1400px) {
  .headline-container:not(.no-bkgd) {
    height: initial;
    aspect-ratio: 2.65/1;
  }
}
.headline-container h1,
.headline-container p {
  font-weight: 400;
}
.headline-container .eyebrow {
  padding-bottom: var(--gap-sm);
}
.headline-container.extend {
  height: 750px;
}
@media screen and (max-width: 768px) {
  .headline-container.extend {
    background-image: url("/wp-content/uploads/home-bkgd-mobile.jpg") !important;
    height: 660px;
  }
}
@media screen and (min-width: 1400px) {
  .headline-container.extend {
    height: initial;
    aspect-ratio: 16/9;
  }
}
.headline-container.extend h1 {
  font-weight: 600;
  line-height: 90%;
}
@media screen and (min-width: 992px) {
  .headline-container.extend h1 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1400px) {
  .headline-container.extend h1 {
    margin-left: -5rem;
  }
}
.headline-container.extend .container {
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.headline-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.headline-container .container {
  margin: 150px auto var(--space-lg);
  padding-right: 45px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 768px) {
  .headline-container .container {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.headline-container:not(.extend) h1 {
  font-size: var(--font-h3);
}
@media screen and (min-width: 768px) {
  .headline-container:not(.extend) h1 {
    font-size: var(--font-h2);
  }
}
.headline-container.no-bkgd h1,
.headline-container.no-bkgd p,
.headline-container.no-bkgd .breadcrumbs {
  color: var(--purple);
}

.hero-bg-clip {
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero-bg-clip {
    width: 100px;
    bottom: -42px;
  }
}

.hero-content {
  flex-direction: column;
  width: 100%;
  max-width: 750px;
}

.breadcrumbs {
  position: absolute;
  top: 95px;
  left: 50%;
  z-index: 1;
  width: calc(100% - 40px);
  transform: translateX(-50%);
  max-width: var(--website-width);
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    width: 95vw;
    top: 120px;
  }
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: var(--font-small);
  line-height: 1.5;
  color: inherit;
  font-weight: 500;
}
.breadcrumbs a {
  text-decoration: none;
}
@media (hover: hover) {
  .breadcrumbs a {
    transition: 0.3s;
  }
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}

.separator {
  padding: 0 var(--gap-sm);
}

@media screen and (min-width: 768px) {
  .page-id-417 .headline-container {
    height: 400px;
  }
}

.video-takeover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: var(--white);
  transition: 0.75s ease-out;
}

.video-takeover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease-out;
}

.video-takeover.fade-out video {
  opacity: 0;
}

.portfolio-cards {
  position: relative;
  margin-bottom: calc(9 * var(--space-xl));
}
@media screen and (min-width: 768px) {
  .portfolio-cards {
    margin-bottom: var(--space-xl);
  }
}
.portfolio-cards .btn-container {
  margin: calc(8 * var(--space-xl)) 0 calc(-7 * var(--space-xl));
  justify-content: center;
  z-index: 9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .portfolio-cards .btn-container {
    margin: calc(2 * var(--space-xl)) 0 0;
  }
}

.portfolio-card {
  height: 600px;
  width: 100%;
  position: relative;
  margin-bottom: calc(var(--space-md) / 1);
}
.portfolio-card:not([id]) {
  margin-bottom: 0;
}

.portfolio-card-link {
  display: block;
  max-width: var(--website-width);
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0s;
}
@media (hover: hover) {
  .portfolio-card-link:hover {
    cursor: var(--cursor), auto;
  }
}
.portfolio-card-link img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  object-position: 70%;
}
.portfolio-card-link p {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  font-variation-settings: "wdth" 100;
  width: calc(100% - 30px);
}
@media screen and (min-width: 768px) {
  .portfolio-card-link p {
    left: 40px;
    width: 425px;
  }
}

.accordion-row {
  overflow: hidden;
}
.accordion-row:not(:last-of-type) {
  border-bottom: 1px solid var(--black);
}

.accordion-title {
  padding: var(--space-xs) 0;
  position: relative;
  list-style: none;
}
.accordion-title::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .accordion-title {
    cursor: pointer;
  }
}
.accordion-title p {
  max-width: calc(100% - 50px);
  font-size: var(--font-h6);
  font-variation-settings: "wdth" 150;
  font-weight: 500;
  color: var(--purple);
}
.accordion-title:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background-image: url("../icon/plus-circle.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  filter: var(--svg-purple);
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: 0.3s;
}
[open] .accordion-title:after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
  overflow: hidden;
  transition: 0.3s;
}
[open] .accordion-content {
  padding-bottom: var(--space-xs);
}

.btn-container {
  display: flex;
}
.content + .btn-container {
  margin-top: var(--space-xs);
}
.btn-container:has(.btn:nth-child(2)) {
  flex-wrap: wrap;
  gap: 16px;
}
.text-center .btn-container {
  justify-content: center;
}
.text-right .btn-container {
  justify-content: flex-end;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 125px;
  width: fit-content;
  height: 50px;
  padding: 0 var(--gap-md);
  box-sizing: border-box;
  border: 2px solid;
  border-radius: var(--radius-full);
  font-size: var(--font-copy);
  font-variation-settings: "wdth" 150;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn.bg-purple {
  color: var(--white);
  border-color: var(--purple);
}
.btn.bg-purple:after {
  filter: var(--svg-white);
}
.btn.bg-white, .btn.bg-white.outlined {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn.bg-white:after, .btn.bg-white.outlined:after {
  filter: var(--svg-white);
}
.btn.bg-grey {
  border-color: var(--grey);
}
.btn.bg-lightGrey {
  border-color: var(--lightGrey);
}
.btn.bg-grey, .btn.bg-lightGrey {
  color: var(--purple);
}
.btn.bg-grey:after, .btn.bg-lightGrey:after {
  filter: var(--svg-purple);
}
.btn.outlined {
  background-color: transparent;
  color: var(--purple);
}
.btn.outlined:after {
  filter: var(--svg-purple);
}
.btn.outlined-copy {
  background-color: transparent;
  color: var(--copy);
}
.btn.outlined-copy:after {
  filter: var(--svg-copy);
}
@media (hover: hover) {
  .btn.outlined-copy:hover {
    color: var(--white);
    background-color: var(--copy);
    border-color: var(--copy);
  }
  .btn.outlined-copy:hover.has-icon:after {
    filter: var(--svg-copy);
  }
}
@media (hover: hover) {
  .btn.outlined:hover, .btn.bg-white:hover {
    color: var(--white);
    background-color: var(--purple);
    border-color: var(--purple);
  }
  .btn.outlined:hover.has-icon:after, .btn.bg-white:hover.has-icon:after {
    filter: var(--svg-white);
  }
}
@media (hover: hover) {
  .btn:hover:not(.outlined):not(.bg-white):not(.outlined-copy) {
    border-color: var(--purple);
    background-color: transparent;
    color: var(--purple);
  }
  .btn:hover:not(.outlined):not(.bg-white):not(.outlined-copy).has-icon:after {
    filter: var(--svg-purple);
  }
}
.btn.has-icon {
  position: relative;
}
.btn.has-icon:after {
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0s;
}
.btn.has-icon:not(.arrowR) {
  padding-right: 55px;
}
.btn.has-icon:not(.arrowR):after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  top: auto;
  left: auto;
  right: 23px;
  bottom: auto;
}
.btn.external:after {
  background-image: url(../icon/external.svg);
}
.btn.search:after {
  background-image: url(../icon/search.svg);
}
.btn.download:after {
  background-image: url(../icon/download.svg);
}
.btn.arrowL:after {
  background-image: url(../icon/arrow.svg);
}
.btn.linkedin:after {
  background-image: url(../icon/linkedin.svg);
}
.btn.arrowR {
  padding-left: 50px;
}
.btn.arrowR:after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  top: 12px;
  left: 20px;
  right: auto;
  bottom: auto;
  background-image: url(../icon/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
@media (prefers-contrast: more) {
  .btn {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
  }
  .btn:after {
    filter: none;
  }
}

.header-btn a,
.swp-result-item--button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 125px;
  width: fit-content;
  height: 45px;
  padding: 0 var(--gap-md);
  box-sizing: border-box;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-variation-settings: "wdth" 150;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.header-btn {
  margin-left: var(--space-sm);
}

@media (hover: hover) {
  .header-btn:hover a,
  .swp-result-item--button:hover {
    background-color: var(--purple);
    border-color: var(--purple);
    color: var(--white);
  }
}
.filter-btn {
  border-width: 1px;
  height: 40px;
  font-size: var(--font-small);
  font-variation-settings: "wdth" 125;
  font-weight: 400;
  padding: 0 calc(var(--space-xs) / 2);
  min-width: 120px;
}
.filter-btn.active {
  background-color: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

#see-more-btn {
  margin: var(--space-lg) auto 0;
  font-variation-settings: "wdth" 125;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  container-type: inline-size;
  opacity: 0;
  transition: none;
}
.card .img {
  border: 1px solid #EAEAEA;
  border-bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
  height: 400px;
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card .img img {
  border-radius: 0;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}
.card .inline-video {
  height: 400px;
  border-radius: 0;
}
.card video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card .fpo {
  border-radius: var(--radius) var(--radius) 0 0;
  min-height: 400px;
}
@media (hover: hover) {
  .card:hover img {
    transform: scale(1.125);
  }
}

.long {
  display: none;
}

.medium {
  display: none;
}

.short {
  display: block;
}

@container (min-width: 500px) {
  .medium {
    display: block;
  }
  .short {
    display: none;
  }
}
@container (min-width: 800px) {
  .long {
    display: block;
  }
  .medium {
    display: none;
  }
}
.card-content {
  background-color: var(--lightGrey);
  box-sizing: border-box;
  padding: var(--space-xs);
  height: 100%;
  z-index: 9;
}
.card-content h3 {
  padding-bottom: var(--gap-sm);
  font-size: var(--font-copy);
}

.cards {
  display: flex;
  width: calc(100% + 40px);
  margin: 0 -20px;
}
@media screen and (min-width: 992px) {
  .cards {
    display: grid;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 992px) {
  .cards {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .cards .card {
    width: 315px;
    flex-shrink: 0;
  }
  .cards .card:first-of-type {
    margin-left: 20px;
  }
  .cards .card:last-of-type {
    margin-right: 20px;
  }
}

.filter-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--darkGrey);
  z-index: 9;
  height: 40px;
  padding: 0 var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
.filter-tag p {
  font-size: var(--font-small);
  font-variation-settings: "wdth" 125;
  font-weight: 400;
  color: var(--white);
}

.splide__pagination {
  display: flex;
  width: fit-content;
  justify-content: center;
  min-width: 110px;
  box-sizing: border-box;
  gap: var(--gap-sm);
  background-color: var(--lightGrey);
  padding: var(--space-xs);
  border-radius: var(--radius-full);
  margin: var(--space-xs) auto 0;
}

.splide__pagination button {
  width: 10px;
  height: 10px;
  background-color: var(--purple-50);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.splide__pagination button.is-active {
  background-color: var(--purple);
}

.cta {
  background-color: var(--lightGrey);
  border-radius: var(--radius);
  padding: var(--space-sm);
}

.facts-figures .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

hr {
  border-width: 0 0 1px 0;
  margin: 0;
  width: 100%;
  border-color: var(--grey);
}

.img {
  width: 100%;
  height: 100%;
}
.img img {
  border-radius: var(--radius);
}

.fpo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  border-radius: var(--radius);
}
.fpo p {
  font-size: var(--font-h1);
  font-weight: bold;
  color: var(--purple);
}

.spacer.space-xl {
  height: var(--space-xl);
}
.spacer.space-lg {
  height: var(--space-lg);
}
.spacer.space-md {
  height: var(--space-md);
}
.spacer.space-sm {
  height: var(--space-sm);
}
.spacer.space-xs {
  height: var(--space-xs);
}

.inline-video {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.inline-video video {
  width: 100%;
}

.inline-video.zoom {
  transform: scale(0.25);
  margin-bottom: var(--space-xl);
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--font-h1);
  height: var(--font-h1);
  border-radius: var(--radius-full);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: var(--font-h4);
  backdrop-filter: blur(10px);
  font-family: "Kern", system-ui, sans-serif;
}

.animating-title h2 {
  color: var(--purple);
  font-variation-settings: "wght" 200, "wdth" 125;
}

.animating-title [data-splitting],
.hero h1 [data-splitting] {
  font-weight: 100;
  font-variation-settings: "wght" 200, "wdth" 125;
}
.animating-title [data-splitting] .char,
.hero h1 [data-splitting] .char {
  --delay: calc((var(--char-index) + 1) * 100ms);
  animation: breathe 6000ms infinite both;
  animation-delay: var(--delay);
}
.animating-title [data-splitting]:hover span,
.hero h1 [data-splitting]:hover span {
  animation-play-state: paused;
}

@keyframes breathe {
  0% {
    font-variation-settings: "wght" 200, "wdth" 125;
  }
  60% {
    font-variation-settings: "wght" 700, "wdth" 200;
  }
  100% {
    font-variation-settings: "wght" 200, "wdth" 125;
  }
}
.carousel-card img {
  border-radius: var(--radius);
}

@media screen and (max-width: 768px) {
  #carouselCardImg0 {
    display: none;
  }
  .elevate-carousel {
    display: flex;
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--space-sm);
    align-items: flex-start;
    padding-bottom: var(--space-md);
  }
  .elevate-carousel > div {
    display: flex;
    flex-direction: column-reverse;
    width: 315px;
    flex-shrink: 0;
  }
  .elevate-carousel > div:nth-of-type(2) {
    margin-left: 20px;
  }
  .elevate-carousel > div:last-of-type {
    margin-right: 20px;
  }
  .carousel-card-content {
    margin-top: -95px;
  }
  .carousel-card-content p {
    padding: var(--space-sm);
    border-radius: var(--radius);
    background-color: var(--lightGrey);
    color: var(--purple);
    box-sizing: border-box;
  }
  .carousel-card-content p:first-of-type {
    padding: var(--space-xs) var(--space-sm);
    font-weight: bold;
    margin: 0 auto var(--space-md);
    height: 70px;
    display: flex;
    align-items: center;
    width: 90%;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .elevate-carousel {
    position: relative;
    height: 675px;
  }
  .elevate-carousel + .container > .btn-container {
    padding: 0 0 var(--space-xl);
    justify-content: center;
  }
  .carousel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 475px;
    opacity: 0;
    transition: 0.3s;
  }
  .carousel-card:first-of-type {
    opacity: 1;
  }
  .carousel-card-content {
    position: absolute;
    background-color: var(--lightGrey);
    border-radius: var(--radius);
    max-width: 400px;
    z-index: 99;
    padding: calc(var(--space-xs) / 2) var(--space-xs);
    box-sizing: border-box;
  }
  .carousel-card-content p {
    color: var(--purple);
  }
  .carousel-card-content p + p {
    display: none;
  }
  .carousel-card-content:hover {
    cursor: var(--cursor), auto;
  }
  .carousel-card-content:hover p:first-of-type {
    font-weight: bold;
    margin-bottom: calc(var(--space-xs) / 4);
  }
  .carousel-card-content:hover p + p {
    display: block;
  }
  .carousel-card-content:hover + .carousel-card {
    opacity: 1;
  }
  #carouselCard1 {
    top: 20%;
    left: 25%;
    transform: translateX(-50%);
  }
  #carouselCard3 {
    top: 40%;
    left: 15%;
    transform: translateX(-50%);
  }
  #carouselCard5 {
    top: 65%;
    left: 25%;
    transform: translateX(-50%);
  }
  #carouselCard2 {
    top: 25%;
    right: 25%;
    transform: translateX(50%);
  }
  #carouselCard4 {
    top: 50%;
    right: 15%;
    transform: translateX(50%);
  }
  #carouselCard6 {
    top: 75%;
    right: 25%;
    transform: translateX(50%);
  }
}
.elevate-carousel + .container > .btn-container {
  padding: 0 0 var(--space-xl);
  justify-content: center;
}

@media screen and (min-width: 992px) {
  section:has(.hover-accordion) {
    min-height: 750px;
    height: 66vh;
    border-top: 15vh solid var(--white);
  }
}
section:has(.hover-accordion) .column {
  padding: var(--space-md) 0 var(--space-sm);
}
@media screen and (min-width: 992px) {
  section:has(.hover-accordion) .column {
    padding: 0;
  }
}
section:has(.hover-accordion) div:has(> .hover-accordion) {
  order: 2;
}
@media screen and (min-width: 992px) {
  section:has(.hover-accordion) div:has(> .hover-accordion) {
    order: initial;
  }
}

@media screen and (min-width: 992px) {
  .hover-accordion {
    padding: 66vh 0 10vh;
  }
}
.hover-accordion .container {
  width: 100%;
}
.hover-accordion .accordion-row {
  border: none;
  padding-top: var(--space-sm);
  text-decoration: none;
  display: block;
}
.hover-accordion .accordion-row:last-of-type {
  padding-bottom: var(--space-sm);
}
.hover-accordion .accordion-title {
  padding: 0;
}
.hover-accordion .accordion-title p {
  max-width: 100%;
  font-size: var(--font-h4);
}
.hover-accordion .accordion-title:after {
  content: none;
}
@media (hover: hover) {
  .hover-accordion .accordion-content {
    height: 0;
    opacity: 0;
  }
}
@media (hover: hover) {
  .hover-accordion .accordion-row:hover {
    cursor: var(--cursor), auto;
  }
  .hover-accordion .accordion-row:hover .accordion-content {
    height: 50px;
    opacity: 1;
  }
  .hover-accordion .accordion-row:hover * {
    cursor: inherit;
  }
}
.hover-accordion p {
  color: var(--white);
  font-variation-settings: "wght" 400, "wdth" 150;
}
.bg-white .hover-accordion p {
  color: var(--purple);
  font-variation-settings: "wght" 500, "wdth" 150;
}

.marquee.single {
  display: inline-flex;
}

.marquee.single span {
  padding-left: 1em;
  white-space: nowrap;
}

.marquee.double span {
  display: block;
  transform: translateX(100vw);
  width: 100%;
}
.marquee.double span:last-of-type {
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .marquee.double span:last-of-type {
    text-align: right;
  }
}
.marquee.double span p {
  font-size: 2.75rem;
  font-variation-settings: "wdth" 150;
  font-weight: 300;
  line-height: 115%;
  color: var(--purple);
}
/*# sourceMappingURL=styles.css.map */
