:root,
[data-bs-theme="light"] {
  --primary: #141414;
  --secondary: #f4f4f4;
  --success: #30e60b;
  --danger: #b32318;
  --light: #fff;
  --dark: #000;
  --primary-rgb: 20, 20, 20;
  --secondary-rgb: 244, 244, 244;
  --success-rgb: 48, 230, 11;
  --danger-rgb: 179, 35, 24;
  --light-rgb: 255, 255, 255;
  --dark-rgb: 0, 0, 0;
  --primary-text-emphasis: #080808;
  --secondary-text-emphasis: #626262;
  --success-text-emphasis: #135c04;
  --info-text-emphasis: #055160;
  --warning-text-emphasis: #664d03;
  --danger-text-emphasis: #480e0a;
  --light-text-emphasis: #495057;
  --dark-text-emphasis: #495057;
  --primary-bg-subtle: #d0d0d0;
  --secondary-bg-subtle: #fdfdfd;
  --success-bg-subtle: #d6face;
  --info-bg-subtle: #cff4fc;
  --warning-bg-subtle: #fff3cd;
  --danger-bg-subtle: #f0d3d1;
  --light-bg-subtle: #fcfcfd;
  --dark-bg-subtle: #ced4da;
  --primary-border-subtle: #a1a1a1;
  --secondary-border-subtle: #fbfbfb;
  --success-border-subtle: #acf59d;
  --info-border-subtle: #9eeaf9;
  --warning-border-subtle: #ffe69c;
  --danger-border-subtle: #e1a7a3;
  --light-border-subtle: #e9ecef;
  --dark-border-subtle: #adb5bd;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --font-ui-sans-serif: "DM Sans", sans-serif;
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --gradient: linear-gradient(180deg,
      hsla(0, 0%, 100%, 0.15),
      hsla(0, 0%, 100%, 0));
  --body-font-family: var(--font-ui-sans-serif);
  --body-font-size: 1rem;
  --body-font-weight: 300;
  --body-line-height: 1.5;
  --body-color: #212529;
  --body-color-rgb: 33, 37, 41;
  --body-bg: #fff;
  --body-bg-rgb: 255, 255, 255;
  --emphasis-color: #000;
  --emphasis-color-rgb: 0, 0, 0;
  --secondary-color: rgba(33, 37, 41, 0.75);
  --secondary-color-rgb: 33, 37, 41;
  --secondary-bg: #e9ecef;
  --secondary-bg-rgb: 233, 236, 239;
  --tertiary-color: rgba(33, 37, 41, 0.5);
  --tertiary-color-rgb: 33, 37, 41;
  --tertiary-bg: #f8f9fa;
  --tertiary-bg-rgb: 248, 249, 250;
  --heading-color: inherit;
  --link-color: #141414;
  --link-color-rgb: 20, 20, 20;
  --link-decoration: underline;
  --link-hover-color: #101010;
  --link-hover-color-rgb: 16, 16, 16;
  --code-color: #d63384;
  --highlight-color: #212529;
  --highlight-bg: #fff3cd;
  --border-width: 1px;
  --border-style: solid;
  --border-color: #dee2e6;
  --border-color-translucent: rgba(0, 0, 0, 0.175);
  --border-radius: 3px;
  --border-radius-sm: 2px;
  --border-radius-lg: 4px;
  --border-radius-xl: 6px;
  --border-radius-xxl: 2rem;
  --border-radius-2xl: var(--border-radius-xxl);
  --border-radius-pill: 50rem;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --focus-ring-inline-size: 0.25rem;
  --focus-ring-opacity: 0.25;
  --focus-ring-color: hsla(0, 0%, 8%, 0.25);
  --form-valid-color: #30e60b;
  --form-valid-border-color: #30e60b;
  --form-invalid-color: #b32318;
  --form-invalid-border-color: #b32318;
}

:root,
[data-theme*="light"] {
  --primary: #141414;
  --secondary: #f4f4f4;
  --success: #30e60b;
  --danger: #b32318;
  --light: #fff;
  --dark: #000;
  --primary-hover: #434343;
  --primary-active: #5b5b5b;
  --secondary-hover: #f0f1f3;
  --secondary-active: #ebecf0;
  --tertiary: #f6f6f9;
  --tertiary-hover: #f8f9fb;
  --tertiary-active: #f4f5f7;
  --tertiary-border: #dfe3eb;
  --disable-text: #a5adba;
  --disable-bg: #f5f6f7;
  --input-text: #4c4c4c;
  --input-hover-bg: #fafbfc;
  --input-focus-shadow: #4c9aff;
  --input-active: #7a869a;
  --input-disable-border: #dfe3eb;
  --avatar-remaining-bg: #dfe1e6;
  --nav-btn-link-hover: #deebff;
  --body-color: #000;
  --link-hover-color: #434343;
  --link-color: #141414;
  --border-color: #dfe3eb;
  --check-icon-color: #a11d2b;
  --grey-primary: #e8e8e8;
  --grey-secondary: #b9b9b9;
  --grey-tertiary: #707070;
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1600px;
}

* {
    scroll-behavior: smooth
}

*,
:after,
:before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  text-align: var(--body-text-align);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--border-width) solid;
  opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading-color);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ul.inside {
  list-style-position: inside;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ul {
  margin: 0;
  padding: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 600;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.6111111111rem;
}

mark {
  padding: 0.1875em;
  color: var(--highlight-color);
  background-color: var(--highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--link-color-rgb), var(--link-opacity, 1));
  text-decoration: underline;
}

a:hover {
  --link-color-rgb: var(--link-hover-color-rgb);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.6111111111rem;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.6111111111rem;
  color: var(--code-color);
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.6111111111rem;
  color: var(--body-bg);
  background-color: var(--body-color);
  border-radius: 2px;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

img {
  max-inline-size: 100%;
  block-size: auto;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  text-box: trim-both cap alphabetic;
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  inline-size: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  block-size: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  inline-size: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-inline-size: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-inline-size: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-inline-size: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-inline-size: 80%;
  }
}

@media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-inline-size: 1467px;
  }
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1600px;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}

.row>* {
  flex-shrink: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0;
}

.row-cols-auto>* {
  flex: 0 0 auto;
  inline-size: auto;
}

.row-cols-1>* {
  flex: 0 0 auto;
  inline-size: 100%;
}

.row-cols-2>* {
  flex: 0 0 auto;
  inline-size: 50%;
}

.row-cols-3>* {
  flex: 0 0 auto;
  inline-size: 33.33333333%;
}

.row-cols-4>* {
  flex: 0 0 auto;
  inline-size: 25%;
}

.row-cols-5>* {
  flex: 0 0 auto;
  inline-size: 20%;
}

.row-cols-6>* {
  flex: 0 0 auto;
  inline-size: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  inline-size: auto;
}

.col-1 {
  flex: 0 0 auto;
  inline-size: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  inline-size: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  inline-size: 25%;
}

.col-4 {
  flex: 0 0 auto;
  inline-size: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  inline-size: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  inline-size: 50%;
}

.col-7 {
  flex: 0 0 auto;
  inline-size: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  inline-size: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  inline-size: 75%;
}

.col-10 {
  flex: 0 0 auto;
  inline-size: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  inline-size: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  inline-size: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 10px;
}

.g-1,
.gy-1 {
  --gutter-y: 10px;
}

.g-2,
.gx-2 {
  --gutter-x: 20px;
}

.g-2,
.gy-2 {
  --gutter-y: 20px;
}

.g-3,
.gx-3 {
  --gutter-x: 30px;
}

.g-3,
.gy-3 {
  --gutter-y: 30px;
}

.g-4,
.gx-4 {
  --gutter-x: 40px;
}

.g-4,
.gy-4 {
  --gutter-y: 40px;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --gutter-x: 5.5556rem;
}

.g-6,
.gy-6 {
  --gutter-y: 5.5556rem;
}

.g-7,
.gx-7 {
  --gutter-x: 16.7778rem;
}

.g-7,
.gy-7 {
  --gutter-y: 16.7778rem;
}

.g-8,
.gx-8 {
  --gutter-x: 80px;
}

.g-8,
.gy-8 {
  --gutter-y: 80px;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0;
  }

  .row-cols-sm-auto>* {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .row-cols-sm-1>* {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .row-cols-sm-2>* {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .row-cols-sm-3>* {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .row-cols-sm-4>* {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .row-cols-sm-5>* {
    flex: 0 0 auto;
    inline-size: 20%;
  }

  .row-cols-sm-6>* {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    inline-size: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    inline-size: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    inline-size: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    inline-size: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    inline-size: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    inline-size: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    inline-size: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --gutter-x: 10px;
  }

  .g-sm-1,
  .gy-sm-1 {
    --gutter-y: 10px;
  }

  .g-sm-2,
  .gx-sm-2 {
    --gutter-x: 20px;
  }

  .g-sm-2,
  .gy-sm-2 {
    --gutter-y: 20px;
  }

  .g-sm-3,
  .gx-sm-3 {
    --gutter-x: 30px;
  }

  .g-sm-3,
  .gy-sm-3 {
    --gutter-y: 30px;
  }

  .g-sm-4,
  .gx-sm-4 {
    --gutter-x: 40px;
  }

  .g-sm-4,
  .gy-sm-4 {
    --gutter-y: 40px;
  }

  .g-sm-5,
  .gx-sm-5 {
    --gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --gutter-y: 3rem;
  }

  .g-sm-6,
  .gx-sm-6 {
    --gutter-x: 5.5556rem;
  }

  .g-sm-6,
  .gy-sm-6 {
    --gutter-y: 5.5556rem;
  }

  .g-sm-7,
  .gx-sm-7 {
    --gutter-x: 16.7778rem;
  }

  .g-sm-7,
  .gy-sm-7 {
    --gutter-y: 16.7778rem;
  }

  .g-sm-8,
  .gx-sm-8 {
    --gutter-x: 80px;
  }

  .g-sm-8,
  .gy-sm-8 {
    --gutter-y: 80px;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0;
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    inline-size: 20%;
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    inline-size: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    inline-size: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    inline-size: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    inline-size: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    inline-size: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    inline-size: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    inline-size: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --gutter-x: 10px;
  }

  .g-md-1,
  .gy-md-1 {
    --gutter-y: 10px;
  }

  .g-md-2,
  .gx-md-2 {
    --gutter-x: 20px;
  }

  .g-md-2,
  .gy-md-2 {
    --gutter-y: 20px;
  }

  .g-md-3,
  .gx-md-3 {
    --gutter-x: 30px;
  }

  .g-md-3,
  .gy-md-3 {
    --gutter-y: 30px;
  }

  .g-md-4,
  .gx-md-4 {
    --gutter-x: 40px;
  }

  .g-md-4,
  .gy-md-4 {
    --gutter-y: 40px;
  }

  .g-md-5,
  .gx-md-5 {
    --gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --gutter-y: 3rem;
  }

  .g-md-6,
  .gx-md-6 {
    --gutter-x: 5.5556rem;
  }

  .g-md-6,
  .gy-md-6 {
    --gutter-y: 5.5556rem;
  }

  .g-md-7,
  .gx-md-7 {
    --gutter-x: 16.7778rem;
  }

  .g-md-7,
  .gy-md-7 {
    --gutter-y: 16.7778rem;
  }

  .g-md-8,
  .gx-md-8 {
    --gutter-x: 80px;
  }

  .g-md-8,
  .gy-md-8 {
    --gutter-y: 80px;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0;
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    inline-size: 20%;
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    inline-size: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    inline-size: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    inline-size: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    inline-size: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    inline-size: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    inline-size: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    inline-size: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --gutter-x: 10px;
  }

  .g-lg-1,
  .gy-lg-1 {
    --gutter-y: 10px;
  }

  .g-lg-2,
  .gx-lg-2 {
    --gutter-x: 20px;
  }

  .g-lg-2,
  .gy-lg-2 {
    --gutter-y: 20px;
  }

  .g-lg-3,
  .gx-lg-3 {
    --gutter-x: 30px;
  }

  .g-lg-3,
  .gy-lg-3 {
    --gutter-y: 30px;
  }

  .g-lg-4,
  .gx-lg-4 {
    --gutter-x: 40px;
  }

  .g-lg-4,
  .gy-lg-4 {
    --gutter-y: 40px;
  }

  .g-lg-5,
  .gx-lg-5 {
    --gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --gutter-y: 3rem;
  }

  .g-lg-6,
  .gx-lg-6 {
    --gutter-x: 5.5556rem;
  }

  .g-lg-6,
  .gy-lg-6 {
    --gutter-y: 5.5556rem;
  }

  .g-lg-7,
  .gx-lg-7 {
    --gutter-x: 16.7778rem;
  }

  .g-lg-7,
  .gy-lg-7 {
    --gutter-y: 16.7778rem;
  }

  .g-lg-8,
  .gx-lg-8 {
    --gutter-x: 80px;
  }

  .g-lg-8,
  .gy-lg-8 {
    --gutter-y: 80px;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0;
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    inline-size: 20%;
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    inline-size: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    inline-size: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    inline-size: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    inline-size: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    inline-size: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    inline-size: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    inline-size: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --gutter-x: 10px;
  }

  .g-xl-1,
  .gy-xl-1 {
    --gutter-y: 10px;
  }

  .g-xl-2,
  .gx-xl-2 {
    --gutter-x: 20px;
  }

  .g-xl-2,
  .gy-xl-2 {
    --gutter-y: 20px;
  }

  .g-xl-3,
  .gx-xl-3 {
    --gutter-x: 30px;
  }

  .g-xl-3,
  .gy-xl-3 {
    --gutter-y: 30px;
  }

  .g-xl-4,
  .gx-xl-4 {
    --gutter-x: 40px;
  }

  .g-xl-4,
  .gy-xl-4 {
    --gutter-y: 40px;
  }

  .g-xl-5,
  .gx-xl-5 {
    --gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --gutter-y: 3rem;
  }

  .g-xl-6,
  .gx-xl-6 {
    --gutter-x: 5.5556rem;
  }

  .g-xl-6,
  .gy-xl-6 {
    --gutter-y: 5.5556rem;
  }

  .g-xl-7,
  .gx-xl-7 {
    --gutter-x: 16.7778rem;
  }

  .g-xl-7,
  .gy-xl-7 {
    --gutter-y: 16.7778rem;
  }

  .g-xl-8,
  .gx-xl-8 {
    --gutter-x: 80px;
  }

  .g-xl-8,
  .gy-xl-8 {
    --gutter-y: 80px;
  }
}

@media (min-width: 1600px) {
  .col-xxl {
    flex: 1 0;
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    inline-size: 20%;
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    inline-size: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    inline-size: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    inline-size: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    inline-size: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    inline-size: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    inline-size: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    inline-size: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    inline-size: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    inline-size: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    inline-size: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    inline-size: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    inline-size: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    inline-size: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --gutter-x: 10px;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --gutter-y: 10px;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --gutter-x: 20px;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --gutter-y: 20px;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --gutter-x: 30px;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --gutter-y: 30px;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --gutter-x: 40px;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --gutter-y: 40px;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --gutter-y: 3rem;
  }

  .g-xxl-6,
  .gx-xxl-6 {
    --gutter-x: 5.5556rem;
  }

  .g-xxl-6,
  .gy-xxl-6 {
    --gutter-y: 5.5556rem;
  }

  .g-xxl-7,
  .gx-xxl-7 {
    --gutter-x: 16.7778rem;
  }

  .g-xxl-7,
  .gy-xxl-7 {
    --gutter-y: 16.7778rem;
  }

  .g-xxl-8,
  .gx-xxl-8 {
    --gutter-x: 80px;
  }

  .g-xxl-8,
  .gy-xxl-8 {
    --gutter-y: 80px;
  }
}

.footer_footer {
  --padding-top: 60px;
  --padding-bottom: 60px;
  color: var(--light);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  overflow: hidden;
}

.bg-dark {
  --bg-opacity: 1;
  background-color: rgba(var(--dark-rgb), var(--bg-opacity)) !important;
}

@media (min-width: 768px) {
  .footer_footer {
    --padding-top: 60px;
    --padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .footer_footer {
    --padding-top: 80px;
    --padding-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .footer_footer {
    --padding-top: 140px;
    --padding-bottom: 80px;
  }
}

.footer_footer .footer_footer_inner {
  inline-size: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ttl-80 {
  font-size: 2rem;
}

@media screen and (min-width: 992px) {
  .ttl-80 {
    font-size: 2.7777777778rem;
  }
}

@media screen and (min-width: 1200px) {
  .ttl-80 {
    font-size: 3.3333333333rem;
  }
}

.fw-regular {
  font-weight: 400 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.ttl-28 {
  font-size: 1.3333333333rem;
}

@media screen and (min-width: 992px) {
  .ttl-28 {
    font-size: 1.3888888889rem;
  }
}

.f-secondary {
  font-family: var(--wac-body-font-family-secondary) !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.items-start {
  align-items: flex-start !important;
}

.d-flex {
  display: flex !important;
}

a:hover {
  color: var(--btn-color);
}

.footer_footer .footer_quick_links {
  --padding-top: 0;
  --padding-bottom: 33px;
  inline-size: 100%;
  position: relative;
  padding-bottom: var(--padding-bottom);
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links {
    --padding-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .footer_footer .footer_quick_links {
    --padding-bottom: 80px;
  }
}

.footer_footer .footer_quick_links .footer_quick_link_items {
  position: relative;
  max-inline-size: 45.9444rem;
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link {
    inline-size: 100%;
    display: flex;
    flex-direction: column;
  }
}

.footer_footer .footer_quick_links .footer_quick_link_items div:first-child {
  max-inline-size: 50%;
}

.footer_footer .footer_quick_links .footer_quick_link_items div:nth-child(2) {
  max-inline-size: 50%;
}

.footer_footer .footer_quick_links .footer_quick_link_items div:nth-child(3) {
  margin-top: 17px;
}

.footer_footer .footer_quick_links .footer_quick_link_items div:nth-child(3) .footer_quick_links_inner {
  max-inline-size: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links .footer_quick_link_items div:nth-child(3) {
    max-inline-size: 277px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links .footer_quick_link_items div:nth-child(3) .footer_quick_links_inner {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links .footer_quick_link_items div:first-child {
    max-inline-size: 237px;
  }
}

.footer_quick_links_inner {
  inline-size: 100%;
  position: relative;
  max-inline-size: 100% !important;
}

.fs-18 {
  font-size: 0.8888888889rem;
}

@media screen and (min-width: 1200px) {
  .fs-18 {
    font-size: 1rem;
  }
}

.mb-1 {
  margin-bottom: 10px !important;
}

@media (min-width: 992px) {
  .mb-lg-2 {
    margin-bottom: 20px !important;
  }
}

.footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link_title {
  line-height: 1;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

ul li {
  list-style: none;
}

.lh-primary {
  line-height: 1.67 !important;
}

.footer_footer .footer_quick_links .footer_quick_link_items ul li {
  margin: 0 0 0.32rem;
  letter-spacing: 0.0167rem;
}

@media (min-width: 768px) {
  .footer_footer .footer_quick_links .footer_quick_link_items ul li {
    margin: 0 0 0.4444rem;
    letter-spacing: 0.0167rem;
  }
}

.footer_footer .footer_quick_links .footer_quick_link_items ul li a,
.footer_footer .footer_quick_links .footer_quick_link_items ul li button {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: opacity 0.3s ease-in-out;
}

.footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link ul li a,
.footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link ul li button {
  font-size: 0.8888888889rem;
}

@media (min-width: 768px) {

  .footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link ul li a,
  .footer_footer .footer_quick_links .footer_quick_link_items .footer_quick_link ul li button {
    font-size: 1rem;
  }
}

.footer_enq_section {
  --border: 1px solid #1a1919;
  inline-size: 100%;
  margin-top: -1px;
  padding-top: 27px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .footer_enq_section {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .footer_enq_section {
    --border: none;
  }
}

.mb-2 {
  margin-bottom: 20px !important;
}

.footer_enq_section dd,
.footer_enq_section dt {
  font-size: 0.8888888889rem;
}

@media (min-width: 768px) {

  .footer_enq_section dd,
  .footer_enq_section dt {
    font-size: 1rem;
  }
}

.footer_enq_section .footer_quick_link_wrapper dt {
  display: flex;
  align-items: center;
  font-size: 0.6666666667rem;
}

@media screen and (min-width: 338px) {
  .footer_enq_section .footer_quick_link_wrapper dt {
    font-size: 0.7777777778rem;
  }
}

@media screen and (min-width: 380px) {
  .footer_enq_section .footer_quick_link_wrapper dt {
    font-size: 0.8888888889rem;
  }
}

.footer_enq_section dd,
.footer_enq_section dt {
  font-size: 0.8888888889rem;
}

@media (min-width: 768px) {

  .footer_enq_section dd,
  .footer_enq_section dt {
    font-size: 1rem;
  }
}

.footer_enq_section .footer_quick_link_wrapper dd {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.footer_enq_section .footer_quick_link_wrapper dd {
  text-wrap: nowrap;
}

.footer_enq_section dd span,
.footer_enq_section dt span {
  display: inline-block;
  margin-left: -1.1111111111rem;
  margin-right: 0.5555555556rem;
}

.footer_link {
  inline-size: auto;
  color: inherit;
  text-decoration: none;
}

.footer_enq_section a {
  transition: opacity 0.3s ease-in-out;
}

.footer_footer .footer_quick_links .footer_quick_link_items ul li button {
  background-color: transparent;
  border: none;
  text-align: left;
  padding: 0;
  font-weight: 300;
}

.footer_footer .footer_quick_links .footer_quick_link_items ul li a:hover,
.footer_footer .footer_quick_links .footer_quick_link_items ul li button:hover {
  opacity: 0.5;
}

.footer_copyright_details {
  inline-size: 100%;
  position: relative;
}

.footer_copyright_details .row>div {
  display: flex;
  align-items: center;
  font-weight: 300;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer_copyright_details .row>div {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .me-md-4 {
    margin-right: 40px !important;
  }
}

.footer_copy_right_wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer_copy_right_wrapper {
    flex-direction: row;
  }
}

.footer_copy_right_wrapper p {
  text-align: center;
  inline-size: 100%;
}

@media (min-width: 768px) {
  .footer_copy_right_wrapper p {
    inline-size: auto;
    text-align: left;
  }
}

.footer_copyright_details .footer_copyright_text,
.footer_copyright_details .footer_link {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  font-size: 0.8888888889rem;
}

@media (min-width: 768px) {

  .footer_copyright_details .footer_copyright_text,
  .footer_copyright_details .footer_link {
    font-size: 0.8888888889rem;
  }
}

.footer_copy_right_wrapper p:first-child {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .footer_copy_right_wrapper p:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .ms-md-4 {
    margin-left: 40px !important;
  }
}

.footer_copyright_details .footer_divider {
  display: inline-block;
  margin: 0 6px 0 5px;
  opacity: 0.2;
}

.footer_copyright_details .footer_divider:last-child {
    display: none
}

.w-auto {
  inline-size: auto !important;
}

.footer_social_media_wrapper {
  margin: 0 auto 30px;
}

@media (min-width: 992px) {
  .footer_social_media_wrapper {
    margin: 0;
  }
}

.p-0 {
  padding: 0 !important;
}

.footer_social_media_wrapper li {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.footer_social_media_wrapper li:first-child~li {
  margin-left: 1.6666666667rem;
}

@media (min-width: 768px) {
  .footer_social_media_wrapper li:first-child~li {
    margin-left: 2.2222222222rem;
  }
}

a:hover {
  --link-color-rgb: var(--link-hover-color-rgb);
}

.footer_copyright_details .row {
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .footer_copyright_details .row {
    flex-direction: row;
  }
}

@media screen and (max-inline-size: 576px) {
  .footer_social_media_wrapper {
    transform: scale(0.85);
  }
}

.performanceMarketingForm_section {
  background-color: var(--section-bg, #f6f6f9);
  --padding-top: 45px;
  --padding-bottom: 50px;
  padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
  .performanceMarketingForm_section {
    --padding-top: 65px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .performanceMarketingForm_section {
    --padding-top: 100px;
    --padding-bottom: 110px;
  }
}

.container {
  --gutter-x: 2.7rem;
}

@media (min-width: 768px) {
  .container {
    --gutter-x: 1.5rem;
  }
}

@media (min-width: 992px) {
  .performanceMarketingForm_leftcol {
    inline-size: 602px;
    max-inline-size: 100%;
  }
}

@media (min-width: 1200px) {
  .performanceMarketingForm_leftcol {
    max-inline-size: 90%;
  }
}

.ttl-55 {
  font-size: 1.6666666667rem;
}

@media screen and (min-width: 992px) {
  .ttl-55 {
    font-size: 2.1111111111rem;
  }
}

@media screen and (min-width: 1200px) {
  .ttl-55 {
    font-size: 2.6666666667rem;
  }
}

@media (min-width: 992px) {
  .performanceMarketingForm_title {
    max-inline-size: 85%;
    inline-size: 500px;
  }
}

@media (min-width: 1200px) {
  .performanceMarketingForm_title {
    max-inline-size: 95%;
  }
}

.performanceMarketingForm_leftcol>p {
  margin-bottom: 2.2222222222rem;
  font-size: 0.8888888889rem;
}

@media (min-width: 992px) {
  .performanceMarketingForm_leftcol>p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .performanceMarketingForm_leftcol>p {
    max-inline-size: 565px;
  }
}

.mt-4 {
    margin-top: 40px !important;
}

@media (min-width: 992px) {
  .mb-lg-4 {
    margin-bottom: 40px !important;
  }
}

.performanceMarketingForm_form_container {
  inline-size: 100%;
}

@media (min-width: 992px) {
  .performanceMarketingForm_form_container {
    max-inline-size: 40.3333333333rem;
    margin-left: auto;
    padding-right: 1.9444444444rem;
  }
}

.performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper {
  inline-size: 100%;
  margin-bottom: 1.7222222222rem;
}

@media (min-width: 992px) {
  .performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper {
    margin-bottom: 2.2222222222rem;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-label {
  font-size: 0.8888888889rem;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0.5555555556rem;
}

.performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper .form-label {
  font-weight: 500;
}

.form-control {
  display: block;
  padding: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--wac-tertiary-border);
  border-radius: var(--border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control {
  --form-color: var(--primary);
  --form-color-placeholder: #959697;
  --form-bg: transparent;
  --form-line-height: 1;
  --form-hover-bg: var(--light);
  --form-hover-text: var(--primary);
  --form-active-bg: var(--light);
  --form-active-text: var(--primary);
  --form-border-color: #b8bbc3;
  --form-border-color-hover: var(--primary);
  --form-border: 1px solid var(--form-border-color);
  --form-padding-y: 1.0555555556rem;
  --form-padding-x: 0.9444444444rem;
  --form-gutter: 1.2222222222rem;
  --form-error: var(--danger);
  color: var(--form-color);
  border: var(--form-border);
  /* border-bottom: 1px solid var(--dark); */
  font-size: 0.8888888889rem;
  background-color: var(--form-bg);
  padding: var(--form-padding-y) var(--form-padding-x);
  line-height: var(--form-line-height);
  inline-size: 100%;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  text-decoration: none;
  resize: vertical;
  min-block-size: var(--form-control-block-size, 3.3333333333rem);
  border-radius: 12px;
}

.form-control {
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease;
}

input.form-control {
  text-transform: capitalize;
}

.performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper .form-control {
  min-block-size: 3.0555555556rem;
  --form-bg: #fff;
}

.form-control:focus {
  color: #000;
  background-color: #fff;
  border-color: #8a8a8a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem hsla(0, 0%, 8%, 0.25);
}

.form-control:focus,
.form-control:focus-visible {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid var(--dark);
  
}

.performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper .form-control {
  min-block-size: 3.0555555556rem;
  --form-bg: #fff;
}

.customPhoneNumberInput_mobile_wrapper .special-label {
  display: none;
}

.react-tel-input .invalid-number-message,
.react-tel-input .special-label {
  position: absolute;
  z-index: 1;
  font-size: 13px;
  left: 46px;
  top: -8px;
  background: #fff;
  padding: 0 2px;
}

.react-tel-input .special-label {
  display: none;
  white-space: nowrap;
}

textarea.form-control {
  min-block-size: calc(1em + 16px + calc(1px * 2));
}

@media (min-width: 992px) {
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
}

.performanceMarketingForm_form_container .performanceMarketingForm_form_wrapper textarea.form-control {
  min-block-size: 7.3972222222rem;
}

.text-end {
  text-align: right !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.w-100 {
  inline-size: 100% !important;
}

.justify-center {
  justify-content: center !important;
}

@media (min-width: 576px) {
  .w-sm-auto {
    inline-size: auto !important;
  }
}

.textArea_label_length {
  font-size: 12px;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0.5555555556rem;
}

.btn {
  --btn-color: var(--primary);
  --btn-bg: transparent;
  --btn-line-height: 1;
  --btn-hover-bg: var(--light);
  --btn-hover-text: var(--primary);
  --btn-active-bg: var(--light);
  --btn-active-text: var(--primary);
  --btn-border-color: var(--primary);
  --btn-border-color-hover: var(--primary);
  --btn-border: none;
  --btn-padding-y: 0;
  --btn-padding-x: 0;
  --btn-gutter: 0.7222222222rem;
  --btn-transform: translate(0px) rotate(0deg);
  color: var(--btn-color);
  border: var(--btn-border);
  border-radius: 12px;
  font-size: 1rem;
  background-color: var(--btn-bg);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  line-height: var(--btn-line-height);
  inline-size: auto;
  transition: color 98ms ease-in-out, background-color 0.12s ease-in-out,
    transform 98ms ease-in-out !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: pre;
}

@media (min-width: 992px) {
  .btn {
    --btn-gutter: 1.1111111111rem;
  }
}

.arw-btn {
  background: black;
  color: white;
  padding: 2ch 3ch;
  text-box: cap alphabetic;
  border: none;
  
  position: relative;
  
  &::before {
    --vibrance: 50%;
    content: " ";
    position: absolute;
    inset: 10px 10px -10px;
    background: linear-gradient(to right in oklch longer hue, oklch(95% var(--vibrance) 0) 0 100%);
    filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
  }
}



button,
select {
  text-transform: none;
}

.btn {
  position: relative;
}

.btn.btn-primary {
  --btn-border: 1px solid var(--btn-border-color);
  --btn-padding-y: 0.95rem;
  --btn-padding-x: 2.0555555556rem;
  --btn-color: var(--primary);
  --btn-hover-bg: var(--primary);
  --btn-hover-text: var(--light);
  --btn-active-bg: var(--light);
}

@media (min-width: 992px) {
  .btn.btn-primary {
    --btn-padding-y: 1.0555555556rem;
  }
}

.pricingItem_item__V_cKe .pricingItem_btn_wrapper__3ohfi a {
  inline-size: 100%;
  --btn-bg: var(--price-btn-color-bg, transparent);
  --btn-border-color: var(--price-btn-color-bg, var(--primary));
  --btn-color: var(--price-btn-color, var(--primary));
}

@media (min-width: 768px) {
  .btn.btn-primary.turn_primary {
    --btn-border-color: var(--primary);
    --btn-bg: transparent;
    --btn-color: var(--dark);
    --btn-hover-bg: var(--dark);
    --btn-hover-text: var(--light);
  }
}

.btn.btn-primary.fill {
  --btn-border-color: var(--primary);
  --btn-bg: var(--primary);
  --btn-color: var(--light);
  --btn-hover-bg: transparent;
  --btn-hover-text: var(--primary);
}

@media (hover: hover) {
  .btn:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-border-color-hover);
    --btn-transform: translate(5px);
  }
}

@media (hover: hover) {
  .btn:hover {
    --ripple-color: var(--btn-hover-text);
  }
}

@media (hover: hover) {
  .btn.btn-primary:hover {
    --btn-transform: translate(3px) rotate(0deg);
  }
}

.workBenifits_section {
  --padding-top: 45px;
  --padding-bottom: 50px;
  padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
  .workBenifits_section {
    --padding-top: 65px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .workBenifits_section {
    --padding-top: 100px;
    --padding-bottom: 110px;
  }
}

@media (min-width: 992px) {
  .workBenifits_section_head_col .workBenifits_section_head {
    max-inline-size: calc(var(--head-inline-size, 800) * 1px);
  }
}

@media (min-width: 992px) {
  .mb-lg-3 {
    margin-bottom: 30px !important;
  }
}

.mb-3 {
  margin-bottom: 30px !important;
}

@media (min-width: 1200px) {
  .mb-xl-5 {
    margin-bottom: 50px !important;
  }
}

@media (min-width: 1200px) {
  .workBenifits_section_head_cnt {
    max-inline-size: 92%;
  }
}

.workBenifits_section .workBenifits_row {
  --gutter-y: 45px;
}

@media (min-width: 768px) {
  .workBenifits_section .workBenifits_row {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
}

@media (min-width: 1200px) {
  .workBenifits_section .workBenifits_row {
    --gutter-x: 60px;
    --gutter-y: 30px;
  }
}

.simpleCard_simpleCard .simpleCard_description {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .simpleCard_simpleCard .simpleCard_description {
    margin-top: 20px;
  }
}

.elementor-widget-container {
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
}

.elementor-element:not(:has(.elementor-widget-container)) {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.wcf__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition: all .3s;
}

.wcf__btn a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  fill: #444;
  color: #444;
  padding: 0 0 5px 0;
}

.wcf__btn a {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #FFF;
}

.wcf__btn svg {
  inline-size: 1em;
  block-size: 1em;
}

.wcf__btn.icon-position-after svg {
  order: 15;
}

.wcf__btn a svg {
  font-size: 10px;
}

@media (min-width: 992px) {
  .simpleCard_icon+.simpleCard_contentWrapper h3 {
    font-size: 1.3333333333rem;
  }
}

.simpleCard_simpleCard {
  block-size: 100%;
}

.simpleCard_simpleCard.simpleCard_bordered {
  padding: 0 0 1.6666666667rem;
  border-bottom: 1px solid #636363;
}

@media (min-width: 768px) {
  .simpleCard_simpleCard.simpleCard_bordered {
    border-bottom: 2px solid #636363;
  }
}

@media (min-width: 992px) {
  .simpleCard_simpleCard.simpleCard_bordered {
    background-color: transparent;
    padding: 1.9444444444rem 0 1.7777777778rem;
    border-bottom: 2px solid var(--dark);
    border-image-slice: 1;
  border-image-source: conic-gradient(
    hsl(100 100% 60%),
    hsl(200 100% 60%),
    hsl(100 100% 60%)
  );
  }
}

.text-center {
    text-align: center !important;
}

.ServiceListing_btn_wrap {
    margin-top: 2.7777777778rem;
}

@media (min-width: 992px) {
    .ServiceListing_btn_wrap {
        margin-top: 3.3333333333rem;
    }
}









/* Our Process */

.accordionWithStickyImage_section__ycxPR {
    --color: var(--primary);
    --bg-color: var(--light);
    inline-size: 100%;
    position: relative;
    --padding-top: 45px;
    --padding-bottom: 50px;
    padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
    .accordionWithStickyImage_section__ycxPR {
        --padding-top: 65px;
        --padding-bottom: 70px;
    }
}

@media (min-width: 1200px) {
    .accordionWithStickyImage_section__ycxPR {
        --padding-top: 100px;
        --padding-bottom: 110px;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_inner___CoYu {
    inline-size: 100%;
    position: relative;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_heading__pMcMM {
    inline-size: 100%;
    margin-bottom: .5555555556rem;
}

@media (min-width: 768px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_heading__pMcMM {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_heading__pMcMM {
        margin-bottom: .5555555556rem;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN {
    inline-size: 100%;
    display: flex;
    flex-wrap: wrap;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_image_wrapper__M_7ip {
    inline-size: 100%;
    max-inline-size: 100%;
    margin-top: 2.2222222222rem;
    block-size: max-content;
    overflow: hidden;
    display: none;
}

@media (min-width: 768px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_image_wrapper__M_7ip {
        max-inline-size: 17.7777777778rem;
        position: -webkit-sticky;
        position: sticky;
        top: 115px;
        display: flex;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_image_wrapper__M_7ip .accordionWithStickyImage_image_inner_track__VaDhI {
    inline-size: 100%;
    display: flex
;
    transition: all .8s cubic-bezier(.63,.02,.32,1.05);
}

.clip-inset {
    -webkit-clip-path: inset(0 0 0 0) !important;
    clip-path: inset(0 0 0 0) !important;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_image_wrapper__M_7ip .accordionWithStickyImage_image_inner__BMb17 {
    inline-size: 100%;
    position: relative;
    flex: 0 0 auto;
    line-height: 0;
    overflow: hidden;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_image_wrapper__M_7ip .accordionWithStickyImage_image_inner__BMb17 video {
    position: absolute;
    top: 0;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    left: 0;
    transform: scale(1.02);
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM {
    inline-size: 100%;
    max-inline-size: 100%;
}

@media (min-width: 768px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM {
        max-inline-size: calc(100% - 17.7777777778rem);
        padding-left: 2.7777777778rem;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-item {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: .5555555556rem;
}

@media (min-width: 992px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-item {
        padding-bottom: .9444444444rem;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-item:first-child {
    border-top: 0;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-button {
    inline-size: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
    padding: 20px 40px 10px 0;
    display: flex
;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: inherit;
}

@media (min-width: 992px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-button {
        font-weight: 400;
        padding: 32px 40px 15px 0;
        font-size: 1.3888888889rem;
    }
}

@media (min-width: 1200px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-button {
        font-size: 1.7777777778rem;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-button:not(.collapsed) span {
    --dark: #013ad6;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-item .hover {
    transition: transform .3s ease-in-out;
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD {
    --icon: 0.8333333333rem;
    inline-size: var(--icon);
    block-size: var(--icon);
    position: absolute;
    right: .2222222222rem;
    top: 27px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD {
        top: 1.56rem;
    }
}

@media (min-width: 992px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD {
        --icon: 1.2222222222rem;
        right: .2222222222rem;
        top: 2.4444444444rem;
    }
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD:after, .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD:before {
    content: "";
    inline-size: 100%;
    block-size: .1111111111rem;
    background-color: var(--dark);
    display: block;
    position: absolute;
}

.accordion-item[open] summary .accordionWithStickyImage_icon__UBhGD:before {
    transform: rotate(0deg);
    transition: all .3s ease-in;
}

.accordionWithStickyImage_section__ycxPR .collapsed .accordionWithStickyImage_icon__UBhGD:before {
    transform: rotate(-90deg);
}

.accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD:after, .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_icon__UBhGD:before {
    content: "";
    inline-size: 100%;
    block-size: .1111111111rem;
    background-color: var(--dark);
    display: block;
    position: absolute;
}

@media (min-width: 576px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-body {
        padding: 0 0 10px;
    }
}

@media (min-width: 992px) {
    .accordionWithStickyImage_section__ycxPR .accordionWithStickyImage_content_wrapper__dFVkN .accordionWithStickyImage_accordion_main_wrapper__UjLIM .accordion-body {
        padding: 0 0 15px;
    }
}

.accordionWithStickyImage_content__FXDXm {
    font-size: 16px;
    margin-bottom: .4444444444rem;
    text-underline-position: under;
}

@media (min-width: 992px) {
    .accordionWithStickyImage_content__FXDXm {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .accordionWithStickyImage_content__FXDXm {
        font-size: 1rem;
    }
}






.experienceGlobe_section1 .experienceGlobe_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 61.7777777778rem;
  margin-left: auto;
  margin-right: auto;
}

.experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content {
  position: relative;
}

@media (min-width: 768px) {
  .experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2.7777777778rem;
  }
}

.gradient-title1 {
  background: linear-gradient(90deg, #ee66ad 1.02%, #fff 38.02%, #758ef8 81.02%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-title2 {
  background: linear-gradient(to right, #38f5f7, #9cc7f1, #7597f9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 992px) {
  .experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content {
    margin-bottom: 4.4444444444rem;
  }
}

.experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content .experienceGlobe_title {
  width: 100%;
  font-size: 50px;
}

.experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content .experienceGlobe_description {
  width: 100%;
  max-width: 51.6666666667rem;
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .experienceGlobe_section1 .experienceGlobe_inner .experienceGlobe_content .experienceGlobe_description {
    font-size: 1.3333333333rem;
  }
}

.experienceGlobe_anim_in {
  will-change: transform;
}

.experienceGlobe_section1 .experienceGlobe_list {
  position: relative;
  --gutter-x: 3.3333333333rem;
  --gutter-y: 40px;
}

@media (min-width: 768px) {
  .experienceGlobe_section1 .experienceGlobe_list {
    --gutter-y: 0px;
  }
}

@media (min-width: 1200px) {
  .experienceGlobe_section1 .experienceGlobe_list {
    --gutter-x: 8.3333333333rem;
  }
}

@media (min-width: 768px) {
  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.experienceGlobe_item .experienceGlobe_sub_title {
  font-weight: 400;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .experienceGlobe_item .experienceGlobe_sub_title {
    font-weight: 500;
    font-size: 4.4444444444rem;
  }
}

.experienceGlobe_item .experienceGlobe_sub_description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 230px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .experienceGlobe_item .experienceGlobe_sub_description {
    font-weight: 400;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .experienceGlobe_item .experienceGlobe_sub_description {
    font-size: 1rem;
  }
}



/* Insights */

.BlogInsights_section {
  overflow: hidden;
  --padding-top: 45px;
  --padding-bottom: 50px;
  padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
  .BlogInsights_section {
    --padding-top: 65px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .BlogInsights_section {
    --padding-top: 100px;
    --padding-bottom: 110px;
  }
}

.BlogInsights_heading {
  position: relative;
}

@media (min-width: 768px) {
  .mb-md-2 {
    margin-bottom: 20px !important;
  }
}

@media (min-width: 992px) {
  .mb-lg-3 {
    margin-bottom: 30px !important;
  }
}

@media (min-width: 1200px) {
  .mb-xl-4 {
    margin-bottom: 40px !important;
  }
}

.BlogInsights_heading {
  position: relative;
}

.swiper-wrapper {
  position: relative;
  inline-size: 100%;
  block-size: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  inline-size: 100%;
  block-size: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  inline-size: 378.667px;
  margin-right: 30px;
}

.blogItemCard_item_wrapper {
  inline-size: 100%;
  position: relative;
}

.blogItemCard_item_wrapper .blogItemCard_card,
.blogItemCard_item_wrapper .blogItemCard_link {
  inline-size: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  text-align: left;
}

.blogItemCard_item_wrapper .blogItemCard_image_wrapper {
  inline-size: 100%;
  position: relative;
  margin-bottom: 1.1111111111rem;
  overflow: hidden;
}

.blogItemCard_item_wrapper .blogItemCard_image_wrapper img {
  object-fit: cover;
  transition: transform 0.24s ease-in-out;
  transform: scale(1.02);
  z-index: 2;
  will-change: transform;
}

.blogItemCard_item_wrapper .blogItemCard_image_wrapper:after {
  content: "";
  padding-bottom: 56%;
  position: relative;
  inline-size: 100%;
  display: block;
  background-color: var(--secondary);
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper {
  inline-size: 100%;
}

.blogItemCard_item_wrapper .blogItemCard_details {
  inline-size: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6666666667rem;
  color: #000;
}

label {
  display: inline-block;
}

.fw-regular {
  font-weight: 400 !important;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_category {
  inline-size: auto;
  font-size: 0.7777777778rem;
  line-height: 1;
  margin-bottom: 0;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_category span {
  display: inline-block;
  color: #6b6b6b;
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_date_wrapper {
  font-size: 0.7777777778rem;
  line-height: 1;
  margin-bottom: 0;
  color: #6b6b6b;
}

.fw-medium {
  font-weight: 500 !important;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_title {
  inline-size: 100%;
  font-size: 1.1111111111rem;
  line-height: 1.57;
  margin-bottom: 1rem;
  color: var(--dark);
}

@media (min-width: 992px) {
  .blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_title {
    font-size: 1.3333333333rem;
    margin-bottom: 1.1111111111rem;
  }
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_title a {
  text-decoration: none;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_title a:before {
  content: "";
  display: block;
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.serviceBlogInsights_btn_wrapper {
    margin-top: 2.7777777778rem;
}

@media (min-width: 992px) {
    .serviceBlogInsights_btn_wrapper {
        margin-top: 2.7777777778rem;
    }
}

/* Plan & Pricing */

.bg_light {
  background-color: var(--light) !important;
}

.pricing_section__nwReX {
  --padding-top: 2.7777777778rem;
  --padding-bottom: 2.7777777778rem;
  --color: var(--primary);
  --bg-color: var(--light);
  inline-size: 100%;
  position: relative;
  padding: var(--padding-top) 0 var(--padding-bottom);
  overflow: hidden;
}

@media (min-width: 992px) {
  .pricing_section__nwReX {
    --padding-top: 6.6666666667rem;
    --padding-bottom: 6.6666666667rem;
  }
}

.pricingItem_item__V_cKe {
  inline-size: 100%;
  position: relative;
  border: var(--border-size, 1px) solid var(--border-color, #dadce0);
  border-top: 4px solid var(--border-color, #000);
  padding: 2.0555555556rem 1.3888888889rem 1.6666666667rem;
  color: var(--price-color, --dark);
  block-size: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .pricingItem_item__V_cKe {
    padding: 1.6666666667rem 1.3888888889rem;
  }
}

@media (min-width: 1200px) {
  .pricingItem_item__V_cKe {
    padding: 2.7777777778rem 2.6111111111rem;
  }
}

.pricing_section__nwReX .pricing_heading__eMxls {
  inline-size: 100%;
  position: relative;
  margin-bottom: 1.9444444444rem;
}

@media (min-width: 992px) {
  .pricing_section__nwReX .pricing_heading__eMxls {
    margin-bottom: 3.5555555556rem;
  }
}

.pricing_section__nwReX .pricing_list__qWUNs {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing_section__nwReX .pricing_list__qWUNs .pricing_list_main_wrapper__ea8Ad {
  inline-size: auto;
}

@media (min-width: 992px) {
  .pricing_section__nwReX .pricing_list__qWUNs .pricing_list_main_wrapper__ea8Ad {
    inline-size: 100%;
  }
}

.pricing_section__nwReX .row {
  --gutter-x: 0rem;
  flex-wrap: nowrap;
}

@media (min-width: 992px) {
  .pricing_section__nwReX .row {
    --gutter-x: 1.1111111111rem;
    --gutter-y: 0;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  .pricing_section__nwReX .row {
    --gutter-x: 2.5rem;
  }
}

.pricingItem_item__V_cKe .pricingItem_title__2TNkg {
  inline-size: 100%;
  position: relative;
  margin-bottom: 1.8888888889rem;
  color: var(--price-btn-color-bg, var(--dark));
}

.ttl-50 {
  font-size: 1.6666666667rem;
}

@media screen and (min-width: 992px) {
  .ttl-50 {
    font-size: 1.8888888889rem;
  }
}

@media screen and (min-width: 1200px) {
  .ttl-50 {
    font-size: 2.5555555556rem;
  }
}

.pricingItem_item__V_cKe .pricingItem_title_sub__FzqtG {
  inline-size: 100%;
  font-size: 1rem;
  margin-bottom: 1.5555555556rem;
  color: var(--price-btn-color-bg, var(--dark));
}

.pricingItem_item__V_cKe .pricingItem_list__v73bT {
  inline-size: 100%;
  position: relative;
  padding: 0;
  margin: 0 0 1.8333333333rem;
}

.pricingItem_item__V_cKe .pricingItem_list__v73bT li {
  padding-left: 2.3333333333rem;
  margin-bottom: 1rem;
  position: relative;
}

.pricingItem_item__V_cKe .pricingItem_list__v73bT li p {
  color: var(--price-color, #4d5562);
}

.pricingItem_item__V_cKe .pricingItem_description__Ngemd {
  inline-size: 100%;
  margin-bottom: 0;
  color: var(--price-color, #4d5562);
}

.pricingItem_item__V_cKe .pricingItem_list__v73bT li:after {
  inline-size: 13px;
  block-size: 7px;
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--price-color, #05a247);
  border-left: 2px solid var(--price-color, #05a247);
  left: 0;
  top: -0.2222222222rem;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.pricingItem_item__V_cKe .pricingItem_btn_wrapper__3ohfi {
  inline-size: 100%;
  position: relative;
  padding-top: 2.1111111111rem;
  margin-top: auto;
}

.pricingItem_item__V_cKe.pricingItem_premium__0ltWo {
  --border-color: #7373e6 !important;
  --price-color: #3838ba !important;
  --price-btn-color: var(--light) !important;
  --price-btn-color-bg: #3838ba !important;
  --border-size: 0.1111111111rem !important;
}


/* FAQ */

.faq_faq_wrapper__On_Zb {
  --color: var(--primary);
  --bg-color: var(--light);
  inline-size: 100%;
  position: relative;
  --padding-top: 45px;
  --padding-bottom: 50px;
  padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
  .faq_faq_wrapper__On_Zb {
    --padding-top: 65px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .faq_faq_wrapper__On_Zb {
    --padding-top: 100px;
    --padding-bottom: 110px;
  }
}

.no-bg+.no-bg {
  padding-top: 0 !important;
}

.faq_faq_wrapper__On_Zb .faq_heading_wrapper__vWPE0 {
  inline-size: 100%;
  position: relative;
}

.faq_faq_wrapper__On_Zb .faq_heading_wrapper__vWPE0 .faq_title__diryH {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .faq_faq_wrapper__On_Zb .faq_heading_wrapper__vWPE0 .faq_title__diryH {
    margin-bottom: 0.5555555556rem;
  }
}

@media (min-width: 992px) {
  .faq_faq_wrapper__On_Zb .faq_heading_wrapper__vWPE0 .faq_title__diryH {
    margin-bottom: 0.8333333333rem;
  }
}

.faq_accordion_main__XvJkb,
.faq_accordion_main__XvJkb .faq_accordion__oDbvz {
  inline-size: 100%;
  position: relative;
}

.faq_accordion_main__XvJkb .faq_accordion_wrapper__1Tik9 {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 1.1111111111rem;
}

.faq_accordion_main__XvJkb .faq_accordion_wrapper__1Tik9:after {
  border-bottom: 1px solid #000;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  inline-size: 100%;
}

@media (min-width: 992px) {
  .faq_accordion_main__XvJkb .faq_accordion_wrapper__1Tik9:after {
    border-bottom: 1px solid #000;
  }
}

.faq_accordion_main__XvJkb .faq_accordion__oDbvz .faq_accordion_header__L3TcW {
  inline-size: 100%;
}

.faq_accordion_main__XvJkb .faq_accordion__oDbvz .faq_accordion_header__L3TcW {
  inline-size: 100%;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark);
  padding: 0.8888888889rem 26px 0 0;
}

@media (min-width: 992px) {
  .faq_accordion_main__XvJkb .faq_accordion__oDbvz .faq_accordion_header__L3TcW {
    padding-bottom: 0.5555555556rem;
    padding-top: 1.7777777778rem;
    padding-right: 2.2222222222rem;
  }
}

@media (min-width: 1200px) {
  .faq_accordion_main__XvJkb .faq_accordion__oDbvz .faq_accordion_header__L3TcW:hover {
    color: #013ad6;
  }
}

.faq_accordion_main__XvJkb .faq_accordion__oDbvz .faq_accordion_header__L3TcW .faq_title_wrapper__LEJMu {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

details summary::marker {
  content: none;
}

.fw-medium {
  font-weight: 500 !important;
}

.faq_sub_title__7VfuZ {
  line-height: 1.56;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .faq_sub_title__7VfuZ {
    font-size: 1.1111111111rem;
  }
}

@media (min-width: 1200px) {
  .faq_sub_title__7VfuZ {
    font-size: 1.3333333333rem;
  }
}

.faq_accordion_main__XvJkb .faq_icon__Qb39s {
  inline-size: 0.8333333333rem;
  block-size: 0.8333333333rem;
  position: absolute;
  right: 0;
  top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .faq_accordion_main__XvJkb .faq_icon__Qb39s {
    top: 1.8rem;
  }
}

@media (min-width: 992px) {
  .faq_accordion_main__XvJkb .faq_icon__Qb39s {
    inline-size: 1.3888888889rem;
    block-size: 1.3888888889rem;
    right: 0;
    top: 2rem;
  }
}

.faq_accordion_main__XvJkb .faq_icon__Qb39s:after,
.faq_accordion_main__XvJkb .faq_icon__Qb39s:before {
  content: "";
  inline-size: 100%;
  block-size: 0.1111111111rem;
  background-color: var(--dark);
  opacity: 0.8;
  display: block;
  position: absolute;
}

.faq_accordion_main__XvJkb .faq_icon__Qb39s:before {
  transform: rotate(-90deg);
}

details[open] summary .faq_icon__Qb39s:before {
  transform: rotate(0deg);
  transition: all 0.3s ease-in;
}

.faq_accordion_body__B7fYe {
  inline-size: 100%;
  margin-top: 15px;
}

@media (min-width: 992px) {
  .faq_accordion_body__B7fYe {
    margin-top: 0;
  }
}

/* Terms and Conditions */

.legalPage_policy_wrapper__Rm5a0 {
  inline-size: 100%;
  position: relative;
  --padding-top: 60px;
  --padding-bottom: 70px;
  padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 768px) {
  .legalPage_policy_wrapper__Rm5a0 {
    --padding-top: 70px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .legalPage_policy_wrapper__Rm5a0 {
    --padding-top: 100px;
    --padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .legalPage_policy_wrapper__Rm5a0 {
    --padding-top: 150px;
    --padding-bottom: 110px;
  }
}

.mt-5 {
  margin-top: 50px !important;
}

@media (min-width: 992px) {
  .ms-lg-auto {
    margin-left: auto !important;
  }
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe {
  inline-size: 100%;
  font-size: 0.8888888889rem;
  line-height: 1.75;
}

@media (min-width: 992px) {
  .legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe {
    inline-size: 74.3%;
    font-size: 1rem;
  }
}

.legalPage_content_wrapper__UxuSe>* {
  inline-size: 100%;
  position: relative;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe .legalPage_heading__GK3AU {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.legalPage_content_wrapper__UxuSe h1 {
  font-size: 1.6666666667rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .legalPage_content_wrapper__UxuSe h1 {
    font-size: 1.9444444444rem;
  }
}

@media (min-width: 992px) {
  .legalPage_content_wrapper__UxuSe h1 {
    font-size: 2.1111111111rem;
  }
}

@media (min-width: 1200px) {
  .legalPage_content_wrapper__UxuSe h1 {
    font-size: 2.2222222222rem;
  }
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe h1.legalPage_title__mYgie {
  font-size: 40px;
}

@media (min-width: 992px) {
  .legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe h1.legalPage_title__mYgie {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe h1.legalPage_title__mYgie {
    font-size: 3.5555555556rem;
  }
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_main_wrapper__12yEi {
  inline-size: 100%;
  display: flex;
  flex-wrap: wrap;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt {
  inline-size: 100%;
  display: none;
}

@media (min-width: 992px) {
  .legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt {
    inline-size: 25.7%;
    display: flex;
    padding-top: 25px;
  }
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt ul {
  padding: 0;
  margin: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 6.1111111111rem;
  block-size: max-content;
}

.toc {
  scroll-target-group: auto;
}

.toc a:target-current {
  color: black;
    text-shadow: 0 0 0.35px black, 0 0 0.35px black;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt ul li {
  list-style: none;
  margin-bottom: 0.6111111111rem;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt ul li .legalPage_links__2DOGy,
.legalPage_policy_wrapper__Rm5a0 .legalPage_items_wrapper__P4Svt ul li a {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe .legalPage_content__319Sq {
  inline-size: 100%;
  max-inline-size: 940px;
}

.legalPage_content_wrapper__UxuSe section {
  padding-bottom: 1.3888888889rem;
  padding-top: 1.3888888889rem;
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe .legalPage_content__319Sq section {
  padding-bottom: 1.3888888889rem;
  padding-top: 1.3888888889rem;
}

.legalPage_content_wrapper__UxuSe h3 {
  font-size: 1.1111111111rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.45;
}

@media (min-width: 992px) {
  .legalPage_content_wrapper__UxuSe h3 {
    font-size: 1.1666666667rem;
  }
}

@media (min-width: 1200px) {
  .legalPage_content_wrapper__UxuSe h3 {
    font-size: 1.2222222222rem;
  }
}

.legalPage_policy_wrapper__Rm5a0 .legalPage_content_wrapper__UxuSe .legalPage_content__319Sq h3 {
  font-size: 1.5555555556rem;
  line-height: 1.6;
  font-weight: 500;
}

/* 404 error! */

.not-found {
  padding-top: 5.8333333333rem;
  min-block-size: 94vh;
}

.not-found {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}

.not-found>* {
  inline-size: max-content;
  margin-bottom: 1.1111111111rem;
}

.not-found h2 {
  font-size: 32px;
  margin-bottom: 3px;
}

@media (min-width: 992px) {
  .not-found h2 {
    margin-bottom: 20px;
    font-size: 40px;
  }
}

.not-found p {
  font-size: 24px;
  margin-bottom: 23px;
  color: #535353;
  letter-spacing: -.4px;
  font-weight: 300 !important;
}

@media (min-width: 992px) {
  .not-found p {
    font-size: 35px;
    margin-bottom: 20px;
  }
}

.arrow-two {
  inline-size: var(--arw-size, 16px);
  block-size: var(--arw-strke, 1px);
  background-color: var(--arw-clr, currentColor);
  position: relative;
  display: inline-block;
}

.btn>span {
  display: flex;
}

.btn>span~span {
    /* display: inline-block; */
    margin-left: var(--btn-gutter);
}

@media (min-width: 992px) {
    .btn {
        --btn-gutter: 1.1111111111rem;
    }
}

.btn>span svg,
.btn>span~span {
  transition: color 98ms ease-in-out;
  transform: var(--btn-transform);
  transition: transform 0.3s ease-in-out;
}

.arrow-two:after,
.arrow-two:before {
  content: "";
  position: absolute;
  right: 0;
  inline-size: var(--arw-end-size, 7px);
  block-size: var(--arw-strke, 1px);
  background-color: var(--arrow-clr, currentColor);
}

.arrow-two:before {
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
}

.arrow-two:after {
  transform: rotate(45deg);
  transform-origin: bottom right;
  top: 0.1px;
}

/* INSIGHTS/BLOG */

.blogDetailSections_main_wrapper__WlSw_ {
  inline-size: 100%;
  position: relative;
  padding-top: 6.1111111111rem;
  padding-bottom: 50px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .blogDetailSections_main_wrapper__WlSw_ {
    padding-top: 7.5rem;
    padding-bottom: 0;
  }
}

.blogDetailSections_breadcrumb__tqw3a {
  display: flex;
  gap: 5px;
  padding-bottom: 1.2222222222rem;
  color: #013ad6;
}

.blogDetailSections_details__i44v8 {
  inline-size: 100%;
  position: relative;
  padding-top: 0.8333333333rem;
}

.blogDetailSections_details__i44v8 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blogDetailSections_details__i44v8 {
    align-items: center;
    flex-direction: row;
  }
}

.blogDetailSections_author__mF_T0 {
  font-size: 15px;
  margin-bottom: 25px;
  color: #141414;
}

@media (min-width: 992px) {
  .blogDetailSections_author__mF_T0 {
    margin-bottom: 0;
  }
}

.blogDetailSections_author_date__OkeYU {
  font-size: 0.7222222222rem;
}

.blogDetailSections_details__i44v8 div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6666666667rem 0;
}

.blogDetailSections_author_date__OkeYU ul li {
  font-size: 0.7222222222rem !important;
  line-height: 1.2 !important;
  padding-right: 16px !important;
}

.blogDetailSections_details__i44v8 div ul li {
  font-size: 0.8888888889rem;
  line-height: 1;
  color: var(--primary);
  padding-right: 1.2222222222rem;
  position: relative;
  white-space: nowrap;
}

.blogDetailSections_author_date__OkeYU ul li:last-child {
  opacity: .8;
}

.blogDetailSections_author_date__OkeYU ul li:after {
  top: 52% !important;
  right: 0.3333333333rem !important;
  border-radius: 50%;
}

.blogDetailSections_details__i44v8 div ul li:after {
  inline-size: 0.1666666667rem;
  block-size: 0.1666666667rem;
  background-color: var(--primary);
  content: "";
  position: absolute;
  right: 0.6111111111rem;
  top: 50%;
  transform: translateY(-50%);
}

.blogDetailSections_main_wrapper__WlSw_ .blogDetailSections_main_inner_figure__6irhU {
  padding-bottom: 0;
  overflow: hidden;
}

.blogDetailSections_image_wrapper__s7EwO {
  inline-size: 100%;
  position: relative;
  margin-top: 1.1111111111rem;
  margin-bottom: 0.5555555556rem;
  background-color: var(--secondary);
}

@media (min-width: 992px) {
  .blogDetailSections_image_wrapper__s7EwO {
    margin-top: 1.9444444444rem;
  }
}

.blogDetailSections_image_wrapper__s7EwO img {
  object-fit: cover;
}

.blogDetailSections_container_fill__5f42v.container {
  block-size: 100%;
}

@media (min-width: 992px) {
  .blogDetailSections_container_fill__5f42v.container {
    max-inline-size: 90%;
  }
}

@media (min-width: 1200px) {
  .blogDetailSections_main_wrapper__WlSw_ .blogDetailSections_row__E0I82 {
    --gutter-x: 2.7777777778rem;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.blogDetailSections_tab_ofcontent__t8HU7 {
  --padding-top-v: 1.7222222222rem;
  padding-top: var(--padding-top-v);
}

@media (min-width: 768px) {
  .blogDetailSections_tab_ofcontent__t8HU7 {
    padding-bottom: 20px;
    --padding-top-v: 2.4444444444rem;
  }
}

@media (min-width: 992px) {
  .blogDetailSections_tab_ofcontent__t8HU7 {
    position: -webkit-sticky;
    position: sticky;
    top: var(--stikcy-top);
    transition: top 0.2s cubic-bezier(0.11, 0.39, 0.46, 0.9);
    padding-bottom: 3.3333333333rem;
  }
}

@media (min-width: 992px) {
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
}

.blogDetailSections_tab_title__1vDU1 {
  font-size: 1rem;
  margin-bottom: 1.1666666667rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading-color);
}

.blogDetailSections_tab_wrap__ieHi6 {
  --tab-gap: 1.6666666667rem;
  --scale-value: 0;
  --anim-time: 0s;
  padding-bottom: 5px;
  padding-right: 5px;
  max-block-size: calc(100vh - 190px);
}

@media (min-width: 992px) {
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
}

.blogDetailSections_tab_item__CEC0c {
  margin-bottom: calc(var(--tab-gap) - 0.8333333333rem);
  padding-left: 1.1111111111rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  font-size: 0.8888888889rem;
}

.blogDetailSections_tab_wrap__ieHi6>li {
  padding-left: 0;
}

.blogDetailSections_tab_item__CEC0c a {
  cursor: pointer;
  color: #313131;
  text-decoration: none;
  display: block;
}

.blogDetailSections_tab_item__CEC0c:after {
  content: "";
  display: block;
  inline-size: 100%;
  block-size: 1px;
  background-color: #013ad6;
  margin-top: 0.2777777778rem;
  transform: scaleX(var(--scale-value));
  transform-origin: bottom left;
  transition: transform var(--anim-time) cubic-bezier(0.79, 0.21, 0.01, 0.9);
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.blogDetailSections_main_wrapper__WlSw_ .blogDetailSections_main_inner__fpGm3 {
  max-inline-size: 100%;
  inline-size: 38.3333333333rem;
  margin-right: auto;
  padding-top: 20px;
  line-height: 1;
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .blogDetailSections_main_wrapper__WlSw_ .blogDetailSections_main_inner__fpGm3 {
    max-inline-size: 99%;
    padding-bottom: 5.5555555556rem;
  }
}

.blogDetailSections_content_wrapper__v2PJC {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .blogDetailSections_content_wrapper__v2PJC {
    margin-bottom: 2.2222222222rem;
  }
}

.blogDetailSections_content_wrapper__v2PJC>* {
  inline-size: 100%;
  position: relative;
}

.blogDetailSections_content_wrapper__v2PJC section {
  padding-bottom: 1.3888888889rem;
  padding-top: 1.3888888889rem;
}

.blogDetailSections_content_wrapper__v2PJC p {
  line-height: 1.7;
  margin-bottom: 0;
}

.blogDetailSections_content_wrapper__v2PJC a {
  color: #013ad6;
  text-decoration: underline;
  text-underline-position: under;
  font-weight: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.blogDetailSections_content_wrapper__v2PJC h2 {
  font-size: 1.2777777778rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .blogDetailSections_content_wrapper__v2PJC h2 {
    font-size: 1.3333333333rem;
  }
}

.blogDetailSections_content_wrapper__v2PJC h2+* {
  margin-top: 16px;
}

@media screen and (min-width: 992px) {
  .blogDetailSections_content_wrapper__v2PJC h2+* {
    margin-top: 1rem;
  }
}

.table {
  --table-color-type: initial;
  --table-bg-type: initial;
  --table-color-state: initial;
  --table-bg-state: initial;
  --table-color: var(--emphasis-color);
  --table-bg: var(--body-bg);
  --table-border-color: var(--border-color);
  --table-accent-bg: transparent;
  --table-striped-color: var(--emphasis-color);
  --table-striped-bg: rgba(var(--emphasis-color-rgb), 0.05);
  --table-active-color: var(--emphasis-color);
  --table-active-bg: rgba(var(--emphasis-color-rgb), 0.1);
  --table-hover-color: var(--emphasis-color);
  --table-hover-bg: rgba(var(--emphasis-color-rgb), 0.075);
  inline-size: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--table-border-color);
}

.blogDetailSections_content_wrapper__v2PJC figure {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  max-inline-size: 100%;
}

.blogDetailSections_content_wrapper__v2PJC p+figure {
  margin-top: 1.1111111111rem;
}

.admin-content-area .table {
  overflow: auto;
  border: 1px solid #e6e5e5;
}

.admin-content-area .table thead {
  font-size: 0.9444444444rem;
  border-bottom: 1px solid #e6e5e5;
}

.table> :not(caption)>*>* {
  padding: 0.5rem;
  color: var(--table-color-state, var(--table-color-type, var(--table-color)));
  background-color: var(--table-bg);
  border-bottom-inline-size: var(--border-width);
  box-shadow: inset 0 0 0 9999px var(--table-bg-state, var(--table-bg-type, var(--table-accent-bg)));
}

.admin-content-area .table> :not(caption)>*>* {
  border: none;
}

.admin-content-area .table thead tr {
  background-color: rgba(0, 0, 0, 0.05);
}

.admin-content-area .table thead tr th {
  font-weight: 500;
}

.admin-content-area .table thead tr td,
.admin-content-area .table thead tr th {
  color: #000;
  padding: 0.3888888889rem 0.8333333333rem;
}

.admin-content-area .table tbody {
  font-size: 0.8888888889rem;
}

.admin-content-area .table> :not(caption)>*>* {
  border: none;
}

.admin-content-area .table tbody tr td,
.admin-content-area .table tbody tr th {
  padding: 0.3888888889rem 0.8333333333rem;
  line-height: 1.8;
}

.admin-content-area .table tbody tr th {
  font-weight: 500;
}

.admin-content-area .table tbody tr td,
.admin-content-area .table tbody tr th {
  padding: 0.3888888889rem 0.8333333333rem;
  line-height: 1.8;
}

.blogDetailSections_content_wrapper__v2PJC h3 {
  font-size: 1.1111111111rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.45;
}

@media (min-width: 992px) {
  .blogDetailSections_content_wrapper__v2PJC h3 {
    font-size: 1.1666666667rem;
  }
}

@media (min-width: 1200px) {
  .blogDetailSections_content_wrapper__v2PJC h3 {
    font-size: 1.2222222222rem;
  }
}

.blogDetailSections_content_wrapper__v2PJC p+h1,
.blogDetailSections_content_wrapper__v2PJC p+h2,
.blogDetailSections_content_wrapper__v2PJC p+h3 {
  margin-top: 35px;
}

@media (min-width: 992px) {

  .blogDetailSections_content_wrapper__v2PJC p+h1,
  .blogDetailSections_content_wrapper__v2PJC p+h2,
  .blogDetailSections_content_wrapper__v2PJC p+h3 {
    margin-top: 2.2222222222rem;
  }
}

.blogDetailSections_content_wrapper__v2PJC h3+* {
  margin-top: 16px;
}

@media screen and (min-width: 992px) {
  .blogDetailSections_content_wrapper__v2PJC h3+* {
    margin-top: 1rem;
  }
}

.h-100 {
  block-size: 100% !important;
}

.flex-column {
  flex-direction: column !important;
}

@media (min-width: 992px) {
  .blogDetailSections_popular_post__BUbgP {
    padding-bottom: 60px;
  }
}

.blogDetailSections_popular_post__BUbgP>* {
  flex: 1 1 auto;
}

.blogDetailSections_popular__gskAI {
  --item-gap: 1.2222222222rem;
}

@media (min-width: 992px) {
  .blogDetailSections_popular__gskAI {
    padding-top: 2.2222222222rem;
    inline-size: 275px;
    margin-left: auto;
    position: -webkit-sticky;
    position: sticky;
    top: var(--stikcy-top);
    transition: top 0.2s cubic-bezier(0.11, 0.39, 0.46, 0.9);
  }
}

@media (min-width: 1200px) {
  .blogDetailSections_popular__gskAI {
    inline-size: 300px;
  }
}

.ttl-30 {
  font-size: 1.5555555556rem;
}

@media screen and (min-width: 992px) {
  .ttl-30 {
    font-size: 1.9444444444rem;
  }
}

@media screen and (min-width: 1200px) {
  .ttl-30 {
    font-size: 1.6666666667rem;
  }
}

.blogDetailSections_popular_title__MwKbV {
  margin-bottom: 1.6666666667rem;
  color: #013ad6;
  font-size: 28px;
}

@media (min-width: 992px) {
  .blogDetailSections_popular_title__MwKbV {
    font-size: 1.6666666667rem;
  }
}

.blogDetailSections_popular__gskAI ul li {
  font-size: 0.8888888889rem;
  font-weight: 500;
  color: #1c1c1c;
  padding-bottom: var(--item-gap);
  margin-bottom: var(--item-gap);
  position: relative;
  gap: var(--item-gap);
}

.blogDetailSections_popular__gskAI ul li:before {
  content: "";
  display: block;
  inline-size: 50%;
  block-size: 1px;
  background-color: #013ad6;
  position: absolute;
  left: 0;
  bottom: 0;
}

.blogDetailSections_popular__gskAI ul li label {
  color: #013ad6;
  margin-top: 1px;
}

.blogDetailSections_popular__gskAI ul li a {
  text-decoration: none;
}

.content_wrapper ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.content_wrapper p+div, .content_wrapper p+h4, .content_wrapper p+h5, .content_wrapper p+h6, .content_wrapper p+ol, .content_wrapper p+p, .content_wrapper p+ul {
    margin-top: 1.6666666667rem;
}

.content_wrapper ul li {
    --list-left: 20px;
    padding-left: var(--list-left);
    line-height: 1.6;
    position: relative;
    margin-bottom: .7222222222rem;
    font-size: 1rem;
}

@media (min-width: 992px) {
    .content_wrapper ul li {
        --list-left: 1.6666666667rem;
        margin-bottom: 1rem;
    }
}

.content_wrapper ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--list-marker-top, .7222222222rem);
    width: var(--list-marker-size, .1666666667rem);
    height: var(--list-marker-size, .1666666667rem);
    border-radius: 50%;
    background-color: var(--primary);
}

@media (min-width: 992px) {
    .content_wrapper ul li:before {
        left: var(--list-marker-left, .8333333333rem);
    }
}

.tags_tags_wrapper {
    --color: var(--primary);
    --bg-color: #efefef;
    --bg-color-hover: #e4e4e4;
    --gutter: 0.3333333333rem;
    --font-size: 0.7777777778rem;
    --p-x: 0.8888888889rem;
    --p-y: 0.6666666667rem;
    --radius: 1.6666666667rem;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tags_tags_wrapper {
        --p-x: 0.8333333333rem;
        --p-y: 0.5555555556rem;
    }
}

.tags_tags_wrapper .tags_link {
    width: 100%;
    position: relative;
    background-color: var(--bg-color);
    color: var(--color);
    line-height: 1;
    font-size: var(--font-size);
    text-decoration: none;
    font-weight: 400;
    padding: var(--p-y) var(--p-x);
    display: block;
    border-radius: var(--radius);
    transition: all .3s ease-in-out;
}

.tags_tags_wrapper .tags_link:hover {
    background-color: var(--bg-color-hover);
}

/* You Will Like It Here! */

.careerHome_section {
  --padding-top: 2.7777777778rem;
  --padding-bottom: 55px;
  --color: var(--light);
  --bg-color: var(--dark);
  inline-size: 100%;
  position: relative;
  padding: var(--padding-top) 0 var(--padding-bottom);
  overflow: hidden;
  background-color: var(--bg-color);
  color: var(--color);
}

@media screen and (min-width: 300px) {
  .careerHome_section {
    --bg-color: var(--light);
    --color: var(--primary);
  }
}

@media (min-width: 576px) {
  .careerHome_section {
    --bg-color: var(--light);
    --color: var(--primary);
  }
}

@media (min-width: 992px) {
  .careerHome_section {
    --padding-top: 7.2222222222rem;
    --padding-bottom: 10rem;
  }
}

.careerHome_section .careerHome_content_wrapper {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .careerHome_section .careerHome_title {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .careerHome_section .careerHome_title {
    text-align: left;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1200px) {
  .careerHome_section .careerHome_title {
    margin-bottom: 1.6666666667rem;
  }
}

.careerHome_section .careerHome_description {
  max-inline-size: 40rem;
  line-height: 1.55;
  margin-bottom: 35px;
  font-size: 1.1111111111rem;
  text-align: left;
}

@media (min-width: 576px) {
  .careerHome_section .careerHome_description {
    text-align: center;
  }
}

@media (min-width: 992px) {
    .text-lg-start {
        text-align: left !important;
    }
}

@media (min-width: 992px) {
  .careerHome_section .careerHome_description {
    margin-bottom: 1.6666666667rem;
    text-align: left;
  }
}

.careerHome_section .careerHome_Anim_wrapper {
  inline-size: 100%;
  max-inline-size: 22.2222222222rem;
  position: relative;
  margin-bottom: 1.6666666667rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .careerHome_section .careerHome_Anim_wrapper {
    margin-bottom: 0;
    max-inline-size: 15.5555555556rem;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .careerHome_section .careerHome_Anim_wrapper {
    max-inline-size: 22.2222222222rem;
  }
}





/* Blogs */
.moreInsights_more_insight_wrapper {
  inline-size: 100%;
  position: relative;
  padding-bottom: 2.7777777778rem;
  background-color: var(--light);
}

@media (min-width: 992px) {
  .moreInsights_more_insight_wrapper {
    padding-bottom: 7.2222222222rem;
  }
}

.blogHeroSection_bog_hero_section {
  inline-size: 100%;
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 2.7777777778rem;
}

.blogHeroSection_bog_hero_section .blogHeroSection_bog_hero_inner {
  inline-size: 100%;
  position: relative;
}

.moreInsights_more_insight_wrapper .moreInsights_more_insight_inner {
  inline-size: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.moreInsights_blog_listing_wrapper {
  inline-size: 100%;
  position: relative;
}

.moreInsights_blog_listing_wrapper .row {
  --gutter-x: 0.8333333333rem;
  --gutter-y: 1.6666666667rem;
}

@media (min-width: 992px) {
  .moreInsights_blog_listing_wrapper .row {
    --gutter-x: 2.7777777778rem;
    --gutter-y: 2.5rem;
  }
}

.blogItemCard_item_wrapper {
  inline-size: 100%;
  position: relative;
}

.blogItemCard_item_wrapper .blogItemCard_content_wrapper .blogItemCard_category span.blogItemCard_nogap {
  padding-left: 0;
  margin-left: 0;
}

.blogItemCard_author {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .blogItemCard_author {
    font-size: .8888888889rem;
  }
}

/* Contact */

.contactUsHero_contact_us_wrapper {
    --padding-top: 80px;
    --padding-bottom: 3.3333333333rem;
    --color: var(--primary);
    --bg-color: var(--light);
    inline-size: 100%;
    position: relative;
    padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 768px) {
    .contactUsHero_contact_us_wrapper {
        --padding-top: 110px;
    }
}

@media (min-width: 992px) {
    .contactUsHero_contact_us_wrapper {
        --padding-top: 127px;
    }
}

@media (min-width: 1200px) {
    .contactUsHero_contact_us_wrapper {
        --padding-top: 10.5555555556rem;
        --padding-bottom: 6.3888888889rem;
    }
}

.contactUsHero_content_wrapper {
    inline-size: 100%;
    max-inline-size: 100%;
}

.downloadCard_dwnld_brchre {
    max-inline-size: 100%;
    --shadow-size: 0px;
    cursor: pointer;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .downloadCard_dwnld_brchre {
        margin-top: calc(4% + 10px) !important;
    }
}

@media (min-width: 992px) {
    .downloadCard_dwnld_brchre {
        margin-top: calc(4% + 40px) !important;
        inline-size: 440px;
    }
}

.downloadCard_dwnld_brchre_thumb {
    --aspect-ratio: 100%;
    inline-size: 25.5% !important;
}

.downloadCard_dwnld_brchre_cnt {
    padding: .5555555556rem .8333333333rem;
    inline-size: 74.5%;
    border: 1px solid #f0f0f0;
    box-shadow: inset var(--shadow-size) 0 0 0 #f0f0f0;
    transition: all .15s ease;
}

@media (min-width: 768px) {
    .downloadCard_dwnld_brchre_cnt {
        padding: .5555555556rem 2.1111111111rem;
    }
}

.downloadCard_dwnld_brchre_label {
    letter-spacing: normal;
    margin-bottom: 9px;
    transition: all .15s ease;
}

.ttl-20 {
    font-size: 1.1111111111rem;
}

@media screen and (min-width: 992px) {
    .ttl-20 {
        font-size: 1.1111111111rem;
    }
}

@media screen and (min-width: 1200px) {
    .ttl-20 {
        font-size: 1.1111111111rem;
    }
}

.fw-medium {
    font-weight: 500 !important;
}

@media (min-width: 992px) {
    .fw-lg-regular {
        font-weight: 400 !important;
    }
}

.fs-14, .fs-15 {
    font-size: .7777777778rem;
}

.downloadCard_dwnld_brchre_size {
    color: #5c5c5c;
}

.downloadCard_dwnld_brchre_size>span {
    margin-left: 9px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.downloadCard_dwnld_brchre_size>span span {
    display: flex;
    transform-origin: 50% 50%;
}

.object-fit-cover {
    object-fit: cover !important;
}

@media (min-width: 992px) {
    .contactUsHero_content_wrapper {
        margin-top: -1.1111111111rem;
    }
}

.contactUsHero_content_wrapper .contactUsHero_title {
    inline-size: 100%;
    max-inline-size: 19rem;
}

@media (min-width: 768px) {
    .contactUsHero_content_wrapper .contactUsHero_title {
        max-inline-size: 15.5555555556rem;
    }
}

@media (min-width: 992px) {
    .contactUsHero_content_wrapper .contactUsHero_title {
        max-inline-size: 100%;
    }
}

.contactUsHero_content_wrapper .contactUsHero_description {
    inline-size: 100%;
    position: relative;
    margin-top: 1.2222222222rem;
    margin-bottom: 1.6666666667rem;
    max-inline-size: 27rem;
}

@media (min-width: 992px) {
    .contactUsHero_content_wrapper .contactUsHero_description {
        margin-top: 2.0555555556rem;
        margin-bottom: 0;
    }
}

.contactUsHero_form_container {
    inline-size: 100%;
    max-inline-size: 40.3333333333rem;
    margin-left: auto;
}

@media (min-width: 992px) {
    .contactUsHero_form_container {
        padding-right: 1.9444444444rem;
    }
}

.contactUsHero_form_container .contactUsHero_form_wrapper {
    inline-size: 100%;
    margin-bottom: 1.3888888889rem;
}

@media (min-width: 992px) {
    .contactUsHero_form_container .contactUsHero_form_wrapper {
        margin-bottom: 1.9444444444rem;
    }
}

@media (min-width: 992px) {
    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }
}

.contactUsHero_form_container .contactUsHero_form_wrapper textarea {
    min-block-size: 9.9444444444rem;
}

.validation-message {
  display: block;
  font-size: 14px;
  margin-block-start: 0.5em;
  color: red;
}

/* Values */

.valuesWeLive_section {
    --pt: 3.3333333333rem;
    --pb: 60px;
    padding: var(--pt) 0 var(--pb);
    background-color: var(--dark);
    color: var(--light);
}

@media (min-width: 768px) {
    .valuesWeLive_section {
        --pb: 75px;
    }
}

@media (min-width: 992px) {
    .valuesWeLive_section {
        --pt: 7.2222222222rem;
        --pb: 3.8888888889rem;
    }
}

@media (min-width: 992px) {
    .valuesWeLive_section .valuesWeLive_row {
        --gutter-x: 2.7777777778rem;
    }
}

@media (min-width: 992px) {
    .valuesWeLive_section .valuesWeLive_col_left {
        inline-size: 54.9%;
    }
}

.valuesWeLive_content_wrap {
    max-inline-size: 515px;
    margin-bottom: 57px;
}

@media (min-width: 992px) {
    .valuesWeLive_content_wrap {
        margin-bottom: 0;
        padding-bottom: 3.3333333333rem;
        position: -webkit-sticky;
        position: sticky;
        top: 5.5555555556rem;
    }
}

.valuesWeLive_content_wrap h2 {
    max-inline-size: 15.5555555556rem;
    line-height: 1.1;
        letter-spacing: 0.2em;
        font-weight: 100 !important;

        > span {
          display: block;
          font-size: 0.7777777778rem;
          letter-spacing: 1ch;
        }
}

@media (min-width: 576px) {
    .valuesWeLive_content_wrap h2 {
        max-inline-size: 100%;

        > span {
          font-size: 1.1111111111rem;
        }
    }
}

.careerIntroBannerVideo_title__gPFoa {
    inline-size: 100%;
    max-inline-size: 72.2222222222rem;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 1.3888888889rem;
}

@media (min-width: 992px) {
    .careerIntroBannerVideo_title__gPFoa {
        font-size: 5.5555555556rem;
        margin-bottom: 1.6666666667rem;
    }
}

.ttl-24 {
    font-size: 1rem;
}

@media screen and (min-width: 992px) {
    .ttl-24 {
        font-size: 1.3333333333rem;
    }
}

@media screen and (min-width: 1200px) {
    .ttl-24 {
        font-size: 1.3333333333rem;
    }
}

.lh-primary {
    line-height: 1.67 !important;
}

.valuesWeLive_content_wrap p {
    line-height: 1.56;
}

.valuesWeLive_section .valuesWeLive_col_right {
    display: flex
;
    flex-wrap: wrap;
    position: relative;
}

@media (min-width: 992px) {
    .valuesWeLive_section .valuesWeLive_col_right {
        inline-size: 45.1%;
        padding-top: 1.1111111111rem;
    }
}

.valueItem_card {
    position: relative;
    max-inline-size: 100%;
    padding-bottom: 2.7777777778rem;
}

@media (min-width: 576px) {
    .valueItem_card {
        max-inline-size: 50%;
    }
}

@media (min-width: 992px) {
    .valueItem_card {
        padding-bottom: 1.6666666667rem;
        max-inline-size: 33.3333333333rem;
    }
}

@media (min-width: 992px) {
    .valueItem_card {
        margin-bottom: 4.4444444444rem;
    }
}

@media (min-width: 992px) {
    .valueItem_card {
        padding-left: 44px;
    }
}

@media (min-width: 576px) {
    .valuesWeLive_section .valuesWeLive_col_right>div {
        padding-right: 1.6666666667rem;
    }
}

@media (min-width: 992px) {
    .valuesWeLive_section .valuesWeLive_col_right>div {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .valueItem_card:before {
        content: "";
        position: absolute;
        left: 0;
        inline-size: 1px;
        background-color: #454545;
        block-size: 100%;
        top: 0;
    }
}

.valueItem_card .valueItem_count {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
    opacity: .5;
}

@media (min-width: 992px) {
    .valueItem_card .valueItem_count {
        font-size: 1.3333333333rem;
        margin-bottom: 2.2222222222rem;
    }
}

.valueItem_card .valueItem_title {
    font-weight: 500;
    font-size: 1.6666666667rem;
    line-height: 1;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .valueItem_card .valueItem_title {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .valueItem_card .valueItem_title {
        font-size: 4.4444444444rem;
        margin-bottom: 23px;
    }
}

.valueItem_card p {
    font-size: 18px;
    line-height: 1.6;
    opacity: .9;
    max-inline-size: 24.4444444444rem;
}



/* Industries */

.industryIstBlock_wrapper__uOB1r {
    --padding-bottom: 2.7777777778rem;
    --padding-top: 0.2777777778rem;
    inline-size: 100%;
    position: relative;
    padding-bottom: var(--padding-bottom);
    padding-top: var(--padding-top);
}

@media (min-width: 992px) {
    .industryIstBlock_wrapper__uOB1r {
        --padding-bottom: 7.7777777778rem;
        --padding-top: 2.7777777778rem;
    }
}

.industryIstBlock_inner_wrap__VGnuZ {
    position: relative;
}
/* 
.industryIstBlock_image_wrapper__teoUy {
    inline-size: var(--image-size);
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: none;
    position: absolute;
    inline-size: 400px;
    max-inline-size: 50%;
    aspect-ratio: 402 / 270;
    z-index: 3;
    transition: opacity .1s linear;
    opacity: 0;
}

@media (min-width: 992px) {
    .industryIstBlock_image_wrapper__teoUy {
        display: block;
    }
}

.industryIstBlock_image_wrapper__teoUy .industryIstBlock_image_container__YGhEq {
    inline-size: 100%;
    transition: transform .3s ease-in-out, clip-path .2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transform: rotate(15deg) translate(0);
}

.industryIstBlock_image_wrapper__teoUy .industryIstBlock_image_container__YGhEq img {
    object-fit: cover;
} */

.industryIstBlock_inner__TNEaE {
    inline-size: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.industry_btn_wrapper__ASyA0
 {
    --color: var(--dark);
    --bg-color: var(--light);
    --border-color: var(--primary);
    --image-size: 22.3333333333rem;
    --padding-top: 1.2222222222rem;
    --padding-bottom: 1.2222222222rem;
    --padding-right: 3.3333333333rem;
    inline-size: 100%;
    position: relative;
    text-decoration: none;
    background-color: transparent;
    color: var(--color);
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    border: 0;
    display: flex
;
    padding: 0;
}

@media (min-width: 576px) {
    .industry_btn_wrapper__ASyA0 {
        --padding-top: 1.4611111111rem;
        --padding-bottom: 1.4611111111rem;
    }
}

@media (min-width: 992px) {
    .industry_btn_wrapper__ASyA0 {
        --padding-top: 2.4722222222rem;
        --padding-bottom: 2.4722222222rem;
    }
}

@media (hover: hover) {
    .industry_btn_wrapper__ASyA0 {
        --padding-right: 0rem;
    }
}

.industry_btn_text_inner__YPCzp {
    inline-size: 100%;
    position: relative;
    display: flex
;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    border-bottom: .0555555556rem solid var(--border-color);
    margin-top: -.0555555556rem;
    padding-right: var(--padding-right);
}

.industry_btn_wrapper__ASyA0:first-child .industry_btn_text_inner__YPCzp {
    border-top: .0555555556rem solid var(--border-color);
}

.industry_btn_text_inner__YPCzp .industry_title___7heq {
    position: relative;
    font-size: 1.2222222222rem;
    transition: all .42s ease-in-out;
    text-align: left;
}

@media (min-width: 992px) {
    .industry_btn_text_inner__YPCzp .industry_title___7heq {
        font-size: 2.5555555556rem;
    }
}

.industry_btn_text_inner__YPCzp .industry_title___7heq .industry_counter_number__Kq2h1 {
    position: absolute;
    right: 0;
    top: -.8333333333rem;
    font-size: .7777777778rem;
    line-height: 1;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.industry_btn_text_inner__YPCzp .industry_icon__w9IG2 {
    position: absolute;
    right: .2777777778rem;
    margin: auto;
    top: 50%;
    transform: translateY(-50%) rotate(270deg) scale(.65);
    opacity: .6;
    transition: all .3s ease-in-out;
}

@media (min-width: 992px) {
    .industry_btn_text_inner__YPCzp .industry_icon__w9IG2 {
        transform: translateY(-50%) scale(.8);
    }
}

@media (hover: hover) {
    .industry_btn_text_inner__YPCzp .industry_icon__w9IG2 {
        opacity: 0;
        transform: translateY(-50%);
        right: .8333333333rem;
    }
}

@media (hover: hover) and (min-width: 992px) {
    .industry_btn_text_inner__YPCzp .industry_icon__w9IG2 {
        transform: translateY(-50%);
    }
}

@media (hover: hover) {
    .industry_btn_wrapper__ASyA0:hover {
        z-index: 99;
    }
}

@media (hover: hover) {
    .industry_btn_wrapper__ASyA0:hover .industry_title___7heq {
        transform: translateX(2.2222222222rem);
    }
}

@media (hover: hover) {
    .industry_btn_wrapper__ASyA0:hover .industry_btn_text_inner__YPCzp .industry_icon__w9IG2 {
        right: 0;
        opacity: 1;
    }
}

.industryIstBlock_image_wrapper__teoUy.industryIstBlock_show__vJzLX {
    opacity: 1;
}

@media (min-width: 992px) {
    .industryIstBlock_image_wrapper__teoUy {
        display: block;
    }
}

.industryBanner_section__Sv2fg {
    --pt: 100px;
    --pb: 60px;
    display: flex
;
    padding: var(--pt) 0 var(--pb);
    inline-size: 100%;
    position: relative;
    color: var(--color);
    background-color: var(--bg-color);
    overflow: hidden;
}

@media screen and (min-width: 390px) {
    .industryBanner_section__Sv2fg {
        padding-bottom: 2.7777777778rem;
    }
}

@media (min-width: 768px) {
    .industryBanner_section__Sv2fg {
        --pb: 90px;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .industryBanner_section__Sv2fg {
        --pt: 8.6111111111rem;
        --pb: 115px;
        align-items: center;
        block-size: 100vh;
        max-block-size: 945px;
    }
}

.industryBanner_content__ItAcf {
    max-inline-size: 1140px;
    margin: auto;
    position: relative;
    block-size: 100%;
}

.ttl-120 {
    font-size: 2.2222222222rem;
}

@media screen and (min-width: 992px) {
    .ttl-120 {
        font-size: 3.8888888889rem;
    }
}

@media screen and (min-width: 1200px) {
    .ttl-120 {
        font-size: 5rem;
    }
}

@media (min-width: 992px) {
    .mb-lg-5 {
        margin-bottom: 50px !important;
    }
}

.industryBanner_content_title__KDkS3 {
    font-weight: 300;
    line-height: 1.35;
}

@media (min-width: 992px) {
    .industryBanner_content_title__KDkS3 {
        line-height: 1;
    }
}

.industryBanner_content_title__KDkS3>span {
    overflow: hidden;
    line-height: 1;
}

@media (min-width: 992px) {
    .industryBanner_content_title__KDkS3>span {
        display: inline-block;
    }
}

.industryBanner_content_description__ecrEM {
    max-inline-size: 17.7777777778rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .industryBanner_content_description__ecrEM {
        max-inline-size: 23.8888888889rem;
    }
}

@media (min-width: 992px) {
    .industryBanner_content_description__ecrEM {
        opacity: 0;
        margin-top: -.1111111111rem;
    }
}

.industryBanner_fade_item__PvTTy {
    display: block;
    will-change: transform;
}

@media (min-width: 992px) {
    .industryBanner_block__OfsIR {
        margin-top: -2rem;
    }
}

.industryBanner_block__OfsIR {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 992px) {
    .industryBanner_block_count__2hENB {
        opacity: 0;
    }
}

.industryBanner_block_count__2hENB {
    display: block;
    will-change: transform;
}

.industryBanner_block_count__num3__g3ftE {
    display: block;
    will-change: transform;
}

.industryBanner_block_count__num__Q5cn4 {
    position: relative;
}

.industryBanner_block_count__add___VaLJ, .industryBanner_block_count__num__Q5cn4 {
    --size: 45vw;
    font-size: var(--size);
    line-height: var(--size);
    overflow: hidden;
    font-weight: 500;
    display: inline-block;
}

@media (min-width: 576px) {
    .industryBanner_block_count__add___VaLJ, .industryBanner_block_count__num__Q5cn4 {
        --size: 200px;
    }
}

@media (min-width: 768px) {
    .industryBanner_block_count__add___VaLJ, .industryBanner_block_count__num__Q5cn4 {
        --size: 20rem;
    }
}

@media (min-width: 992px) {
    .industryBanner_block_count__add___VaLJ, .industryBanner_block_count__num__Q5cn4 {
        block-size: var(--size);
        --size: 15rem;
    }
}

@media (min-width: 1200px) {
    .industryBanner_block_count__add___VaLJ, .industryBanner_block_count__num__Q5cn4 {
        --size: 19.1666666667rem;
    }
}

.industryBanner_block_count__add___VaLJ span, .industryBanner_block_count__num__Q5cn4 span {
    text-align: right;
    display: block;
    background: -webkit-linear-gradient(-50deg, #53b7e0, #395dd5, #d07eb8, #f58f5e);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Careers */

.jobOpenings_section {
    --pt: 50px;
    --pb: 60px;
    padding: var(--pt) 0 var(--pb);
}

@media (min-width: 992px) {
    .jobOpenings_section {
        --pt: 6.6666666667rem;
        --pb: 6.6666666667rem;
    }
}

@media (min-width: 992px) {
    .text-lg-center {
        text-align: center !important;
    }
}

.jobOpenings_title_wrap {
    max-inline-size: 100%;
    margin: 0 auto 40px;
}

@media (min-width: 992px) {
    .jobOpenings_title_wrap {
        margin: 0 auto 2.3888888889rem;
    }
}

.jobOpenings_accordion_wrap {
    max-inline-size: 1185px;
    margin-left: auto;
    margin-right: auto;
}

.jobOpeningsAccordion_accordion .accordion-item {
    border-bottom: 1px solid #626262;
}

.jobOpeningsAccordion_accordion .accordion-item:first-of-type {
    border-top: 1px solid #626262;
}

.jobOpeningsAccordion_accordion .accordion-button {
    inline-size: 100%;
    text-align: left;
    border: none;
    padding: 26px 0;
    font-weight: 500;
    display: flex
;
    color: inherit;
    background-color: #fff;
    transition: all .4s;
}

@media (min-width: 992px) {
    .jobOpeningsAccordion_accordion .accordion-button {
        padding: 1.8888888889rem 0;
    }
}

.jobOpeningsAccordion_accordion .accordion-button span {
    transition: all .3s ease;
    transform: translate(5px);
}

.jobOpeningsAccordion_accordion .accordion-button span {
    transition: all .3s ease;
    transform: translate(5px);
}

.jobOpeningsAccordion_accordion .accordion .icon {
    display: inline-block;
    margin-left: auto;
}

.jobOpeningsAccordion_accordion .accordion-button .icon {
    transform: translateY(-3px);
}

.jobOpeningsAccordion_accordion .accordion .icon svg {
    transform: rotate(-90deg);
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .jobOpeningsAccordion_accordion .accordion .icon svg {
        transform: rotate(0deg);
    }
}

@media (min-width: 992px) {
    .jobOpeningsAccordion_accordion .accordion details[open] .icon svg {
        transform: rotate(180deg);
    }
}

.collapse:not(.show) {
    display: none;
}

.jobOpeningsAccordion_accordion .accordion-body {
    padding: 0;
}

@media (min-width: 992px) {
    .jobOpeningsAccordion_accordion .accordion-body {
        padding: 0 0 32px;
    }
}

.jobItem_item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    position: relative;
}

.jobItem_item:last-child {
    border-bottom: 0;
}

@media (min-width: 992px) {
    .jobItem_item {
        padding: 15px 0;
    }
}

.jobItem_item_title {
    flex: 0 0 auto;
    inline-size: 100%;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .jobItem_item_title {
        inline-size: 40%;
        margin-bottom: 0;
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .jobItem_item_title {
        inline-size: 52.3%;
        font-size: 1.1rem;
    }
}

.jobItem_item_year {
    flex: 1 0;
    font-size: 16px;
}

@media (min-width: 992px) {
    .jobItem_item_year {
        font-size: 1.1111111111rem;
    }
}
}
.jobItem_item_apply {
    flex: 0 0 auto;
    inline-size: auto;
    position: absolute;
    right: 0;
}

.jobItem_item_apply a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity .3s ease-in-out;
    will-change: opacity;
}

@media (min-width: 992px) {
    .jobItem_item_apply a {
        font-size: 1rem;
    }
}

.jobItem_item_apply span {
    display: inline-block;
    margin-right: 18px;
    transform: translate(1px, -3px);
    transition: all .2s ease-in-out;
}

.jobItem_item_apply span {
    display: inline-block;
    margin-right: 18px;
    transform: translate(1px, -3px);
    transition: all .2s ease-in-out;
}





.homeBanner_section__CDPSc {
    inline-size: 100%;
    overflow: hidden;
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    block-size: 100vh;
    block-size: 100svh;
}

.carousel {
    position: relative;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex
;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}
.homeBanner_section__CDPSc .carousel-indicators {
    display: none !important;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    inline-size: 30px;
    block-size: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

.carousel-inner {
    position: relative;
    inline-size: 100%;
    /* overflow: hidden; */
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner:after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    inline-size: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,.carousel-item-prev,.carousel-item.active {
    display: block
}

.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media(prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    inline-size: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media(prefers-reduced-motion:reduce) {
    .carousel-control-next,.carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,.carousel-control-prev-icon {
    display: inline-block;
    inline-size: 2rem;
    block-size: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    inline-size: 30px;
    block-size: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media(prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
    background-color: #000
}

[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption {
    color: #000
}
.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1;
}
.homeBanner_banner_child__1xedG {
    inline-size: 100%;
    position: relative;
    text-decoration: none;
    color: var(--light);
}
.homeBanner_banner_child__1xedG:not(.homeBanner_no_overlay__MGZNZ):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    inline-size: 100%;
    block-size: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 2;
    pointer-events: none;
}
.homeBanner_banner_image__Lj_2i {
    inline-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark);
    block-size: 100%;
}

.homeBanner_banner_image__Lj_2i img {
    object-fit: cover;
    transition: opacity .3s ease-out;
}

.homeBanner_banner_inner__IYrYQ {
    position: relative;
    inline-size: 100%;
    block-size: 100%;
    z-index: 9;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .homeBanner_banner_inner__IYrYQ {
        padding-bottom: 105px;
    }
}
@media (min-width: 992px) {
    .homeBanner_banner_inner__IYrYQ {
        padding-top: 5.8333333333rem;
        padding-bottom: 5.8333333333rem;
    }
}
.homeBanner_banner_inner__IYrYQ.homeBanner_full__ZHmLt {
    min-block-size: 100vh;
    min-block-size: 100svh;
}
@media (min-width: 992px) {
    .homeBanner_banner_inner__IYrYQ.homeBanner_full__ZHmLt {
        min-block-size: calc(100vh - 60px);
        min-block-size: calc(100svh - 60px);
    }
}
@media (min-width: 576px) {
    .homeBanner_banner_inner__IYrYQ.homeBanner_full__ZHmLt {
        min-block-size: 100vh;
        min-block-size: 100svh;
    }
}
.homeBanner_banner_inner__IYrYQ.homeBanner_full__ZHmLt>div {
    position: relative;
    z-index: 1;
}
/* .homeBanner_banner_inner__IYrYQ .homeBanner_content__L06Q6 {
    inline-size: 100%;
    position: relative;
    display: flex
;
    flex-direction: column;
} */
.homeBanner_banner_inner__IYrYQ .homeBanner_content__L06Q6 .homeBanner_title__HvP7U {
    inline-size: 100%;
    max-inline-size: 17.2222222222rem;
    line-height: 1.32;
    margin-bottom: 1.9444444444rem;
}
@media (min-width: 576px) {
    .homeBanner_banner_inner__IYrYQ .homeBanner_content__L06Q6 .homeBanner_title__HvP7U {
        max-inline-size: 40rem;
    }
}
@media (min-width: 992px) {
    .homeBanner_banner_inner__IYrYQ .homeBanner_content__L06Q6 .homeBanner_title__HvP7U {
        margin-bottom: 1.6111111111rem;
    }
}

.homeBanner_navigate_btn__Dn3eK {
    inline-size: max-content;
    color: #fff;
    background-color: transparent;
    border: none;
    /* text-decoration: none; */
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.homeBanner_navigate_btn__Dn3eK img {
  inline-size: 1.1111111111rem;
    margin-left: 11px;
    transition: all .18s 
ease;
}

@media (min-width: 992px) {
    .homeBanner_navigate_btn__Dn3eK img {
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .homeBanner_navigate_btn__Dn3eK:hover img {
        transform: translateX(5px);
    }
}

@media screen and (max-inline-size: 991.98px) {
    .scrollDownIndicator_indicator__QeJPX {
        display:none
    }
}

.scrollDownIndicator_indicator__QeJPX {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    flex-direction: column;
    cursor: default;
    z-index: 999;
    bottom: 27px;
}
@media (min-width: 992px) {
    .scrollDownIndicator_indicator__QeJPX {
        bottom: 40px;
    }
}
.scrollDownIndicator_arrow__72m4d {
    --arrow-size: 15px;
    --arrow-stroke-size: 1px;
    inline-size: var(--arrow-size);
    block-size: var(--arrow-size);
    border-right: var(--arrow-stroke-size) solid #fff;
    border-bottom: var(--arrow-stroke-size) solid #fff;
    transform: rotate(45deg);
    animation: scrollDownIndicator_scroll-down__rH9u5 1.85s infinite;
    margin-top: calc(var(--arrow-size)*.3*-1)
}

.scrollDownIndicator_arrow__72m4d:nth-child(2) {
    animation-delay: -.15s
}

@media(min-width: 992px) {
    .scrollDownIndicator_arrow__72m4d {
        --arrow-size:16px;
        --arrow-stroke-size: 2px
    }
}

@keyframes scrollDownIndicator_scroll-down__rH9u5 {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-7px,-7px)
    }

    50% {
        opacity: 1
    }

    70% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(45deg) translate(7px,7px)
    }
}






.hMIcaseStudyBanner_section {
    --padding-top: 70px;
    --padding-bottom: 70px;
    --color: var(--dark);
    --bg-color: var(--tertiary);
    background-color: var(--bg-color);
    padding: var(--padding-top) 0 var(--padding-bottom);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .hMIcaseStudyBanner_section {
        --padding-top: 7.7222222222rem;
        --padding-bottom: 7.7222222222rem;
    }
}

.hMIcaseStudyBanner_section .hMIcaseStudyBanner_heading_wrap {
    text-align: center;
    z-index: 11;
    position: relative;
}

.hMIcaseStudyBanner_section .hMIcaseStudyBanner_heading_wrap h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    color: var(--color);
    max-inline-size: 100%;
    inline-size: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.3888888889rem;
}

@media (min-width: 992px) {
    .hMIcaseStudyBanner_section .hMIcaseStudyBanner_heading_wrap h2 {
        margin-bottom: 2.5rem;
        max-inline-size: 880px;
        font-size: 3.3333333333rem;
    }
}

.hMIcaseStudyBanner_section .hMIcaseStudyBanner_heading_wrap p {
    color: var(--color);
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    max-inline-size: 720px;
    inline-size: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.3888888889rem;
}

@media (min-width: 992px) {
    .hMIcaseStudyBanner_section .hMIcaseStudyBanner_heading_wrap p {
        margin-bottom: 2.5rem;
    }
}

















.expertise_section__AzSxS {
    --padding-top: 2.2222222222rem;
    --padding-bottom: 3.3333333333rem;
    --color: var(--dark);
    --bg-color: var(--tertiary);
    inline-size: 100%;
    position: relative;
    padding: var(--padding-top) 0 var(--padding-bottom);
    background-color: var(--bg-color);
    color: var(--color);
    display: flex
;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .expertise_section__AzSxS {
        --padding-top: 90px;
        --padding-bottom: 90px;
    }
}

.expertise_section__AzSxS .expertise_inner__MJ9JV {
    inline-size: 100%;
    position: relative;
}

.expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_title__qpWmJ {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--dark);
    font-weight: 200;
    display: flex
;
    margin-bottom: 1.6666666667rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_title__qpWmJ {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 50px;
        margin-bottom: 15px;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_title__qpWmJ {
        font-size: 8vw;
        margin-bottom: 3.3333333333rem;
    }
}

@media (min-width: 1200px) {
    .expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_title__qpWmJ {
        font-size: 5rem;
    }
}

.expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_descritpion__jTSJa {
    inline-size: 100%;
    max-inline-size: 54.4444444444rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.2222222222rem;
    opacity: .85;
}

@media (min-width: 768px) {
    .expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_descritpion__jTSJa {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_descritpion__jTSJa {
        margin-bottom: 4.0555555556rem;
    }
}

.expertise_section__AzSxS .expertise_inner__MJ9JV .expertise_btn_wrapper__pslK3 {
    inline-size: 100%;
    display: flex
;
    justify-content: center;
}





.introText_wrapper {
    --padding-top: 5.2777777778rem;
    --padding-bottom: 5.2777777778rem;
    --color: var(--primary);
    --bg-color: var(--light);
    padding: var(--padding-top) 0 var(--padding-bottom);
    inline-size: 100%;
    position: relative;
}

@media (min-width: 992px) {
    .introText_wrapper {
        --padding-top: 7.5rem;
    }
}

@media (min-width: 1200px) {
    .introText_wrapper {
        --padding-top: 8.6111111111rem;
        --padding-bottom: 8.6111111111rem;
    }
}

.pull-quote__quote {
    min-block-size: 0;
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 28px;
    line-height: 1.25;
    max-inline-size: 770px;
}

@media (min-width: 680px) {
    .pull-quote__quote {
        font-size: 30px;
    }
}

/* Featured Stories */







::details-content {
    transition: block-size 0.5s ease, content-visibility 0.5s ease allow-discrete;
    block-size: 0;
    overflow: clip;
}

/* Browser supports interpolate-size */
@supports (interpolate-size: allow-keywords) {
    :root {
        interpolate-size: allow-keywords;
    }

    [open]::details-content {
        block-size: auto;
    }
}

/* Fallback for browsers with no interpolate-size support */
@supports not (interpolate-size: allow-keywords) {
    [open]::details-content {
        block-size: 150px;
        overflow-y: scroll; /* In case the contents should be taller than 150px */
    }
}

/* This highlights the <h2> for the recipe and every element that follows it */
#recipe:target,
#recipe:target ~ * {
  background: lightgoldenrodyellow;
}

[id] {
  scroll-margin-top: 2em;
}









.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.about-us-banner-features-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
    .about-us-banner-features-grid {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        grid-template-columns: 1fr 1fr;
    }
}

.about-us-card {
    grid-column-gap: 20px;
    background-color: #f6f6f9;
    border-radius: 14px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    display: flex;
}

@media screen and (max-width: 991px) {
    .about-us-card {
        grid-column-gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .about-us-card {
        grid-row-gap: 16px;
        border-radius: 10px;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 16px;
    }
}

.about-us-card-typography {
    width: 100%;
    max-width: 192px;
}

@media screen and (max-width: 767px) {
    .about-us-card-typography {
        max-width: 100%;
    }
}

.about-us-card-counter-wrap {
    border-bottom: 1px dashed #1717171a;
    margin-bottom: 10px;
    padding-bottom: 15px;
}

.number-digit {
    z-index: 1;
    color: #141414;
    letter-spacing: -.8px;
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
    position: relative;
}

.section-description.about-us {
    width: 100%;
    max-width: 628px;
    font-size: 18px;
    margin: 0 auto;
}





.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.contact-us-details-grid {
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
    .contact-us-details-grid {
        grid-column-gap: 16px;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .contact-us-details-grid {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
}

.contact-us-details-single {
    background-color: var(--tertiary);
    border-radius: 20px;
    padding: 32px;
}

@media screen and (max-width: 991px) {
    .contact-us-details-single {
        border-radius: 12px;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .contact-us-details-single {
        border-radius: 10px;
        padding: 10px;
    }
}

.contact-us-details-icon-wrapper {
    border-bottom: 1px solid #494852;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

@media screen and (max-width: 991px) {
    .contact-us-details-icon-wrapper {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.contact-us-details-icon-single {
    background-color: white;
    border-radius: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 60px;
    height: 60px;
    display: flex;
}

@media screen and (max-width: 991px) {
    .contact-us-details-icon-single {
        border-radius: 10px;
        max-width: 56px;
        height: 56px;
    }
}

@media screen and (max-width: 767px) {
    .contact-us-details-icon-single {
        max-width: 48px;
        height: 48px;
    }
}

.contact-us-details-title {
    color: #141414;
    font-size: 24px;
    letter-spacing: -.48px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 150%;
}

@media screen and (max-width: 991px) {
    .contact-us-details-title {
        margin-bottom: 5px;
    }
}

.contact-us-details-text {
    color: #141414;
    font-size: 18px;
    letter-spacing: -.4px;
    font-weight: 500;
    line-height: 150%;
}












.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.navbar-contact-link-block {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.navbar-contact-icon-wrap {
    background-color: #f6f6f9;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    display: flex;
}

.navbar-contact-title {
    color: #141414;
    font-size: 11px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 4px;
}

.navbar-contact-number {
    color: #141414;
    font-size: 16px;
    line-height: 124%;
    font-weight: 700;
}









.section.banner {
    padding-top: 160px;
    padding-bottom: 110px;
}

@media screen and (max-width: 991px) {
    .section.banner {
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .section.banner {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

.banner-content {
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 991px) {
    .banner-content {
        grid-row-gap: 40px;
        flex-flow: column;
    }
}

.banner-typography {
    width: 100%;
    max-width: 600px;
}

@media screen and (max-width: 991px) {
    .banner-typography {
        text-align: center;
        max-width: 700px;
    }
}

@media screen and (max-width: 767px) {
    .banner-typography {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.banner-subtitle-wrapper {
    background: hsl(0 100% 100% / 55%);
  backdrop-filter: blur(10px);
  z-index: 1;
    margin-bottom: 14px;
    padding: 3px 11px;
    display: inline-block;
}

.banner-subtitle {
    color: #141414;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
}

.banner-title-description {
    margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
    .banner-title-description {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .banner-title-description {
        margin-bottom: 20px;
    }
}

.banner-title {
    color: #141414;
    font-size: 60px;
    line-height: 130%;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .banner-title {
        margin-bottom: 16px;
        font-size: 56px;
        line-height: 120%;
    }
}

@media screen and (max-width: 767px) {
    .banner-title {
        letter-spacing: -1px;
        margin-bottom: 10px;
        font-size: 46px;
    }
}

.banner-description-text {
    color: white;
    font-size: 18px;
    line-height: 150%;
    width: 100%;
    max-width: 525px;
}

@media screen and (max-width: 991px) {
    .banner-description-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}











.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .section-title-wrapper {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .section-title-wrapper {
        margin-bottom: 40px;
    }
}

.section-title {
    font-size: 48px;
    line-height: 150%;
    letter-spacing: -.96px;
    margin-bottom: 12px;
    display: inline-block;
}

@media screen and (max-width: 991px) {
    .section-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .section-title.about-mobile {
        font-size: 34px;
    }
}

@media screen and (max-width: 767px) {
    .section-description.about-us {
        max-width: 400px;
    }
}

.about-us-content {
    grid-column-gap: 24px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 991px) {
    .about-us-content {
        grid-row-gap: 40px;
        flex-flow: column;
    }
}

@media screen and (max-width: 767px) {
    .about-us-content {
        grid-row-gap: 30px;
    }
}

.about-us-image-wrapper {
    width: 100%;
    max-width: 584px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .about-us-image-wrapper, .about-us-typography {
        max-width: 100%;
    }
}

.about-us-image {
    width: 100%;
}

.about-us-typography {
    grid-row-gap: 50px;
    flex-flow: column;
    width: 100%;
    max-width: 630px;
    display: flex;
}

@media screen and (max-width: 991px) {
    .about-us-image-wrapper, .about-us-typography {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .about-us-typography {
        grid-row-gap: 40px;
    }
}

.about-us-top-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
}

@media screen and (max-width: 991px) {
    .about-us-top-grid {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .about-us-top-grid {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
}

.about-us-bottom-content {
    grid-column-gap: 24px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.navbar-contact-icon-wrap.about-us {
    width: 48px;
    height: 48px;
}

.navbar-contact-title.about-us {
    font-size: 14px;
    margin-bottom: 2px;
}

.navbar-contact-number.about {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -.36px;
}








.card__portfolio {
    --card--text-color: #ffffff;
    --card--background: #202024;
    --card--gradient: 50%;
    position: relative;
    background: var(--card--background);
    height: 100%;
}

.card__portfolio .card__content {
    position: relative;
    z-index: 5;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.card--case-study .card__content, .card--career .card__content {
    position: relative;
    display: flex;
    padding-inline: 24px;
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border: none;
    background-color: #f5f6f7;
    transition: padding-top .25s ease, margin-bottom .25s ease, background-color .25s ease;
}

.card--case-study .line, .card--career .line {
    inline-size: 40px;
    block-size: 1px;
    background: red;
    margin-bottom: 8px;
}





.block__feature-content {
    overflow: hidden;
    --padding-top: 45px;
    --padding-bottom: 50px;
    padding: var(--padding-top) 0 var(--padding-bottom);
}

@media (min-width: 992px) {
    .block__feature-content {
        --padding-top: 65px;
        --padding-bottom: 70px;
    }
}

@media (min-width: 1200px) {
    .block__feature-content {
        --padding-top: 100px;
        --padding-bottom: 110px;
    }
}

.introText_wrapper p {
    font-size: 18px;
    line-height: 1.6;
    opacity: .9;
}