:root {
    --linear-gradients: linear-gradient(217deg, rgb(1, 3, 24), rgba(1, 3, 24, 0.3) 70.71%), linear-gradient(127deg, rgb(7, 21, 61), rgba(7, 21, 61, 0.3) 70.71%), linear-gradient(336deg, rgb(0, 0, 0, 1), rgba(0, 0, 0, 0.3) 70.71%);
    --background-gradient: linear-gradient(0.25turn, #ffffffa1 0%, #ffffffe0  35%, #ffffffe0  65%, #ffffffa1 100%);
    --background-gradient: linear-gradient(0.25turn, #0f172a 0%, #0f172ae0  35%, #0f172aa1 100%);
    --font-color-default: #fff;
    --cursor-color: rgb(0, 255, 217);
    --bx-color-1: #00000020;
    --bx-color-2: #0000002e;
    --bx-color-3: #00000039;
    --bx-color-4: #00000047;
    --bx-color-5: #00000066;
    --boxshadow: 0 0.3px 0.7px var(--bx-color-1), 0 0.9px 1.7px var(--bx-color-2), 0 1.8px 3.5px var(--bx-color-3), 0 3.7px 7.3px var(--bx-color-4), 0 10px 20px var(--bx-color-5);
    --section-grid-position-factor: 1;
}

.ofelia-display {
    font-family: "ofelia-display", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 110, "wght" 300;
    font-size: 48.03px;
}

.ofelia-font {
    font-family: "ofelia-display", sans-serif;
    font-weight: 300;
    font-style: normal;
}

blockquote, figure, h1, h2, h3, h4, h5, h6, p, pre {
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    /* overflow: hidden; */
}

body.loading {
    overflow-y: hidden;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd #ffffff00;
    /* scrollbar-color: #62bde3 #ffffff; */
    scroll-behavior: smooth;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: scrollbar-width;
}

html.loading {
    scrollbar-width: none;
}



/* #mobile-navigation-absolute-positioner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-color: white;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: opacity;
} */

#loading-divider {
    width: 100vw;
    height: 0px;
    position: relative;
}

#aspect-ratio-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: hsl(0, 0%, 100%);
    transform: translateY(-100%);
    animation-duration: 1600ms;
    animation-delay: 0001ms;
    animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-name: bar-rise;
}

body.loading #aspect-ratio-bar {
    transform: translateY(0%);
}

#aspect-ratio-bar.animate {
    animation-play-state: running;
}

@keyframes bar-rise {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}

#loading-screen-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition-duration: 0s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: background-color;
}

body.loading #loading-screen-container {
    transition-duration: 4s;
}

#loading-screen-container.clear {
    background-color: #ffffff00;
}

.positioner {
    display: flex;
    flex-direction: row;
    width: 80%;
    height: 100%;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

#logo-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;
    transition-duration: 1600ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: margin-bottom;
}

body.loading #logo-container {
    margin-bottom: 80px;
}

#loading-screen-container.clear #logo-container {
    margin-bottom: 40px;
}

#logo-svg {
    width: 400px;
    overflow: visible;
    transform: scale(1);
    transition-duration: 1600ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: width, transform;
}

body.loading #logo-svg {
    /* width: 500px; */
    transform: scale(1.25);
}

#loading-screen-container.clear #logo-svg {
    /* width: 400px; */
    transform: scale(1);
}

.bin-group {
    transform: translateY(0px);
    opacity: 1;
    animation-duration: 1000ms;
    animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-name: logo-drop;
}

body.loading .bin-group {
    transform: translateY(-300px);
    opacity: 0;
}

.bin-1 {
    animation-delay: 0.66s;
}

.bin-2 {
    animation-delay: 1s;
}

.bin-3 {
    animation-delay: 0.33s;
}

@keyframes logo-drop {
    0% {
        transform: translateY(-300px);
        opacity: 0;
        animation-timing-function: linear;
    }
    25% {
        transform: translateY(-150px);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.logo-skew-text .tspan-text {
    opacity: 1;
    text-shadow: 
    0 0 0 #fff,
    0 0 0 #fff,
    0 0 0 #fff,
    0 0 0 #fff;
    animation-duration: 1000ms;
    animation-delay: 2000ms;
    animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-name: logo-text;
}

body.loading .tspan-text {
    opacity: 0;
    text-shadow: 
    0 0 0 #fff,
    0 0 0 #fff,
    0 0 0 #fff,
    0 0 0 #fff;
}

@keyframes logo-text {
    0% {
        opacity: 0;
        text-shadow: 
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff;
        animation-timing-function: linear;
    }
    50% {
        opacity: 1;
        text-shadow: 
        -0.5px -0.5px 0 #fff,
        0.5px -0.5px 0 #fff,
        -0.5px 0.5px 0 #fff,
        0.5px 0.5px 0 #fff;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    }
    100% {
        opacity: 1;
        text-shadow: 
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff;
    }
}

#logo-text-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.logo-text-flex-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}

.logo-span {
    font-family: "ofelia-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    line-height: 36px;
    color: #154a59;
    filter: blur(0px);
    margin-right: 20px;
    animation-duration: 800ms;
    animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-name: blur-in;
    transition-duration: 1600ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: font-size, color;
}

body.loading .logo-span {
    filter: blur(75px);
    font-size: 58px;
    line-height: 58px;
    color: #000000;
}

#loading-screen-container.clear .logo-span {
    font-size: 36px;
    line-height: 36px;
    color: #154a59;
}

.span-end {
    margin-right: 60px;
}

.span-0 {
    animation-delay: 3000ms;
}

.span-1 {
    animation-delay: 3020ms;
}

.span-2 {
    animation-delay: 3040ms;
}

.span-3 {
    animation-delay: 3060ms;
}

.span-4 {
    animation-delay: 3080ms;
}

.span-5 {
    animation-delay: 3100ms;
}

.span-6 {
    animation-delay: 3120ms;
}

.span-7 {
    animation-delay: 3140ms;
}

.span-8 {
    animation-delay: 3160ms;
}

.span-9 {
    animation-delay: 3180ms;
}

.span-10 {
    animation-delay: 3200ms;
}

.span-11 {
    animation-delay: 3220ms;
}

.span-12 {
    animation-delay: 3240ms;
}

.span-13 {
    animation-delay: 3260ms;
}

.span-14 {
    animation-delay: 3280ms;
}

.span-15 {
    animation-delay: 3300ms;
}

.span-16 {
    animation-delay: 3320ms;
}

.span-17 {
    animation-delay: 3340ms;
}

.span-18 {
    animation-delay: 3360ms;
}

.span-19 {
    animation-delay: 3380ms;
}

.span-20 {
    animation-delay: 3400ms;
}

.span-21 {
    animation-delay: 3420ms;
}


@keyframes blur-in {
    0% {
        filter: blur(75px);
    }
    100% {
        filter: blur(0px);
    }
}

#loading-screen-container.animate .bin-group {
    animation-play-state: running;
}

#loading-screen-container.animate .tspan-text {
    animation-play-state: running;
}

#loading-screen-container.animate .logo-span {
    animation-play-state: running;
}

/* #loading-screen-container.animate .nav-container {
    transform: translateY(-100%);
} */

body.loading main {
    height: 0px;
    overflow: hidden;
}

.content-section {
    height: 100vh;
    background-color: hsl(0, 0%, 100%);
    padding: 0 160px;
    /* width: 100%; */
}

#cta {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.relative-positioner {
    position: relative;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.absolute-positioner {
    position: absolute;
    display: flex;
    flex-direction: row;
    height: 100%;
}

.absolute-positioner.dots {
    left: 17.75px;
    right: 17.75px;
    /* transform: translateY(-62.25px); */
    justify-content: space-between;
    opacity: 0.5;
}

.dots-column {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dots-top-left {
    justify-content: flex-start;
}

.dots-bottom-right {
    justify-content: flex-end;
}

.corner-dots {
    width: 420px;
    height: 510px;
}

.absolute-positioner.lineart {
    left: 0;
    right: 0;
    justify-content: flex-end;
    opacity: 0.8;
}

.house-lineart-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    height: 100%;
}

.house-lineart-container_mobile {
    display: none;
}

#landing-cta {
    display: flex;
    flex-direction: row;
    width: 50%;
    z-index: 5;
}

#landing-cta .flex-column {
    justify-content: flex-start;
}

.header-cta {
    font-size: 56px;
    font-weight: 300;
    margin: 20px 0;
}

.body-cta {
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0;
}

#cta-button {
    text-decoration: none;
    width: min-content;
    white-space: nowrap;
    position: relative;
    padding: 13px 35px 11px 35px;
    background: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #000000;
    border: 3px solid #154a59;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all .3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s ease;
}

#cta-button:hover {
    background: #154a59;
    color: #FFFFFF;
    box-shadow: 0 0 25px #4a81ac;
    border: 3px solid #FFF;
}

#cta-button:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

#cta-button:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

#cta-button:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

#cta-button:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

#cta-button:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

#cta-button:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #738897);
    z-index: 2;
}

.fil0 {
    fill: #FFFDEF
}

#svg-house-lineart {
    height: 70%;
}

path[svgHouseLineart_device="web"] {
    stroke-dashoffset: 6215.15673828125px;
    stroke-dasharray: 6215.15673828125px;
    /* -webkit-transition: stroke-dashoffset 4s ease-in-out 0s;
            transition: stroke-dashoffset 4s ease-in-out 0s; */

    animation-delay: 1s;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: draw-house;
}

path[svgHouseLineart_device="mobile"] {
    stroke-dashoffset: 6215.15673828125px;
    stroke-dasharray: 6215.15673828125px;
    /* -webkit-transition: stroke-dashoffset 4s ease-in-out 0s;
            transition: stroke-dashoffset 4s ease-in-out 0s; */

    animation-delay: 1s;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-name: draw-house;
}

@keyframes draw-house {
    0% {
        stroke-dashoffset: 6215.15673828125px;
    }
    45% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: 0;
    }
    95% {
        stroke-dashoffset: -6215.15673828125px;
    }
    100% {
        stroke-dashoffset: -6215.15673828125px;
    }
}

#more-than-cleaning {
    padding: 0;
    background-color: white;
    overflow: hidden;
}

#more-than-cleaning.content-section {
    height: 90vh;
}


.image-scaler {
    width: 100%;
    height: 100%;
    display: flex;
}

/* .image-scaler:hover {
    background-color: #00000082;
} */

.absolute-positioner.background-image {
    width: 100%;
    overflow: hidden;
}

#background-image {
    width:100%;
    transform: scale(1.05);
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: transform;
}

.image-scaler:hover #background-image {
    transform: scale(1);
}

.absolute-positioner.image-text {
    width: 100%;
    justify-content: flex-end;
    background-color: #00000000;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: background-color;
}

.image-scaler:hover .absolute-positioner.image-text {
    background-color: #0000002e;
}

.image-text-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* filter: drop-shadow(-30px 15px 5px #3b3a355c); */
    width: 80%;
}

.image-text-wrap {
    color:rgb(65, 52, 0);
    padding-top: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    transform: scale(1);
    filter: drop-shadow(-40px 16px 3px rgba(59, 58, 53, 0.15));
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: transform, filter, color;
}

.image-scaler:hover .image-text-wrap {
    transform: scale(1.05);
    filter: drop-shadow(-80px 32px 14px #3b3a3529);
    color:rgb(255, 246, 209);
}

.image-text-header {
    font-size: 36px;
    font-weight: 500;
    margin: 10px 0;
    /* filter: drop-shadow(-50px 20px 10px #3b3a3565); */
}

.image-text-body {
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0;
    /* filter: drop-shadow(-50px 20px 10px #3b3a358f); */
}

#services.content-section {
    background-color: rgb(255, 255, 255);
    position: relative;
    /* overflow: hidden; */
    height: auto;
    /* padding: 0 200px; */
}

.services-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.services-layout-container {
    width: 100%;
    max-width: 1080px;
}

.services-layout {
    padding: 80px 0 80px;
}

.row-layout {
    display: grid;
    grid: auto/minmax(0,1fr);
    row-gap: 80px;
    align-items: flex-start;
}

.column-layout {
    display: grid;
    row-gap: 32px;
    height: 100vh;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.section-variant {
    display: grid;
    row-gap: 32px;
}

.copy-header {
    position: relative;
    padding: 0 64px 0 16px;
    /* max-width: var(--headerMaxWidth); */
    max-width: calc(calc(1080px * 0.25) * 3);
    margin: 10px 0;
}

.copy .copy-header {
    display: grid;
    row-gap: 32px;
}

.copy-caption {
    font-size: 18px;
    font-weight: 500;
}

.copy-title {
    font-size: 68px;
    font-weight: 500;
}

.copy-body {
    padding: 0 64px 0 16px;
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0;
    /* font: var(--bodyFont); */
    /* color: var(--textColor); */
    max-width: calc(calc(1080px * 0.25) * 3);
}

.sticky-animation {
    display: block;
    position: relative;
    align-self: flex-start;
    overflow: visible;
    visibility: hidden;
}

.sticky-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2145px;
}

.sticky-animation-content {
    position: sticky;
    /* top: 0; */
    /* background-color: blue; */
    top: calc(50% - 270px);
    aspect-ratio: 1;
}

.sticky-animation-content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-top: 32px;
}

.sticky-animation-content-section:first-of-type {
    align-items: flex-start;
}

.standalone-animation {
    position: relative;
    display: none;
    place-items: center;
    visibility: hidden;
}

.DOM-graphic {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.DOM-graphic-height-container {
    height: 0;
    width: 100%;
    max-width: 540px;
    padding-bottom: 100%;
    /* max-width: var(--maxWidth);
        padding-bottom: var(--aspectRatio); */
}

.DOM-graphic-scale-container {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 50% 50%;
    /* will-change: var(--willChange); */
    will-change: initial;
    transform: scale(1);
    width: 100%;
}

.subanimation {
    display: grid;
    justify-items: center;
    position: relative;
    align-items: center;
    width: 540px;
    height: 540px;
    /* width: var(--domGraphicWidth, 540px);
    height: var(--domGraphicHeight, 540px); */
}

.section-grid {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.grid-container {
    position: relative;
    width: 100%;
    height: 0;
}

.grid-container svg {
    position: absolute;
}

.section-graphic {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fridge-line {
    transform: scaleX(-1);
    opacity: 0;
}

#fridge-solid {
    transform: scaleX(-1);
    overflow: visible;
    opacity: 0;
    aspect-ratio: 1;
    filter: hue-rotate(180deg);
}

#sink-line {
    width: 100%;
    opacity: 0;
}

#sink-solid {
    width: 100%;
    overflow: visible;
    opacity: 0;
    filter: hue-rotate(180deg);
}

#dw-line {
    width: 80%;
    opacity: 0;
}

#dw-solid {
    width: 80%;
    overflow: visible;
    opacity: 0;
    filter: hue-rotate(180deg);
}

.plate-solid {
    opacity: 0;
}

#drawer-line {
    width: 80%;
    opacity: 1;
}

#drawer-solid {
    width: 80%;
    overflow: visible;
    opacity: 0;
    filter: hue-rotate(180deg);
}

#drawer-connector {
    height: 101.57px;
    width: 30.35px;
    top: 349px;
    left: 456px;
}

#drawer-icon {
    height: 43px;
    top: 429px;
    left: 416px;
    transform: rotate(-90deg);
}

#fridge-connector {
    height: 20px;
    width: 80px;
    top: 240px;
    left: 76px;
}

#fridge-icon {
    height: 43px;
    top: 200px;
    left: 60px;
}

#sink-connector {
    height: 40px;
    width: 90px;
    top: 59px;
    left: 278px;
}

#sink-icon {
    height: 43px;
    top: 39px;
    left: 365px;
    transform: rotate(90deg);
}

#dw-connector {
    height: 30px;
    width: 71px;
    top: 490px;
    left: 189px;
}

#dw-icon {
    height: 43px;
    top: 497px;
    left: 257px;
    transform: rotate(90deg)
}


#bubblesSVG {
	position: absolute;
	height: 100%;
	width: 110%;
	top: 0;
	left: -5%;
	overflow: hidden;
}

#bubble-mobile {
    display: none;
    height: 100%;
    width: 100%;
    mask-image: none;
}

#bubble-web {
    display: block;
    /* height: 100%;
    width: 100%; */
    mask-image: url("#maskBubbles");
}


#top {
	z-index: 2;
	pointer-events: none;
}

#testimonials {
    height: min-content;
    padding: 0;
}

.image-center {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.skyline {
    width: 100%;
    width: 100%;
    transform: scale(1);
}

canvas[resize] {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -5;
    background-repeat: repeat-y;
    background-color: #ffffff;

    --gradient-color-2: #69b0e6;
    --gradient-color-3: #d3fff9;
    --gradient-color-4: #b1e6f1;
    --gradient-color-1: #73bfc9; 

    --gradient-color-2: #ff9165;
    --gradient-color-3: #b1e6f1;
    --gradient-color-4: #ffee91;
    --gradient-color-1: #69b0e6;

    --gradient-color-2: #ff9165;
    --gradient-color-3: #ebfbff;
    --gradient-color-4: #ffee91;
    --gradient-color-1: #69b0e6;
}

#footer {
    background-color: #00299ead;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-main {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8% 0 4% 0;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 30px;
    min-width: 100px;
}

.footer-column-header {
    color: white;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 150%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 110%;
}

#footer .footer-column-links a {
    color: white;
    margin: 10px 5px;
    font-size: 100%;
    cursor: pointer;
}

#rld-footer-about {
    width: 300px;
    min-width: 200px;
}

#rld-footer-about-title img {
    width: 12%;
    margin-right: 2%;
}

.footer-column-description {
    width: 100%;
    color: white;
    text-align: start;
}

.footer-column-description p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0;
}

#footer-end {
    font-size: 100%;
    color: white;
    height: 8%;
    width: 60%;
    padding: 1.5% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #cfd0d0;
    flex-wrap: wrap;
}

#footer-end-right {
    display: flex;
    width: 8%;
    min-width: 75px;
}

#footer-end-right img {
    width: 30%;
    margin: 0 3px;
}

@media only screen and (max-width: 1020px) {
    .ofelia-display {
        font-family: "ofelia-display", sans-serif;
        font-weight: 200;
        font-style: normal;
        font-variation-settings: "wdth" 110, "wght" 300;
        font-size: 48.03px;
    }
    
    .ofelia-font {
        font-family: "ofelia-display", sans-serif;
        font-weight: 300;
        font-style: normal;
    }
    
    blockquote, figure, h1, h2, h3, h4, h5, h6, p, pre {
        margin: 0;
    }
    
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        /* overflow: hidden; */
    }
    
    body.loading {
        overflow-y: hidden;
    }
    
    html {
        scrollbar-width: thin;
        scrollbar-color: #bdbdbd #ffffff00;
        scroll-behavior: smooth;
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: scrollbar-width;
    }
    
    html.loading {
        scrollbar-width: none;
    }
    
    #loading-divider {
        width: 100vw;
        height: 0px;
        position: relative;
    }
    
    #aspect-ratio-bar {
        position: absolute;
        top: 0;
        width: 100%;
        height: 80px;
        background-color: white;
        transform: translateY(-100%);
        animation-duration: 1600ms;
        animation-delay: 0001ms;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: paused;
        animation-name: bar-rise;
    }
    
    body.loading #aspect-ratio-bar {
        transform: translateY(0%);
    }
    
    #aspect-ratio-bar.animate {
        animation-play-state: running;
    }
    
    @keyframes bar-rise {
        0% {
            transform: translateY(0%);
        }
        100% {
            transform: translateY(-100%);
        }
    }
    
    #loading-screen-container {
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        transition-duration: 0s;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: background-color;
    }
    
    body.loading #loading-screen-container {
        transition-duration: 4s;
    }
    
    #loading-screen-container.clear {
        background-color: #ffffff00;
    }
    
    .positioner {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }
    
    .flex-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    #logo-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
        transition-duration: 1600ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: margin-bottom;
    }
    
    body.loading #logo-container {
        margin-bottom: 80px;
    }
    
    #loading-screen-container.clear #logo-container {
        margin-bottom: 40px;
    }
    
    #logo-svg {
        width: 80%;
        overflow: visible;
        transform: scale(1);
        transition-duration: 1600ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: width, transform;
    }
    
    body.loading #logo-svg {
        /* width: 500px; */
        transform: scale(1.25);
    }
    
    #loading-screen-container.clear #logo-svg {
        /* width: 400px; */
        transform: scale(1);
    }
    
    .bin-group {
        transform: translateY(0px);
        opacity: 1;
        animation-duration: 1000ms;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: paused;
        animation-name: logo-drop;
    }
    
    body.loading .bin-group {
        transform: translateY(-300px);
        opacity: 0;
    }
    
    .bin-1 {
        animation-delay: 0.66s;
    }
    
    .bin-2 {
        animation-delay: 1s;
    }
    
    .bin-3 {
        animation-delay: 0.33s;
    }
    
    @keyframes logo-drop {
        0% {
            transform: translateY(-300px);
            opacity: 0;
            animation-timing-function: linear;
        }
        25% {
            transform: translateY(-150px);
            opacity: 1;
            animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        }
        100% {
            transform: translateY(0px);
            opacity: 1;
        }
    }
    
    .logo-skew-text .tspan-text {
        opacity: 1;
        text-shadow: 
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff;
        animation-duration: 1000ms;
        animation-delay: 2000ms;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: paused;
        animation-name: logo-text;
    }
    
    body.loading .tspan-text {
        opacity: 0;
        text-shadow: 
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff,
        0 0 0 #fff;
    }
    
    @keyframes logo-text {
        0% {
            opacity: 0;
            text-shadow: 
            0 0 0 #fff,
            0 0 0 #fff,
            0 0 0 #fff,
            0 0 0 #fff;
            animation-timing-function: linear;
        }
        50% {
            opacity: 1;
            text-shadow: 
            -0.5px -0.5px 0 #fff,
            0.5px -0.5px 0 #fff,
            -0.5px 0.5px 0 #fff,
            0.5px 0.5px 0 #fff;
            animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        }
        100% {
            opacity: 1;
            text-shadow: 
            0 0 0 #fff,
            0 0 0 #fff,
            0 0 0 #fff,
            0 0 0 #fff;
        }
    }
    
    #logo-text-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .logo-text-flex-wrap {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        margin: 10px 0;
    }
    
    .logo-span {
        font-family: "ofelia-display", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 36px;
        line-height: 36px;
        color: #154a59;
        filter: blur(0px);
        margin-right: 10px;
        animation-duration: 800ms;
        animation-timing-function: cubic-bezier(0.17, 0.17, 0.24, 1);
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: paused;
        animation-name: blur-in;
        transition-duration: 1600ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: font-size, color;
    }
    
    body.loading .logo-span {
        filter: blur(75px);
        font-size: 58px;
        line-height: 58px;
        color: #000000;
    }
    
    #loading-screen-container.clear .logo-span {
        font-size: 26px;
        line-height: 26px;
        color: #154a59;
    }
    
    .span-end {
        margin-right: 10px;
    }
    
    .span-0 {
        animation-delay: 3000ms;
    }
    
    .span-1 {
        animation-delay: 3020ms;
    }
    
    .span-2 {
        animation-delay: 3040ms;
    }
    
    .span-3 {
        animation-delay: 3060ms;
    }
    
    .span-4 {
        animation-delay: 3080ms;
    }
    
    .span-5 {
        animation-delay: 3100ms;
    }
    
    .span-6 {
        animation-delay: 3120ms;
    }
    
    .span-7 {
        animation-delay: 3140ms;
    }
    
    .span-8 {
        animation-delay: 3160ms;
    }
    
    .span-9 {
        animation-delay: 3180ms;
    }
    
    .span-10 {
        animation-delay: 3200ms;
    }
    
    .span-11 {
        animation-delay: 3220ms;
    }
    
    .span-12 {
        animation-delay: 3240ms;
    }
    
    .span-13 {
        animation-delay: 3260ms;
    }
    
    .span-14 {
        animation-delay: 3280ms;
    }
    
    .span-15 {
        animation-delay: 3300ms;
    }
    
    .span-16 {
        animation-delay: 3320ms;
    }
    
    .span-17 {
        animation-delay: 3340ms;
    }
    
    .span-18 {
        animation-delay: 3360ms;
    }
    
    .span-19 {
        animation-delay: 3380ms;
    }
    
    .span-20 {
        animation-delay: 3400ms;
    }
    
    .span-21 {
        animation-delay: 3420ms;
    }
    
    
    @keyframes blur-in {
        0% {
            filter: blur(75px);
        }
        100% {
            filter: blur(0px);
        }
    }
    
    #loading-screen-container.animate .bin-group {
        animation-play-state: running;
    }
    
    #loading-screen-container.animate .tspan-text {
        animation-play-state: running;
    }
    
    #loading-screen-container.animate .logo-span {
        animation-play-state: running;
    }
    
    /* #loading-screen-container.animate .nav-container {
        transform: translateY(-100%);
    } */

    #main-content {
        overflow-x: hidden;
    }
    
    body.loading main {
        height: 0px;
        overflow: hidden;
    }
    
    .content-section {
        height: 100vh;
        background-color: #ffffff;
        padding: 0 15px;
        /* width: 100%; */
    }
    
    #cta {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
        height: min-content;
    }
    
    .relative-positioner {
        position: relative;
        width: 100vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .absolute-positioner {
        position: absolute;
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    /* #cta .absolute-positioner {
        position: absolute;
        display: flex;
        flex-direction: row;
        width: 100%;
    } */
    
    .absolute-positioner.dots {
        left: 0;
        right: 0;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0.5;
        height: 100%;
    }
    
    .dots-column {
        height: min-content;
        display: flex;
        flex-direction: row;
    }
    
    .dots-top-left {
        justify-content: flex-start;
        margin-left: 15px;
    }
    
    .dots-bottom-right {
        justify-content: flex-end;
        margin-right: 15px;
        padding-bottom: 1rem;
    }
    
    .corner-dots {
        width: 60%;
        height: min-content;
    }
    
    .absolute-positioner.lineart {
        position:initial;
        /* left: 0;
        right: 0; */
        display: flex;
        flex-direction: row;
        justify-content: center;
        opacity: 0.8;
    }
    
    .house-lineart-container {
        display: none;
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%; */
    }

    .house-lineart-container_mobile {
        display: block;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    
    #landing-cta {
        display: flex;
        flex-direction: row;
        width: 100%;
        z-index: 5;
    }
    
    #landing-cta .flex-column {
        justify-content: flex-start;
    }
    
    .header-cta {
        font-size: 56px;
        font-weight: 300;
        margin: 20px 0;
    }
    
    .body-cta {
        font-size: 24px;
        font-weight: 400;
        margin: 20px 0;
    }
    
    #cta-button {
        text-decoration: none;
        width: min-content;
        white-space: nowrap;
        position: relative;
        padding: 12px 35px;
        background: #FFFFFF;
        font-size: 17px;
        line-height: 17px;
        font-weight: 500;
        color: #000000;
        border: 3px solid #154a59;
        border-radius: 8px;
        box-shadow: 0 0 0 #fec1958c;
        transition: all .3s ease-in-out;
        cursor: pointer;
        margin-top: 20px;
    }
    
    .star-1 {
        position: absolute;
        top: 20%;
        left: 20%;
        width: 25px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    }
    
    .star-2 {
        position: absolute;
        top: 45%;
        left: 45%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }
    
    .star-3 {
        position: absolute;
        top: 40%;
        left: 40%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }
    
    .star-4 {
        position: absolute;
        top: 20%;
        left: 40%;
        width: 8px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
    }
    
    .star-5 {
        position: absolute;
        top: 25%;
        left: 45%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
    }
    
    .star-6 {
        position: absolute;
        top: 5%;
        left: 50%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 0 #fffdef);
        z-index: -5;
        transition: all .8s ease;
    }
    
    #cta-button:hover {
        background: #154a59;
        color: #FFFFFF;
        box-shadow: 0 0 25px #4a81ac;
        border: 3px solid #FFF;
    }
    
    #cta-button:hover .star-1 {
        position: absolute;
        top: -80%;
        left: -30%;
        width: 25px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    #cta-button:hover .star-2 {
        position: absolute;
        top: -25%;
        left: 10%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    #cta-button:hover .star-3 {
        position: absolute;
        top: 55%;
        left: 25%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    #cta-button:hover .star-4 {
        position: absolute;
        top: 30%;
        left: 80%;
        width: 8px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    #cta-button:hover .star-5 {
        position: absolute;
        top: 25%;
        left: 115%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    #cta-button:hover .star-6 {
        position: absolute;
        top: 5%;
        left: 60%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 10px #738897);
        z-index: 2;
    }
    
    .fil0 {
        fill: #FFFDEF
    }
    
    #svg-house-lineart {
        height: auto;
        width: 125%;
    }

    path[svgHouseLineart_device="web"] {
        stroke-dashoffset: 6215.15673828125px;
        stroke-dasharray: 6215.15673828125px;
        /* -webkit-transition: stroke-dashoffset 4s ease-in-out 0s;
                transition: stroke-dashoffset 4s ease-in-out 0s; */
    
        animation-delay: 1s;
        animation-duration: 12s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: paused;
        animation-name: draw-house;
    }
    
    path[svgHouseLineart_device="mobile"] {
        stroke-dashoffset: 6215.15673828125px;
        stroke-dasharray: 6215.15673828125px;
        /* -webkit-transition: stroke-dashoffset 4s ease-in-out 0s;
                transition: stroke-dashoffset 4s ease-in-out 0s; */
    
        animation-delay: 1s;
        animation-duration: 12s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: running;
        animation-name: draw-house;
    }
    
    @keyframes draw-house {
        0% {
            stroke-dashoffset: 6215.15673828125px;
        }
        45% {
            stroke-dashoffset: 0;
        }
        50% {
            stroke-dashoffset: 0;
        }
        95% {
            stroke-dashoffset: -6215.15673828125px;
        }
        100% {
            stroke-dashoffset: -6215.15673828125px;
        }
    }
    
    #more-than-cleaning {
        padding: 0;
        background-color: white;
        overflow: hidden;
    }
    
    #more-than-cleaning.content-section {
        /* position: relative; */
        height: 100vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    
    .image-scaler {
        position: relative;
        width: 0px;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    /* .image-scaler:hover {
        background-color: #00000082;
    } */
    
    .absolute-positioner.background-image {
        width: min-content;
        height: 100%;
        overflow: hidden;
    }
    
    #background-image {
        width: auto;
        height: 100%;
        justify-self: center;
        transform: scale(1.05);
        transition-duration: 800ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: transform;
    }
    
    .image-scaler:hover #background-image {
        transform: scale(1);
    }
    
    .absolute-positioner.image-text {
        width: 100vw;
        height: 100%;
        justify-self: center;
        background-color: #00000000;
        transition-duration: 800ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: background-color;
    }
    
    .image-scaler:hover .absolute-positioner.image-text {
        background-color: #0000002e;
    }
    
    .image-text-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        /* filter: drop-shadow(-30px 15px 5px #3b3a355c); */
        width: 100%;
    }
    
    .image-text-wrap {
        color:rgb(65, 52, 0);
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 80%;
        transform: scale(1);
        filter: drop-shadow(-40px 16px 3px rgba(59, 58, 53, 0.15));
        transition-duration: 800ms;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-property: transform, filter, color;
    }
    
    .image-scaler:hover .image-text-wrap {
        transform: scale(1.05);
        filter: drop-shadow(-80px 32px 14px #3b3a3529);
        color:rgb(255, 246, 209);
    }
    
    .image-text-header {
        font-size: 36px;
        font-weight: 500;
        margin: 10px 0;
        /* filter: drop-shadow(-50px 20px 10px #3b3a3565); */
    }
    
    .image-text-body {
        font-size: 24px;
        font-weight: 400;
        margin: 10px 0;
        /* filter: drop-shadow(-50px 20px 10px #3b3a358f); */
    }
    
    #services.content-section {
        background-color: rgb(255, 255, 255);
        position: relative;
        /* overflow: hidden; */
        height: auto;
        /* padding: 0 200px; */
    }
    
    .services-container {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
    }
    
    .services-layout-container {
        width: 100%;
        max-width: 1080px;
    }
    
    .services-layout {
        padding: 80px 0 80px;
    }
    
    .row-layout {
        display: grid;
        grid: auto/minmax(0,1fr);
        row-gap: 80px;
        align-items: flex-start;
    }
    
    .column-layout {
        display: grid;
        row-gap: 32px;
        height: min-content;
        align-items: center;
        grid-template-columns: 1fr;
    }
    
    .section-variant {
        display: grid;
        row-gap: 32px;
    }
    
    .copy-header {
        position: relative;
        padding: 0 64px 0 16px;
        /* max-width: var(--headerMaxWidth); */
        max-width: calc(calc(1080px * 0.25) * 3);
        margin: 10px 0;
    }
    
    .copy .copy-header {
        display: grid;
        row-gap: 32px;
    }
    
    .copy-caption {
        font-size: 18px;
        font-weight: 500;
    }
    
    .copy-title {
        font-size: 52px;
        font-weight: 500;
    }
    
    .copy-body {
        padding: 0 64px 0 16px;
        font-size: 24px;
        font-weight: 400;
        margin: 10px 0;
        /* font: var(--bodyFont); */
        /* color: var(--textColor); */
        max-width: calc(calc(1080px * 0.25) * 3);
    }
    
    .sticky-animation {
        display: none;
        position: relative;
        align-self: flex-start;
        overflow: visible;
        visibility: hidden;
    }
    
    .sticky-animation-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2145px;
    }
    
    .sticky-animation-content {
        position: sticky;
        /* top: 0; */
        /* background-color: blue; */
        top: calc(50% - 270px);
        aspect-ratio: 1;
    }
    
    .sticky-animation-content-section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        margin-top: 32px;
    }
    
    .sticky-animation-content-section:first-of-type {
        align-items: flex-start;
    }

    .standalone-animation {
        position: relative;
        display: grid;
        place-items: center;
        visibility: hidden;
    }
    
    .DOM-graphic {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .DOM-graphic-height-container {
        height: 0;
        width: 100%;
        max-width: 540px;
        padding-bottom: 100%;
        /* max-width: var(--maxWidth);
            padding-bottom: var(--aspectRatio); */
    }
    
    .DOM-graphic-scale-container {
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: 50% 50%;
        /* will-change: var(--willChange); */
        will-change: initial;
        transform: scale(1);
        width: 100%;
    }
    
    .subanimation {
        display: grid;
        justify-items: center;
        position: relative;
        align-items: center;
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        /* width: var(--domGraphicWidth, 540px);
        height: var(--domGraphicHeight, 540px); */
    }
    
    .section-grid {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .grid-container {
        position: relative;
        width: 100%;
        height: 0;
    }
    
    .grid-container svg {
        position: absolute;
    }
    
    .section-graphic {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #fridge-line {
        height: 100%;
        transform: scaleX(-1);
        opacity: 0;
    }
    
    #fridge-solid {
        height: 100%;
        transform: scaleX(-1);
        overflow: visible;
        opacity: 0;
        aspect-ratio: 1;
        filter: hue-rotate(180deg);
    }
    
    #sink-line {
        width: 100%;
        opacity: 0;
    }
    
    #sink-solid {
        width: 100%;
        overflow: visible;
        opacity: 0;
        filter: hue-rotate(180deg);
    }
    
    #dw-line {
        width: 80%;
        opacity: 0;
    }
    
    #dw-solid {
        width: 80%;
        overflow: visible;
        opacity: 0;
        filter: hue-rotate(180deg);
    }
    
    .plate-solid {
        opacity: 0;
    }
    
    #drawer-line {
        width: 80%;
        opacity: 1;
    }
    
    #drawer-solid {
        width: 80%;
        overflow: visible;
        opacity: 0;
        filter: hue-rotate(180deg);
    }
    
    #drawer-connector {
        height: calc(101.57px * var(--section-grid-position-factor));
        width: calc(30.35px * var(--section-grid-position-factor));
        top: calc(349px * var(--section-grid-position-factor));
        left: calc(456px * var(--section-grid-position-factor));
    }
    
    #drawer-icon {
        height: calc(43px * var(--section-grid-position-factor));
        top: calc(429px * var(--section-grid-position-factor));
        left: calc(416px * var(--section-grid-position-factor));
        transform: rotate(-90deg);
    }
    
    #fridge-connector {
        height: calc(20px * var(--section-grid-position-factor));
        width: calc(80px * var(--section-grid-position-factor));
        top: calc(240px * var(--section-grid-position-factor));
        left: calc(76px * var(--section-grid-position-factor));
    }
    
    #fridge-icon {
        height: calc(43px * var(--section-grid-position-factor));
        top: calc(200px * var(--section-grid-position-factor));
        left: calc(60px * var(--section-grid-position-factor));
    }
    
    #sink-connector {
        height: calc(40px * var(--section-grid-position-factor));
        width: calc(90px * var(--section-grid-position-factor));
        top: calc(59px * var(--section-grid-position-factor));
        left: calc(278px * var(--section-grid-position-factor));
    }
    
    #sink-icon {
        height: calc(43px * var(--section-grid-position-factor));
        top: calc(39px * var(--section-grid-position-factor));
        left: calc(365px * var(--section-grid-position-factor));
        transform: rotate(90deg);
    }
    
    #dw-connector {
        height: calc(30px * var(--section-grid-position-factor));
        width: calc(71px * var(--section-grid-position-factor));
        top: calc(490px * var(--section-grid-position-factor));
        left: calc(189px * var(--section-grid-position-factor));
    }
    
    #dw-icon {
        height: calc(43px * var(--section-grid-position-factor));
        top: calc(497px * var(--section-grid-position-factor));
        left: calc(257px * var(--section-grid-position-factor));
        transform: rotate(90deg)
    }
    
    
    #bubblesSVG {
        position: absolute;
        height: 100%;
        width: 110%;
        top: 0;
        left: -5%;
        overflow: hidden;
    }

    #bubble-mobile {
        display: block;
        height: 100%;
        width: 100%;
        mask-image: url("#maskBubbles");
    }

    #bubble-web {
        display: none;
        height: 100%;
        width: 100%;
        mask-image: none;
    }
    
    #top {
        z-index: 2;
        pointer-events: none;
    }
    
    #testimonials {
        height: min-content;
        padding: 0;
    }
    
    .image-center {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .skyline {
        width: 100%;
        width: 100%;
        transform: scale(1);
    }
    
    canvas[resize] {
        width: 100%;
        height: 100%;
        /* position: fixed; */
        inset: 0;
        z-index: -5;
        background-repeat: repeat-y;
        background-color: #ffffff;
    
        --gradient-color-2: #69b0e6;
        --gradient-color-3: #d3fff9;
        --gradient-color-4: #b1e6f1;
        --gradient-color-1: #73bfc9; 
    
        --gradient-color-2: #ff9165;
        --gradient-color-3: #b1e6f1;
        --gradient-color-4: #ffee91;
        --gradient-color-1: #69b0e6;
    
        --gradient-color-2: #ff9165;
        --gradient-color-3: #ebfbff;
        --gradient-color-4: #ffee91;
        --gradient-color-1: #69b0e6;
    }
    
    #footer {
        background-color: #00299ead;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #footer-main {
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 8% 0 4% 0;
        flex-wrap: wrap;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 30px;
        min-width: 100px;
    }
    
    .footer-column-header {
        color: white;
        font-weight: bold;
        text-transform: capitalize;
        font-size: 150%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }
    
    .footer-column-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 110%;
    }
    
    #footer .footer-column-links a {
        color: white;
        margin: 10px 5px;
        font-size: 100%;
        cursor: pointer;
    }
    
    #rld-footer-about {
        width: 300px;
        min-width: 200px;
    }
    
    #rld-footer-about-title img {
        width: 12%;
        margin-right: 2%;
    }
    
    .footer-column-description {
        width: 100%;
        color: white;
        text-align: start;
    }
    
    .footer-column-description p {
        font-size: 1rem;
        line-height: 1.5rem;
        margin: 0;
    }
    
    #footer-end {
        font-size: 100%;
        color: white;
        height: 8%;
        width: 60%;
        padding: 1.5% 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid #cfd0d0;
        flex-wrap: wrap;
    }
    
    #footer-end-right {
        display: flex;
        width: 8%;
        min-width: 75px;
    }
    
    #footer-end-right img {
        width: 30%;
        margin: 0 3px;
    }
}

