/*!************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./wp/wp-content/mu-plugins/webundu/assets/scss/index.scss ***!
  \************************************************************************************************************************************************************************************************************************/
/***Element Development***/
/**
  @include bp.media-breakpoint-up(md) {
  }

  @include bp.media-breakpoint-down(sm) {
  }

  @include bp.media-breakpoint-between(sm, lg) {
  }

  @include bp.media-breakpoint-only(lg) {
  }

// Define default breakpoints
*/
.skiplinks {
  display: none;
  visibility: hidden;
}

.sr-only {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  display: block;
}
.sr-only--item {
  list-style: none;
  overflow: hidden;
  border: 0;
}

@media (hover: hover) and (pointer: fine) {
  *:focus-visible {
    z-index: 999999;
    border-radius: 3px;
    outline-offset: 0.3rem;
    text-decoration: none;
    outline: 2px solid rgba(10, 10, 10, 0.9) !important;
    box-shadow: 0 0 0.75rem 0.75rem rgb(255, 255, 255);
    background-color: transparent;
  }
}
.nav-skiplinks ul li {
  position: fixed;
  right: auto;
  top: -9999px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  list-style: none;
}
.nav-skiplinks ul li:focus-within {
  top: 2.5rem;
}
.nav-skiplinks ul li a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: all ease-in-out var(--bde-transition-duration);
}

.basic-nav {
  margin-top: auto;
}
.basic-nav .navbar-nav {
  padding: 0;
  list-style: none;
  gap: 1rem;
}
.basic-nav .navbar-nav li a {
  padding: 1.5rem 2rem;
  line-height: 1;
}

.sticky-section {
  display: flex;
  position: relative;
  align-items: flex-start;
}
.sticky-section .left-content {
  width: 50%;
  padding: 4rem;
  max-width: 63rem;
  margin: auto;
}
.sticky-section .left-content .content-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 5vh;
  min-height: 300vh;
}
@media (max-width: 768px) {
  .sticky-section .left-content .content-block {
    padding-top: 0;
    min-height: unset;
  }
}
.sticky-section .right-visuals {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.sticky-section .right-visuals img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}
.sticky-section .right-visuals img:first-of-type {
  transition: unset;
}
.sticky-section .right-visuals img.is-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .sticky-section {
    flex-direction: column;
  }
  .sticky-section .left-content {
    width: 100%;
  }
  .sticky-section .right-visuals {
    display: none;
  }
}

.masonry-parallax-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.masonry-parallax-section .parallax-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  /* The magic that flips every second row automatically */
}
.masonry-parallax-section .parallax-row:nth-child(even) {
  flex-direction: row-reverse;
}
.masonry-parallax-section .parallax-row .image-column {
  width: 50%;
  height: 70vh;
  max-height: 78rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #dee2e6; /* Placeholder color while loading */
}
.masonry-parallax-section .parallax-row .image-column img {
  position: absolute;
  top: -15%; /* Start slightly above the container */
  left: 0;
  width: 100%;
  height: 130%; /* Image must be taller than container for parallax to work */
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform; /* Hint to browser for GPU acceleration */
}
.masonry-parallax-section .parallax-row .content-column {
  width: 50%;
  padding: 2rem;
}
@media (max-width: 768px) {
  .masonry-parallax-section .parallax-row,
  .masonry-parallax-section .parallax-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }
  .masonry-parallax-section .parallax-row .image-column,
  .masonry-parallax-section .parallax-row .content-column {
    width: 100%;
  }
  .masonry-parallax-section .parallax-row .image-column {
    height: 50vh;
  }
}

/* Main and Override */
.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

.d-inline-grid {
  display: inline-grid;
}

.d-table {
  display: table;
}

.d-table-row {
  display: table-row;
}

.d-table-cell {
  display: table-cell;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

@media (min-width: 480px) {
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-grid {
    display: grid;
  }
  .d-sm-inline-grid {
    display: inline-grid;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-inline-grid {
    display: inline-grid;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-grid {
    display: grid;
  }
  .d-lg-inline-grid {
    display: inline-grid;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-grid {
    display: grid;
  }
  .d-xl-inline-grid {
    display: inline-grid;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
}
@media (min-width: 1480px) {
  .d-xxl-inline {
    display: inline;
  }
  .d-xxl-inline-block {
    display: inline-block;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-grid {
    display: grid;
  }
  .d-xxl-inline-grid {
    display: inline-grid;
  }
  .d-xxl-table {
    display: table;
  }
  .d-xxl-table-row {
    display: table-row;
  }
  .d-xxl-table-cell {
    display: table-cell;
  }
  .d-xxl-flex {
    display: flex;
  }
  .d-xxl-inline-flex {
    display: inline-flex;
  }
  .d-xxl-none {
    display: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --mainSize: 1.618;
  --pi: 3.1415926536;
  --duration-x-1: calc(1 * calc(1.618 / 10 * 1s));
  --radius-x-1: calc(1 * calc(1.618 / 10 * 1rem));
  --spacer-x-1: calc(1 * calc(1.618 * 1rem) / 10);
  --size-x-1: calc(1 * calc(1.618 * 1rem));
  --blur-x-1: calc(1 * calc(1.618 / 10 * 1rem));
  --m1: calc(1 * calc(1.618 * 1rem));
  --p1: calc(1 * calc(1.618 * 1rem));
  --h1: clamp(calc(calc(1.618 * 1rem) * 2 / 1), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 1));
  --duration-x-2: calc(2 * calc(1.618 / 10 * 1s));
  --radius-x-2: calc(2 * calc(1.618 / 10 * 1rem));
  --spacer-x-2: calc(2 * calc(1.618 * 1rem) / 10);
  --size-x-2: calc(2 * calc(1.618 * 1rem));
  --blur-x-2: calc(2 * calc(1.618 / 10 * 1rem));
  --m2: calc(2 * calc(1.618 * 1rem));
  --p2: calc(2 * calc(1.618 * 1rem));
  --h2: clamp(calc(calc(1.618 * 1rem) * 2 / 2), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 2));
  --duration-x-3: calc(3 * calc(1.618 / 10 * 1s));
  --radius-x-3: calc(3 * calc(1.618 / 10 * 1rem));
  --spacer-x-3: calc(3 * calc(1.618 * 1rem) / 10);
  --size-x-3: calc(3 * calc(1.618 * 1rem));
  --blur-x-3: calc(3 * calc(1.618 / 10 * 1rem));
  --m3: calc(3 * calc(1.618 * 1rem));
  --p3: calc(3 * calc(1.618 * 1rem));
  --h3: clamp(calc(calc(1.618 * 1rem) * 2 / 3), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 3));
  --duration-x-4: calc(4 * calc(1.618 / 10 * 1s));
  --radius-x-4: calc(4 * calc(1.618 / 10 * 1rem));
  --spacer-x-4: calc(4 * calc(1.618 * 1rem) / 10);
  --size-x-4: calc(4 * calc(1.618 * 1rem));
  --blur-x-4: calc(4 * calc(1.618 / 10 * 1rem));
  --m4: calc(4 * calc(1.618 * 1rem));
  --p4: calc(4 * calc(1.618 * 1rem));
  --h4: clamp(calc(calc(1.618 * 1rem) * 2 / 4), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 4));
  --duration-x-5: calc(5 * calc(1.618 / 10 * 1s));
  --radius-x-5: calc(5 * calc(1.618 / 10 * 1rem));
  --spacer-x-5: calc(5 * calc(1.618 * 1rem) / 10);
  --size-x-5: calc(5 * calc(1.618 * 1rem));
  --blur-x-5: calc(5 * calc(1.618 / 10 * 1rem));
  --m5: calc(5 * calc(1.618 * 1rem));
  --p5: calc(5 * calc(1.618 * 1rem));
  --h5: clamp(calc(calc(1.618 * 1rem) * 2 / 5), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 5));
  --duration-x-6: calc(6 * calc(1.618 / 10 * 1s));
  --radius-x-6: calc(6 * calc(1.618 / 10 * 1rem));
  --spacer-x-6: calc(6 * calc(1.618 * 1rem) / 10);
  --size-x-6: calc(6 * calc(1.618 * 1rem));
  --blur-x-6: calc(6 * calc(1.618 / 10 * 1rem));
  --m6: calc(6 * calc(1.618 * 1rem));
  --p6: calc(6 * calc(1.618 * 1rem));
  --h6: clamp(calc(calc(1.618 * 1rem) * 2 / 6), calc(3.1415926536vw + 1rem), calc(calc(1.618 * 1rem) * 4 / 6));
  --dfs: calc(calc(1.618 / 1.8) * calc(1.618 * 1rem));
  --p: var(--dfs);
  --li: var(--dfs);
  --a: var(--dfs);
  --line-height: calc(1.618 * 1rem);
  --radius-main: calc(.933 * calc(1.618 * 1rem));
}
@media (prefers-reduced-motion: reduce) {
  :root html {
    scroll-behavior: auto !important;
  }
}

html {
  /* Webkit Browsers */
  /* Firefox Browsers */
  scrollbar-width: thin;
  scrollbar-color: #777777 rgba(0, 0, 0, 0);
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}
html::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
html::-webkit-scrollbar-thumb {
  background-color: #777777;
  border-radius: 1px;
}
html::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bde-body-font-family), sans-serif;
  font-size: var(--bde-base-font-size);
  font-weight: var(--da-body-font-weight, 400);
  line-height: var(--da-body-line-height, 1.5);
  color: var(--bde-body-text-color);
  text-align: var(--da-body-text-align, left);
  background-color: var(--bde-body-background-color);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bde-heading-font-family, ), serif;
  line-height: 1.2;
  color: var(--bde-headings-color);
  letter-spacing: 0.0031416rem;
}
@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    hyphens: auto;
    overflow-wrap: break-word;
  }
}

p, a, span, li, td, label, legend {
  hyphens: auto;
  overflow-wrap: break-word;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: rgba(var(--da-link-color-rgb), var(--da-link-opacity, 1));
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  --da-link-color-rgb: var(--da-link-hover-color-rgb);
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol, ol ul, ul ol, ul ul {
  margin: 1rem !important;
}

.wp-block-list li {
  margin-bottom: 1.75rem;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg {
  height: auto;
  max-width: 100%;
  display: block;
}

figure {
  margin: 2rem 0;
}

hr {
  height: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  overflow: visible;
}

button, input, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, [role=button] {
  cursor: pointer;
}
button:disabled, [role=button]:disabled {
  cursor: default;
}

textarea {
  resize: vertical;
  overflow: auto;
}

summary {
  cursor: pointer;
  display: list-item;
  outline: none;
}

[hidden] {
  display: none;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio, 100%);
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

header {
  position: absolute;
  z-index: 9999;
}
header .inner-wrapper .header-container {
  gap: var(--bde-column-gap);
}
header .inner-wrapper .navbar-brand {
  margin-top: 1rem;
  position: relative;
  border-radius: 100%;
  background: white;
  height: 15rem;
  width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 0 solid white;
}
header .inner-wrapper .navbar-brand .logo-svg-wrapper {
  height: 15rem;
  position: absolute;
}
header .inner-wrapper .navbar-brand.is-animated {
  transition: ease-in-out border var(--bde-transition-duration);
  border-width: 3px;
}
header .inner-wrapper nav.basic-nav {
  width: calc(48% - 7.5rem);
}
header .header-wrapper.scrolled--active .inner-wrapper {
  padding-top: 3.75rem;
}
header .header-wrapper.scrolled--active .inner-wrapper .navbar-brand {
  width: 12rem;
  height: 12rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .header-wrapper.scrolled--active .inner-wrapper .wp-search-input {
  padding: 0.25rem 0.5rem;
}
header .basic-nav .menu-item a.active {
  color: #ffffff;
}
header .basic-nav .menu-item a.active:hover {
  color: var(--bde-links-color);
}

body:not(.home) .inner-wrapper {
  padding-top: 3.75rem;
}
body:not(.home) .inner-wrapper .navbar-brand {
  width: 12rem;
  height: 12rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
body:not(.home) .inner-wrapper .wp-search-input {
  padding: 0.25rem 0.5rem;
}

#video-wrapper,
#video-wrapper .section-container {
  min-height: 68rem;
  position: relative;
  z-index: 0;
  height: 100vh;
  justify-content: center;
}
@media (max-width: 1200px) {
  #video-wrapper,
  #video-wrapper .section-container {
    height: 75vh;
  }
}
#video-wrapper #section-background-overlay,
#video-wrapper .section-container #section-background-overlay {
  background-color: rgba(176, 191, 224, 0.588);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
}
#video-wrapper #video-container,
#video-wrapper .section-container #video-container {
  height: 100%;
  max-height: 70rem;
  min-height: 60rem;
  padding-top: 15rem;
  width: 100vw;
}
#video-wrapper h1,
#video-wrapper .section-container h1 {
  margin: 0 0 auto;
  padding: 0 5rem;
  position: relative;
  width: 100%;
  z-index: 99;
}
#video-wrapper .bde-video,
#video-wrapper .section-container .bde-video {
  max-width: 75%;
  position: absolute;
  left: auto;
  right: 5rem;
}

.section-background-video {
  padding: 0;
  border-radius: 0;
}
.section-background-video video {
  border-radius: 0;
}
.section-background-video.is-animated {
  transition: ease-in-out all var(--bde-transition-duration);
  padding: 7.25rem;
  border-radius: 0.3rem;
}
.section-background-video.is-animated video {
  transition: ease-in-out all var(--bde-transition-duration);
  border-radius: 0.3rem;
}

main {
  position: relative;
  width: 100vw;
}
@media (max-width: 1200px) {
  main #about_me .bde-columns {
    gap: 0;
  }
  main #about_me .bde-column {
    height: 100%;
  }
  main #about_me .bde-column:first-of-type {
    overflow: hidden;
  }
  main #about_me .bde-column:first-of-type img {
    width: 75vw;
    max-width: 75vw;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  main #about_me .bde-column:last-of-type {
    padding: 5rem 2.5rem;
  }
}
@media (max-width: 768px) {
  main #about_me .bde-column:first-of-type {
    overflow: hidden;
    padding: 2.5rem;
  }
  main #about_me .bde-column:first-of-type img {
    width: 75vw;
    max-width: 75vw;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  main #about_me .bde-column:last-of-type {
    padding: 5rem 2.5rem;
  }
}
main #offer {
  background-color: #fcfcfc;
}
main #offer .section-container {
  padding: 0;
}
main #offer .section-container .bde-heading {
  padding: 2.75rem;
  position: absolute;
  z-index: 99;
}
main #offer .section-container .masonry-parallax-section {
  max-width: unset;
  padding: 0;
  gap: unset;
  width: 100vw;
}
main #offer .section-container .masonry-parallax-section .parallax-row {
  gap: 0;
}
main #offer .section-container .masonry-parallax-section .parallax-row .image-column {
  border-radius: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 50%;
  max-height: unset;
}
@media (max-width: 768px) {
  main #offer .section-container .masonry-parallax-section .parallax-row .image-column {
    width: 100%;
    height: 50vh;
  }
}
main #offer .section-container .masonry-parallax-section .parallax-row .content-column {
  padding: unset;
}
main #offer .section-container .masonry-parallax-section .parallax-row .content-column .content-wrapper {
  height: 100vh;
  max-height: unset;
  margin: auto;
  max-width: 70rem;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  main #offer .section-container .masonry-parallax-section .parallax-row .content-column .content-wrapper {
    width: 100%;
    height: 100%;
  }
}

/*# sourceMappingURL=app.css.map*/