/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:wght@400;700&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

/* Main Font (Headings) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-weight: 700;
}

/* Secondary Font (Body Text) */
body,
p,
span,
a,
li,
button,
input,
textarea,
select {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
}


html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif
}

body {
    margin: 0
}
/* ====================service-image=================== */

  .service-heading-image{
    width:100%;
    aspect-ratio:16/5;      /* Similar to your banner image */
    object-fit:cover;
    display:block;
    border-radius:12px;
    margin:30px 0 15px;
}

.text-rich-text h4{
    margin:0 0 12px;
}

.text-rich-text p{
    margin-bottom:30px;
}
/* ================floating-icon============ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease var(--reveal-delay, 0s), transform 0.75s ease var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.music-control{
    position:fixed;
    left:20px;
    top:65%;
    transform:translateY(-50%);
    z-index:9999;
}

.music-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031b1b;
    font-size:22px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
    border:none;
    cursor:pointer;
    background:#d4b458;
    padding:0;
}

.music-btn:hover{
    transform:translateX(6px) scale(1.08);
    background:#f0c480;
}

.music-btn.is-playing{
    background:#d4b458;
}

.floating-contact{
    position:fixed;
    right:20px;
    top:65%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-contact a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.floating-contact a:hover{
    transform:translateX(-6px) scale(1.08);
}

.call-btn{
    background:#0d6efd;
}

.email-btn{
    background:#ff5722;
}

.whatsapp-btn{
    background:#25D366;
}

@media(max-width:768px){
    .music-control{
        left:15px;
        top:75%;
    }

    .music-btn{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .floating-contact{
        right:15px;
         top:75%;
    }

    .floating-contact a{
        width:48px;
        height:48px;
        font-size:20px;
    }
}
/* ============================================ */
.gardenia-projects-section {
    padding: 100px 20px;
    background: #ffffff;
}

.gardenia-projects-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.gardenia-projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.gardenia-projects-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gardenia-projects-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.gardenia-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gardenia-projects-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.gardenia-projects-logo img {
    max-width: 170px;
    max-height: 120px;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .gardenia-projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .gardenia-projects-logo {
        height: 110px;
        padding: 12px;
    }

    .gardenia-projects-logo img {
        max-width: 100%;
        max-height: 80px;
    }
}

@media (max-width: 767px) {
    .gardenia-projects-section {
        padding: 60px 16px;
    }

    .gardenia-projects-header {
        margin-bottom: 32px;
    }

    .gardenia-projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gardenia-projects-logo {
        height: 92px;
        padding: 8px;
    }

    .gardenia-projects-logo img {
        max-width: 100%;
        max-height: 68px;
    }

    .gardenia-projects-title {
        font-size: 34px;
    }

    .gardenia-projects-text {
        font-size: 16px;
    }
}




/* =========================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    vertical-align: baseline;
    display: inline-block
}

audio:not([controls]) {
    height: 0;
    display: none
}

[hidden],
template {
    display: none
}

a {
    background-color: #0000
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    margin: .67em 0;
    font-size: 2em
}

mark {
    color: #000;
    background: #ff0
}

small {
    font-size: 80%
}

sub,
sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=reset] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

@font-face {
    font-family: webflow-icons;
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)format("truetype");
    font-weight: 400;
    font-style: normal
}

[class^=w-icon-],
[class*=\ w-icon-] {
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-family: webflow-icons !important
}

.w-icon-slider-right:before {
    content: ""
}

.w-icon-slider-left:before {
    content: ""
}

.w-icon-nav-menu:before {
    content: ""
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
    content: ""
}

.w-icon-file-upload-remove:before {
    content: ""
}

.w-icon-file-upload-icon:before {
    content: ""
}

* {
    box-sizing: border-box
}

html {
    height: 100%
}

body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block
}

html.w-mod-touch * {
    background-attachment: scroll !important
}

.w-block {
    display: block
}

.w-inline-block {
    max-width: 100%;
    display: inline-block
}

.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-clearfix:after {
    clear: both
}

.w-hidden {
    display: none
}

.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block
}

input.w-button {
    -webkit-appearance: button
}

html[data-w-dynpage] [data-w-cloak] {
    color: #0000 !important
}

.w-code-block {
    margin: unset
}

pre.w-code-block code {
    all: inherit
}

.w-optimization {
    display: contents
}

.w-webflow-badge,
.w-webflow-badge>img {
    box-sizing: unset;
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    margin: unset;
    padding: unset;
    float: unset;
    clear: unset;
    border: unset;
    border-radius: unset;
    background: unset;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-origin: unset;
    background-clip: unset;
    background-attachment: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    direction: unset;
    font-family: unset;
    font-weight: unset;
    color: unset;
    font-size: unset;
    line-height: unset;
    font-style: unset;
    font-variant: unset;
    text-align: unset;
    letter-spacing: unset;
    -webkit-text-decoration: unset;
    text-decoration: unset;
    text-indent: unset;
    text-transform: unset;
    list-style-type: unset;
    text-shadow: unset;
    vertical-align: unset;
    cursor: unset;
    white-space: unset;
    word-break: unset;
    word-spacing: unset;
    word-wrap: unset;
    transition: unset
}

.w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    color: #aaadb0 !important;
    overflow: unset !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    transform: none !important
}

.w-webflow-badge>img {
    position: unset;
    visibility: unset !important;
    opacity: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    font-weight: 700
}

h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px
}

h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px
}

h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px
}

h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px
}

h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px
}

h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px
}

p {
    margin-top: 0;
    margin-bottom: 10px
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px
}

figure {
    margin: 0 0 10px
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px
}

.w-list-unstyled {
    padding-left: 0;
    list-style: none
}

.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-embed:after {
    clear: both
}

.w-video {
    width: 100%;
    padding: 0;
    position: relative
}

.w-video iframe,
.w-video object,
.w-video embed {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

button,
[type=button],
[type=reset] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0
}

.w-form {
    margin: 0 0 15px
}

.w-form-done {
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    display: none
}

.w-form-fail {
    background-color: #ffdede;
    margin-top: 10px;
    padding: 10px;
    display: none
}

label {
    margin-bottom: 5px;
    font-weight: 700;
    display: block
}

.w-input,
.w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block
}

.w-input::placeholder,
.w-select::placeholder {
    color: #999
}

.w-input:focus,
.w-select:focus {
    border-color: #3898ec;
    outline: 0
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
    cursor: not-allowed
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee
}

textarea.w-input,
textarea.w-select {
    height: auto
}

.w-select {
    background-color: #f3f3f3
}

.w-select[multiple] {
    height: auto
}

.w-form-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    display: inline-block
}

.w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block
}

.w-radio:before,
.w-radio:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-radio:after {
    clear: both
}

.w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal
}

.w-file-upload {
    margin-bottom: 10px;
    display: block
}

.w-file-upload-input {
    opacity: 0;
    z-index: -100;
    width: .1px;
    height: .1px;
    position: absolute;
    overflow: hidden
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
    color: #333;
    display: inline-block
}

.w-file-upload-error {
    margin-top: 10px;
    display: block
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
    display: none
}

.w-file-upload-uploading-btn {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: flex
}

.w-file-upload-file {
    background-color: #fafafa;
    border: 1px solid #ccc;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    display: flex
}

.w-file-upload-file-name {
    font-size: 14px;
    font-weight: 400;
    display: block
}

.w-file-remove-link {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-left: 10px;
    padding: 3px;
    display: block
}

.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px
}

.w-file-upload-error-msg {
    color: #ea384c;
    padding: 2px 0;
    display: inline-block
}

.w-file-upload-info {
    padding: 0 12px;
    line-height: 38px;
    display: inline-block
}

.w-file-upload-label {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
    width: 20px;
    margin-right: 8px;
    display: inline-block
}

.w-icon-file-upload-uploading {
    height: 20px
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto
}

.w-container:before,
.w-container:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-container:after {
    clear: both
}

.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px
}

.w-row:before,
.w-row:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-row:after {
    clear: both
}

.w-row .w-row {
    margin-left: 0;
    margin-right: 0
}

.w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative
}

.w-col .w-col {
    padding-left: 0;
    padding-right: 0
}

.w-col-1 {
    width: 8.33333%
}

.w-col-2 {
    width: 16.6667%
}

.w-col-3 {
    width: 25%
}

.w-col-4 {
    width: 33.3333%
}

.w-col-5 {
    width: 41.6667%
}

.w-col-6 {
    width: 50%
}

.w-col-7 {
    width: 58.3333%
}

.w-col-8 {
    width: 66.6667%
}

.w-col-9 {
    width: 75%
}

.w-col-10 {
    width: 83.3333%
}

.w-col-11 {
    width: 91.6667%
}

.w-col-12 {
    width: 100%
}

.w-hidden-main {
    display: none !important
}

@media screen and (max-width:991px) {
    .w-container {
        max-width: 728px
    }

    .w-hidden-main {
        display: inherit !important
    }

    .w-hidden-medium {
        display: none !important
    }

    .w-col-medium-1 {
        width: 8.33333%
    }

    .w-col-medium-2 {
        width: 16.6667%
    }

    .w-col-medium-3 {
        width: 25%
    }

    .w-col-medium-4 {
        width: 33.3333%
    }

    .w-col-medium-5 {
        width: 41.6667%
    }

    .w-col-medium-6 {
        width: 50%
    }

    .w-col-medium-7 {
        width: 58.3333%
    }

    .w-col-medium-8 {
        width: 66.6667%
    }

    .w-col-medium-9 {
        width: 75%
    }

    .w-col-medium-10 {
        width: 83.3333%
    }

    .w-col-medium-11 {
        width: 91.6667%
    }

    .w-col-medium-12 {
        width: 100%
    }

    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto
    }
}

@media screen and (max-width:767px) {

    .w-hidden-main,
    .w-hidden-medium {
        display: inherit !important
    }

    .w-hidden-small {
        display: none !important
    }

    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto
    }

    .w-col-small-1 {
        width: 8.33333%
    }

    .w-col-small-2 {
        width: 16.6667%
    }

    .w-col-small-3 {
        width: 25%
    }

    .w-col-small-4 {
        width: 33.3333%
    }

    .w-col-small-5 {
        width: 41.6667%
    }

    .w-col-small-6 {
        width: 50%
    }

    .w-col-small-7 {
        width: 58.3333%
    }

    .w-col-small-8 {
        width: 66.6667%
    }

    .w-col-small-9 {
        width: 75%
    }

    .w-col-small-10 {
        width: 83.3333%
    }

    .w-col-small-11 {
        width: 91.6667%
    }

    .w-col-small-12 {
        width: 100%
    }
}

@media screen and (max-width:479px) {
    .w-container {
        max-width: none
    }

    .w-hidden-main,
    .w-hidden-medium,
    .w-hidden-small {
        display: inherit !important
    }

    .w-hidden-tiny {
        display: none !important
    }

    .w-col {
        width: 100%
    }

    .w-col-tiny-1 {
        width: 8.33333%
    }

    .w-col-tiny-2 {
        width: 16.6667%
    }

    .w-col-tiny-3 {
        width: 25%
    }

    .w-col-tiny-4 {
        width: 33.3333%
    }

    .w-col-tiny-5 {
        width: 41.6667%
    }

    .w-col-tiny-6 {
        width: 50%
    }

    .w-col-tiny-7 {
        width: 58.3333%
    }

    .w-col-tiny-8 {
        width: 66.6667%
    }

    .w-col-tiny-9 {
        width: 75%
    }

    .w-col-tiny-10 {
        width: 83.3333%
    }

    .w-col-tiny-11 {
        width: 91.6667%
    }

    .w-col-tiny-12 {
        width: 100%
    }
}

.w-widget {
    position: relative
}

.w-widget-map {
    width: 100%;
    height: 400px
}

.w-widget-map label {
    width: auto;
    display: inline
}

.w-widget-map img {
    max-width: inherit
}

.w-widget-map .gm-style-iw {
    text-align: center
}

.w-widget-map .gm-style-iw>button {
    display: none !important
}

.w-widget-twitter {
    overflow: hidden
}

.w-widget-twitter-count-shim {
    vertical-align: top;
    text-align: center;
    background: #fff;
    border: 1px solid #758696;
    border-radius: 3px;
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative
}

.w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    text-align: center;
    color: #999;
    font-family: serif;
    font-size: 15px;
    line-height: 12px;
    position: relative
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    display: block;
    position: relative
}

.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px
}

.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-width: 4px;
    border-color: #75869600 #5d6c7b #75869600 #75869600;
    margin-top: -4px;
    margin-left: -9px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -10px
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-width: 4px;
    border-color: #fff0 #fff #fff0 #fff0;
    margin-top: -4px;
    margin-left: -8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -9px
}

.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%
}

.w-widget-twitter-count-shim.w--vertical:before {
    border-width: 5px;
    border-color: #5d6c7b #75869600 #75869600;
    margin-left: -5px
}

.w-widget-twitter-count-shim.w--vertical:after {
    border-width: 4px;
    border-color: #fff #fff0 #fff0;
    margin-left: -4px
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px
}

.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden
}

.w-background-video>video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important
}

.w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em
}

.w-background-video--control>[hidden] {
    display: none !important
}

.w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ddd;
    height: 300px;
    position: relative
}

.w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative
}

.w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0
}

.w-slider-nav.w-round>div {
    border-radius: 100%
}

.w-slider-nav.w-num>div {
    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    padding: .2em .5em
}

.w-slider-nav.w-shadow>div {
    box-shadow: 0 0 3px #3336
}

.w-slider-nav-invert {
    color: #fff
}

.w-slider-nav-invert>div {
    background-color: #2226
}

.w-slider-nav-invert>div.w-active {
    background-color: #222
}

.w-slider-dot {
    cursor: pointer;
    background-color: #fff6;
    width: 1em;
    height: 1em;
    margin: 0 3px .5em;
    transition: background-color .1s, color .1s;
    display: inline-block;
    position: relative
}

.w-slider-dot.w-active {
    background-color: #fff
}

.w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff
}

.w-slider-dot:focus.w-active {
    box-shadow: none
}

.w-slider-arrow-left,
.w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden
}

.w-slider-arrow-left [class^=w-icon-],
.w-slider-arrow-right [class^=w-icon-],
.w-slider-arrow-left [class*=\ w-icon-],
.w-slider-arrow-right [class*=\ w-icon-] {
    position: absolute
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0
}

.w-slider-arrow-left {
    z-index: 3;
    right: auto
}

.w-slider-arrow-right {
    z-index: 4;
    left: auto
}

.w-icon-slider-left,
.w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0
}

.w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden
}

.w-slider-force-show {
    display: block !important
}

.w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative
}

.w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block
}

.w-dropdown-toggle:focus {
    outline: 0
}

.w-icon-dropdown-toggle {
    width: 1em;
    height: 1em;
    margin: auto 20px auto auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0
}

.w-dropdown-list {
    background: #ddd;
    min-width: 100%;
    display: none;
    position: absolute
}

.w-dropdown-list.w--open {
    display: block
}

.w-dropdown-link {
    color: #222;
    padding: 10px 20px;
    display: block
}

.w-dropdown-link.w--current {
    color: #0082f3
}

.w-dropdown-link:focus {
    outline: 0
}

@media screen and (max-width:767px) {
    .w-nav-brand {
        padding-left: 10px
    }
}

.w-lightbox-backdrop {
    cursor: auto;
    letter-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    color: #fff;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #000000e6;
    outline: 0;
    font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    list-style: disc;
    position: fixed;
    inset: 0;
    -webkit-transform: translate(0)
}

.w-lightbox-backdrop,
.w-lightbox-container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow: auto
}

.w-lightbox-content {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.w-lightbox-view {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: absolute
}

.w-lightbox-view:before {
    content: "";
    height: 100vh
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
    height: 86vh
}

.w-lightbox-frame,
.w-lightbox-view:before {
    vertical-align: middle;
    display: inline-block
}

.w-lightbox-figure {
    margin: 0;
    position: relative
}

.w-lightbox-group .w-lightbox-figure {
    cursor: pointer
}

.w-lightbox-img {
    width: auto;
    max-width: none;
    height: auto
}

.w-lightbox-image {
    float: none;
    max-width: 100vw;
    max-height: 100vh;
    display: block
}

.w-lightbox-group .w-lightbox-image {
    max-height: 86vh
}

.w-lightbox-caption {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0006;
    padding: .5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-lightbox-embed {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.w-lightbox-control {
    cursor: pointer;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all .3s;
    position: absolute;
    top: 0
}

.w-lightbox-left {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
    display: none;
    bottom: 0;
    left: 0
}

.w-lightbox-right {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
    display: none;
    bottom: 0;
    right: 0
}

.w-lightbox-close {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
    background-size: 18px;
    height: 2.6em;
    right: 0
}

.w-lightbox-strip {
    white-space: nowrap;
    padding: 0 1vh;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto hidden
}

.w-lightbox-item {
    box-sizing: content-box;
    cursor: pointer;
    width: 10vh;
    padding: 2vh 1vh;
    display: inline-block;
    -webkit-transform: translate(0, 0)
}

.w-lightbox-active {
    opacity: .3
}

.w-lightbox-thumbnail {
    background: #222;
    height: 10vh;
    position: relative;
    overflow: hidden
}

.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0
}

.w-lightbox-thumbnail .w-lightbox-tall {
    width: 100%;
    top: 50%;
    transform: translateY(-50%)
}

.w-lightbox-thumbnail .w-lightbox-wide {
    height: 100%;
    left: 50%;
    transform: translate(-50%)
}

.w-lightbox-spinner {
    box-sizing: border-box;
    border: 5px solid #0006;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: .8s linear infinite spin;
    position: absolute;
    top: 50%;
    left: 50%
}

.w-lightbox-spinner:after {
    content: "";
    border: 3px solid #0000;
    border-bottom-color: #fff;
    border-radius: 50%;
    position: absolute;
    inset: -4px
}

.w-lightbox-hide {
    display: none
}

.w-lightbox-noscroll {
    overflow: hidden
}

@media (min-width:768px) {
    .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh
    }

    .w-lightbox-view,
    .w-lightbox-view:before {
        height: 96vh
    }

    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
        height: 84vh
    }

    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh
    }

    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh
    }

    .w-lightbox-left,
    .w-lightbox-right {
        opacity: .5;
        display: block
    }

    .w-lightbox-close {
        opacity: .8
    }

    .w-lightbox-control:hover {
        opacity: 1
    }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
    opacity: 0
}

.w-richtext:before,
.w-richtext:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-richtext:after {
    clear: both
}

.w-richtext[contenteditable=true]:before,
.w-richtext[contenteditable=true]:after {
    white-space: initial
}

.w-richtext ol,
.w-richtext ul {
    overflow: hidden
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
    outline: 2px solid #2895f7
}

.w-richtext figure.w-richtext-figure-type-video>div:after,
.w-richtext figure[data-rt-type=video]>div:after {
    content: "";
    display: none;
    position: absolute;
    inset: 0
}

.w-richtext figure {
    max-width: 60%;
    position: relative
}

.w-richtext figure>div:before {
    cursor: default !important
}

.w-richtext figure img {
    width: 100%
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: .6
}

.w-richtext figure div {
    color: #0000;
    font-size: 0
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type=image] {
    display: table
}

.w-richtext figure.w-richtext-figure-type-image>div,
.w-richtext figure[data-rt-type=image]>div {
    display: inline-block
}

.w-richtext figure.w-richtext-figure-type-image>figcaption,
.w-richtext figure[data-rt-type=image]>figcaption {
    caption-side: bottom;
    display: table-caption
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type=video] {
    width: 60%;
    height: 0
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type=video] iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.w-richtext figure.w-richtext-figure-type-video>div,
.w-richtext figure[data-rt-type=video]>div {
    width: 100%
}

.w-richtext figure.w-richtext-align-center {
    clear: both;
    margin-left: auto;
    margin-right: auto
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,
.w-richtext figure.w-richtext-align-center[data-rt-type=image]>div {
    max-width: 100%
}

.w-richtext figure.w-richtext-align-normal {
    clear: both
}

.w-richtext figure.w-richtext-align-fullwidth {
    text-align: center;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.w-richtext figure.w-richtext-align-fullwidth>div {
    padding-bottom: inherit;
    display: inline-block
}

.w-richtext figure.w-richtext-align-fullwidth>figcaption {
    display: block
}

.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    clear: none;
    margin-right: 15px
}

.w-richtext figure.w-richtext-align-floatright {
    float: right;
    clear: none;
    margin-left: 15px
}

.w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative
}

.w-nav:before,
.w-nav:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-nav:after {
    clear: both
}

.w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative
}

.w-nav-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative
}

.w-nav-link.w--current {
    color: #0082f3
}

.w-nav-menu {
    float: right;
    position: relative
}

[data-nav-menu-open] {
    text-align: center;
    background: #c8c8c8;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    display: block !important
}

.w--nav-link-open {
    display: block;
    position: relative
}

.w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-nav-overlay [data-nav-menu-open] {
    top: 0
}

.w-nav[data-animation=over-left] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation=over-left] .w-nav-overlay,
.w-nav[data-animation=over-left] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay,
.w-nav[data-animation=over-right] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto
}

.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative
}

.w-nav-button:focus {
    outline: 0
}

.w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8
}

.w-nav[data-collapse=all] .w-nav-menu {
    display: none
}

.w-nav[data-collapse=all] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
    display: block
}

.w--nav-dropdown-list-open {
    position: static
}

@media screen and (max-width:991px) {
    .w-nav[data-collapse=medium] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse=medium] .w-nav-button {
        display: block
    }
}

@media screen and (max-width:767px) {
    .w-nav[data-collapse=small] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse=small] .w-nav-button {
        display: block
    }

    .w-nav-brand {
        padding-left: 10px
    }
}

@media screen and (max-width:479px) {
    .w-nav[data-collapse=tiny] .w-nav-menu {
        display: none
    }

    .w-nav[data-collapse=tiny] .w-nav-button {
        display: block
    }
}

.w-tabs {
    position: relative
}

.w-tabs:before,
.w-tabs:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-tabs:after {
    clear: both
}

.w-tab-menu {
    position: relative
}

.w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative
}

.w-tab-link.w--current {
    background-color: #c8c8c8
}

.w-tab-link:focus {
    outline: 0
}

.w-tab-content {
    display: block;
    position: relative;
    overflow: hidden
}

.w-tab-pane {
    display: none;
    position: relative
}

.w--tab-active {
    display: block
}

@media screen and (max-width:479px) {
    .w-tab-link {
        display: block
    }
}

.w-ix-emptyfix:after {
    content: ""
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.w-dyn-empty {
    background-color: #ddd;
    padding: 10px
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
    display: none !important
}

.wf-layout-layout {
    display: grid
}

@font-face {
    font-family: Plusjakartasans Variablefont Wght;
    src: url(../fonts/6499a7acd963588cd836dd0d_PlusJakartaSans-VariableFont_wght.ttf)format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap
}

:root {
    --black-pearl: #031b1b;
    --aqua-haze: #fafcfc;
    --deep-sea-green: #0a5a5c;
    --turquoise-gray: #c2d6d6;
    --camel: #c5a040;
    --porcelain: #f3f7f7;
    --thunderbird: #c0411a;
    --light-peach: #d4b458;
    --faded-jade: #478385;
    --gumbo: #84acad;
    --bright-gray: #e7efef;
    --accessible-components-dark-grey: #9b9b9b
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block
}

.w-checkbox:before {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1/1/2/2;
    display: table
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url(../images/custom-checkbox-checkmark.589d534424.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec
}

@media screen and (max-width:991px) {
    .w-layout-blockcontainer {
        max-width: 728px
    }
}

@media screen and (max-width:767px) {
    .w-layout-blockcontainer {
        max-width: none
    }
}

body {
    color: #5a5a5a;
     font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 6rem;
    font-weight: 600;
    line-height: .92
}

h2 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1
}

h4 {
    margin-top: 0;
    margin-bottom: 0;
   font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1
}

h5 {
    margin-top: 0;
    margin-bottom: 0;
   font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1
}

h6 {
    margin-top: 0;
    margin-bottom: 0;
   font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1
}

p {
    margin-bottom: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4
}

a {
    color: var(--aqua-haze);
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    transition: color .2s;
     font-family: "Plus Jakarta Sans", sans-serif;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.5rem;
     font-family: "Plus Jakarta Sans", sans-serif;
}

li {
    margin-bottom: .25rem;
     font-family: "Plus Jakarta Sans", sans-serif;
}

img {
    max-width: 100%;
    display: inline-block
}

label {
    margin-bottom: .25rem;
    font-weight: 500
}

strong {
    font-weight: 700
}

blockquote {
    border-left: .25rem solid #e2e2e2;
    margin-bottom: 0;
    padding: 0 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5
}

figure {
    margin-top: 2rem;
    margin-bottom: 2rem
}

figcaption {
    text-align: center;
    margin-top: .25rem
}

.utility-page_component {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex
}

.utility-page_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 20rem;
    display: flex
}

.utility-page_form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex
}

.utility-page_image {
    margin-left: auto;
    margin-right: auto
}

.global-styles {
    display: block;
    position: fixed;
    inset: 0% auto auto 0%
}

.margin-custom2 {
    margin: 2.5rem
}

.padding-xlarge {
    padding: 4rem
}

.margin-xlarge {
    margin: 4rem
}

.margin-xsmall {
    margin: .5rem
}

.padding-xhuge {
    padding: 8rem
}

.margin-custom1 {
    margin: 1.5rem
}

.padding-0 {
    padding: 0
}

.padding-xxhuge {
    padding: 12rem
}

.padding-huge {
    padding: 6rem
}

.margin-large {
    margin: 3rem
}

.padding-xxlarge {
    padding: 5rem
}

.margin-xxsmall {
    margin: .25rem
}

.padding-custom3 {
    padding: 3.5rem
}

.padding-large {
    padding: 3rem
}

.margin-tiny {
    margin: .125rem
}

.padding-small {
    padding: 1rem
}

.padding-custom2 {
    padding: 2.5rem
}

.margin-custom3 {
    margin: 3.5rem
}

.padding-custom1 {
    padding: 0 0 0 2.5rem
}

.margin-huge {
    margin: 6rem
}

.padding-medium {
    padding: 2rem
}

.padding-xsmall {
    padding: .5rem
}

.margin-xxlarge {
    margin: 5rem
}

.padding-xxsmall {
    padding: .25rem
}

.margin-xhuge {
    margin: 8rem
}

.padding-tiny {
    padding: .125rem
}

.margin-small {
    margin: 1rem
}

.margin-medium {
    margin: 2rem
}

.margin-xxhuge {
    margin: 12rem
}

.margin-0 {
    margin: 0
}

.margin-horizontal {
    margin-top: 0;
    margin-bottom: 0
}

.padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
}

.margin-vertical {
    margin-left: 0;
    margin-right: 0
}

.margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0
}

.padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0
}

.padding-vertical {
    padding-left: 0;
    padding-right: 0
}

.padding-horizontal {
    padding-top: 0;
    padding-bottom: 0
}

.margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0
}

.margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
}

.margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0
}

.padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0
}

.padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0
}

.form_checkbox {
    flex-direction: row;
    align-items: flex-start;
    margin-top: .75rem;
    margin-bottom: .5rem;
    padding-left: 0;
    display: flex
}

.form_checkbox-icon {
    border-color: var(--black-pearl);
    border-radius: 0;
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .5rem 0 0
}

.form_checkbox-icon.w--redirected-checked {
    background-color: var(--deep-sea-green);
    background-image: url(../images/649ea6d4765a157ffcfb262e_checkbox.svg);
    background-size: 90%;
    border-style: none;
    border-radius: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .5rem 0 0
}

.form_checkbox-icon.w--redirected-focus {
    border-style: solid;
    border-color: var(--black-pearl);
    box-shadow: none;
    border-radius: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .5rem 0 0
}

.fs-styleguide_background {
    border: 1px solid #0000001a;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    display: flex
}

.fs-styleguide_spacing {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-image: linear-gradient(#fff0, #2d40ea1a);
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: start stretch;
    display: grid;
    position: relative
}

.form_checkbox-label {
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.4
}

.icon-1x1-small {
    flex: none;
    width: 1rem;
    height: 1rem
}

.icon-1x1-small.menu-service-arrow {
    opacity: 0;
    position: absolute;
    inset: .6rem auto auto 0%
}

.overflow-auto {
    overflow: auto
}

.spacing-clean {
    margin: 0;
    padding: 0
}

.icon-1x1-large {
    width: 2.5rem;
    height: 2.5rem
}

.z-index-2 {
    z-index: 2;
    position: relative
}

.fs-styleguide_background-space {
    width: 1px;
    height: 1px;
    margin: 5rem
}

.text-weight-semibold {
    font-weight: 600
}

.text-style-strikethrough {
    text-decoration: line-through
}

.fs-styleguide_item {
    grid-column-gap: 1.125rem;
    grid-row-gap: 1.125rem;
    border-bottom: 1px solid #0000001a;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: start;
    padding-bottom: 3rem;
    display: grid;
    position: relative
}

.fs-styleguide_item.is-stretch {
    justify-items: stretch
}

.max-width-full {
    width: 100%;
    max-width: none
}

.fs-styleguide_item-header {
    border-bottom: 1px solid #0000001a;
    width: 100%;
    padding-bottom: 2rem
}

.fs-styleguide_heading-large {
    font-size: 6rem
}

.background-color-black-pearl {
    background-color: var(--black-pearl);
    color: #f5f5f5
}

.z-index-1 {
    z-index: 1;
    position: relative
}

.text-color-black-pearl {
    color: var(--black-pearl)
}

.text-color-turquoise-gray {
    color: var(--turquoise-gray)
}

.fs-styleguide_2-col {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid
}

.fs-styleguide_2-col.is-align-start {
    align-items: start
}

.form_message-success {
    padding: 1.25rem
}

.fs-styleguide_row {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.heading-style-h3 {
    letter-spacing: 0;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1
}

.text-rich-text h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1
}

.text-rich-text h2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.25rem
}

.text-rich-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.25rem
}

.text-rich-text h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem
}

.text-rich-text h5,
.text-rich-text h6 {
    margin-top: 2.5rem;
    margin-bottom: 1rem
}

.text-rich-text p {
    margin-bottom: 1.5rem
}

.text-rich-text ul,
.text-rich-text ol {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.4
}

.text-rich-text a {
    color: var(--black-pearl);
    text-decoration: underline
}

.text-rich-text a:hover {
    color: var(--camel)
}

.text-rich-text strong {
    color: var(--black-pearl);
    font-weight: 500
}

.container-small {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto
}

.icon-height-small {
    height: 1rem
}

.icon-1x1-medium {
    width: 1.75rem;
    height: 1.75rem
}

.icon-1x1-medium.expertise {
    opacity: 0;
    color: var(--deep-sea-green);
    position: absolute;
    inset: .75rem auto auto 0%
}

.icon-1x1-medium.expertise.is-people {
    width: 1.25rem;
    height: 1.25rem;
    top: .25rem
}

.heading-style-h1 {
    font-family: swear-display, sans-serif;
    font-size: 6rem;
    font-weight: 600;
    line-height: .92
}

.padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.text-weight-normal {
    font-weight: 400
}

.padding-section-small {
    padding-top: 3.75rem;
    padding-bottom: 5rem
}

.max-width-small {
    width: 100%;
    max-width: 20rem
}

.text-color-aqua-haze {
    color: var(--aqua-haze)
}

.text-style-italic {
    font-style: italic
}

.text-weight-medium {
    font-weight: 500
}

.overflow-hidden {
    overflow: hidden
}

.fs-styleguide_section-header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-bottom: 1px solid #000;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    padding-bottom: 3rem;
    line-height: 1.4;
    display: grid
}

.text-size-tiny {
    font-size: .75rem
}

.max-width-xxlarge {
    width: 100%;
    max-width: 80rem
}

.fs-styleguide_1-col {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid
}

.overflow-visible {
    overflow: visible
}

.fs-styleguide_empty-box {
    z-index: -1;
    background-color: #2d40ea0d;
    border: 1px dashed #2d40ea;
    min-width: 3rem;
    height: 3rem;
    position: relative
}

.text-weight-light {
    font-weight: 300
}

.fs-styleguide_heading-medium {
    font-size: 4rem
}

.max-width-xsmall {
    width: 100%;
    max-width: 16rem
}

.fs-styleguide_4-col {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid
}

.text-size-regular {
    font-size: 1.25rem
}

.text-size-regular.is-date {
    color: #031b1bbf;
    flex: none;
    width: 12.5rem
}

.text-weight-xbold {
    font-weight: 800
}

.text-align-right {
    text-align: right
}

.text-weight-bold {
    font-weight: 700
}

.max-width-medium {
    width: 100%;
    max-width: 32rem
}

.fs-styleguide_item-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex
}

.max-width-large {
    width: 100%;
    max-width: 48rem
}

.fs-styleguide_header-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center start;
    display: grid
}

.form_field-wrapper {
    padding-top: .75rem;
    padding-bottom: 1rem;
    position: relative
}

.background-color-aqua-haze {
    background-color: var(--aqua-haze)
}

.text-style-muted {
    opacity: .6
}

.text-size-small {
    font-size: 1.125rem
}

.heading-style-h4 {
    letter-spacing: 0;
    font-family: swear-display, sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1
}

.max-width-xlarge {
    width: 100%;
    max-width: 64rem
}

.form_radio-icon {
    width: .875rem;
    height: .875rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: .5rem
}

.form_radio-icon.w--redirected-checked {
    border-width: .25rem;
    width: .875rem;
    height: .875rem
}

.form_radio-icon.w--redirected-focus {
    width: .875rem;
    height: .875rem;
    box-shadow: 0 0 .25rem 0 #3898ec
}

.text-style-nowrap {
    white-space: nowrap
}

.text-align-left {
    text-align: left
}

.background-color-porcelain {
    background-color: var(--porcelain)
}

.form_input {
    border-style: none none solid;
    border-width: 1px;
    border-color: black black var(--black-pearl);
    color: var(--black-pearl);
    background-color: #0000;
    min-height: 2.5rem;
    margin-bottom: 0;
    padding: 0 1rem 0 0;
    font-size: 1.25rem;
    line-height: 1.4
}

.form_input:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--black-pearl)
}

.form_input.is-text-area {
    min-height: 8rem;
    padding-top: .75rem
}

.form_input.error {
    border-bottom-color: var(--thunderbird)
}

.form_input.pw {
    background-color: var(--aqua-haze);
    text-align: center;
    padding-left: 1rem;
    font-size: 1rem
}

.heading-style-h6 {
    letter-spacing: 0;
    font-family: swear-display, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1
}

.padding-section-large {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.fs-styleguide_3-col {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    width: 100%;
    display: grid
}

.fs-styleguide_3-col.is-align-start {
    align-items: start
}

.text-style-link {
    color: var(--deep-sea-green);
    text-decoration: underline
}

.text-size-large {
    font-size: 1.75rem
}

.fs-styleguide_header {
    background-color: #0000000d
}

.heading-style-h2 {
    letter-spacing: -.01em;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1
}

.page-wrapper {
    z-index: 1
}

.fs-styleguide_label {
    color: #fff;
    background-color: #2d40ea;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: .25rem .75rem .3rem;
    font-weight: 600;
    display: flex
}

.fs-styleguide_label.is-tag {
    background-color: #be4aa5
}

.fs-styleguide_label.is-hex {
    color: #000;
    background-color: #f5f5f5
}

.fs-styleguide_version {
    z-index: 5;
    color: #000;
    font-weight: 500;
    text-decoration: none
}

.heading-style-h5 {
    letter-spacing: 0;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1
}

.container-large {
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.icon-height-medium {
    height: 2rem
}

.text-style-allcaps {
    text-transform: uppercase
}

.overflow-scroll {
    overflow: scroll
}

.form_message-error {
    background-color: #0000;
    margin-top: 0;
    padding: 0;
    position: absolute;
    inset: auto auto 3.5rem 2.5rem
}

.icon-height-large {
    height: 3rem
}

.text-align-center {
    text-align: center
}

.form_component {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
    display: flex
}

.main-wrapper {
    z-index: 1;
    position: relative
}

.max-width-xxsmall {
    width: 100%;
    max-width: 12rem
}

.layer {
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0%
}

.text-style-quote {
    border-left: .25rem solid #e2e2e2;
    margin-bottom: 0;
    padding: 0 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.align-center {
    margin-left: auto;
    margin-right: auto
}

.button {
    border: 1px solid var(--black-pearl);
    color: var(--black-pearl);
    text-align: center;
    text-transform: uppercase;
    background-color: #0000;
    border-radius: 100vw;
    padding: .5rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1
}

.button:hover {
    border-radius: 0
}

.button.is-text {
    color: #000;
    background-color: #0000;
    border: 2px solid #0000
}

.button.is-small {
    padding: .5625rem .75rem;
    font-size: .875rem
}

.button.is-small.is-aqua-haze {
    justify-content: center;
    align-items: center;
    display: flex
}

.button.is-form-submit {
    border-radius: 100vw;
    align-self: flex-end
}

.button.is-form-submit:hover {
    border-radius: 0
}

.button.is-large {
    padding: 1rem 2rem
}

.button.is-aqua-haze {
    border-color: var(--aqua-haze);
    color: var(--aqua-haze)
}

.button.is-icon {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex
}

.button.is-camel {
    border-color: var(--camel);
    color: var(--camel)
}

.button.is-light-peach {
    border-color: var(--camel);
    color: var(--camel);
    white-space: nowrap
}

.button.is-form-success {
    border-color: var(--camel);
    color: var(--camel);
    align-self: flex-start
}

.button.pw {
    border-color: var(--light-peach);
    color: var(--light-peach)
}

.fs-styleguide_classes {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.text-size-medium {
    font-size: 1.5rem
}

.fs-styleguide_section {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: start;
    display: grid
}

.fs-styleguide_section.is-vertical {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr
}

.button-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.hide {
    display: none
}

.padding-section-medium {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
    font-weight: 400
}

.container-medium {
    width: 100%;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto
}

.form_radio {
    flex-direction: row;
    align-items: center;
    margin-bottom: .5rem;
    padding-left: 0;
    display: flex
}

.home-message_content-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    place-items: center start;
    display: grid
}

.home-message_component {
    color: #fff;
    min-height: 100vh;
    padding: 3rem;
    display: flex
}

.home-message_list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    display: grid
}

.home-message_content {
    color: #000;
    background-color: #0000000d;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    align-items: stretch;
    width: 100%;
    display: flex
}

.home-message_heading-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex
}

.home-message_item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex
}

.home-message_item-icon {
    color: #000;
    background-color: #fff;
    flex: none;
    width: 1.75rem;
    height: 1.75rem
}

.home-message_logo {
    width: 4rem
}

.fs-styleguide_spacing-all {
    display: none
}

.fs-styleguide_color.is-1 {
    background-color: var(--black-pearl)
}

.fs-styleguide_color.is-2 {
    background-color: var(--aqua-haze)
}

.fs-styleguide_color.is-3 {
    background-color: var(--turquoise-gray)
}

.fs-styleguide_color.is-4 {
    background-color: var(--light-peach)
}

.fs-styleguide_color.is-5 {
    background-color: var(--deep-sea-green)
}

.fs-styleguide_color.is-6 {
    background-color: var(--camel)
}

.fs-styleguide_color.is-7 {
    background-color: var(--porcelain)
}

.fs-styleguide_color.is-8 {
    background-color: var(--faded-jade)
}

.fs-styleguide_color.is-9 {
    background-color: var(--gumbo)
}

.fs-styleguide_color.is-10 {
    background-color: var(--bright-gray)
}

.fs-styleguide_color.is-11 {
    background-color: var(--thunderbird)
}

.spacer-huge {
    width: 100%;
    padding-top: 6rem
}

.spacer-medium {
    width: 100%;
    padding-top: 2rem
}

.fs-styleguide_spacer-box {
    background-color: #2d40ea1a;
    border: 1px dashed #2d40ea;
    width: 100%;
    position: relative
}

.spacer-xsmall {
    width: 100%;
    padding-top: .5rem
}

.spacer-small {
    width: 100%;
    padding-top: 1rem
}

.spacer-xhuge {
    width: 100%;
    padding-top: 7.5rem
}

.spacer-tiny {
    width: 100%;
    padding-top: .125rem
}

.spacer-xxsmall {
    width: 100%;
    padding-top: .25rem
}

.spacer-xxhuge {
    width: 100%;
    padding-top: 12rem
}

.spacer-xlarge {
    width: 100%;
    padding-top: 4rem
}

.spacer-large {
    padding-top: 2.5rem
}

.spacer-xxlarge {
    width: 100%;
    padding-top: 5rem
}

.heading {
    color: #fff;
    font-size: 1.4rem
}

.link-block {
    color: #000;
    text-decoration: none
}

.heading-style-display {
    font-family: swear-display, sans-serif;
    font-size: 9.5rem;
    font-weight: 600;
    line-height: .92
}

.text-size-xsmall {
    font-size: 1rem
}

.text-color-light-peach {
    color: var(--light-peach)
}

.component_home-hero-heading {
    margin-bottom: 6.25rem
}

.home-hero_bg {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0%
}

.bg-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.home-hero_content {
    z-index: 1;
    padding-top:18rem;
}

.home-hero_arrow {
    color: var(--faded-jade)
}

.home-hero_subtitle-outer {
    grid-column-gap: .5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.home-hero_heading {
    color: var(--light-peach);
    max-width: 60rem;
    font-size: 7.5rem;
}

.loop-button {
    border: 1px solid var(--light-peach);
    color: var(--light-peach);
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 0;
    height: 2.1rem;
    padding: 0 .9rem;
    display: inline-flex;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
    box-sizing: border-box;
}

.loop-button:hover {
    border-radius: 0
}

.loop-button_text {
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loop-button_text.one {
    opacity: 1;
    visibility: visible;
}

.loop-button_text.two,
.loop-button_text.three,
.loop-button_text.four,
.loop-button_text.five,
.loop-button_text.six,
.loop-button_text.seven {
    opacity: 0;
    visibility: hidden;
}

.grid-2-col {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, 49.2647%) 41%;
    grid-auto-columns: 1fr;
    place-content: start space-between;
    align-items: start;
    display: grid
}

.grid-2-col.is-image {
    grid-column-gap: 8.4375rem;
    grid-template-columns: repeat(auto-fit, 49.2647%) 32.3529%;
    justify-content: start;
    align-items: start
}

.grid-2-col.is-people-img {
    grid-column-gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, 49.2647%) 40.8088%;
    place-content: start;
    place-items: start stretch
}

.grid-2-col.is-experience {
    grid-template-columns: repeat(auto-fit, 60%) 40%
}

.grid-2-col._50 {
    grid-template-columns: repeat(auto-fit, 50%) 41%
}

.about-us_content {
    max-width: 41.875rem
}

.about-us_statistics {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.statistic_item {
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.statistic_counter-wrapper {
    align-items: center;
    display: flex
}

.statistic_number {
    color: var(--turquoise-gray);
    font-family: swear-display, sans-serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: .8
}

.expertise_content {
    flex-direction: column;
    justify-content: space-between;
    max-width: 41.875rem;
    display: flex
}

.expertise_list {
    grid-row-gap: .75rem;
    flex-direction: column;
    display: flex
}

.expertise_list.is-people {
    grid-row-gap: .5rem
}

.expertise_item {
    color: var(--black-pearl);
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 1.75rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative
}

.expertise_item.people {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.25rem
}

.expertise_tag-wrapper {
    grid-column-gap: 20px;
    justify-content: flex-start;
    align-items: center
}

.section_testamonials.background-color-porcelain,
.section_testamonials.background-color-aqua-haze {
    display: none
}

.testamonial_wrapper {
    flex-direction: column;
    align-items: center;
    display: flex
}

.testamonial_slider {
    background-color: #0000;
    width: 100%;
    height: auto
}

.slider_content {
    flex-direction: column;
    align-items: center;
    display: flex
}

.testamonial_text {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.4
}

.testamonial_label {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4
}

.left-arrow,
.right-arrow {
    display: none
}

.slider_dot {
    background-color: var(--turquoise-gray);
    border-radius: 100vw;
    width: 8px;
    height: 8px
}

.slider_dot.fs-sliderdots_active {
    background-color: var(--light-peach);
    width: 28px;
    height: 8px;
    border-radius: 100vw
}

.slider_dot-wrapper {
    grid-column-gap: 1.25rem;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    position: relative;
    inset: auto 0% 0%
}

.slider_arrow-wrapper {
    grid-column-gap: 1.25rem;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    position: absolute;
    inset: auto 0% 0%
}

.slider-nav_custom {
    z-index: 5;
    justify-content: space-between;
    align-items: center;
    max-width: 27.5rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: absolute;
    inset: auto 0% 0%
}

.back-button {
    color: var(--black-pearl);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative
}

.slider-arrow {
    z-index: 1;
    width: 25px;
    padding-top: 6px;
    position: absolute;
    inset: auto
}

.slider-arrow-embed {
    width: 100%;
    height: 100%
}

.icon-1x1-small-plus {
    align-self: auto;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    inset: auto 0% 0% auto
}

.next-button {
    color: var(--black-pearl);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    transition: color .3s ease, transform .3s ease
}

.next-button:hover {
    background-color: transparent;
    color: var(--deep-sea-green);
    transform: translateX(5px)
}

.next-button .icon-1x1-small-plus {
    position: static;
    inset: auto;
    width: 1.5rem;
    height: 1.5rem;
}

.section_our-team,
.section_our-team.background-color-aqua-haze {
    overflow: hidden
}

.our-team_content {
    max-width: 41.875rem
}

.team-slider_component {
    background-color: #0000;
    width: 100%;
    height: auto;
    min-height: 29.3755rem;
    overflow: hidden
}

.team-slider_mask {
    width: 20.3125rem;
    height: 100%;
    min-height: 29.375rem;
    overflow: visible
}

.team-slider_slide {
    width: 20.3125rem;
    margin-right: 1.25rem;
    padding-bottom: 0;
    padding-right: 0
}

.team-member_item {
    color: var(--black-pearl);
    width: 20.3125rem;
    text-decoration: none;
    display: block;
    transition: transform .35s ease
}

.team-member_item:hover {
    transform: translateY(-8px)
}

.team-member_image-wrapper {
    margin-bottom: 1.25rem;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.team-slider_job-title {
    font-size: 1.25rem
}

.team-slider_name {
    margin-bottom: .5rem;
    font-size: 1.75rem;
    transition: color .3s ease
}

.team-member_item:hover .team-slider_name {
    color: var(--deep-sea-green)
}

.team-slider_image {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    border-radius: 12px;
    transition: transform .5s ease
}

.team-member_item:hover .team-slider_image {
    transform: scale(1.05)
}

.team-slider_tag {
    z-index: 2;
    border: 1px solid var(--light-peach);
    color: var(--light-peach);
    border-radius: 100vw;
    padding: .5rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem
}

.team-slider_gradient-overlay {
    z-index: 1;
    opacity: 0;
    background-image: linear-gradient(#031b1b00, #031b1b80);
    width: 100%;
    height: 50%;
    position: absolute;
    inset: auto 0% 0%;
    transition: opacity .35s ease
}

.team-member_item:hover .team-slider_gradient-overlay {
    opacity: 1
}

.slider-nav_team-slider {
    z-index: 5;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
    inset: auto 0% 0%
}

.team-slider_button-group {
    grid-column-gap: 1rem;
    justify-content: flex-start;
    display: flex
}

.team-slider_grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 49.2647% 43.75%;
    grid-auto-columns: 1fr;
    place-content: start space-between;
    display: grid
}

.team-slider_overlay {
    z-index: 2;
    background-image: linear-gradient(to right, #fafcfc00, var(--aqua-haze));
    width: 30%;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto
}

.jca_content-wrapper {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex
}

.jca_text {
    text-align: center
}

.jca_image-wrapper {
    width: 18.75rem;
    height: 6.25rem;
    position: relative
}

.jca_image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%
}

.section_footer {
    position: relative;
    overflow: hidden
}

.padding-section-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.footer_top {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 33% auto;
    grid-auto-columns: 1fr;
    margin-bottom: 10rem;
    display: grid
}

.footer_logo-wrapper,
.footer_logo-wrapper.w--current {
    width: 28rem;
    height: 6.5rem;
    position: relative
}

.footer_logo {
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%
}

.footer_link-outer {
    grid-column-gap: 4rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding-right: 6rem;
    display: flex
}

.footer_link-col {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex
}

.text-color-gumbo {
    color: var(--gumbo)
}

.footer_links {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.footer_bottom {
    grid-column-gap: 2.5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.footer_link-small {
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.footer_link-small[data-legal-modal] {
    color: var(--gumbo);
}

.footer_link-small:hover {
    color: var(--light-peach)
}

.footer_copyright-text {
    color: var(--gumbo);
    line-height: 1.2
}

.home-color-bg {
    background-color: var(--aqua-haze)
}

.section_nav {
    z-index: 10;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: #031b1bcc;
    padding: 1.125rem 2.5rem;
    position: fixed;
    inset: 0% 0% auto
}

.section_inner {
    justify-content: space-between;
    display: flex
}

.nav_logo-wrapper {
    width: 22rem;
    height: 3.5rem;
    position: relative
}

.nav_logo {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%
}

.nav_anchor-link-wrapper {
    grid-column-gap: 2.5rem;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    display: flex
}

.nav_anchor-link {
    font-size: 1rem;
    line-height: 1;
    transition: color .2s
}

.nav_anchor-link:hover,
.nav_anchor-link:focus,
.nav_anchor-link.w--current {
    color: var(--light-peach)
}

.nav_anchor-link.is-icon {
    grid-column-gap: .25rem;
    align-items: center;
    display: flex
}

.menu_module {
    z-index: 100;
    background-color: var(--aqua-haze);
    width: 38rem;
    height: 100vh;
    padding-left: 2.5rem;
    position: fixed;
    inset: 0% -38rem 0% auto;
    overflow: hidden
}

.menu_inner-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
    display: flex;
    overflow: auto
}

.menu_logo-wrapper {
    flex: none;
    width: 40rem;
    height: 5.25rem;
    position: relative;
    overflow: hidden
}

.menu_logo-wrapper.w--current {
    align-self: flex-start;
    width: 39.8rem
}

.menu_logo-symbol {
    z-index: 3;
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute
}

.menu_logo-wordmark {
    z-index: 1;
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute
}

.menu_link-wrapper {
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 8.75rem;
    display: flex
}

.menu_link {
    color: var(--black-pearl);
    align-items: flex-end;
   font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    transition: color .2s;
    display: inline-block
}

.menu_link:hover {
    color: var(--deep-sea-green)
}

.menu_dropdown-wrapper {
    grid-row-gap: 0rem;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    display: flex
}

.menu_dropdown-content {
    height: auto;
    display: block;
    overflow: hidden
}

.menu_list {
    grid-row-gap: .75rem;
    flex-direction: column;
    display: flex
}

.menu_service-item {
    color: var(--black-pearl);
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 1.25rem;
    line-height: 1;
    text-decoration: none;
    position: relative
}

.dropdown-trigger {
    grid-column-gap: 1rem;
    color: var(--black-pearl);
    cursor: pointer;
    align-items: flex-end;
    display: flex
}

.menu_dropdown-text {
    align-items: flex-end;
    font-family: "Libre Caslon Text", "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    display: inline-block
}

.close_button {
    opacity: 0;
    color: var(--black-pearl);
    cursor: pointer;
    transition: color .2s;
    display: none;
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem
}

.close_button:hover {
    color: var(--thunderbird)
}

.menu_language-wrapper {
    grid-column-gap: 1.5rem;
    align-items: center;
    margin-top: 5rem;
    display: flex
}

.menu_language-link {
    color: var(--black-pearl);
    line-height: 1
}

.menu_language-link.active {
    color: var(--faded-jade);
    text-decoration: none
}

.menu_language-link-parent {
    grid-row-gap: .25rem;
    flex-direction: column;
    display: flex;
    overflow: hidden
}

.menu_language-link-line {
    background-color: var(--faded-jade);
    width: 100%;
    height: 1px
}

.menu_language-link-line.active {
    background-color: var(--faded-jade)
}

.nav_logo-wrapper-mobile {
    width: 22rem;
    height: 3.5rem;
    display: none
}

.nav_logo-wrapper-mobile.w--current {
    display: none;
    position: relative
}

.spacer-nav-dropdown {
    padding-top: 2.5rem
}

.menu_link-wrapper-inner {
    grid-row-gap: 3.75rem;
    flex-direction: column;
    flex: none;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex
}

.spacer-menu {
    padding-top: 3.75rem
}

.menu_overlay {
    z-index: 99;
    opacity: 0;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
    background-color: #031b1b80;
    display: none;
    position: fixed;
    inset: 0%
}

.menu_button {
    z-index: 98;
    border: 1px solid var(--light-peach);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--light-peach);
    cursor: pointer;
    background-color: #031b1b80;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem
}

.menu_button:hover {
    border-radius: 0
}

.menu_dropdown-icon {
    width: 2.5rem;
    height: 2.5rem
}

.nav-bottom,
.menu_button-mobile {
    display: none
}

.disable-scroll {
    overflow: hidden
}

.small-hero_component {
    padding-top: 22rem;
    padding-bottom: 3.75rem
}

.practice-area_content {
    max-width: 41.875rem
}

.practice-area_image-wrapper {
    padding-top: 100%;
    position: sticky;
    top: 20vh
}

.practise-area_image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    border-radius: 12px;
}

.practice-area-intro_content {
    margin-bottom: 2.5rem
}

.hide-desktop {
    display: none
}

.practice-area_image-wrapper-mobile {
    object-fit: fill;
    width: 27.5rem;
    height: 27.5rem;
    margin-top: 0;
    display: none;
    position: sticky;
    top: 40vh
}

.contact-personas_grid {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(auto, 19.3125rem));
    grid-auto-columns: minmax(auto, 19.3125rem);
    justify-content: stretch;
    display: grid
}

.contact-person_item {
    color: var(--black-pearl);
    width: 100%;
    text-decoration: none
}

.contact-person_name {
    margin-bottom: .5rem;
    font-size: 1.75rem;
    font-weight: 400
}

.contact-person_job-title {
    font-size: 1.25rem;
    line-height: 1
}

.contact-person_job-title.join-us-text {
    line-height: 1.4
}

.contact-person_image-wrapper {
    margin-bottom: 1.25rem;
    padding-top: 100%;
    position: relative;
    overflow: hidden
}

.contact-person_image {
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    border-radius: 12px;
}

.contact-person_link-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.25rem;
    display: flex
}

.contact-person_link {
    color: var(--black-pearl);
    font-size: 1rem;
    line-height: 1
}

.contact-person_link:hover {
    color: var(--camel)
}

.the-people_header {
    max-width: 41.875rem
}

.the-people_image-wrapper {
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-top: 125.54%;
    display: flex;
    position: relative;
    overflow: hidden
}

.the-people_grid {
    grid-column-gap: 1.25rem;
    grid-row-gap: 3.75rem;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-auto-columns: 1fr;
    justify-content: stretch;
    display: grid
}

.keyword-tag {
    background-color: var(--bright-gray);
    color: var(--black-pearl);
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    padding: .625rem .75rem .75rem;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: color .2s;
    display: flex
}

.keyword-tag:hover {
    color: var(--deep-sea-green);
    border-radius: 0
}

.expertise_tag-list {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-wrap: wrap;
    display: flex
}

.search-cms-wrapper {
    color: #fff;
    width: 100%;
    max-height: 18.75rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: block;
    position: absolute;
    overflow: auto;
    box-shadow: 0 12px 40px #031b1b26
}

.search-cms-list {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex
}

.search-form {
    position: relative
}

.search-cms-item {
    flex: none;
    width: 100%;
    display: none
}

.search-input-wrapper {
    border: 1px #000;
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative
}

.search-icon {
    z-index: 0;
    opacity: .26;
    width: 20px;
    height: 20px;
    position: absolute;
    inset: 35% auto auto 2%
}

.no-results {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    color: #fff;
    text-align: left;
    background-color: #031b1bbf;
    border: 1px #ffffff30;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding: .75rem .75rem 1rem;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color .325s ease-out;
    display: none
}

.no-results:hover {
    text-decoration: none
}

.search-input {
    border-style: none none solid;
    border-width: 0 0 1px;
    border-color: black black var(--black-pearl);
    color: var(--black-pearl);
    background-color: #0000;
    border-radius: 0;
    height: 3rem;
    margin-bottom: 0;
    padding: 1rem 0 1rem 1.75rem;
    font-size: 1.25rem;
    line-height: 1
}

.search-input:focus {
    border-style: none none solid;
    border-width: 0 0 1px;
    border-bottom-color: var(--faded-jade)
}

.search-input::placeholder {
    color: #031b1b40;
    background-color: #0000;
    font-size: 1.25rem;
    line-height: 1
}

.no-result-emoji {
    flex-direction: column;
    width: 60px;
    margin-bottom: 6px;
    display: flex
}

.no-results-content {
    grid-column-gap: 1.5rem;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex
}

.hero-search-item {
    flex-direction: column;
    align-items: stretch;
    display: flex
}

.seach-cms {
    display: block
}

.search_icon {
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    inset: 29% auto auto 0%
}

.search_icon.active {
    color: var(--faded-jade)
}

.search-item {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    background-color: var(--aqua-haze);
    color: var(--gumbo);
    text-align: left;
    border: 1px #000;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr max-content;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 101%;
    height: 100%;
    margin-bottom: 0;
    padding: 10px 16px 10px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: color .2s, background-color .325s ease-out;
    display: flex
}

.search-item:hover {
    background-color: var(--porcelain);
    color: var(--deep-sea-green);
    text-decoration: none
}

.search-term-copy {
    color: #3525b8;
    letter-spacing: .2px;
    text-transform: uppercase;
    background-color: #4e4b0a17;
    padding: 5px 7px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    display: inline-block
}

.prep-time-wrapper {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: #3525b880;
    text-transform: uppercase;
    justify-content: flex-start;
    font-size: 11px;
    font-weight: 700;
    display: flex
}

.search-content-bottom {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: #3525b880;
    text-transform: uppercase;
    justify-content: flex-end;
    font-size: 11px;
    font-weight: 700;
    display: flex
}

.search-content-top {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    align-items: flex-end;
    display: flex
}

.searchable-keywords {
    flex-flow: wrap;
    display: none
}

.search-name {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3
}

.search-term_wrapper {
    grid-column-gap: .25rem;
    flex-flow: wrap;
    align-items: center;
    display: flex
}

.search-result_icon {
    width: 1.25rem;
    height: 1.25rem;
    position: static;
    inset: 29% auto auto 0%
}

.search-result_icon.active {
    color: var(--faded-jade)
}

.search-result_keyword {
    color: var(--black-pearl);
    font-size: 1rem;
    line-height: 1
}

.search-result_in {
    color: var(--gumbo);
    font-size: 1rem;
    line-height: 1;
    display: inline-block
}

.search-result_tag {
    border: 1px solid var(--black-pearl);
    text-transform: uppercase;
    border-radius: 100vw;
    padding: .5625rem .75rem;
    font-size: .875rem;
    line-height: 1
}

.search-result_area {
    text-transform: uppercase;
    flex-direction: row;
    align-items: center;
    font-size: 1rem;
    line-height: 1;
    display: inline-block
}

.search-result_arrow {
    width: 1.5rem;
    height: 1.5rem;
    position: static;
    inset: 29% auto auto 0%
}

.search-result_arrow.active {
    color: var(--faded-jade)
}

.search-result_keyword-wrapper {
    grid-column-gap: .25rem;
    align-items: center;
    display: flex
}

.search-result_no-result-text {
    color: var(--aqua-haze);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4
}

.spacer-keywords {
    display: none
}

.icon_mobile-menu {
    width: 2.5rem;
    height: 2.5rem
}

.why-skarp_image-wrapper {
    padding-top: 100%;
    position: sticky;
    top: 20vh
}

.why-skarp_image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%
}

.section_fullscreen-image {
    height: 37.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.fullscreen-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    display: block;
}

.section_people-header {
    position: relative
}

.padding-section-people {
    padding-top: 9.25rem;
    padding-bottom: 0
}

.people_content {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex
}

.people_name_wrapper {
    grid-row-gap: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.people_title {
    color: var(--aqua-haze);
    font-size: 1.75rem;
    line-height: 1
}

.people_contact-wrapper {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.people_contact-link {
    line-height: 1
}

.people_contact-link:hover {
    color: var(--light-peach)
}

.white-bg-block {
    z-index: -1;
    background-color: var(--aqua-haze);
    width: 100%;
    height: 35%;
    position: absolute;
    inset: auto 0% 0%
}

.people_image-wrapper {
    padding-top: 100%;
    padding-right: 0;
    position: relative
}

.spacer-people-content {
    padding-top: 8rem
}

.people_contact-wrapper-mobile {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none
}

.people_bio-mobile {
    display: none
}

.spacer-join-us {
    padding-top: 1.25rem
}

.join-us_fake-link {
    border: 1px solid var(--camel);
    color: var(--camel);
    text-transform: uppercase;
    border-radius: 100vw;
    padding: .5rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block
}

.join-us_gradient-overlay {
    z-index: 1;
    opacity: 0;
    background-image: linear-gradient(#031b1b00, #031b1b80 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: auto 0% 0%
}

.join-us_image-text {
    z-index: 1;
    color: var(--aqua-haze);
    font-family: swear-display, sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    inset: 48% auto auto
}

.join-us_inner-wrapper {
    color: var(--black-pearl);
    width: 100%;
    text-decoration: none
}

.join-us_item {
    color: var(--black-pearl);
    width: 100%
}

.section_404 {
    align-items: center;
    width: 100%;
    height: 100vh;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex
}

._404_content-wrapper {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    max-width: 34.6875rem;
    display: flex
}

.section_contact {
    height: 100vh
}

.padding-section-contact {
    padding-top: 9.25rem;
    padding-bottom: 8.125rem
}

.contact-grid {
    grid-column-gap: 8.75rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 41% 41%;
    grid-auto-columns: 1fr;
    place-content: start;
    align-items: start;
    display: grid
}

.contact_content {
    grid-row-gap: 3.75rem;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    display: flex
}

.contact_link-item {
    grid-row-gap: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.div-block,
.div-block-2,
.div-block-3 {
    display: flex
}

.contact_content-header {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.form_field-label {
    color: var(--faded-jade);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: font-size .4s, top .4s;
    position: absolute;
    inset: 1.25rem auto auto 0%
}

.form_field-label.active {
    font-size: .75rem;
    top: 0
}

.contact-form_outer {
    grid-row-gap: 2rem;
    background-color: var(--aqua-haze);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    display: flex;
    position: relative
}

.contact-form_header {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    display: flex
}

.contact_form {
    width: 100%
}

.submit-button {
    align-self: flex-end
}

.fs_selectcustom-1_message {
    color: var(--accessible-components-dark-grey)
}

.fs_selectcustom-1_link {
    background-color: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding: .75rem 1rem
}

.fs_selectcustom-1_link:hover {
    opacity: .7
}

.fs_selectcustom-1_link:focus-visible,
.fs_selectcustom-1_link[data-wf-focus-visible] {
    z-index: 1;
    outline-offset: 4px;
    outline: 2px solid #9b9b9b
}

.fs_selectcustom-1_link.w--current {
    color: #696969;
    background-color: #f0f0f0
}

.fs_selectcustom-1_field {
    margin-bottom: 0;
    display: none
}

.fs_selectcustom-1_list.w--open {
    border: 1px solid #ddd;
    margin-top: 1rem
}

.fs_selectcustom-1_toggle {
    background-color: #f5f5f5;
    padding: .75rem 4rem .75rem 1rem
}

.fs_selectcustom-1_toggle:focus-visible,
.fs_selectcustom-1_toggle[data-wf-focus-visible] {
    outline-offset: 4px;
    outline: 2px solid #9b9b9b
}

.fs_selectcustom-1_dropdown {
    z-index: 99;
    margin-left: 0
}

.fs_selectcustom-1_embed {
    margin-bottom: 0
}

.fs_selectcustom-1_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.error_wrapper {
    grid-column-gap: .5rem;
    color: var(--thunderbird);
    align-items: center;
    display: flex
}

.icon-1x1-small-plus-copy {
    width: 1.5rem;
    height: 1.5rem
}

.form_dropdown {
    align-self: stretch;
    margin-left: 0;
    margin-right: 0
}

.form_dropdown-toggle {
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0 0;
    display: flex;
    position: static
}

.form_dropdown-custom {
    border-style: none none solid;
    border-width: 1px;
    border-color: black black var(--black-pearl);
    color: var(--black-pearl);
    background-color: #0000;
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
    position: static
}

.form_dropdown-custom:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--black-pearl)
}

.form_dropdown-custom.is-text-area {
    min-height: 8rem;
    padding-top: .75rem
}

.form_dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    position: static
}

.dropdown-list {
    z-index: 1
}

.fs_selectcustom-2_message {
    color: var(--accessible-components-dark-grey)
}

.fs_selectcustom-2_link {
    background-color: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding: .75rem 1rem
}

.fs_selectcustom-2_link:hover {
    opacity: .7
}

.fs_selectcustom-2_link:focus-visible,
.fs_selectcustom-2_link[data-wf-focus-visible] {
    z-index: 1;
    outline-offset: 4px;
    outline: 2px solid #9b9b9b
}

.fs_selectcustom-2_link.w--current {
    color: #696969;
    background-color: #f0f0f0
}

.fs_selectcustom-2_field {
    margin-bottom: 0;
    display: none
}

.fs_selectcustom-2_list.w--open {
    border: 1px solid #ddd;
    margin-top: 1rem
}

.fs_selectcustom-2_text {
    color: #575757
}

.fs_selectcustom-2_label {
    margin-right: .5rem;
    font-weight: 500
}

.fs_selectcustom-2_toggle {
    background-color: #f5f5f5;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: .75rem 4rem .75rem 1rem;
    display: flex
}

.fs_selectcustom-2_toggle:focus-visible,
.fs_selectcustom-2_toggle[data-wf-focus-visible] {
    outline-offset: 4px;
    outline: 2px solid #9b9b9b
}

.fs_selectcustom-2_dropdown {
    z-index: 99;
    margin-left: 0
}

.fs_selectcustom-2_embed {
    margin-bottom: 0
}

.fs_selectcustom-2_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.fs_selectcustom-1_message-2 {
    color: var(--accessible-components-dark-grey)
}

.fs_selectcustom-1_link-2 {
    color: var(--black-pearl);
    background-color: #fff;
    border-bottom: 1px #e7e7e7;
    padding: 1rem;
    line-height: 1;
    transition: background-color .2s, color .2s
}

.fs_selectcustom-1_link-2:hover,
.fs_selectcustom-1_link-2:focus {
    background-color: var(--bright-gray);
    border-bottom-style: none
}

.fs_selectcustom-1_link-2:focus-visible,
.fs_selectcustom-1_link-2[data-wf-focus-visible] {
    z-index: 1;
    background-color: var(--bright-gray);
    border-bottom-style: none
}

.fs_selectcustom-1_link-2.w--current {
    color: #696969;
    background-color: #f0f0f0
}

.fs_selectcustom-1_field-2 {
    background-color: var(--bright-gray);
    margin-bottom: 0;
    display: none
}

.fs_selectcustom-1_list-2 {
    background-color: var(--aqua-haze);
    display: none;
    box-shadow: 0 2px 5px #031b1b1a
}

.fs_selectcustom-1_list-2.w--open {
    border: 1px solid #ddd;
    margin-top: 0
}

.fs_selectcustom-1_arrow-2 {
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    inset: auto 0% 1rem auto
}

.fs_selectcustom-1_toggle-2 {
    border-bottom: 1px solid var(--black-pearl);
    padding: .75rem 0;
    display: block
}

.fs_selectcustom-1_toggle-2.error {
    border-bottom-color: var(--thunderbird)
}

.fs_selectcustom-1_dropdown-2 {
    z-index: 99;
    width: 100%;
    margin-left: 0
}

.fs_selectcustom-1_embed-2 {
    margin-bottom: 0
}

.fs_selectcustom-1_component-2 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.form_dropdown-label {
    color: var(--faded-jade);
    font-size: 1.25rem
}

.footer_link:hover {
    color: var(--light-peach)
}

.contact-form_sucess-header {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex
}

.contact-form_trigger {
    display: none
}

.menu-service-arrow {
    opacity: 0;
    flex: none;
    width: 1rem;
    height: 1rem;
    position: absolute;
    inset: .6rem auto auto 0%
}

.contact_link:hover {
    color: var(--light-peach)
}

.error_icon {
    align-self: auto;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    inset: auto 0% 0% auto
}

.form-field-error {
    color: var(--thunderbird);
    padding-top: .5rem;
    font-size: .75rem;
    line-height: 1.4
}

.icon-people {
    align-self: auto;
    width: 1.5rem;
    height: 1.5rem;
    position: relative
}

.no-scroll-transition {
    overflow: visible
}

.menu-logo_color-block {
    z-index: 2;
    background-color: var(--aqua-haze);
    width: 5%;
    height: 100%;
    position: absolute;
    inset: 0% auto 0% 0%
}

.privacy-policy_rt h2 {
    margin-bottom: 2.5rem;
    font-size: 3rem
}

.privacy-policy_rt p {
    margin-bottom: 2.5rem
}

.privacy-policy_rt h3 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem
}

.privacy-policy_rt li {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.4
}

.privacy-policy_rt a {
    color: var(--black-pearl);
    text-decoration: underline
}

.privacy-policy_rt a:hover {
    color: var(--camel)
}

.fs_accordion-1_message {
    color: var(--accessible-components-dark-grey)
}

.fs_accordion-1_paragraph {
    margin-bottom: 0
}

.fs_accordion-1_body {
    background-color: #fff;
    padding: 1rem 1.5rem
}

.fs_accordion-1_content {
    overflow: hidden
}

.fs_accordion-1_icon {
    margin-right: 0;
    font-size: 1.125rem;
    position: relative
}

.fs_accordion-1_label {
    font-size: 1.25rem;
    font-weight: 500
}

.fs_accordion-1_header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    cursor: pointer;
    background-color: #f5f5f5;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    display: flex
}

.fs_accordion-1_header:focus-visible,
.fs_accordion-1_header[data-wf-focus-visible] {
    outline-color: var(--accessible-components-dark-grey);
    outline-offset: 4px;
    outline-width: 2px;
    outline-style: solid
}

.fs_accordion-1_embed {
    margin-bottom: 0
}

.fs_accordion-1_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.accordian_item {
    border-bottom: 1px solid var(--bright-gray);
    overflow: hidden
}

.accordian_header {
    font-family: swear-display, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
    display: inline-block
}

.accoridan_icon {
    align-self: auto;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform .4s cubic-bezier(.215, .61, .355, 1)
}

.accoridan_icon.is-active-accordion {
    color: var(--deep-sea-green);
    transform: rotate(180deg)
}

.accordian_trigger {
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    transition: color .2s;
    display: flex
}

.accordian_trigger.is-active-accordion {
    color: var(--deep-sea-green)
}

.accordian_content {
    padding-bottom: 2.5rem
}

.fs_accordion_message {
    color: var(--accessible-components-dark-grey)
}

.fs_accordion_paragraph {
    margin-bottom: 2.5rem
}

.fs_accordion_content {
    transition: max-height .2s;
    overflow: hidden
}

.fs_accordion_icon {
    margin-right: 0;
    font-size: 1.125rem;
    position: relative
}

.fs_accordion_arrow-wrapper {
    transition: transform .2s
}

.fs_accordion_arrow-wrapper.is-active-accordion {
    transform: rotate(180deg)
}

.fs_accordion_label {
    font-size: 1.25rem;
    font-weight: 500
}

.fs_accordion_header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    cursor: pointer;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    transition: color .2s;
    display: flex
}

.fs_accordion_header:focus-visible,
.fs_accordion_header[data-wf-focus-visible] {
    outline-color: var(--accessible-components-dark-grey);
    outline-offset: 4px;
    outline-width: 2px;
    outline-style: solid
}

.fs_accordion_header.is-active-accordion {
    color: var(--deep-sea-green)
}

.fs_accordion_item {
    border-bottom: 1px solid var(--bright-gray)
}

.fs_accordion_embed {
    margin-bottom: 0
}

.fs_accordion-component {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid
}

.success-message {
    background-color: #0000;
    padding: 0
}

.form_sucess-header {
    text-align: left;
    font-size: 1.75rem
}

.form_paragraph {
    text-align: left
}

.remove-2 {
    z-index: 20;
    padding: 0;
    display: none
}

.transition {
    z-index: 2000;
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0% 0% auto;
    transform: none
}

.transition-trigger {
    z-index: 20;
    padding: 0;
    display: none
}

.transition-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    display: flex;
    position: absolute;
    inset: 0%
}

.transition-bg {
    z-index: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    position: absolute;
    inset: 0%
}

.transition-color {
    background-color: var(--black-pearl);
    width: 100%;
    height: 100%;
    position: relative
}

.transition-color-border {
    background-color: #b798c1;
    width: 100%;
    height: 10px;
    margin-bottom: -8px;
    position: absolute;
    inset: auto 0% 0%
}

.transition-lottie {
    width: 100%;
    margin-bottom: -5px;
    position: relative
}

.transition-logo-img {
    z-index: 2;
    width: 6.5rem;
    position: relative
}

.people_icon {
    align-self: auto;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    inset: auto 0% 0% auto
}

.slide-nav {
    padding-top: 28px;
    font-size: 8px
}

.date-list-item {
    flex-direction: row;
    justify-content: flex-start;
    width: auto;
    display: flex
}

.date-list-wrapper {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.empty-state {
    background-color: #ddd0
}

.container,
.container-2 {
    justify-content: center;
    align-items: center;
    display: flex
}

@media screen and (max-width:991px) {
    .padding-xlarge {
        padding: 3rem
    }

    .margin-xlarge {
        margin: 3rem
    }

    .padding-xhuge {
        padding: 6rem
    }

    .padding-xxhuge {
        padding: 8rem
    }

    .padding-huge {
        padding: 5rem
    }

    .margin-large {
        margin: 2.5rem
    }

    .padding-xxlarge {
        padding: 4rem
    }

    .padding-large {
        padding: 2.5rem
    }

    .margin-huge {
        margin: 5rem
    }

    .padding-medium {
        padding: 1.5rem
    }

    .margin-xxlarge {
        margin: 4rem
    }

    .margin-xhuge {
        margin: 6rem
    }

    .margin-medium {
        margin: 1.5rem
    }

    .margin-xxhuge {
        margin: 8rem
    }

    .margin-horizontal {
        margin-top: 0;
        margin-bottom: 0
    }

    .padding-top {
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }

    .margin-vertical {
        margin-left: 0;
        margin-right: 0
    }

    .margin-bottom {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0
    }

    .padding-left {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0
    }

    .padding-vertical {
        padding-left: 0;
        padding-right: 0
    }

    .padding-horizontal {
        padding-top: 0;
        padding-bottom: 0
    }

    .margin-right {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0
    }

    .margin-top {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0
    }

    .margin-left {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0
    }

    .padding-right {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0
    }

    .padding-bottom {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0
    }

    .form_checkbox-label {
        font-size: 14px
    }

    .icon-1x1-small.menu-service-arrow,
    .hide-tablet {
        display: none
    }

    .fs-styleguide_2-col {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        grid-template-columns: 1fr
    }

    .max-width-full-tablet {
        width: 100%;
        max-width: none
    }

    .fs-styleguide_1-col {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem
    }

    .fs-styleguide_heading-medium {
        font-size: 3rem
    }

    .fs-styleguide_4-col {
        grid-template-columns: 1fr
    }

    .text-size-regular.is-date {
        width: 13rem
    }

    .form_input {
        border-bottom-width: 1px
    }

    .padding-section-large {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .fs-styleguide_3-col {
        grid-template-columns: 1fr
    }

    .fs-styleguide_section {
        grid-column-gap: 2.5rem;
        grid-template-columns: 1fr
    }

    .padding-section-medium {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .text-color-light-peach.break-word {
        word-break: break-all
    }

    .home-hero_content {
        padding-top: 18rem
    }

    .home-hero_subtitle-outer {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: row;
        align-items: flex-start
    }

    .home-hero_heading {
        font-size: 8.4rem
    }

    .grid-2-col {
        grid-row-gap: 3.75rem;
        grid-template-columns: auto;
        grid-auto-columns: 1fr
    }

    .grid-2-col.is-image {
        grid-column-gap: 0rem;
        flex-direction: column-reverse;
        justify-content: flex-end;
        display: flex
    }

    .grid-2-col.is-people-img {
        grid-template-columns: 1fr .75fr
    }

    .grid-2-col.is-experience {
        grid-template-columns: repeat(auto-fit, 80%) 10%
    }

    .grid-2-col._50 {
        grid-template-columns: repeat(auto-fit, 70%) 20%
    }

    .expertise_list {
        grid-row-gap: .5rem
    }

    .expertise_item {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .expertise_text {
        font-size: 1.5rem
    }

    .expertise_text.is-people {
        font-size: 1.25rem
    }

    .team-slider_gradient-overlay {
        display: none
    }

    .team-slider_grid {
        grid-row-gap: 3.75rem;
        grid-template-rows: auto auto;
        grid-template-columns: 100%;
        grid-auto-columns: 1fr
    }

    .jca_content-wrapper {
        grid-row-gap: 2rem
    }

    .footer_top {
        grid-row-gap: 4rem;
        grid-template-rows: auto;
        grid-template-columns: auto 1fr
    }

    .footer_link-outer {
        justify-content: flex-end;
        padding-right: 0
    }

    .footer_link-col {
        grid-row-gap: 2rem
    }

    .nav_anchor-link-wrapper {
        display: none
    }

    .menu_module {
        right: -38rem
    }

    .menu_logo-wordmark {
        display: none
    }

    .menu_list {
        grid-row-gap: .5rem
    }

    .menu_service-item {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .menu_service-text {
        font-size: 1.5rem
    }

    .menu_button {
        display: none
    }

    .menu_component {
        z-index: 100;
        position: relative
    }

    .nav-bottom {
        z-index: 98;
        border-top: 1px solid var(--camel);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background-color: #031b1bbf;
        width: 100%;
        height: 5rem;
        padding-bottom: 0;
        padding-right: 0;
        display: block;
        position: fixed;
        bottom: 0
    }

    .menu_button-mobile {
        z-index: 98;
        border-top: 1px solid var(--camel);
        border-left: 1px solid var(--camel);
        background-color: var(--black-pearl);
        color: var(--camel);
        cursor: pointer;
        justify-content: center;
        align-items: center;
        width: 5rem;
        height: 5rem;
        display: flex;
        position: fixed;
        inset: auto 0% 0% auto
    }

    .anchormenu {
        white-space: nowrap;
        align-items: center;
        height: 100%;
        display: flex;
        overflow: auto
    }

    .anchormenu_item {
        margin-right: 1.5rem;
        font-size: 1.25rem;
        display: inline-block
    }

    .anchormenu_item.is-icon {
        grid-column-gap: .25rem;
        align-items: center;
        display: flex
    }

    .nav-bottom_gradient {
        z-index: 9;
        background-image: linear-gradient(to right, #031b1b00, var(--black-pearl)65%);
        width: 10rem;
        height: 100%;
        position: absolute;
        inset: auto 0% 0% auto
    }

    .nav-bottom_gradient.pointer-events-off {
        background-image: linear-gradient(to right, #031b1b00, var(--black-pearl));
        margin-right: 5rem;
        padding-bottom: 0;
        padding-right: 0
    }

    .anchormenu_list {
        flex-wrap: nowrap;
        flex: none;
        align-self: auto;
        align-items: center;
        height: 100%;
        padding-left: 2.5rem;
        display: flex
    }

    .anchormenu_spacer {
        width: 10rem;
        padding-bottom: 0;
        padding-right: 0
    }

    .hide-desktop {
        display: block
    }

    .practice-area_image-wrapper-mobile {
        width: 100%;
        height: auto;
        margin-top: 2.5rem;
        padding-top: 100%;
        display: block
    }

    .search-cms-wrapper {
        z-index: 1
    }

    .search-icon {
        left: 3%
    }

    .search-input {
        height: 50px
    }

    .why-skarp_image-wrapper {
        width: 70%;
        padding-top: 70%;
        position: relative;
        top: 0
    }

    .section_fullscreen-image {
        height: 30rem
    }

    .spacer-people-content {
        padding-top: 6rem
    }

    .people-experience_content {
        max-width: none
    }

    .join-us_gradient-overlay {
        display: none
    }

    .section_contact {
        height: auto
    }

    .contact-grid {
        grid-template-rows: auto auto;
        grid-template-columns: 100%
    }

    .contact_content {
        padding-bottom: 2.5rem
    }

    .fs_selectcustom-1_toggle-2 {
        border-bottom-width: 1px
    }

    .menu-service-arrow {
        display: none
    }

    .people_icon {
        position: static
    }
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 3rem
    }

    h2 {
        font-size: 2rem
    }

    h3 {
        font-size: 2.25rem
    }

    h4 {
        font-size: 1.75rem
    }

    h5 {
        font-size: 1.5rem
    }

    h6 {
        font-size: .875rem
    }

    .padding-xlarge {
        padding: 2rem
    }

    .margin-xlarge {
        margin: 2rem
    }

    .padding-xhuge {
        padding: 4rem
    }

    .padding-xxhuge {
        padding: 4.5rem
    }

    .padding-huge {
        padding: 3.5rem
    }

    .margin-large {
        margin: 1.5rem
    }

    .padding-xxlarge {
        padding: 3rem
    }

    .padding-large {
        padding: 1.5rem
    }

    .padding-custom1 {
        padding-left: 1.5rem
    }

    .margin-huge {
        margin: 3.5rem
    }

    .padding-medium {
        padding: 1.25rem
    }

    .margin-xxlarge {
        margin: 3rem
    }

    .margin-xhuge {
        margin: 4rem
    }

    .margin-medium {
        margin: 1.25rem
    }

    .margin-xxhuge {
        margin: 4.5rem
    }

    .margin-horizontal {
        margin-top: 0;
        margin-bottom: 0
    }

    .padding-top {
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }

    .margin-vertical {
        margin-left: 0;
        margin-right: 0
    }

    .margin-bottom {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0
    }

    .padding-left {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0
    }

    .padding-vertical {
        padding-left: 0;
        padding-right: 0
    }

    .padding-horizontal {
        padding-top: 0;
        padding-bottom: 0
    }

    .margin-right {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0
    }

    .margin-top {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0
    }

    .margin-left {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0
    }

    .padding-right {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0
    }

    .padding-bottom {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0
    }

    .hide-mobile-landscape {
        display: none
    }

    .fs-styleguide_heading-large {
        font-size: 3rem
    }

    .heading-style-h3 {
        font-size: 2.5rem
    }

    .text-rich-text h2 {
        font-size: 2.25rem
    }

    .heading-style-h1 {
        font-size: 2.5rem
    }

    .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }

    .padding-section-small {
        padding-top: 2.5rem;
        padding-bottom: 5rem
    }

    .fs-styleguide_section-header {
        font-size: .875rem
    }

    .fs-styleguide_heading-medium {
        font-size: 2rem
    }

    .max-width-full-mobile-landscape {
        width: 100%;
        max-width: none
    }

    .text-style-nowrap {
        white-space: normal
    }

    .heading-style-h6 {
        font-size: .75rem
    }

    .padding-section-large {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .text-size-large {
        font-size: 1.25rem
    }

    .heading-style-h2 {
        font-size: 2.25rem
    }

    .fs-styleguide_version {
        font-size: .875rem
    }

    .padding-section-medium {
        padding-top: 5rem;
        padding-bottom: 3rem
    }

    .home-message_component {
        padding: 0
    }

    .home-message_content {
        border-radius: 0
    }

    .heading-style-display {
        font-size: 2.5rem
    }

    .home-hero_subtitle-outer {
        grid-row-gap: .5rem;
        flex-flow: column wrap;
        align-items: flex-start
    }

    .home-hero_heading {
        max-width: 32rem;
        font-size: 5.6rem
    }

    .grid-2-col {
        grid-template-columns: auto
    }

    .grid-2-col._50 {
        grid-template-columns: repeat(auto-fit, 100%)
    }

    .about-us_content,
    .expertise_content {
        max-width: 38rem
    }

    .our-team_content {
        max-width: 38rem;
        padding-right: 1.5rem
    }

    .slider-nav_team-slider {
        padding-right: 0
    }

    .team-slider_grid {
        grid-template-columns: 100%
    }

    .padding-section-hero {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .footer_top {
        grid-template-rows: auto auto;
        grid-template-columns: auto;
        margin-bottom: 5rem
    }

    .footer_link-outer {
        justify-content: flex-start
    }

    .section_nav {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }

    .menu_module {
        width: 100vw;
        padding-left: 1.25rem;
        right: -100vw
    }

    .menu_inner-wrapper {
        overflow: auto
    }

    .menu_logo-wrapper.w--current {
        width: 24rem;
        height: 3.5rem
    }

    .menu_link-wrapper {
        flex: 1;
        margin-top: 4rem
    }

    .menu_link {
        font-size: 2.11765rem
    }

    .menu_service-text {
        font-size: 1.25rem
    }

    .dropdown-trigger {
        grid-column-gap: .5rem
    }

    .menu_dropdown-text {
        font-size: 2.25rem
    }

    .close_button {
        display: none
    }

    .menu_language-wrapper {
        margin-top: 4rem
    }

    .spacer-nav-dropdown {
        padding-top: 2rem
    }

    .menu_link-wrapper-inner {
        grid-row-gap: 2.5rem
    }

    .spacer-menu {
        padding-top: 2rem
    }

    .menu_dropdown-icon {
        width: 2rem;
        height: 2rem
    }

    .nav-bottom {
        overflow: hidden
    }

    .anchormenu {
        overflow: auto
    }

    .anchormenu_list {
        padding-left: 1.25rem
    }

    .practice-area_content {
        max-width: 38rem
    }

    .practice-area_image-wrapper,
    .practice-area_image-wrapper-mobile {
        width: 100%;
        height: auto;
        padding-top: 100%
    }

    .contact-personas_grid {
        grid-row-gap: 2rem;
        grid-template-columns: repeat(auto-fit, 48%);
        grid-auto-columns: auto
    }

    .the-people_grid {
        grid-row-gap: 2rem
    }

    .search-input-wrapper {
        width: 100%;
        margin-bottom: 0
    }

    .search-input {
        width: 100%
    }

    .no-results-content {
        flex-wrap: nowrap
    }

    .hero-search-item {
        width: 100%;
        min-width: auto
    }

    .search-term_wrapper {
        grid-row-gap: .5rem;
        flex-direction: column;
        align-items: flex-start
    }

    .search-result_icon {
        display: none
    }

    .form-block {
        margin-bottom: 0
    }

    .why-skarp_image-wrapper {
        width: 100%;
        height: auto;
        padding-top: 100%
    }

    .section_fullscreen-image {
        height: 24rem
    }

    .people_name_wrapper {
        grid-row-gap: .75rem
    }

    .people_title {
        font-size: 1.5rem
    }

    .section_404 {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }

    .section_contact {
        height: auto
    }

    .privacy-policy_rt h2,
    .privacy-policy_rt p {
        margin-bottom: 2rem
    }
}

@media screen and (max-width:479px) {
    h3 {
        font-size: 2.25rem
    }

    a {
        font-size: 1rem;
        line-height: 1.4
    }

    .padding-custom1 {
        padding-left: 1.25rem
    }

    .margin-horizontal {
        margin-top: 0;
        margin-bottom: 0
    }

    .padding-top {
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }

    .margin-vertical {
        margin-left: 0;
        margin-right: 0
    }

    .margin-bottom {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0
    }

    .padding-left {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0
    }

    .padding-vertical {
        padding-left: 0;
        padding-right: 0
    }

    .padding-horizontal {
        padding-top: 0;
        padding-bottom: 0
    }

    .margin-right {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0
    }

    .margin-top {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0
    }

    .margin-left {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0
    }

    .padding-right {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0
    }

    .padding-bottom {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0
    }

    .form_checkbox-label {
        font-size: 12px
    }

    .heading-style-h3 {
        font-size: 2.25rem
    }

    .text-rich-text h2,
    .text-rich-text h3,
    .text-rich-text h5 {
        font-size: 1.75rem
    }

    .max-width-full-mobile-portrait {
        width: 100%;
        max-width: none
    }

    .hide-mobile-portrait {
        display: none
    }

    .text-size-regular.is-date {
        color: #031b1bbf;
        font-size: 1rem
    }

    .heading-style-h4 {
        font-size: 1.75rem
    }

    .form_input {
        border-bottom-width: 1px;
        border-radius: 0
    }

    .button.is-form-submit {
        border-width: 1px
    }

    .padding-section-medium {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .spacer-medium {
        padding-top: 1.5rem
    }

    .spacer-xhuge {
        padding-top: 6.25rem
    }

    .home-hero_subtitle-outer {
        grid-row-gap: .53rem;
        flex-flow: column;
        align-items: flex-start
    }

    .home-hero_heading {
        max-width: none;
        font-size: 15.5vw
    }

    .loop-button {
        overflow: hidden
    }

    .grid-2-col {
        grid-template-columns: 100%
    }

    .grid-2-col.is-people-img {
        grid-row-gap: 2rem;
        grid-template-columns: 100%
    }

    .grid-2-col.is-experience {
        grid-row-gap: 0rem;
        grid-template-rows: auto auto;
        grid-template-columns: repeat(auto-fit, 100%)
    }

    .expertise_list {
        grid-row-gap: .5rem
    }

    .expertise_item {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .expertise_text {
        font-size: 1.5rem
    }

    .expertise_tag-wrapper {
        width: 100vw;
        margin-bottom: -20px;
        margin-left: -1.25rem;
        padding-bottom: 20px;
        display: flex;
        overflow: auto
    }

    .testamonial_text {
        font-size: 1.5rem
    }

    .testamonial_label {
        font-size: 1.125rem
    }

    .slider-nav_custom {
        max-width: 100%
    }

    .icon-1x1-small-plus {
        padding-top: 0;
        inset: auto 0% 0% auto
    }

    .icon-1x1-small-plus.left {
        inset: auto auto 0% 0%
    }

    .team-slider_component {
        min-height: 27rem
    }

    .team-slider_mask {
        width: 17.25rem;
        min-height: 27rem
    }

    .team-slider_slide {
        width: 17.255rem
    }

    .team-member_item {
        width: 17.25rem
    }

    .team-slider_name {
        font-size: 1.75rem
    }

    .slider-nav_team-slider {
        max-width: 100%;
        padding-right: 0
    }

    .jca_text {
        text-align: left
    }

    .section_footer {
        position: relative
    }

    .footer_top {
        grid-column-gap: 0px;
        grid-row-gap: 2.5rem;
        margin-bottom: 2.5rem
    }

    .footer_logo-wrapper,
    .footer_logo-wrapper.w--current {
        width: 20rem;
        height: 4.5rem
    }

    .footer_link-outer {
        grid-column-gap: 0rem;
        grid-row-gap: 2.5rem;
        flex-direction: column
    }

    .footer_link-col,
    .footer_links {
        grid-row-gap: 1.5rem
    }

    .footer_bottom {
        grid-column-gap: 0rem;
        grid-row-gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start
    }

    .footer_link-small {
        font-size: .875rem
    }

    .footer_copyright-text {
        color: var(--gumbo);
        font-size: 14px
    }

    .home-color-bg {
        background-color: var(--aqua-haze)
    }

    .section_nav {
        padding-top: .875rem;
        padding-bottom: .875rem
    }

    .nav_logo-wrapper,
    .nav_logo-wrapper.w--current {
        display: none
    }

    .menu_module {
        height: 100dvh;
        right: -100vw
    }

    .menu_link-wrapper {
        flex: 1;
        margin-top: 12rem
    }

    .menu_list {
        grid-row-gap: .5rem
    }

    .menu_service-item {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .menu_service-text {
        font-size: 1.25rem
    }

    .close_button {
        z-index: 99;
        right: 1.25rem
    }

    .close_button.menu-toggle {
        opacity: 0;
        display: none
    }

    .menu_language-wrapper {
        margin-top: 4rem
    }

    .nav_logo-wrapper-mobile {
        width: 10.5rem;
        display: block;
        position: relative
    }

    .nav_logo-wrapper-mobile.w--current {
        width: 10.5rem;
        height: 3rem;
        display: block
    }

    .menu_link-wrapper-inner {
        width: 100%
    }

    .nav-bottom {
        height: 3.75rem
    }

    .menu_button-mobile.menu-toggle {
        width: 3.75rem;
        height: 3.75rem
    }

    .anchormenu {
        width: 100vw;
        overflow: auto
    }

    .anchormenu_item {
        white-space: nowrap;
        margin-right: 1rem;
        font-size: 1rem;
        transition: color .2s
    }

    .anchormenu_item.w--current {
        color: var(--light-peach)
    }

    .nav-bottom_gradient.pointer-events-off {
        width: 7.5rem;
        margin-right: 3.75rem
    }

    .anchormenu_spacer {
        width: 7.5rem;
        padding-bottom: 0;
        padding-right: 0
    }

    .small-hero_component {
        padding-top: 15rem;
        padding-bottom: 3rem
    }

    .practice-area_content {
        max-width: 100%
    }

    .practice-area_image-wrapper,
    .practice-area_image-wrapper-mobile {
        width: 100%;
        height: auto;
        padding-top: 100%
    }

    .contact-personas_grid {
        grid-template-columns: repeat(auto-fit, 100%)
    }

    .contact-person_name {
        font-size: 1.75rem;
        font-weight: 400
    }

    .contact-person_link-wrapper {
        margin-top: 1rem
    }

    .keyword-tag {
        white-space: nowrap
    }

    .expertise_tag-list {
        flex-wrap: nowrap;
        width: auto
    }

    .search-form,
    .search-input-wrapper {
        margin-bottom: 0
    }

    .search-icon {
        width: 17px;
        top: 30%;
        left: 3%
    }

    .no-results-content {
        grid-row-gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .hero-search-item {
        width: 100%;
        min-width: auto
    }

    .search-item {
        grid-template-columns: 1fr .75fr;
        padding-top: 12px;
        padding-bottom: 12px
    }

    .prep-time-wrapper,
    .search-content-bottom {
        flex-wrap: wrap
    }

    .search-name {
        font-size: 15px;
        line-height: 1.2
    }

    .search-result_in,
    .search-result_area {
        font-size: .875rem
    }

    .collection-list-wrapper-2 {
        padding-left: 1.25rem
    }

    .spacer-keywords {
        width: 1.25rem;
        padding-bottom: 0;
        padding-right: 0;
        display: block
    }

    .icon_mobile-menu {
        width: 1.75rem;
        height: 1.75rem
    }

    .why-skarp_image-wrapper {
        width: 100%;
        height: auto;
        padding-top: 100%
    }

    .section_fullscreen-image {
        height: 16.25rem
    }

    .padding-section-people {
        padding-top: 7rem;
        padding-bottom: 4rem
    }

    .people_name_wrapper {
        grid-row-gap: .754rem
    }

    .people_title {
        font-size: 1.25rem
    }

    .people_contact-wrapper,
    .people_contact-wrapper.hide-mobile-portrait {
        display: none
    }

    .people_contact-link.mobile {
        color: var(--black-pearl)
    }

    .people_content-bottom {
        display: none
    }

    .white-bg-block {
        height: 40%
    }

    .spacer-people-content {
        display: none
    }

    .people-experience_content {
        max-width: 100%
    }

    .people_contact-wrapper-mobile {
        grid-row-gap: .75rem;
        display: flex
    }

    .people_contact-wrapper-mobile.hide-mobile-portrait {
        display: none
    }

    .people_bio-mobile {
        display: block
    }

    .section_contact {
        height: auto
    }

    .contact-form_outer {
        padding: 1.75rem 1.25rem
    }

    .fs_selectcustom-2_toggle {
        padding-right: 3rem
    }

    .fs_selectcustom-1_toggle-2 {
        border-bottom-width: 1px
    }

    .contact-form_p {
        font-size: 1rem
    }

    .contact_link {
        font-size: 1.25rem
    }

    .error_icon {
        padding-top: 0;
        inset: auto 0% 0% auto
    }

    .error_icon.left {
        inset: auto auto 0% 0%
    }

    .icon-people {
        padding-top: 0;
        inset: auto 0% 0% auto
    }

    .icon-people.left {
        inset: auto auto 0% 0%
    }

    .privacy-policy_rt h2 {
        margin-bottom: 2rem;
        font-size: 2.25rem
    }

    .privacy-policy_rt p {
        margin-bottom: 2rem
    }

    .privacy-policy_rt h3 {
        margin-bottom: 1.5rem;
        font-size: 1.75rem
    }

    .accoridan_icon {
        padding-top: 0;
        inset: auto 0% 0% auto
    }

    .accoridan_icon.left {
        inset: auto auto 0% 0%
    }

    .fs_accordion_header {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .people_icon {
        padding-top: 0;
        inset: auto 0% 0% auto
    }

    .people_icon.left {
        inset: auto auto 0% 0%
    }

    .date-list-item {
        flex-direction: column
    }

    .date-list-wrapper {
        grid-row-gap: .75rem
    }
}

#w-node-fe74df56-3685-8de0-2338-dfff06318d96-e2823a38,
#w-node-a30d4ff3-9dad-1eec-9864-82d545aeff09-e2823a38 {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-f72aed19-da0a-c198-2099-0bc5e08a25ba-e2823a38 {
    grid-area: span 1/span 1/span 1/span 1;
    justify-self: auto
}

#w-node-_9828f03b-9b2a-ce2f-742b-71d71cea13e1-e2823a38,
#w-node-ce178a82-e964-29c6-667f-fb1f962a21da-e2823a38,
#w-node-_33b9bc2f-28e5-6886-d6fd-b0057bed4e3f-e2823a38,
#w-node-_065d8857-d1ee-0009-6247-5386b4f5a31f-b4f5a318,
#w-node-_3a694d6e-d9f4-16c3-a1d9-380f16c9794a-16c97945,
#w-node-_3a694d6e-d9f4-16c3-a1d9-380f16c97969-16c97945,
#w-node-_3a694d6e-d9f4-16c3-a1d9-380f16c97987-16c97945,
#w-node-fe74df56-3685-8de0-2338-dfff06318d96-e634efab,
#w-node-a30d4ff3-9dad-1eec-9864-82d545aeff09-e634efab {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-f72aed19-da0a-c198-2099-0bc5e08a25ba-e634efab {
    grid-area: span 1/span 1/span 1/span 1;
    justify-self: auto
}

#w-node-_9828f03b-9b2a-ce2f-742b-71d71cea13e1-e634efab,
#w-node-ce178a82-e964-29c6-667f-fb1f962a21da-e634efab,
#w-node-_33b9bc2f-28e5-6886-d6fd-b0057bed4e3f-e634efab,
#w-node-_90a7adef-8fc2-b83a-e692-93f911527fd8-11527fd1,
#w-node-fe334e24-1558-2c6f-fb38-cde9bc7293f4-bc7293ef,
#w-node-fe334e24-1558-2c6f-fb38-cde9bc729413-bc7293ef,
#w-node-fe334e24-1558-2c6f-fb38-cde9bc729431-bc7293ef {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_7422d839-7ec0-6dd5-77af-69d95b1f03bf-dbeadf9d {
    grid-area: span 1/span 1/span 1/span 1;
    align-self: stretch
}

#w-node-_29004c71-59cb-c0f2-6c5a-faa87a7be0c2-dbeadf9d,
#w-node-e209b42f-1ad4-14e2-9f9c-076c108cd4ee-dbeadf9d,
#w-node-_46650539-5db2-f560-02b2-684f98aaf3b5-dbeadf9d,
#w-node-cab807c6-6155-fc85-1a6a-ce67d68941ec-8445f196,
#w-node-_92fb58fc-e89a-ca59-acb4-0e506fc5c122-8445f196,
#w-node-_9cb61b22-6773-4295-f955-eed23ac7e4cf-8445f196,
#w-node-_9cb61b22-6773-4295-f955-eed23ac7e4d3-8445f196,
#w-node-_91c76b04-806f-9d15-a923-73b67e847a64-977b63a3,
#w-node-_6e10be39-bc19-d60d-e76e-9f3fd43826b8-977b63a3,
#w-node-_1bfea52d-4c32-2321-2d65-63c4fd01b7f9-8b1f564a,
#w-node-_1bfea52d-4c32-2321-2d65-63c4fd01b802-8b1f564a,
#w-node-_344a23a2-adea-4d4f-cd37-97fffd88f545-8b1f564a,
#w-node-_9c6f3078-96b0-449e-1031-de6ee83b5dc1-8b1f564a,
#w-node-_5da6b940-66ac-0a74-3438-0d9b3d11caec-8b1f564a,
#w-node-a9d85159-36fb-6a4c-a13d-2196732c50db-090825a6,
#w-node-_8fb760ef-8bda-d52c-2a5f-4a52a6dfec65-519dfe41,
#w-node-e1053086-f71b-fb71-cb40-009e15894e17-519dfe41 {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_97147712-20d6-bdd8-fc46-1bd9e75f415d-52d7e21c {
    grid-area: span 1/span 1/span 1/span 1;
    align-self: stretch
}

#w-node-_97147712-20d6-bdd8-fc46-1bd9e75f416c-52d7e21c,
#w-node-_97147712-20d6-bdd8-fc46-1bd9e75f4173-52d7e21c,
#w-node-_97147712-20d6-bdd8-fc46-1bd9e75f4187-52d7e21c,
#w-node-_41305066-3b3a-2180-b0cd-3becd2e36ee6-539609ec,
#w-node-_41305066-3b3a-2180-b0cd-3becd2e36f02-539609ec,
#w-node-_41305066-3b3a-2180-b0cd-3becd2e36f4f-539609ec,
#w-node-_41305066-3b3a-2180-b0cd-3becd2e36f53-539609ec,
#w-node-a9d85159-36fb-6a4c-a13d-2196732c50db-d35e6fd3,
#w-node-_8fb760ef-8bda-d52c-2a5f-4a52a6dfec65-12f17fac,
#w-node-e1053086-f71b-fb71-cb40-009e15894e17-12f17fac,
#w-node-_1bfea52d-4c32-2321-2d65-63c4fd01b7f9-c957e889,
#w-node-_1bfea52d-4c32-2321-2d65-63c4fd01b802-c957e889,
#w-node-_344a23a2-adea-4d4f-cd37-97fffd88f545-c957e889,
#w-node-_9c6f3078-96b0-449e-1031-de6ee83b5dc1-c957e889,
#w-node-_5da6b940-66ac-0a74-3438-0d9b3d11caec-c957e889,
#w-node-dff7c4bb-bfbc-7cc6-ffcc-36e7993a9bc6-3be493ec,
#w-node-_91c76b04-806f-9d15-a923-73b67e847a64-0f214080,
#w-node-_6e10be39-bc19-d60d-e76e-9f3fd43826b8-0f214080 {
    grid-area: span 1/span 1/span 1/span 1
}

@media screen and (max-width:991px) {

    #w-node-_33b9bc2f-28e5-6886-d6fd-b0057bed4e3f-e2823a38,
    #w-node-_33b9bc2f-28e5-6886-d6fd-b0057bed4e3f-e634efab {
        grid-area: span 1/span 1/span 1/span 1
    }
}

@media screen and (max-width:479px) {

    #w-node-_46650539-5db2-f560-02b2-684f98aaf3b5-dbeadf9d,
    #w-node-cab807c6-6155-fc85-1a6a-ce67d68941ec-8445f196,
    #w-node-_97147712-20d6-bdd8-fc46-1bd9e75f4187-52d7e21c,
    #w-node-_41305066-3b3a-2180-b0cd-3becd2e36ee6-539609ec {
        grid-area: span 1/span 1/span 1/span 1
    }
}

/* Gardenia custom team slider track */
.team-slider_component[data-team-slider] .team-slider_mask {
    width: 100%;
    min-height: 0;
    overflow: hidden;
}

.team-slider_component[data-team-slider] .team-slider_track {
    display: flex;
    transition: transform .5s ease;
    cursor: grab;
    touch-action: pan-y;
}

.team-slider_component[data-team-slider] .team-slider_track.is-dragging {
    cursor: grabbing;
}

.team-slider_component[data-team-slider] .team-slider_slide {
    flex: 0 0 auto;
}

.team-slider_component[data-team-slider] .team-member_item .team-slider_tag {
    transform: translate3d(0, 4rem, 0);
    transition: transform .35s cubic-bezier(.25, .46, .45, .94);
}

.team-slider_component[data-team-slider] .team-member_item:hover .team-slider_tag {
    transform: translate3d(0, 0, 0);
}

.team-slider_component[data-services-slider] .team-slider_mask {
    width: 100%;
    min-height: 0;
    overflow: hidden;
}

.team-slider_component[data-services-slider] .team-slider_track {
    display: flex;
    transition: transform .5s ease;
    cursor: grab;
    touch-action: pan-y;
}

.team-slider_component[data-services-slider] .team-slider_track.is-dragging {
    cursor: grabbing;
}

.team-slider_component[data-services-slider] .service-slide {
    min-width: 75%;
    margin-right: 2rem;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .35s ease;
}

.team-slider_component[data-services-slider] .service-slide:hover {
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
}

.team-slider_component[data-services-slider] .service-slide_image-wrap {
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
}

.team-slider_component[data-services-slider] .service-slide_image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border: 0;
    border-radius: 12px;
    transition: transform .5s ease;
}

.team-slider_component[data-services-slider] .service-slide:hover .service-slide_image {
    transform: scale(1.05);
}

.team-slider_component[data-services-slider] .service-slide_content {
    padding: 0;
    line-height: normal;
    background: transparent;
}

.team-slider_component[data-services-slider] .service-slide_title {
    margin: 0 0 .5rem;
    font-size: 1.75rem;
    color: #031b1b;
    transition: color .3s ease;
}

.team-slider_component[data-services-slider] .service-slide:hover .service-slide_title {
    color: #0a5a5c;
}

.team-slider_component[data-services-slider] .service-slide_text {
    margin: 0;
    color: #5e6767;
    font-size: 1.25rem;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .team-slider_component[data-services-slider] .service-slide {
        min-width: 100%;
        margin-right: 0;
    }

    .team-slider_component[data-services-slider] .service-slide_image {
        height: 230px;
    }
}

@media screen and (min-width: 992px) {
    #home_our-services .team-slider_grid,
    #home_our-team .team-slider_grid,
    #about-our-services .team-slider_grid,
    #about-experts-team .team-slider_grid {
        grid-template-columns: minmax(0, 34rem) minmax(0, 1fr);
        place-content: start;
        justify-content: start;
        grid-column-gap: 1.25rem;
    }

    #home_our-services .our-team_content,
    #home_our-team .our-team_content,
    #about-our-services .our-team_content,
    #about-experts-team .our-team_content {
        max-width: 34rem;
        padding-right: 0.5rem;
    }

    #home_our-services .team-slider_component,
    #home_our-team .team-slider_component,
    #about-our-services .team-slider_component,
    #about-experts-team .team-slider_component {
        width: 100%;
        max-width: none;
    }
}

/* Legal modal (Terms & Privacy) */
body.legal-modal-open {
    overflow: hidden;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.legal-modal[hidden] {
    display: none !important;
}

.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 27, 27, 0.72);
}

.legal-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(52rem, 100%);
    max-height: min(88vh, 52rem);
    overflow: auto;
    background: #f4f7f7;
    border-radius: 1rem;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 1.5rem 3rem rgba(3, 27, 27, 0.22);
}

.legal-modal__close {
    position: sticky;
    top: 0;
    float: right;
    margin: -0.5rem -0.25rem 0.5rem 1rem;
    border: 0;
    background: transparent;
    color: #031b1b;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal__body {
    clear: both;
}

@media screen and (max-width: 767px) {
    .legal-modal {
        padding: 0.75rem;
    }

    .legal-modal__dialog {
        max-height: 92vh;
        padding: 1.25rem 1rem 1rem;
        border-radius: 0.75rem;
    }
}

/* Gardenia brand — gold-on-black logo */
.menu_logo-symbol,
.menu-logo_color-block {
    display: none !important;
}

.menu_logo-wordmark {
    z-index: 3;
}