/* =============================================================================
 * global-head.css — the TOKEN + FRAMEWORK-TRANSCRIPTION layer of the mockup.
 *
 * PROVENANCE of every value below: the source's own stylesheet
 *   .ports/port-interio-tem-2ef4b5c1/source/source.css
 *   (https://assets.website-files.com/649ad19c333ca425c47643bb/css/interio-template.webflow.ad711882c.css)
 * parsed by tools/derive-css.mjs. Nothing here is measured-by-eye or invented.
 *
 * ORDER MATTERS (webflow-global-css trap (c)): this file is concatenated BEFORE the
 * verbatim source rules, so where both declare a property the SOURCE rule wins.
 * ============================================================================= */

/* --- 1. FONTS — self-hosted, both VARIABLE ---------------------------------
 * Satoshi Variable: the source's own file (Webflow served the .ttf; converted to woff2).
 *   source.css @font-face: font-family:'Satoshi Variable'; font-weight:300 900.
 * Outfit: Google Fonts. VERIFIED — Google serves ONE variable woff2 for weights
 *   400/500/600/700 (identical md5 fdf9c509…), so this is one face with a range,
 *   not four files. */
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- 2. DESIGN TOKENS — named in the theme.json variable system so step 8 maps 1:1.
 * Colours are the source's exact values INCLUDING ALPHA (getComputedStyle would
 * have flattened the rgba() ones). Counts are occurrences in source.css. */
:root {
  /* colour palette */
  --wp--preset--color--base: #fff;              /* x32 */
  --wp--preset--color--contrast: #292929;       /* x39 — body text + dark sections */
  --wp--preset--color--accent: #bfa47e;         /* x23 — gold: buttons, team bar, circles */
  --wp--preset--color--cream: #f9f8f3;          /* x7  — tinted section bands */
  --wp--preset--color--muted: #656565;          /* x11 — secondary text */
  --wp--preset--color--border: #e6e6e6;         /* x6  — hairlines under tab menus */
  --wp--preset--color--dark-alt: #313131;
  --wp--custom--color--white-alpha-10: rgba(255, 255, 255, .1);
  --wp--custom--color--white-alpha-40: rgba(255, 255, 255, .4);

  /* FONT-SIZE UNION — every distinct size the source uses (rem = measured px / 16).
   * Not a tidy tag→scale: each preset exists because a real element uses it. */
  --wp--preset--font-size--x-tiny: 0.75rem;     /* 12 — h6 element default */
  --wp--preset--font-size--tiny: 0.8125rem;     /* 13 — buttons, tab links (uppercase) */
  --wp--preset--font-size--x-small: 0.875rem;   /* 14 — body/h5 element default */
  --wp--preset--font-size--small: 0.9375rem;    /* 15 — upper-heading, footer links */
  --wp--preset--font-size--body: 1rem;          /* 16 — .paragraph, nav, inputs */
  --wp--preset--font-size--medium: 1.0625rem;   /* 17 — .small-heading, accordion rows */
  --wp--preset--font-size--large: 1.1875rem;    /* 19 — .paragraph-big */
  --wp--preset--font-size--h6: 1.25rem;         /* 20 */
  --wp--preset--font-size--h5: 1.375rem;        /* 22 */
  --wp--preset--font-size--h4: 1.625rem;        /* 26 */
  --wp--preset--font-size--h3: 1.875rem;        /* 30 */
  --wp--preset--font-size--h2: 2.75rem;         /* 44 */
  --wp--preset--font-size--display: 4.25rem;    /* 68 */

  /* type families */
  --wp--preset--font-family--heading: Outfit, sans-serif;
  --wp--preset--font-family--body: 'Satoshi Variable', sans-serif;

  /* layout — .main-container: max-width 1300 with 30px gutters → 1240 content */
  --wp--custom--layout--wide-size: 1300px;
  --wp--custom--layout--content-size: 1240px;
  --wp--custom--layout--gutter: 30px;

  /* section rhythm — .section-spacing: 160px desktop, 100px ≤991 */
  --wp--preset--spacing--section: 160px;
  --wp--preset--spacing--section-tablet: 100px;
}

/* --- 3. FRAMEWORK TRANSCRIPTION (webflow-global-css trap (b)) ---------------
 * The source leans on Webflow's .w-* framework classes for behaviour its OWN
 * classes assume but never declare. My semantic markup has no .w-* classes, so
 * those rules are transcribed here onto the class names the mockup uses.
 * Without these the sliders stack vertically and the tabs all render at once. */

/* .w-layout-blockcontainer / .w-container — the centring the container relies on.
 * (max-width:940px is NOT transcribed: .main-container overrides it to 1300px.) */
.main-container {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* .w-inline-block — used 90× for link blocks wrapping images/text */
.link-block {
  max-width: 100%;
  display: inline-block;
}

/* .w-nav* — the navbar framework. MEASURED CONSEQUENCE of omitting these: the
 * hamburger (.w-nav-button, display:none at desktop) rendered 43px wide, which
 * squeezed .nav-menu 1240 -> 1198 and shifted every nav link 21px and the phone
 * number 43px. The base `display:none` below is the rule that hides it. */
.nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}
.nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}
/* .nav-menu is also one of the SOURCE's own class names; its own rule (width:100%)
 * comes later in the cascade and only sets width, so these compose correctly. */
.nav-menu {
  float: right;
  position: relative;
}
.nav-link-base {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.nav-button {
  float: right;
  cursor: pointer;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}
.nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* .w-button — the button reset the .primary-btn/.secondary-btn rules build on */
.btn {
  cursor: pointer;
  border: 0;
  border-radius: 0;
  line-height: inherit;
  text-decoration: none;
  display: inline-block;
}

/* .w-slider / .w-slider-mask / .w-slide — the horizontal track. The source's own
 * .team-slider / .testimonial-slider rules override height/background/width. */
.slider {
  height: 300px;
  text-align: center;
  clear: both;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slider-mask {
  z-index: 1;
  height: 100%;
  white-space: nowrap;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}
.slide {
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
  display: inline-block;
  position: relative;
}
/* .w-slider-nav / .w-slider-dot — dots row */
.slider-nav {
  z-index: 2;
  height: 40px;
  text-align: center;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.slider-dot {
  width: 1em;
  height: 1em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .4);
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}
.slider-dot.is-active { background-color: #fff; }
/* .w-slider-arrow-left/right — the source's .slider-nav-btn positions itself,
 * so only the shared reset is transcribed (NOT width:80px, which it overrides). */
.slider-arrow-left,
.slider-arrow-right {
  cursor: pointer;
  color: #fff;
  user-select: none;
  position: absolute;
  top: 0;
  bottom: 0;
}
.slider-arrow-left { z-index: 3; right: auto; }
.slider-arrow-right { z-index: 4; left: auto; }

/* .w-tabs / .w-tab-content / .w-tab-pane — panel visibility. Without this EVERY
 * mastery/work tab panel renders stacked instead of one at a time. */
.tabs { position: relative; }
.tab-menu { position: relative; }
.tab-content { display: block; position: relative; overflow: hidden; }
.tab-pane { display: none; position: relative; }
.tab-pane.is-active { display: block; }
/* .w-tab-link — the tab labels are <a>/<div> links; without this they fall back to the
 * UA's default link blue (measured: source #222 vs port rgb(0,0,238) on the work-page
 * "All / Residential / Commercial / Hotels" filters). The site's own .work-tab-link and
 * .mastery-tab-link rules override the background to transparent. */
.tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.tab-link.is-current { background-color: #c8c8c8; }

/* .w-background-video — the hero's looping video layer */
.background-video {
  height: 500px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.background-video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  margin: auto;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
}

/* .w-dyn-list / .w-dyn-items / .w-dyn-item — the CMS collection wrappers. The
 * source's .collection-list carries the grid; these only reset list semantics. */
.collection-list-wrapper { position: relative; }
.collection-item { display: block; }

/* .w-form / .w-input / .w-select — the contact form's base. The source's own
 * .input-field / .message-field rules override colour, size and padding. */
.form-base { margin: 0 0 15px; }
.input-base {
  width: 100%;
  height: 38px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}
textarea.input-base { height: auto; }
.form-label { cursor: pointer; margin-bottom: 0; font-weight: normal; display: inline-block; }
.form-done { text-align: center; background-color: #ddd; padding: 20px; display: none; }
.form-fail { background-color: #ffdede; margin-top: 10px; padding: 10px; display: none; }
.visually-hidden {
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  border: 0;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

/* .w-lightbox-backdrop / -content — the video overlay. Webflow's JS builds this
 * element at runtime, so it is NOT in the captured DOM and never reaches the
 * match gate; the values are transcribed from the framework rule all the same. */
.lightbox-backdrop {
  z-index: 2000;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, .9);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: auto;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.lightbox-frame {
  vertical-align: middle;
  display: inline-block;
  max-width: 96vw;
}
.lightbox-frame iframe { max-width: 96vw; border: 0; }


/* ===== VERBATIM SOURCE RULES — tools/derive-css.mjs =====
 * desktop base -> min-width:1280 -> max-width:991 -> 767 -> 479
 */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}
audio:not([controls]) {
  height: 0;
  display: none;
}
[hidden], template {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled], html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
@font-face {
font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  min-height: 100%;
  color: #333;
  background-color: #fff;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
html[data-w-dynpage] [data-w-cloak] {
  color: rgba(0, 0, 0, 0) !important;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}
h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}
h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}
h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}
h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}
h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}
h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0 0 10px;
}
figcaption {
  text-align: center;
  margin-top: 5px;
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}
label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}
[data-nav-menu-open] {
  text-align: center;
  min-width: 200px;
  background: #c8c8c8;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}
@keyframes spin {
0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
body {
  color: #333;
  font-family: Satoshi Variable, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
h1 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}
h2 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}
h3 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
h4 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
h5 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
h6 {
  color: #292929;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
p {
  color: #656565;
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
.main-container {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding-left: 30px;
  padding-right: 30px;
}
.section-spacing {
  z-index: 1;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.primary-btn {
  grid-column-gap: 7px;
  color: #fff;
  text-align: center;
  letter-spacing: .13813rem;
  text-transform: uppercase;
  background-color: #bfa47e;
  border: 2px solid #bfa47e;
  justify-content: center;
  align-items: center;
  padding: 16px 34px;
  font-size: .8125rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
}
.primary-btn:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
}
.primary-btn.black-backround {
  background-color: #292929;
  border-color: #292929;
}
.primary-btn.black-backround:hover {
  color: #292929;
  background-color: rgba(0, 0, 0, 0);
  border-color: #292929;
}
.primary-btn.black-hover-effect:hover {
  background-color: #292929;
  border-color: #292929;
}
.h4 {
  font-family: Outfit, sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2.8125rem;
}
.grey-font-color {
  color: #656565;
}
.h6 {
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.375rem;
}
.paragraph-big {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.paragraph-big._600-medium {
  font-weight: 600;
}
.h2 {
  letter-spacing: -.03rem;
  font-family: Outfit, sans-serif;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 3.625rem;
}
.h3 {
  font-family: Outfit, sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.625rem;
}
.h5 {
  letter-spacing: -.013rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.375rem;
}
.dim-grey-font-color {
  color: #292929;
}
.paragraph {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.display {
  letter-spacing: -.038rem;
  font-family: Outfit, sans-serif;
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 5rem;
}
.small-heading {
  color: #292929;
  font-family: Outfit, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.upper-heading {
  letter-spacing: .15938rem;
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.white-font-color {
  color: #fff;
}
.secondary-btn {
  grid-column-gap: 7px;
  color: #292929;
  text-align: center;
  letter-spacing: .13813rem;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #292929;
  justify-content: center;
  align-items: center;
  padding: 16px 34px;
  font-size: .8125rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
}
.secondary-btn:hover {
  color: #fff;
  background-color: #bfa47e;
  border-color: #bfa47e;
}
.secondary-btn.with-white-bg {
  background-color: #fff;
  border-style: solid;
  border-color: #fff;
}
.secondary-btn.with-white-bg:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
}
.secondary-btn.without-bg {
  background-color: rgba(0, 0, 0, 0);
}
.secondary-btn.without-bg:hover {
  background-color: #bfa47e;
}
.secondary-btn.black-hover-effect:hover {
  background-color: #292929;
  border-color: #292929;
}
.hero-content-wrapper {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.play-btn-wrapper {
  z-index: 2;
  width: 106px;
  height: 106px;
  color: #292929;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -53px;
  right: auto;
  overflow: hidden;
}
.play-btn-wrapper:hover {
  color: #bfa47e;
  background-color: rgba(255, 255, 255, .1);
}
.play-btn-wrapper.centered {
  margin-top: 0;
  margin-bottom: 0;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}
.hero-container {
  width: 100%;
}
.hero-text-wrapper {
  width: 100%;
  grid-row-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.play-btn {
  width: 84px;
  height: 84px;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  display: flex;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero-light-box {
  width: 50vw;
  height: 925px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}
.hero-text-container {
  width: 645px;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  padding-right: 195px;
  display: flex;
}
.play-icon {
  width: 28px;
  height: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.play-icons-wrapper {
  z-index: 1;
  position: relative;
}
.hero-section {
  width: 100%;
  background-color: #292929;
  overflow: hidden;
}
.hero-links-wrapper {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 17px;
  display: flex;
}
.hero-call-us-link {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}
.call-icon {
  width: 48px;
  height: 48px;
}
.usp-points-section {
  background-color: #313131;
  padding-top: 100px;
  padding-bottom: 100px;
}
.usp-points-container {
  grid-column-gap: 120px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.usp-points-block {
  width: 100%;
  max-width: 210px;
  grid-row-gap: 1px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.usp-icon {
  width: 72px;
  height: 53px;
  margin-bottom: 23px;
}
.home-about-container {
  grid-column-gap: 105px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.home-about-image {
  width: 595px;
  height: 700px;
  object-fit: cover;
}
.home-about-text {
  width: 100%;
  max-width: 485px;
  grid-row-gap: 23px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.points-wrapper {
  grid-column-gap: 35px;
  margin-top: 27px;
  margin-bottom: 27px;
  display: flex;
}
.point-wrapper {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}
.primary-font-color {
  color: #bfa47e;
}
.home-about-text-heading {
  margin-top: 6px;
}
.team-section {
  background-color: #f9f8f3;
}
.team-top-row {
  background-color: #bfa47e;
}
.team-text-wrapper {
  max-width: 1075px;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
  display: flex;
}
.team-heading-wrapper {
  margin-top: 30px;
  margin-bottom: 65px;
}
.team-slider-container {
  margin-top: -205px;
  padding-bottom: 160px;
  overflow: hidden;
}
.team-slider-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 285px;
  display: flex;
}
.team-slider {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}
.team-slider-mask {
  width: 395px;
  height: auto;
  overflow: visible;
}
.team-slide {
  width: 100%;
  margin-right: 105px;
}
.team-member-image {
  width: 395px;
  height: 485px;
  object-fit: contain;
}
.team-member-image-wrapper {
  margin-bottom: 30px;
}
.team-slide-content-wrapper {
  grid-row-gap: 0px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.hide-element {
  display: none;
}
.slider-nav-btn {
  width: 50px;
  height: 50px;
  color: #292929;
  border: 1px solid #292929;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}
.slider-nav-btn.right {
  left: 75px;
}
.slider-nav-btn.testimonial-left {
  top: -104px;
  bottom: auto;
  left: auto;
  right: 75px;
}
.slider-nav-btn.testimonial-right {
  top: -103px;
  bottom: auto;
  left: auto;
  right: 0%;
}
.slider-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}
.approach-section {
  background-color: #292929;
}
.approach-container {
  grid-column-gap: 75px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.approach-image-wrapper {
  width: 595px;
}
.approach-image {
  width: 100%;
  height: 775px;
  object-fit: contain;
}
.approach-text-wrapper {
  max-width: 560px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.approach-accordion-wrapper {
  max-width: 510px;
  grid-row-gap: 26px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}
.accordion-block {
  cursor: pointer;
  border-bottom: 1px solid rgba(101, 101, 101, .5);
  padding: 0;
}
.accordion-block.lighter-version {
  border-bottom-color: rgba(101, 101, 101, .25);
}
.accordion-block.why-us {
  border-bottom-style: none;
}
.accordion-row {
  grid-column-gap: 10px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
}
.accordion-row.darker-version {
  color: #292929;
}
.accordion-row.darker-version.without-border {
  border-bottom-style: none;
  padding-bottom: 0;
}
.accordion-para-wrapper {
  text-align: left;
  padding-right: 15px;
  overflow: hidden;
}
.accordion-space {
  width: 100%;
  height: 10px;
}
.accordion-space.why-us-accordion-space {
  height: 70px;
}
.light-grey-font-color {
  color: #e6e6e6;
}
.accordion-toggle-indicator {
  width: 11px;
  height: 11px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.horizontal-line {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}
.vertical-line {
  justify-content: center;
  align-items: center;
  margin-left: -1px;
  display: flex;
  position: absolute;
}
.approach-btn {
  margin-top: 30px;
}
.accordion-bottom-space {
  width: 100%;
  height: 30px;
}
.accordion-bottom-space.why-us-accordion-bottom-space {
  height: 50px;
}
.essence-container {
  width: 100%;
  height: 100%;
  grid-row-gap: 95px;
  flex-direction: column;
  display: flex;
}
.essence-heading-wrapper {
  max-width: 475px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}
.essence-para-wrapper {
  max-width: 510px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.essence-row {
  width: 100%;
  justify-content: space-between;
  display: flex;
}
.essence-lightbox {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.mastery-section {
  padding-bottom: 160px;
}
.mastery-container {
  grid-row-gap: 75px;
  flex-direction: column;
  display: flex;
}
.mastery-row {
  grid-column-gap: 120px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.mastery-image-wrapper {
  width: 100%;
  max-width: 510px;
}
.essence-lightbox-image {
  width: 100%;
  object-fit: contain;
}
.mastery-image {
  width: 100%;
  object-fit: cover;
}
.mastery-tabs {
  width: 100%;
  max-width: 600px;
  flex: none;
}
.mastery-tabs-menu {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
}
.mastery-tab-link {
  width: 100%;
  color: #292929;
  text-align: center;
  letter-spacing: .13813rem;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  font-family: Outfit, sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
}
.mastery-tab-link.is-current {
  color: #bfa47e;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #bfa47e;
}
.mastery-tab-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}
.mastery-tab-blocks-wrapper {
  grid-column-gap: 95px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.mastery-tab-block {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}
.mastery-tab-block-title {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
}
.mastery-tab-block-icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.testimonial-section {
  width: 100%;
  background-color: #f9f8f3;
  overflow: hidden;
}
.testimonial-container {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}
.testimonial-slider {
  height: auto;
  max-width: 1220px;
  background-color: rgba(0, 0, 0, 0);
}
.testimonial-slider-mask {
  height: auto;
  overflow: visible;
}
.testimonial-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  margin-right: 75px;
}
.testimonial-slide-content-wrapper {
  height: 100%;
  align-items: center;
  display: flex;
}
.testimonial-slide-image-wrapper {
  width: 100%;
  height: 100%;
  max-width: 455px;
}
.testimonial-slide-text {
  width: 100%;
  height: 100%;
  grid-row-gap: 14px;
  flex-direction: column;
  padding: 118px 100px 118px 113px;
  display: flex;
}
.testimonial-title {
  margin-top: 19px;
}
.testimonial-reviewer-details {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 30px;
  display: flex;
}
.testimonial-reviewer-details-block {
  grid-column-gap: 25px;
  align-items: center;
  display: flex;
}
.testimonial-reviewer-image {
  width: 69px;
  height: 69px;
}
.testimonial-reviewer-name {
  grid-row-gap: 0px;
  flex-direction: column;
  display: flex;
}
.stars {
  width: 106px;
  height: 18px;
}
.reviewer-name {
  margin-bottom: -5px;
}
.testimonial-slide-image {
  width: 100%;
  height: 565px;
  object-fit: cover;
}
.catalog-container {
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.catalog-heading-wrapper {
  max-width: 610px;
}
.catalog-blocks-wrapper {
  width: 100%;
  grid-column-gap: 75px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}
.catalog-block {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.catalog-block-title-wrapper {
  height: 470px;
  background-image: linear-gradient(rgba(41, 41, 41, 0) 40%, rgba(41, 41, 41, .75) 80%), url("../images/background-image.svg");
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  padding: 30px;
  position: relative;
}
.catalog-block-title-wrapper._1 {
  background-image: linear-gradient(rgba(41, 41, 41, 0) 40%, rgba(41, 41, 41, .75) 80%), url("../images/64a1f0a5a4de3a4a9e93093f_Catalog_1.webp");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}
.catalog-block-title-wrapper._2 {
  background-image: linear-gradient(rgba(41, 41, 41, 0) 40%, rgba(41, 41, 41, .75) 80%), url("../images/64a1f0a56eca503f930baa13_Catalog_2.webp");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}
.catalog-block-title-wrapper._3 {
  background-image: linear-gradient(rgba(41, 41, 41, 0) 40%, rgba(41, 41, 41, .75) 80%), url("../images/64a1f0a5d743d3da7e65676f_Catalog_3.webp");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}
.catalog-block-title {
  height: 100%;
  grid-row-gap: 11px;
  border: 3px solid #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.cta-section {
  background-color: #bfa47e;
}
.cta-container {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.cta-container.with-gap {
  grid-column-gap: 25px;
}
.cta-text-wrapper {
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.cta-text-wrapper.v2 {
  grid-row-gap: 40px;
}
.cta-image-wrapper {
  width: 100%;
  max-width: 730px;
}
.cta-image-wrapper.v2 {
  width: auto;
  max-width: none;
}
.cta-image {
  object-fit: fill;
}
.cta-image.smaller {
  height: 340px;
}
.call-us-div {
  grid-column-gap: 15px;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}
.call-us-div.v2 {
  margin-bottom: 0;
}
.call-us-icon {
  width: 28px;
  height: 28px;
  flex: none;
}
.call-us-icon.bigger {
  width: 40px;
  height: 40px;
}
.about-hero-section {
  background-image: url("../images/64a206ad6280f226d72c4e40_About_Hero_Background.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 188px;
  padding-bottom: 168px;
}
.about-hero-container {
  max-width: 580px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.about-section {
  background-color: #f9f8f3;
}
.about-container {
  grid-column-gap: 115px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.about-text-wrapper {
  width: 100%;
  max-width: 520px;
  grid-row-gap: 21px;
  flex-direction: column;
  display: flex;
}
.about-us-link {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}
.about-us-links-wrapper {
  grid-column-gap: 65px;
  margin-top: 20px;
  display: flex;
}
.about-us-heading {
  margin-top: 8px;
}
.about-image-wrapper {
  width: 100%;
  max-width: 590px;
}
.about-image {
  width: 100%;
  object-fit: cover;
}
.journey-container {
  grid-column-gap: 105px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.journey-image-wrapper {
  width: 100%;
  max-width: 595px;
}
.journey-image {
  width: 100%;
  object-fit: cover;
}
.journey-text-wrapper {
  width: 100%;
  max-width: 520px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}
.journey-accordion-title-wrapper {
  grid-column-gap: 15px;
  display: flex;
}
.journey-para {
  margin-top: 10px;
}
.stats-section {
  background-color: #292929;
}
.stats-container {
  grid-column-gap: 35px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.stats-block {
  width: 100%;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.stats-divider {
  width: 83px;
  height: 280px;
}
.principle-section {
  background-color: #f9f8f3;
}
.principle-container {
  grid-column-gap: 150px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.why-us-container {
  width: 100%;
  height: 100%;
}
.why-us-row {
  width: 100%;
  border-bottom: 1px solid rgba(101, 101, 101, .25);
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 90px;
  display: flex;
}
.why-us-heading-wrapper {
  max-width: 420px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}
.why-us-para-wrapper {
  max-width: 620px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}
.journey-accordion-wrapper {
  max-width: 510px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}
.why-us-accordion-wrapper {
  max-width: 100%;
  grid-row-gap: 30px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}
.why-us-details-wrapper {
  grid-column-gap: 85px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.why-us-accordion-image-wrapper {
  flex: none;
}
.why-us-text-details {
  grid-row-gap: 11px;
  flex-direction: column;
  display: flex;
}
.why-us-text-title {
  margin-bottom: 13px;
}
.why-us-accordion-image {
  width: 525px;
  height: 325px;
  object-fit: cover;
}
.accordion-divider {
  width: 100%;
  height: 1px;
  opacity: .25;
  background-color: #656565;
}
.our-team-section {
  background-color: #f9f8f3;
}
.our-team-container {
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.our-team-heading {
  max-width: 510px;
}
.our-team-blocks-wrapper {
  width: 100%;
  grid-column-gap: 110px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 105px;
  display: grid;
}
.our-team-block {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.our-team-member-image-wrapper {
  width: 330px;
}
.our-team-member-image {
  width: 100%;
  height: 405px;
  object-fit: contain;
}
.our-team-link {
  width: 50px;
  height: 50px;
  background-color: #bfa47e;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: -25px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}
.mail-icon {
  width: 21px;
  height: 18px;
}
.contact-us-section {
  width: 100%;
  overflow: hidden;
}
.contact-us-container {
  width: 100%;
  height: 100%;
  grid-column-gap: 120px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.contact-us-right-flex {
  width: 50vw;
  height: 1072px;
  background-image: url("../images/64a2e25776f59d0ab9d4c9c9_Contact_Image.webp");
  background-position: 0 0;
  background-size: cover;
  background-attachment: scroll;
  flex: none;
  align-items: flex-start;
  margin-top: -2px;
  padding-top: 125px;
  padding-left: 60px;
  display: flex;
}
.contact-form-wrapper {
  width: 560px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}
.contact-form {
  grid-row-gap: 36px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.contact-us-form-row-wrapper {
  width: 100%;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  margin-top: 22px;
  display: flex;
}
.contact-us-form-input-wrapper {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.input-field {
  height: 54px;
  color: #292929;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e6e6e6;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.input-field:focus {
  border-color: #656565;
}
.input-field::-ms-input-placeholder {
  color: #656565;
}
.input-field::placeholder {
  color: #656565;
}
.message-field {
  min-height: 155px;
  color: #292929;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e6e6e6;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.message-field:focus {
  border-color: #656565;
}
.message-field::-ms-input-placeholder {
  color: #656565;
}
.message-field::placeholder {
  color: #656565;
}
.coonect-links-wrapper {
  max-width: 275px;
  grid-row-gap: 30px;
  background-color: #fff;
  flex-direction: column;
  padding: 35px;
  display: flex;
}
.connect-links {
  flex-direction: column;
  display: flex;
}
.social-links-wrapper {
  grid-column-gap: 10px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.social-link {
  width: 30px;
  height: 30px;
  color: #292929;
  border: 1.5px solid #292929;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .1s cubic-bezier(.075, .82, .165, 1);
  display: flex;
}
.social-link:hover {
  color: #bfa47e;
  background-color: #fff;
  border-color: #bfa47e;
}
.footer-social-embed {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}
.footer-social-embed.with-negative-margin {
  margin-bottom: -3px;
}
.project-section {
  padding-top: 140px;
  padding-bottom: 140px;
}
.project-container {
  grid-column-gap: 80px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.project-left-div {
  width: 100%;
  max-width: 865px;
}
.project-right-div {
  width: 100%;
  max-width: 295px;
  grid-row-gap: 37px;
  flex-direction: column;
  display: flex;
}
.project-image-wrapper {
  width: 100%;
  margin-top: 65px;
  margin-bottom: 75px;
}
.project-image {
  width: 100%;
  height: 585px;
  object-fit: cover;
}
.about-project-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}
.project-images-collecion-list-wrapper {
  margin-top: 75px;
}
.project-images-collecion-list {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.project-lightbox-image {
  object-fit: cover;
}
.project-accordion-wrapper {
  max-width: none;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}
.project-details-rows-wrapper {
  grid-row-gap: 35px;
  flex-direction: column;
  display: flex;
}
.project-details-divider {
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}
.project-details-row {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}
.project-details-text {
  flex-direction: column;
  display: flex;
}
.project-details-row-icon {
  width: 35px;
  height: 35px;
}
.client-quote-wrapper {
  grid-row-gap: 26px;
  flex-direction: column;
  display: flex;
}
.client-details-wrapper {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}
.client-image {
  width: 50px;
  height: 50px;
}
.share-block-title {
  color: #313233;
}
.share-block {
  max-width: 180px;
  grid-column-gap: 30px;
  align-items: center;
  margin-top: -10px;
  display: flex;
}
.project-social-link {
  color: #292929;
  transition: opacity .3s;
}
.project-social-link:hover {
  opacity: .5;
  color: #656565;
}
.share-social-links {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.social-icon-emebed {
  align-items: center;
  display: flex;
}
.work-section {
  padding-top: 140px;
  padding-bottom: 140px;
}
.work-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.work-tabs-content {
  width: 100%;
}
.work-tab-menu {
  grid-column-gap: 105px;
  border-bottom: 1.5px solid #e6e6e6;
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
  display: flex;
}
.work-tab {
  width: 100%;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.work-tab-link {
  letter-spacing: .13813rem;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding: 4px 11px 30px;
  font-family: Outfit, sans-serif;
  font-size: .8125rem;
  font-weight: 700;
}
.work-tab-link.is-current {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1.5px solid #292929;
}
.work-heading {
  max-width: 480px;
  margin-top: 30px;
  margin-bottom: 110px;
}
.work-block {
  width: 100%;
  grid-row-gap: 0px;
  color: #292929;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.work-block-image-wrapper {
  width: 100%;
  height: 295px;
  margin-bottom: 20px;
  position: relative;
}
.collection-list {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}
.work-block-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-block-overlay {
  opacity: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plus-sign {
  width: 50px;
  height: 50px;
}
.cta-btn-wrapper {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}
.our-projects-container {
  grid-row-gap: 90px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.our-projects-heading-wrapper {
  max-width: 440px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}
.our-projects-para-wrapper {
  max-width: 510px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.our-projects-row {
  width: 100%;
  justify-content: space-between;
  display: flex;
}
.nav-link {
  color: #fff;
  text-align: center;
  letter-spacing: .01rem;
  padding: 0;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.nav-link:hover {
  color: #bfa47e;
}
.nav-link.is-current {
  color: #bfa47e;
}
.nav-link.dark {
  color: #292929;
}
.nav-link.dark:hover {
  color: #bfa47e;
}
.nav-link.dark.is-current {
  color: #bfa47e;
}
.nav-links-wrapper {
  grid-column-gap: 85px;
  display: flex;
}
.nav-menu {
  width: 100%;
}
.navbar-overlay {
  z-index: 2;
  background-color: rgba(41, 41, 41, .7);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.logo-wrapper {
  width: 95px;
  height: 38px;
  color: #fff;
}
.logo-wrapper.for-mobile-nav {
  display: none;
}
.logo-wrapper.dark {
  color: #292929;
}
.navbar {
  background-color: #292929;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.navbar.transparent {
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.navbar.white-background {
  background-color: #fff;
  border-bottom-color: rgba(101, 101, 101, .12);
}
.navbar-container {
  width: 100%;
  max-width: 1300px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: flex;
}
.logo {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.logo.for-mobile {
  display: none;
}
.navbar-menu-wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.menu-link-block {
  grid-column-gap: 13px;
  color: #fff;
  letter-spacing: .01rem;
  justify-content: flex-start;
  align-items: center;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  display: flex;
}
.menu-link-block:hover {
  color: #bfa47e;
}
.menu-link-block.dark {
  color: #292929;
}
.menu-link-block.dark:hover {
  color: #bfa47e;
}
.phone-icon-embed {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.phone-icon-wrapper {
  width: 15px;
  height: 15px;
}
.nav-right-flex {
  grid-column-gap: 25px;
  display: flex;
}
.menu-wrapper {
  cursor: pointer;
}
.menu-icon {
  width: 44px;
  height: 44px;
}
.footer-logo {
  width: 95px;
  height: 38px;
}
.footer-links-wrapper {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  display: flex;
}
.footer-block {
  max-width: 200px;
  grid-column-gap: 14px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.footer-title {
  margin-bottom: 20px;
}
.footer-social-link {
  width: 30px;
  height: 30px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}
.footer-social-link:hover {
  background-color: #bfa47e;
  border-color: #bfa47e;
}
.footer-link-group {
  max-width: 200px;
  grid-column-gap: 14px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}
.footer-social-block-two {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.footer-column {
  max-width: 220px;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.footer-copyright {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 29px;
}
.footer {
  z-index: 2;
  background-color: #292929;
  padding: 80px 30px 40px;
  position: relative;
}
.footer-container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .1);
  margin-top: 70px;
  margin-bottom: 30px;
}
.footer-bottom {
  opacity: .7;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.footer-link {
  color: #e6e6e6;
  letter-spacing: .5px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  text-decoration: none;
  transition: all .3s;
}
.footer-link:hover {
  color: #bfa47e;
  transform: translate(10px);
}
.footer-link.static {
  transition-property: none;
}
.footer-link.static:hover {
  color: #e6e6e6;
  transform: none;
}
.footer-wrapper {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.webflow-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 29px;
  text-decoration: none;
}
.webflow-link:hover {
  color: #bfa47e;
}
.footer-template-links-wrapper {
  grid-column-gap: 20px;
  display: flex;
}
.footer-template-link {
  color: #e6e6e6;
  letter-spacing: .5px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 29px;
  text-decoration: none;
  transition: all .3s;
}
.footer-template-link:hover {
  color: #bfa47e;
}
.absolute-navbar-wrapper {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}
.principle-text-wrapper {
  max-width: 410px;
  grid-row-gap: 28px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.principle-image-wrapper {
  width: 600px;
}
.principle-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.priciple-btn {
  margin-top: 30px;
}
.background-video {
  z-index: 1;
  width: 100%;
  height: 100%;
}
.out-team-btn-wrapper {
  margin-top: 15px;
}
.desktop-nav {
  z-index: 10;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  align-items: flex-end;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}
.desktop-nav-links-wrapper {
  width: 100%;
  height: 100%;
  max-width: 785px;
  background-image: url("../images/64ad1dc46642b79ba2a6a53c_Desktop_Nav_Bg.jpg");
  background-position: 100% 100%;
  background-size: cover;
  padding: 100px 90px;
  position: relative;
}
.desktop-nav-close-trigger {
  cursor: pointer;
  position: absolute;
  top: 30px;
  bottom: auto;
  left: auto;
  right: 50px;
}
.desktop-nav-link {
  max-width: 400px;
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.desktop-nav-address {
  max-width: 190px;
  margin-top: 50px;
  margin-bottom: -13px;
}
.desktop-nav-contact-links-wrapper {
  flex-direction: column;
  display: flex;
}
#w-node-_7738ab33-a30e-38b1-e80d-0a4d41648ff8-c47643cf, #w-node-_7738ab33-a30e-38b1-e80d-0a4d41648ff9-c47643cf, #w-node-_7738ab33-a30e-38b1-e80d-0a4d41648ffa-c47643cf, #w-node-_7738ab33-a30e-38b1-e80d-0a4d41648ffb-c47643cf, #w-node-_673303f9-4cf4-21e5-526d-a970b0fcf5a2-c47643cf, #w-node-_6df1404c-85bf-7764-48be-300d614a2e5e-c47643cf, #w-node-_7738ab33-a30e-38b1-e80d-0a4d41649001-c47643cf, #w-node-_5b112c3c-0693-a026-76f1-eea23d54498b-c47643cf, #w-node-_7738ab33-a30e-38b1-e80d-0a4d41649002-c47643cf, #w-node-_3ebc770b-27c9-188d-6321-548d495995b8-c47643cf, #w-node-_5da5bf20-afcd-339f-69c8-9df82b70ab01-c47643cf, #w-node-b918c023-34ca-5425-190e-3c550e2e83d4-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cddf-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde0-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde1-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde2-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde3-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde4-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde5-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde6-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde7-c47643cf, #w-node-_287b1c68-3931-2da2-b4b6-e54e47d7cde8-c47643cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
@font-face {
font-family: 'Satoshi Variable';
  src: url('images/649ad754e4ba6e6875d86cfc_Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@media screen and (min-width: 1280px) {
.contact-us-right-flex {
  padding-top: 125px;
  padding-left: 135px;
}
.footer {
  z-index: 0;
}
}

@media screen and (max-width: 991px) {
.main-container {
  max-width: 650px;
}
.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
}
.play-btn-wrapper {
  width: 110px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.hero-container {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text-wrapper {
  max-width: none;
  grid-row-gap: 15px;
}
.play-btn {
  width: 90px;
  height: 90px;
}
.hero-light-box {
  width: 100%;
  height: 450px;
  min-height: 0;
  align-items: center;
}
.hero-text-container {
  width: 100%;
  padding: 0;
}
.hero-btn {
  margin-top: 15px;
  margin-bottom: 20px;
}
.hero-section {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.usp-points-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.usp-points-container {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.usp-points-block {
  width: 45%;
  flex-wrap: wrap;
  flex: none;
}
.home-about-container {
  grid-row-gap: 60px;
  flex-direction: column;
}
.home-about-image-wrapper {
  width: 100%;
}
.home-about-image {
  width: 100%;
  height: 450px;
}
.home-about-text {
  max-width: none;
  grid-row-gap: 15px;
}
.team-text-wrapper {
  padding-bottom: 0;
}
.team-heading-wrapper {
  margin-top: 20px;
  margin-bottom: 50px;
}
.team-slider-container {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}
.team-slider-wrapper {
  padding-left: 0;
}
.team-slider {
  width: 100vw;
}
.team-slider-mask {
  width: 300px;
}
.team-slide {
  margin-right: 60px;
}
.team-member-image {
  height: 370px;
}
.slider-nav-btn.testimonial-left, .slider-nav-btn.testimonial-right {
  top: -110px;
}
.approach-container {
  grid-row-gap: 60px;
  flex-direction: column;
}
.approach-image {
  height: 450px;
  object-fit: cover;
}
.approach-text-wrapper, .approach-accordion-wrapper {
  max-width: none;
}
.accordion-para-wrapper {
  padding-right: 20px;
}
.essence-container {
  grid-row-gap: 90px;
}
.essence-heading-wrapper {
  max-width: none;
  grid-row-gap: 10px;
}
.essence-para-wrapper {
  max-width: none;
}
.essence-row {
  grid-row-gap: 30px;
  flex-direction: column;
}
.mastery-section {
  padding-bottom: 100px;
}
.mastery-row {
  grid-row-gap: 60px;
  flex-direction: column;
}
.mastery-image-wrapper {
  max-width: none;
}
.essence-lightbox-image {
  height: 450px;
  object-fit: cover;
}
.testimonial-container {
  grid-row-gap: 60px;
}
.testimonial-slide {
  margin-right: 60px;
}
.testimonial-slide-content-wrapper {
  flex-direction: column;
}
.testimonial-slide-image-wrapper {
  max-width: none;
}
.testimonial-slide-text {
  grid-row-gap: 10px;
  padding: 60px;
}
.testimonial-title {
  margin-top: 0;
}
.testimonial-reviewer-details {
  margin-top: 40px;
}
.catalog-blocks-wrapper {
  grid-row-gap: 60px;
  grid-template-columns: 1fr;
}
.catalog-block-title-wrapper {
  width: 100%;
}
.cta-section {
  overflow: hidden;
}
.cta-container {
  justify-content: flex-start;
  align-items: stretch;
}
.cta-text-wrapper {
  max-width: 280px;
  flex: none;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cta-text-wrapper.v2 {
  width: 100%;
  max-width: 460px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.cta-image-wrapper {
  width: 50vw;
  max-width: none;
  flex: none;
}
.cta-image-wrapper.v2 {
  width: 50vw;
  display: none;
}
.cta-image {
  width: 100%;
  height: 100%;
}
.cta-image.smaller {
  height: 100%;
}
.call-us-div.v2 {
  order: -1;
}
.about-hero-section {
  padding-top: 140px;
  padding-bottom: 140px;
}
.about-container {
  grid-row-gap: 75px;
  flex-direction: column;
}
.about-text-wrapper {
  max-width: none;
  grid-row-gap: 20px;
}
.about-us-heading {
  margin-top: 0;
}
.about-image {
  height: 450px;
}
.journey-container {
  grid-row-gap: 75px;
  flex-direction: column;
}
.journey-image {
  height: 450px;
}
.journey-text-wrapper {
  max-width: none;
  grid-row-gap: 10px;
}
.stats-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.stats-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
}
.stats-block {
  width: 40%;
}
.stats-divider {
  display: none;
}
.principle-container {
  grid-row-gap: 75px;
  flex-direction: column;
}
.why-us-row {
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 60px;
}
.why-us-heading-wrapper {
  max-width: none;
  grid-row-gap: 10px;
}
.journey-accordion-wrapper {
  max-width: none;
  margin-top: 40px;
}
.why-us-accordion-wrapper {
  grid-row-gap: 20px;
  margin-top: 20px;
}
.why-us-details-wrapper {
  grid-row-gap: 45px;
  flex-direction: column;
}
.why-us-accordion-image-wrapper, .why-us-accordion-image {
  width: 100%;
}
.our-team-blocks-wrapper {
  grid-row-gap: 60px;
  grid-template-columns: 1fr;
  margin-top: 45px;
}
.contact-us-container {
  flex-direction: column;
  align-items: center;
}
.contact-us-right-flex {
  width: 100vw;
  height: auto;
  justify-content: center;
  align-items: flex-start;
  padding: 100px;
}
.contact-form-wrapper {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact-form {
  width: 100%;
}
.project-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.project-container {
  grid-row-gap: 60px;
  flex-direction: column;
}
.project-right-div {
  max-width: 100%;
}
.share-social-links {
  width: 60%;
}
.work-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.work-container {
  width: 100%;
}
.work-tab-menu {
  width: 100%;
  grid-column-gap: 0px;
  justify-content: space-between;
  overflow: auto;
}
.work-heading {
  margin-bottom: 90px;
}
.collection-list {
  grid-template-columns: 1fr;
  align-items: start;
}
.cta-btn-wrapper {
  grid-row-gap: 30px;
  flex-flow: column wrap;
  justify-content: center;
}
.our-projects-container {
  grid-row-gap: 80px;
}
.our-projects-heading-wrapper {
  max-width: none;
  grid-row-gap: 10px;
}
.our-projects-para-wrapper {
  max-width: none;
}
.our-projects-row {
  grid-row-gap: 20px;
  flex-direction: column;
}
.nav-link {
  color: #292929;
  margin-left: 0;
  margin-right: 0;
}
.nav-links-wrapper {
  grid-row-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
}
.nav-menu {
  width: 65%;
  height: 100%;
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}
.menu-button {
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}
.navbar-overlay {
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: rgba(41, 41, 41, .6);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.logo-wrapper {
  padding-left: 0;
}
.logo-wrapper.for-mobile-nav {
  justify-content: space-between;
  display: flex;
}
.navbar-container {
  justify-content: space-between;
  padding: 20px;
}
.logo.for-mobile {
  display: block;
}
.logo.for-dt {
  display: none;
}
.navbar-menu-wrapper {
  height: 100%;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 45px;
}
.menu-link-block {
  color: #292929;
}
.menu-wrapper.for-dt {
  display: none;
}
.footer-column {
  width: 100%;
  max-width: none;
}
.footer {
  z-index: 0;
}
.footer-container {
  padding-left: 0;
  padding-right: 0;
}
.footer-bottom {
  grid-row-gap: 5px;
  flex-direction: column;
}
.footer-wrapper {
  grid-row-gap: 60px;
  flex-flow: wrap;
  align-items: flex-start;
}
.principle-text-wrapper {
  max-width: none;
  grid-row-gap: 20px;
}
.principle-image-wrapper {
  width: 100%;
}
.principle-image {
  height: 450px;
}
.desktop-nav {
  display: none;
}
}

@media screen and (max-width: 767px) {
.section-spacing {
  padding-top: 90px;
  padding-bottom: 90px;
}
.h4 {
  font-size: 1.5rem;
  line-height: 2.2rem;
}
.paragraph-big {
  font-size: 1.1rem;
  line-height: 2.2rem;
}
.h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.h3 {
  font-size: 1.75rem;
  line-height: 2.875rem;
}
.display {
  font-size: 3rem;
  line-height: 3.9rem;
}
.play-btn-wrapper {
  width: 100px;
  height: 100px;
}
.play-btn {
  width: 80px;
  height: 80px;
}
.hero-light-box {
  height: 350px;
  display: none;
}
.play-icon {
  width: 30px;
  height: 30px;
}
.hero-section {
  padding-top: 75px;
  padding-bottom: 75px;
}
.hero-links-wrapper {
  flex-wrap: wrap;
}
.home-about-container {
  grid-row-gap: 45px;
}
.home-about-image {
  height: 300px;
}
.points-wrapper {
  grid-row-gap: 9px;
  flex-flow: column wrap;
}
.point-wrapper {
  flex: none;
}
.team-slider-container {
  padding-top: 90px;
  padding-bottom: 90px;
}
.approach-container {
  grid-row-gap: 45px;
}
.approach-image-wrapper {
  width: 100%;
}
.approach-image {
  height: 350px;
}
.approach-text-wrapper {
  grid-row-gap: 10px;
}
.accordion-para-wrapper {
  padding-right: 20px;
}
.accordion-space, .accordion-bottom-space {
  height: 8px;
}
.essence-container {
  grid-row-gap: 75px;
}
.essence-lightbox-image {
  height: 300px;
}
.mastery-tab-blocks-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.testimonial-slide-text {
  padding: 40px;
}
.testimonial-reviewer-details {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
}
.catalog-block-title-wrapper {
  height: 300px;
  padding: 20px;
}
.cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cta-container {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cta-text-wrapper {
  max-width: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.cta-text-wrapper.v2 {
  grid-row-gap: 30px;
}
.cta-image-wrapper {
  width: 100%;
  display: none;
}
.about-hero-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-container {
  grid-row-gap: 60px;
}
.about-text-wrapper {
  grid-row-gap: 15px;
}
.about-image {
  height: 300px;
}
.journey-container {
  grid-row-gap: 60px;
}
.journey-image {
  height: 300px;
}
.stats-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.stats-block {
  grid-row-gap: 10px;
}
.principle-container {
  grid-row-gap: 60px;
}
.journey-accordion-wrapper {
  margin-top: 20px;
}
.why-us-accordion-image {
  height: 250px;
}
.contact-us-right-flex {
  padding: 90px;
}
.contact-form-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}
.social-links-wrapper {
  width: auto;
}
.project-section {
  padding-top: 75px;
  padding-bottom: 75px;
}
.project-image-wrapper {
  margin-top: 40px;
  margin-bottom: 60px;
}
.project-image {
  height: 300px;
}
.about-project-wrapper {
  grid-row-gap: 15px;
}
.project-images-collecion-list-wrapper {
  margin-top: 60px;
}
.project-accordion-wrapper {
  margin-top: 40px;
}
.share-social-links {
  width: 100%;
}
.work-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.work-tab-menu {
  margin-bottom: 50px;
  overflow: visible;
}
.work-tab-link {
  text-align: center;
}
.work-heading {
  margin-bottom: 70px;
}
.collection-list {
  grid-row-gap: 60px;
}
.cta-btn-wrapper {
  grid-row-gap: 20px;
}
.our-projects-container {
  grid-row-gap: 60px;
}
.nav-menu {
  width: 75%;
}
.logo-wrapper {
  width: 80px;
  height: 32px;
}
.navbar-container {
  padding: 20px;
}
.navbar-menu-wrapper {
  padding: 40px;
}
.menu-icon {
  width: 40px;
  height: 39px;
}
.footer-link-group {
  grid-row-gap: 10px;
}
.footer-copyright {
  font-size: .875rem;
  line-height: 1.7rem;
}
.footer {
  padding: 60px 30px 30px;
}
.footer-bottom {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-wrapper {
  grid-row-gap: 45px;
  flex-direction: column;
}
.webflow-link {
  font-size: .875rem;
  line-height: 1.7rem;
}
.footer-template-links-wrapper {
  flex-wrap: wrap;
}
.footer-template-link {
  font-size: .875rem;
  line-height: 1.7rem;
}
.principle-text-wrapper {
  grid-row-gap: 10px;
}
.principle-image {
  height: 300px;
}
}

@media screen and (max-width: 479px) {
.h2 {
  font-size: 2rem;
  line-height: 2.8rem;
}
.hero-light-box {
  height: auto;
}
.hero-btn {
  margin-top: 0;
}
.usp-points-block {
  width: 100%;
}
.points-wrapper {
  grid-row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 20px;
}
.point-wrapper, .team-slider, .team-slider-mask {
  width: 100%;
}
.team-slide {
  margin-right: 20px;
}
.team-member-image-wrapper, .team-slide-content-wrapper {
  width: 100%;
}
.slider-nav-btn {
  top: auto;
  bottom: 0%;
  left: 0;
  right: 80px;
}
.slider-nav-btn.right {
  right: 10px;
}
.slider-nav-btn.testimonial-left {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 80px;
}
.slider-nav-btn.testimonial-right {
  top: auto;
  bottom: 0%;
  left: 80px;
  right: 0%;
}
.accordion-block.why-us {
  border-bottom-style: none;
}
.mastery-section {
  padding-bottom: 45px;
}
.mastery-container {
  grid-row-gap: 60px;
}
.mastery-image {
  height: 300px;
}
.mastery-tabs {
  flex-direction: column;
  display: flex;
}
.mastery-tabs-menu {
  flex-direction: column;
}
.mastery-tab-link {
  width: 100%;
  height: auto;
  flex: none;
  justify-content: flex-start;
  padding-top: 9px;
  padding-bottom: 9px;
}
.mastery-tab-content-wrapper {
  grid-row-gap: 45px;
  padding-top: 45px;
  padding-bottom: 45px;
}
.mastery-tab-blocks-wrapper {
  grid-row-gap: 30px;
  grid-template-columns: 1fr;
}
.testimonial-slider {
  padding-bottom: 90px;
}
.testimonial-slide-text {
  padding: 30px;
}
.testimonial-reviewer-details {
  margin-top: 30px;
}
.testimonial-reviewer-details-block {
  flex-wrap: wrap;
}
.stars {
  order: -1;
}
.testimonial-slide-image {
  height: 300px;
}
.about-hero-section {
  padding-top: 120px;
  padding-bottom: 80px;
}
.about-us-links-wrapper {
  grid-row-gap: 20px;
  flex-wrap: wrap;
}
.stats-block {
  width: 100%;
}
.our-team-container {
  grid-row-gap: 20px;
}
.our-team-blocks-wrapper {
  grid-row-gap: 60px;
}
.our-team-member-image-wrapper {
  width: 100%;
}
.our-team-member-image {
  height: 300px;
}
.social-links-wrapper {
  margin-top: 20px;
}
.project-images-collecion-list-wrapper {
  width: 100%;
}
.project-images-collecion-list {
  width: 100%;
  grid-row-gap: 45px;
  grid-template-columns: 1fr;
}
.project-images-collecion-item, .project-lightbox, .project-lightbox-image {
  width: 100%;
}
.share-social-links {
  width: 80%;
}
.work-tab-menu {
  width: 100vw;
  grid-column-gap: 5px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: auto;
}
.work-tab-link {
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 2.6vw;
}
.work-block-image-wrapper {
  height: 250px;
}
.nav-links-wrapper {
  grid-row-gap: 20px;
}
.nav-menu {
  width: 85%;
  height: 100%;
  max-height: 100%;
}
.footer-link-group {
  grid-row-gap: 10px;
}
.footer-container {
  max-width: none;
}
.footer-wrapper {
  grid-row-gap: 45px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.studio-details {
  display: block;
}
}

/* =============================================================================
 * global-tail.css — framework rules that must WIN over the source's own rules.
 *
 * Concatenated AFTER the verbatim source rules. Everything here exists because the
 * original rule beat the source rule on SPECIFICITY, not order:
 *   .w-nav[data-collapse="medium"] .w-nav-menu  (0,2,1)  >  .nav-menu  (0,1,0)
 * My markup carries no data-collapse attribute (it is Webflow runtime plumbing), so
 * the equivalent is expressed with a descendant selector of the same weight.
 *
 * MEASURED CONSEQUENCE of omitting this: at 390/768 the mobile drawer rendered OPEN
 * (the source's own ≤991 .nav-menu rule makes it a position:fixed 65%-wide flex
 * panel), so the gate paired my visible drawer links against the source's section
 * headings.
 * ============================================================================= */

/* --- WP BRIDGE: full-bleed sections must sit flush (Gutenberg #51242) ------
 * WordPress core ships `:where(.wp-site-blocks) > * { margin-block-start: 1.5rem }`.
 * MEASURED: it added 24px above each of the 13 top-level sections = exactly the
 * 312px by which the live preview exceeded the source at every breakpoint.
 * Neutralized SELECTIVELY on the section wrappers only — never as a blanket
 * `> *` rule, which would defeat theme.json's blockGap for real blocks.
 * (No effect on the standalone mockup: .wp-site-blocks exists only under WP.) */
.wp-site-blocks > section,
.wp-site-blocks > .navbar,
.wp-site-blocks > .footer {
  margin-block-start: 0;
}

@media screen and (max-width: 991px) {
  /* .w-nav[data-collapse="medium"] .w-nav-menu { display: none } */
  .navbar .nav-menu { display: none; }
  /* the drawer is revealed by mockup.js toggling .is-open (Webflow used data-nav-menu-open) */
  .navbar.is-open .nav-menu { display: flex; }
  /* .w-nav[data-collapse="medium"] .w-nav-button { display: block } — the source's own
   * .menu-button rule (display:flex) already does this at ≤991; kept explicit so the
   * hamburger cannot vanish if that rule is ever re-scoped. */
  .navbar .nav-button { display: flex; }
}
