body {
    background: #f8f9fa;
    overflow-x: hidden;
    font-family: var(--font-family-sans-serif);
    color: rgba(17, 19, 44, .75);
    width: 100% !important;
}

body a {
    font-family: var(--font-family-sans-serif);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-sans-serif);
}

p {
    line-height: 1.625rem;
    font-family: var(--font-family-sans-serif);
}

span {
    font-family: var(--font-family-sans-serif);
}

.btn {
    font-family: var(--font-family-sans-serif);
}

.btn-xl {
    text-transform: initial;
    font-size: 1.3em;
}

#client {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#client .owl-item img {
    -webkit-filter: brightness(0) saturate(100%) invert(48%) sepia(13%) saturate(692%) hue-rotate(187deg) brightness(92%) contrast(90%);
    filter: brightness(0) saturate(100%) invert(48%) sepia(13%) saturate(692%) hue-rotate(187deg) brightness(92%) contrast(90%);
}

.waves-top {
    filter: drop-shadow(0 6.25rem 4.375rem);
    position: relative;
}

#mainNav {
    transition: all 0.2s ease 0s;
    z-index: 999;
    top: 4em;
    height: 68px;
}

#mainNav .nav-item {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

#tourExamplesModal .modal-body {
    overflow: hidden;
}

#tourExamplesModal .modal-content,
#tourExamplesModal .modal-body,
#tourExamplesModal .modal-dialog,
#tourExamplesModal .modal-header {
    background: none !important;
    border: none !important;
}

#tourExamplesModal .modal-content {
    padding: 4em 2em 0 !important;
}

#tourExamplesModal .modal-body {
    padding: 0 8em 8em !important;
}

.before-example-btn,
.after-example-btn {
    padding: 8em;
    padding-top: 10em !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    cursor: pointer;
}

.before-example-btn {
    padding-right: 0;
}

.after-example-btn {
    padding-left: 0;
}

header.masthead {
    position: relative;
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 14em;
    box-shadow: inset 0 -0.625rem 2.5rem -1.25rem #000000;
}

.masthead > .container {
    padding-bottom: 1rem;
}

.masthead:after {
    transform-origin: bottom;
    animation: animateWave 1000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.footer-data {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: calc(1.7rem + .5vw) 0 .3125rem;
    background: transparent;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 99;

    &:after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        height: 0;
        width: 300%;
        padding-top: 100%;
        background: #f8f9fa;
        border-radius: 100%;
        transform: translateX(-50%);
        box-shadow: 0 3px 30px 0 rgba(84, 93, 120, .2);
        z-index: -1;
    }

    &.homepage {
        &:after {
            background: white;
        }
    }
}

.counter-data {
    padding-bottom: .625rem;
}

.counter-content {
    display: flex;
    justify-content: space-evenly;
    gap: .9375rem;
    max-width: 53.125rem;
    margin: auto;
}

.counter-item {
    display: flex;
    gap: .9375rem;
    align-items: center;
}

.counter-image {
    width: 35px;
}

.counter-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .625rem;
}

.counter-value {
    color: var(--gray-600);
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0;
}

.counter-name {
    color: var(--orange-500);
    font-size: .875rem;
    font-weight: bold;
    width: max-content;
    margin: 0;
    line-height: 1;
}

.counter-value--small,
.counter-name--small {
    display: none;
}

#videoProductSection {
    position: relative;
    padding: 2.5rem 0;
    background-color: white;
    overflow: hidden;
    z-index: 99;
}

.video-product__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.video-product-section__header {
    text-align: center;
}

.video-product-section__main {
    --video-width: 22.5rem;
    --columns: 3;
    --gap: 2rem;
    margin: 0 auto;
    max-width: calc(var(--video-width) * var(--columns) + var(--gap) * (var(--columns) - 1));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
}

.video-product-section__tutorial {
    max-width: var(--video-width);
    flex: 0 0 calc((100% - var(--gap) * (var(--columns) - 1)) / var(--columns));

    display: flex;
    flex-direction: column;
    gap: 1rem;
}



/*
 * FEATURES SECTION:
 * These are all styles for features section
*/

#featuresSection {
    background: var(--white);
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: -2;

    & .features-section__cards-container {
        --gap: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--gap);
        transition: height 1s ease;
    }

    & .feature-card {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        box-shadow: 0 1px 8px rgba(39, 47, 106, .15);
        border-radius: 8px;
        height: 100%;
        gap: .64rem;
        overflow: hidden;
    }

    & .feature-card-title {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue-800);
        font-weight: 500;
        line-height: 20px;
        text-align: center;
        height: 3rem;
        max-width: fit-content;
    }

    /* Extra Small Devices (portrait phones) */
    @media (max-width: 320px) {
        & .features-section__cards-container {
            padding: 0;
        }

        & .feature-card {
            flex: 0 0 calc((100% - var(--gap) * 1) / 1);
            max-width: 170px;
        }
    }

    @media (max-width: 575.98px) {
        & .features-section__cards-container {
            padding: 0;
        }

        & .feature-card {
            flex: 0 0 calc((100% - var(--gap) * 1) / 2);
            max-width: 170px;
        }

        & .feature-card-title {
            font-size: 0.875rem;
        }
    }

    /* Small Devices (landscape phones, 576px and up) */
    @media (min-width: 576px) and (max-width: 767.98px) {
        & .feature-card {
            flex: 0 0 calc((100% - var(--gap) * 2) / 3);
            max-width: 170px;
        }
    }

    /* Medium Devices (tablets, 768px and up) */
    @media (min-width: 768px) and (max-width: 991.98px) {
        & .feature-card {
            flex: 0 0 calc((100% - var(--gap) * 3) / 4);
            max-width: 170px;
        }
    }

    /* Large Devices (desktops, 992px and up) */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        & .feature-card {
            flex: 0 0 calc((100% - var(--gap) * 4) / 5);
        }
    }

    /* Extra Large Devices (large desktops, 1200px and up) */
    @media (min-width: 1200px) {
        & .feature-card {
            flex: 0 0 calc((86.85% - var(--gap) * 4) / 5);
        }
    }
}

#offerSection {
    position: relative;
    padding-top: 0;
    padding-bottom: 2rem;
}

/* Discount banner */
.discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gray-50);
    padding: .45em;
    border-radius: 4px;
    cursor: pointer;
    color: var(--blue-gray-900) !important;
    font-weight: 700;
}

.discount-banner__text-content {
    display: flex;
    gap: .25rem;
}

.discount-banner__amount-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-banner__link {
    display: none;
    text-decoration: none !important;
    margin: auto;
}

.discount-banner__link.showed {
    display: block;
    animation: fadeIn .5s;
}

.discount-banner__link--mobile.showed {
    display: none;
}

.discount-banner__link--mobile {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 998;
    transition: all .2s ease 0s;
    text-decoration: none !important;
    animation: fadeIn .5s;
    top: 7.9em;
}

.discount-banner__link--mobile .discount-banner {
    border-radius: 0 !important;
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / 15%);
    text-align: center;
}

.discount-banner__code {
    background: var(--orange-500);
    border: 2px dashed var(--white);
    padding: .1em .75em;
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .video-product-section__main {
        --columns: 2;
    }
}

@media (max-width: 992px) {
    .video-product-section__main {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .video-product-section__tutorial {
        width: var(--video-width);
        max-width: 100%;
    }

    .discount-banner__link--mobile.showed {
        display: block;
    }
}

.video-tutorial__video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    width: var(--video-width);
    max-width: 100%;
    aspect-ratio: 16/9;
    margin-top: auto;
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
}

@supports not (aspect-ratio: auto) {
    .video-tutorial__video-wrapper {
        width: var(--video-width);
        height: 12.65625rem;
    }
}

.video-tutorial__video-wrapper::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    opacity: .4;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.video-tutorial__video-wrapper:hover::after {
    opacity: 0;
}

.video-tutorial__video-wrapper.is-playing::after {
    display: none;
}

.video-tutorial__video-wrapper.is-playing .video-tutorial__play-button-container {
    display: none;
}

.video-tutorial__video {
    border: none;
    width: 100%;
}

.video-tutorial__play-button-container {
    position: absolute;
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-tutorial__play-button {
    display: grid;
    place-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--orange-500);
    border: 2px solid white;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
.video-tutorial__video-wrapper:hover .video-tutorial__play-button {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.video-tutorial__play-icon {
    filter: invert(1);
}

.video-product-section__info {
    flex: 1;
}

.video-product-section__info__title {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

.video-product-section__info__text {
    color: black;
    font-size: 1.25rem;
    font-weight: bold;
}

#openhouse {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 4.5rem 0;
}

.openhouse-section__header {
    text-align: center;
    padding: 0 2.5rem;
}

.openhouse-text {
    margin: .5rem 0 0;
    line-height: 21px;
}

.openhouse__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.openhouse__videos {
    display: flex;
    justify-content: center;
    gap: .25rem;
}

.openhouse__video-laptop-container,
.openhouse__video-smartphone-container {
    flex: 0 0 auto;
    display: grid;
    place-content: center;
}

.openhouse__video-laptop-wrapper,
.openhouse__video-smartphone-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.openhouse__video-laptop-wrapper {
    height: 21rem;
    width: 33.625rem;
}

.openhouse__video-smartphone-wrapper {
    height: 16rem;
    width: 8.125rem;
}

/* Increase video size above container size to hide a weird black border appearing in some cases and screen zooms */
.openhouse__video-laptop,
.openhouse__video-smartphone {
    width: calc(100% + 1px);
}

.openhouse__dotted-line-wrapper {
    --overlap-laptop: -1.8rem;
    position: relative;
    flex: 0 0 clamp(var(--overlap-laptop)*(-1), 25% - 9rem, 6.875rem);
    margin-left: var(--overlap-laptop);
    overflow: hidden;
}

.openhouse__dotted-line {
    position: absolute;
    top: 4.3rem;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    min-width: 6rem;
}

.openhouse__features {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    width: 52rem;
    max-width: 90%;
    margin: 0 auto;
    padding: .625rem max(1.25rem, 3%);
    border-radius: 8px;
    box-shadow: 0 2px 18px rgba(26, 27, 35, 0.08);
}

.openhouse__feature {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex: 0 1 auto;
}

.openhouse__feature-image__change-property {
    width: 2rem;
    height: 2rem;
    padding: .25rem;
    background: var(--blue-gray-50);
    border-radius: 50%;
}

.openhouse__feature-image__change-property img {
    -webkit-filter: brightness(0) saturate(100%) invert(25%) sepia(4%) saturate(2354%) hue-rotate(194deg) brightness(94%) contrast(88%);
    filter: brightness(0) saturate(100%) invert(25%) sepia(4%) saturate(2354%) hue-rotate(194deg) brightness(94%) contrast(88%);
}

.openhouse__feature-text {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

.openhouse__feature-text--bold {
    font-weight: 700;
}

@media (max-width: 768px) {
    .openhouse__videos {
        padding: 0 4rem;
        justify-content: flex-end;
        gap: max(0px, 25% - 5rem);
    }

    .openhouse__dotted-line-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .openhouse__videos {
        padding: 0 1.5rem;
    }

    .openhouse__video-laptop-container {
        flex-basis: 26.5rem;
    }

    .openhouse__video-smartphone-container {
        flex-basis: 5.75rem;
    }

    .openhouse__features {
        flex-direction: column;
        width: auto;
        min-width: 60%;
        padding: 1.25rem;
    }
}

.news-logos-container {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    flex-direction: column;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}
.news-logos-row {
    display:flex;
    gap:1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.card-logo {
    border-radius: 8px;
    background:var(--white);
    filter: drop-shadow(0px 0px 8px rgba(26, 27, 35, 0.1));
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    min-height: 3rem;
    max-width: 6.75rem;
}
.app-mobile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 -2px 30px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
}
.app-mobile-content-mbl {
    width: 100%;
}
.app-mobile-content {
    background-color: #fff;
    box-shadow: 0 -2px 30px rgba(0, 0, 0, .1);
}

.download-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;

    & a img {
        border: 1px solid var(--gray-600);
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .counter-content {
        gap: .625rem;
    }
    .counter-item {
        flex-direction: column;
        gap: .625rem;
    }

    .counter-text {
        align-items: center;
    }

    .counter-value--default,
    .counter-name--default {
        display: none;
    }

    .counter-value--small,
    .counter-name--small {
        display: block;
    }
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px) {
    .btn-block-xs {
        width: 100%;
        display: block;
    }

    .offer-title {
        font-size: 1.8em;
        margin-bottom: 1.5em;
    }

    #offer {
        height: 21em;
        padding: 1em 1em 4em;
    }

    #ar_icon {
        width: 4em;
        margin: 1em;
    }

    .register-link {
        width: 100%;
    }

    .register-link-header-mobile {
        width: initial;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        text-transform: uppercase;
        letter-spacing: 0.25em;
    }

    #welcomeSection {
        padding-top: 0;
        padding-bottom: 4rem;
    }

    .container {
        padding-right: 1.875rem;
        padding-left: 1.875rem;
    }

    .steps-circle-sm {
        transform: scale(0.8, 0.8);
    }

    .circle-1 {
        position: absolute;
        bottom: 14em;
        left: 7.8em;
    }

    .circle-2 {
        position: absolute;
        bottom: 10em;
        left: 15em;
    }

    .circle-3 {
        position: absolute;
        top: 6.3em;
        left: 15.1em;
    }

    .circle-4 {
        position: absolute;
        top: 10em;
        left: 5.8em;
    }

    .circle-5 {
        position: absolute;
        top: 6.5em;
        right: 13em;
    }

    .circle-6 {
        position: absolute;
        bottom: 5em;
        right: 14em;
    }

    .steps-circle {
        transform: scale(0.8, 0.8);
    }

    #faqSection .card .card-header a {
        padding: 1.25rem 44px 20px 20px;
    }

    #faqSection .card .card-header a:after {
        right: 1.875rem;
        bottom: 1.8em;
    }

    .one-line-faq a:after {
        bottom: 1.8em !important;
    }

    .two-line-faq a:after {
        bottom: 1em !important;
    }

    .three-line-faq a:after {
        bottom: 1.8em !important;
    }

    .homepage-header {
        top: 0;
        margin-top: 0;
    }

    #floorfy-step-circle {
        width: 16em;
        transform: scale(1.2, 1.2);
        background: transparent;
    }

    #stepsTimeLabel {
        position: absolute;
        top: 4em;
        left: 2em;
    }

    .hr-text:after {
        background: #f1f1f1;
        width: 100%;
    }

    .dots {
        position: absolute;
        top: 6em;
        z-index: 10;
        filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
        height: 65%;
        width: auto;
    }
    #gallerySection {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    #plansSection {
        padding-top: 13em !important;
    }

    #camerasSection {
        padding-top: 3rem !important;
        padding-bottom: 0;
    }

    .camera-360-plate {
        padding-left: 7em !important;
        bottom: 3em;
        left: 0;
        width: 100% !important;
    }

    #ricoh_sc_img {
        width: 5.75em;
        position: relative;
        bottom: 2em;
    }

    #ricoh_z1_img {
        width: 5.5em;
        position: relative;
        bottom: 2em;
    }

    #gallerySection img {
        height: 19em;
    }

    .waves-top {
        top: 1px;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #clients {
        padding-top: 8rem !important;
    }

    #faqSection .container {
        padding-bottom: 7em;
    }

    #clients .slick-track {
        padding-top: 0;
    }

    .lastNewsContent .btn-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #productSection2 {
        padding-top: 2em;
    }

    .product-frame {
        height: 50vh;
    }

    #viewer_terms {
        font-size: 0.563rem;
    }

    #tourExamplesModal .close {
        font-size: 1.5rem;
    }

    #tourExamplesModal .modal-header {
        padding: 0 !important;
    }

    #camera_addons .modal-dialog {
        margin: 0;
        justify-content: end;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        top: calc(100% - 39rem);
    }

    #camera_addons .modal-content {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    #camera_addons {
        overflow: hidden;
    }

    #tourExamplesModal .modal-content {
        padding: 0 !important;
    }

    #tourExamplesModal .modal-body {
        padding: 0 !important;
    }

    .before-example-btn, .after-example-btn {
        padding: 0;
        padding-top: 4em !important;
    }

    .before-example-btn .circle-btn {
        left: 1em;
    }

    .after-example-btn .circle-btn {
        right: 1em;
    }

    #offerSection {
        top: 2rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .homepage-header .header-title {
        font-size: 20px !important;
    }
    .header-title {
        text-align: center;
    }

    .btn-get-camera {
        width: 75%;
    }

    .step-number-circle {
        left: 32%;
        top: 2em;
    }

    .dots {
        display: inline-grid;
        left: 48%;
    }

    .parent-circle {
        padding: 2em 0;
    }

    .steps-dot {
        margin: 0.3em 0;
    }

    .product-video {
        margin-top: 0;
        margin-bottom: 3em;
    }

    .cam-gift {
        position: absolute;
        right: 1.8em;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 15px #222);
        width: 6em;
        top: 9em;
    }

    .cam-gift-monthly {
        width: 4em;
        left: 2em;
        position: absolute;
        top: 0.5em;
    }

    #currencyModal .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    #currencyModal .modal-content {
        height: auto;
        min-height: 100%;
        border-radius: 0;
    }

    #currencyModal .modal-body {
        height: 80vh;
        overflow-y: auto;
    }

    .image-fade-left {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 15%);
    }

    .image-fade-right {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }
    .waves-bottom {
        bottom: 3em;
    }

    .partner-logo {
        width: 65%;
    }

    .waves-top {
        top: 1px;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #clients {
        padding-top: 0 !important;
    }

    .product-frame {
        height: 50vh;
    }

    #viewer_terms {
        font-size: 0.563rem;
    }

    .before-example-btn, .after-example-btn {
        padding: 0;
        padding-top: 4em !important;
    }

    #offerSection {
        top: 3rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .homepage-header .header-title {
        font-size: 26px !important;
    }
    .step-number-circle {
        left: 12.5em;
        top: 2em;
    }

    .dots {
        display: inline-grid;
        left: 16.5em;
    }

    .steps-dot {
        margin: 0.3em 0;
    }

    .product-video {
        margin: 2em;
        margin-top: 3em;
    }

    .cam-gift {
        position: absolute;
        right: 1.8em;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 15px #222);
        width: 6em;
        top: 16em;

    }

    .cam-gift-monthly {
        width: 5em;
        left: 3em;
        position: absolute;
        top: -1em;
    }

    #currencyModal .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    #currencyModal .modal-content {
        height: auto;
        min-height: 100%;
        border-radius: 0;
    }

    #currencyModal .modal-body {
        height: 80vh;
        overflow-y: auto;
    }

    .image-fade-left {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 15%);
    }

    .image-fade-right {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }

    .waves-bottom {
        bottom: 3em;
    }

    .partner-logo {
        width: 75%;
    }

    .offer-title {
        font-size: 1.6em;
        margin-bottom: 0.5em;
    }

    #ar_icon {
        width: 6em;
        margin: 2em;
        margin-top: 0;
    }

    .prevarrow {
        display: none;
    }

    .nextarrow {
        display: none;
    }

    #welcomeSection {
        padding-top: 0;
        padding-bottom: 4rem;
    }

    .steps-circle-sm {
        transform: scale(0.6, 0.6);
    }

    .circle-1 {
        position: absolute;
        bottom: 7em;
        left: 10.75em;
    }

    .circle-2 {
        position: absolute;
        top: 3em;
        left: 12.1em;
    }

    .circle-3 {
        position: absolute;
        top: 8em;
        left: 8.5em;
    }

    .circle-4 {
        position: absolute;
        top: 8em;
        left: 2.3em;
    }

    .circle-5 {
        position: absolute;
        top: 3em;
        right: 12em;
    }

    .circle-6 {
        position: absolute;
        bottom: 7em;
        right: 10.5em;
    }

    #faqSection .card .card-header a {
        padding: 1.25rem 2.75rem 1.25rem 1.25rem;
    }

    #faqSection .card .card-header a:after {
        right: 1.25rem;
    }

    #floorfy-step-circle {
        width: 11em;
        transform: scale(1.2, 1.2);
        background: transparent;
    }

    #stepsTimeLabel {
        position: absolute;
        top: 5em;
        left: -0.2em;

    }

    .hr-text:after {
        background: #f1f1f1;
        width: 100%;
    }

    .dots {
        position: absolute;
        top: 6em;
        z-index: 10;
        filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
        height: 65%;
        width: auto;
    }
    #gallerySection {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    #plansSection {
        padding-top: 11em !important;
    }

    #camerasSection {
        padding-top: 3rem !important;
        padding-bottom: 0 !important;
    }

    .camera-360-plate {
        padding-left: 8.5em !important;
        bottom: 1em;
        left: 0;
    }

    #ricoh_sc_img {
        width: 8em;
    }

    #ricoh_z1_img {
        width: 7.4em;
        margin-left: 0.5em;
    }

    #gallerySection img {
        height: 19em;
    }

    .waves-top {
        top: 1px;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #clients {
        padding-top: 8rem !important;
    }

    #offer {
        margin-top: 2rem;
    }

    .product-frame {
        height: 100%;
    }

    .before-example-btn, .after-example-btn {
        padding: 0;
        padding-top: 4em !important;
    }
    #offerSection {
        top: 2rem;
    }
}

/*Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .homepage-header .header-title {
        font-size: 28px !important;
    }
    .step-number-circle {
        left: 3.5em;
        top: 1.5em;
    }

    .steps-dot {
        margin: 0.3em 0;
    }

    .product-video {
        margin: 2em;
        margin-top: 3em;
    }

    .cam-gift {
        position: absolute;
        right: 1.8em;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 15px #222);
        width: 6em;
        top: 15em;
    }

    .cam-gift-monthly {
        width: 5em;
        left: 3em;
        position: absolute;
        top: -1em;
    }

    .image-fade-left {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 15%);
    }

    .image-fade-right {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }
    .partner-logo {
        width: 35%;
    }

    .offer-title {
        font-size: 2em;
        margin-bottom: 1.5em;
    }

    #ar_icon {
        width: 8em;
        margin: 1em;
    }

    #welcomeSection {
        padding-top: 0;
        padding-bottom: 4rem;
    }

    .nav-link.active {
        border-bottom: 2px solid var(--color-primary);
    }



    .steps-circle-sm {
        transform: scale(0.8, 0.8);
    }

    .circle-1 {
        position: absolute;
        bottom: 14em;
        left: 7.8em;
    }

    .circle-2 {
        position: absolute;
        bottom: 10em;
        left: 15em;
    }

    .circle-3 {
        position: absolute;
        top: 6.3em;
        left: 15.1em;
    }

    .circle-4 {
        position: absolute;
        top: 11em;
        left: 7.8em;
    }

    .circle-5 {
        position: absolute;
        top: 6.5em;
        left: 0.5em;
    }

    .circle-6 {
        position: absolute;
        bottom: 10em;
        right: 15.5em;
    }

    #faqSection .card .card-header a {
        padding: 1.25rem 1.875rem;
    }

    #faqSection .card .card-header a:after {
        right: 1.875rem;
    }

    #floorfy-step-circle {
        width: 14em;
        background: #f8f9fa;
    }

    .hr-text:after {
        background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgb(245, 245, 245) 100%);
    }

    .dots {
        position: absolute;
        top: 6em;
        z-index: 10;
        filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
        height: 65%;
        width: auto;
        left: 7em;
    }
    #gallerySection {
        padding-top: 14rem;
        padding-bottom: 10rem;
    }

    .camera-360-plate {
        padding-left: 7.5em !important;
        bottom: 3em;
        left: -1em;
        width: 44em;
    }

    #ricoh_sc_img {
        width: 6em;
    }

    #ricoh_z1_img {
        width: 5.5em;
    }

    #gallerySection img {
        height: 21em;
    }

    #plansSection {
        padding-top: 10em !important;
    }

    #camera_addons .modal-dialog {
        min-height: calc(100vh - 1.25rem);
    }

    .waves-top {
        top: 0.313rem;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #clients {
        padding-top: 8rem !important;
    }

    #offer {
        margin-top: 2rem;
    }

    .product-frame {
        height: 100%;
    }

    #tourExamplesModal .close {
        font-size: 2.25em;
    }
    #camera_addons .modal-content {
        border-radius: 0.625rem;
    }

    .openhouse-pretitle {
        font-size: 3vh;
    }

    .openhouse-title {
        font-size: 4.25vh;
    }

    .before-example-btn, .after-example-btn {
        padding: 0;
        padding-top: 4em !important;
    }
    .news-logos-container {
        gap: 1.5rem;
    }
    .news-logos-row {
        gap: 1.5rem;
    }
    .card-logo {
        padding: 1rem 1.5rem;
        min-width: 11rem;
        min-height: 5rem;
    }

    #offerSection {
        top: 2rem;
    }
    .waves-bottom {
        bottom: 6em;
    }
    #floorplansSection .pre-title  {
        letter-spacing: 1px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .step-number-circle {
        left: 5.5em;
        top: 2em;
    }

    .steps-dot {
        margin: 0.3em 0;
    }

    .product-video {
        margin: 2em;
        margin-top: 3em;
    }

    .cam-gift {
        position: absolute;
        right: 1.8em;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 15px #222);
        width: 6em;
        top: 9em;
    }

    .cam-gift-monthly {
        width: 5em;
        left: 3em;
        position: absolute;
        top: -1em;
    }

    #cameraDetails {
        display: flex;
    }

    .image-fade-left {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%);
    }

    .image-fade-right {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }
    .waves-bottom {
        bottom: 7em;
    }

    .partner-logo {
        width: 100%;
    }

    .offer-title {
        font-size: 2.2em;
        margin-bottom: 1.5em;
    }

    #ar_icon {
        width: 10em;
        margin: 1em;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: rgba(255, 255, 255, 0.7);
        margin: 0 1rem;
        padding: 0;
    }

    #mainNav {
        background-color: transparent;
    }

    #welcomeSection {
        padding-top: 0;
        padding-bottom: 4rem;
    }

    .nav-link.active {
        border-bottom: 0.125rem solid var(--color-primary);
    }

    .steps-circle-sm {
        transform: scale(0.8, 0.8);
    }

    .circle-1 {
        position: absolute;
        bottom: 14em;
        left: 7.8em;
    }

    .circle-2 {
        position: absolute;
        bottom: 10em;
        left: 15em;
    }

    .circle-3 {
        position: absolute;
        top: 6.3em;
        left: 15.1em;
    }

    .circle-4 {
        position: absolute;
        top: 11em;
        left: 7.8em;
    }

    .circle-5 {
        position: absolute;
        top: 6.5em;
        left: 0.5em;
    }

    .circle-6 {
        position: absolute;
        bottom: 10em;
        right: 15.5em;
    }

    .openhouse-pretitle {
        font-size: 3vh;
    }

    .openhouse-title {
        font-size: 4.25vh;
    }

    #faqSection .card .card-header a {
        padding: 1.25rem 1.875rem;
    }

    #faqSection .card .card-header a:after {
        right: 1.875rem;
    }

    #floorfy-step-circle {
        width: 14em;
        background: #f8f9fa;
    }

    .hr-text:after {
        background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgb(245, 245, 245) 100%);
    }

    .dots {
        position: absolute;
        top: 6em;
        z-index: 10;
        filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
        height: 65%;
        width: auto;
        left: 7em;
    }
    #gallerySection {
        padding-top: 14rem;
        padding-bottom: 10rem;
    }

    .camera-360-plate {
        padding-left: 4.5em !important;
        bottom: 1em;
        left: 4em;
        width: 15em;
    }

    #ricoh_sc_img {
        width: 8em;
    }

    #ricoh_z1_img {
        width: 7.4em;
    }

    #gallerySection img {
        height: 19em;
    }

    #plansSection {
        padding-top: 12em !important;
    }

    .pricing .card:hover {
        margin-top: -.25rem;
        margin-bottom: .25rem;
        box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    }

    .pricing .card:hover .btn {
        opacity: 1;
    }

    .product-video {
        margin: 2em;
    }

    .waves-top {
        top: 0.313rem;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #clients {
        padding-top: 4rem !important;
    }
    #offer {
        margin-top: 2rem;
    }

    .product-frame {
        height: 100%;
    }
    .news-logos-container {
        gap: 1.5rem;
    }
    .news-logos-row {
        gap: 1.5rem;
    }
    .card-logo {
        padding: 1rem 1.5rem;
        min-width: 11rem;
        min-height: 5rem;
    }

    #offerSection {
        bottom: 2rem;
    }
    #floorplansSection .section-text {
        max-width: 65%;
    }
    #floorplansSection .pre-title  {
        letter-spacing: 1px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .step-number-circle {
        left: 7.2em;
        top: 2em;
    }

    .steps-dot {
        margin: 0 0.2em;
    }

    .product-video {
        margin: 2em;
        margin-top: 3em;
    }

    .cam-gift {
        position: absolute;
        right: 1.8em;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 15px #222);
        width: 6em;
        top: 11em;
    }

    .cam-gift-monthly {
        width: 5em;
        left: 3em;
        position: absolute;
        top: -1em;
    }

    #cameraDetails {
        display: flex;
    }

    .image-fade-left {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%);
    }

    .image-fade-right {
        -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }

    .insta360.waves-bottom,
    .product-section.waves-bottom {
        bottom: 9em;
    }

    .waves-bottom {
        bottom: 2em;
    }

    .partner-logo {
        max-width: 50%;
    }

    header.masthead h1 {
        font-size: 3.5rem;
    }

    .contact-subtitle {
        margin-bottom: 2rem;
    }

    .offer-title {
        font-size: 2.5em;
        margin-bottom: 0.5em;
    }

    #ar_icon {
        width: 12em;
        margin: 1em;
    }

    #mainNav {
        background-color: transparent;
    }

    #welcomeSection {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .nav-link.active {
        border-bottom: 0.125rem solid var(--color-primary);
    }

 
    .steps-circle-sm {
        transform: scale(0.8, 0.8);
    }

    .circle-1 {
        position: absolute;
        bottom: 11.75em;
        left: 8em;
    }

    .circle-2 {
        position: absolute;
        bottom: 7em;
        left: 15em;
    }

    .circle-3 {
        position: absolute;
        top: 6em;
        left: 14.3em;
    }

    .circle-4 {
        position: absolute;
        top: 10em;
        left: 7.2em;
    }

    .circle-5 {
        position: absolute;
        top: 6em;
        left: 0.2em;
    }

    .circle-6 {
        position: absolute;
        bottom: 8.6em;
        right: 14em;
    }

    #faqSection .card .card-header a {
        padding: 1.25rem 1.875rem;
    }

    #faqSection .card .card-header a:after {
        right: 1.875rem;
    }

    #floorfy-step-circle {
        width: 14em;
        background: #f8f9fa;
    }

    .hr-text:after {
        background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgb(245, 245, 245) 100%);
    }

    .dots {
        position: absolute;
        top: 6em;
        z-index: 10;
        filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
        height: 65%;
        width: auto;
        left: 7em;
    }
    #gallerySection {
        padding-top: 14rem;
        padding-bottom: 10rem;
    }

    .camera-360-plate {
        padding-left: 4.5em !important;
        bottom: 3em;
        left: 4em;
        width: 18em;
    }

    #ricoh_sc_img {
        width: 8em;
    }

    #ricoh_z1_img {
        width: 7.4em;
    }

    #gallerySection img {
        height: 22em;
    }

    #plansSection {
        padding-top: 12em !important;
    }

    .waves-top {
        top: 0.313rem;
    }

    #showcasesShare {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    #lastPosts {
        padding: 5em 0 0 0;
    }

    #lastNews {
        padding: 6em 0 2em 0;
    }

    #offer {
        margin-top: 2rem;
    }

    .product-frame {
        height: 100%;
    }
    .news-logos-container {
        gap: 1.5rem;
    }
    .news-logos-row {
        gap: 1.5rem;
    }
    .card-logo {
        padding: 1rem 1.5rem;
        min-width: 11rem;
        min-height: 5rem;
    }
    #offerSection {
        bottom: 2rem;
    }
    #floorplansSection .section-text {
        max-width: 55%;
    }
    #floorplansSection .pre-title  {
        letter-spacing: 1px;
    }
}


.tablet-hero-video,
.mobile-hero-video {
    display: none;
}
.desktop-hero-video {
    height: inherit;
}

/* Header hero video aspect ratio mobile/tablet/desktop */
@media (max-aspect-ratio: 14/9) {
    .tablet-hero-video {
        display: block;
    }

    .desktop-hero-video {
        display: none;
    }
}
@media (max-aspect-ratio: 8/10) {
    .mobile-hero-video {
        display: block;
    }

    .desktop-hero-video,
    .tablet-hero-video {
        display: none;
    }
}

.steps-circle {
    height: 10em;
    width: 10em;
    background-color: #fff;
    border: 0.313rem solid #f87615;
    border-radius: 6em;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.steps-circle:hover {
    filter: drop-shadow(2px 4px 15px rgba(248, 118, 21, 0.5));
}

.steps-circle .fa-share-alt {
    margin-right: 0.2em;
}

.steps-title {
    margin-top: 0.5em;
    font-weight: 600;
}

.section-title {
    color: var(--blue-gray-900);
    font-weight: 700;
    font-size: 1.75rem;
}

#stepsSection {
    padding-top: 8rem !important;
    padding-bottom: 4rem;

    .mobile-cta-start-container {
        padding-bottom: 3em;
    }
}

.steps-dot {
    height: 0.625rem;
    width: 0.625rem;
    background-color: #f87615;
    border-radius: 50%;
    display: inline-block;
}

.step-camera-img {
    width: 4em;
    position: relative;
    top: 1em;
    filter: drop-shadow(2px 5px 5px #222);
}

.dots {
    position: absolute;
    z-index: -1;
    overflow: hidden;
    white-space: nowrap;
    top: 6.5em;
    width: 100%;
    height: 80%;
}

.step-number-circle {
    height: 2.5em;
    width: 2.5em;
    border: 0.188rem solid #f87615;
    background-color: #fff;
    border-radius: 6em;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    position: absolute;
    font-weight: 800;
}

#plansSection {
    padding: 0 1rem;
    padding-bottom: 4rem;

}




/* PRICING */
section.pricing {
    background: #fff;
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

.pricing .card {
    border: none;
    border-radius: 0.625rem;
    transition: all 0.2s;
    height: 100%;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing .card-title {
    margin: 0.5rem 0;
}

.pricing .card-price {
    margin: 0;
}

.pricing ul li {
    margin-bottom: 1rem;
}

.pricing .text-muted {
    opacity: 0.7;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

.contact-subtitle {
    margin-bottom: 0.5rem !important;
}

#plansSection .fa-times {
    color: #FFBABA;
}



.feature-icon {
    user-select: none;
}
.feature-icon svg {
    width: 100%;
}

#360icon svg {
    fill: none !important;
}

.ribbon-price {
    color: #fff;
    position: relative;
    z-index: 999;
    font-weight: 700;
    top: 1.2em;
    font-size: 0.85em;
}

#owl-testi {
    padding: 2em 0 3em;
}

.card-price {
    font-weight: lighter;
}

.price-box {
    border-radius: 1rem;
}

.product-video {
    filter: drop-shadow(5px 5px 8px #222);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.product-video:hover {
    transform: scale(1.05);
    filter: drop-shadow(5px 5px 20px #222);
}

.grecaptcha-badge {
    display: none !important;
}

.googleCaptchaText {
    font-size: 0.75rem !important;
}

.header-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

.embed-responsive {
    background: none;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

#owl-clients {
    opacity: .5;
}

#owl-clients:before {
    content: "";
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(150%, rgba(255, 255, 255, 1)));
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 100;
}

.card .fa-star {
    color: #f87615;
}

.period-plan {
    text-transform: uppercase;
    padding: 0 1em;
}

.period-plan span {
    font-weight: bold
}

.period-plan div {
    border-radius: 1rem;
    background: #fff;
    padding: .5em;
}

.cameraOfferTitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

.period-plan div {
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .1);
}

.no-permanency {
    font-style: italic;
    font-size: .8em;
}

.single-contact i {
    display: inline-block;
    font-size: 1.625rem;
    width: 5rem;
    height: 5rem;
    line-height: 4.5rem;
    color: var(--color-primary);
    border: 4px solid var(--blue-gray-900);
    border-radius: 50%;
    box-shadow: 0 0 3px #bbb;
    transition: all .3s;
}

.single-contact h4 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin: 1.563rem 0 5px;
    font-weight: bold;
}

/* HOMEPAGE CSS */
.main-button {
    /* main/medium */


    /* Auto Layout */
    display: flex;
    flex-direction: row;
    padding: 11px 20px;
    width: 87px;

    /* 4. orange/orange500 */

    background: #F26D07;
    /* 5. shadow/orange */

    box-shadow: 0 1px 8px rgba(242, 109, 7, .4);
    border-radius: 24px;

    /* ✏️→ Value */

    position: static;
    height: 26px;
    left: 20px;
    right: 20px;
    top: calc(50% - 26px / 2);

    /* 18 large <strong> */

    font-family: Red Hat Display;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height, or 144% */

    text-align: center;
    letter-spacing: 0.6px;

    color: #FFFFFF;


    /* Inside Auto Layout */

    flex: none;
    order: 0;
    align-self: center;
    margin: 10px 0;
}

/* PRENAVBAR */
#preNav {
    background-color: var(--gray-900);
    color: white !important;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    height: 64px;
    z-index: 1000;
}

#preNav .btn {
    font-weight: 500;
}

#preNav a {
    color: white !important;
}

#preNav ul {
    margin: 0 0.5em;
}

#preNav i {
    margin: 0 0.25em;
}

#preNav #langSelector {
    padding: 0 !important;
}

#preNav #dropdownLang {
    padding: 0 !important;
}

#preNav .nav-link {
    padding: 0.313rem;
}

#preNav #prenavbarCallButtonMobile {
    display: flex;
    padding: .75em !important
}

#prenavbarCallButtonMobile i {
    margin: 0 !important
}

@media (min-width: 576px) {
    #preNav #prenavbarCallButtonMobile {
        display: none;
    }
}

@media (max-width: 360px) {
    .prenavbar__login-link__text {
        display: none;
    }
}


#langSelector .dropdown-item {
    color: var(--gray-900) !important;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/*
 * FOOTER:
 * These are all styles for footer
*/

footer {
    padding-top: 4rem;
    padding-bottom: 2rem;

    & .fa-heart {
        color: #ff0000;
    }
}
footer a {
    color: var(--white);
    transition: .3s ease;
}
footer li {
    list-style: none;
}
footer ul {
    padding-left: 1em;
}
footer li a {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
footer li a i:before{
    display: inline-block /* To remove underline on hover the <a> tag */
}
footer .fa-heart {
    color: #ff0000;
}
footer .logos-footer__container {
    display: flex;
    flex: 1;
    gap: 2em;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    footer .logos-footer__container {
        flex-direction: column;
        justify-content: center;
    }
}
.footer-links-container {
    color: var(--white);
    display: flex;
    gap: 2rem;
    flex: 1;
}
.footer-links-container ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links-container h4 {
    font-weight: bold;
    margin: 0;
}
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.footer-links-col ul {
    padding: 0;
}

/* Footer social links */
.footer-social-container {
    text-align: center;
}
.footer-social-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:row;
}
.social-items ul {
    display: inline-flex;
    padding: 0;
}
.social-items i {
    color: #fff;
    font-size: 1.25em;
}
.social-items li a {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    color: #fff;
    border-radius: 50%;
    background: transparent;
    border: solid 0.125rem #fff;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}
.social-facebook:hover a {
    background: #3b5998;
}
.social-linkedin:hover a {
    background: #0077b5;
}
.social-instagram:hover a {
    background: #e1306c;
}
.social-twitter:hover a {
    background: #1da1f2;
}
.social-youtube:hover a {
    background: #ff0000;
}

/*
 * LAST POSTS SECTION:
 * These are all styles for last posts section
*/

#lastPosts {

    & .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2em;
    }

    & .pre-title {
        text-align: center;
    }

    & .section-title {
        text-align: center;
        margin: 0;
    }

    .last-posts__content  {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2em;
        row-gap: 3em;

        @media (max-width: 768px) {
            flex-wrap: wrap;
        }
    }

    & .card-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
        color: var(--blue-gray-900);
        margin: 0;
    }

    

    & .card-img-top {
        border-top-left-radius: calc(.75rem - 1px);
        border-top-right-radius: calc(0.75rem - 1px);
    }

    & .card {
        flex: 0 0 32%;
        box-shadow: 0 3px 25px rgba(0, 0, 0, .1);
        -webkit-transition: .25s box-shadow;
        transition: .25s box-shadow;
        background: #fff;
        border: 0;
        overflow: hidden;
        border-radius: 10px;

        &:focus,
        &:hover {
            box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .1) !important;
        }

        & .card__image {
            object-fit: cover;
            min-height: 15rem;
        }    

        @media (max-width: 768px) {
            flex: 0 0 100%;
        }
    }

    & .card-body {
        display: flex;
        flex-direction: column;
        gap: 1em;
        padding: 1.5em 2em;

        & p {
            display: -webkit-box;
            max-width: 25rem;
            height: 5em;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.625;
        }

        & .card-description {
            margin: 0;
            color: var(--gray-900);
            font-weight: 100;
        }
    }

    & .card__link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5em;
        color: var(--blue-900);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;

        & img {
            width: 20px;
            height: 20px;
            filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(716%) hue-rotate(353deg) brightness(105%) contrast(104%);
        }
    }
}

#lastNews .card {
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1) !important;
    -webkit-transition: .25s box-shadow;
    transition: .25s box-shadow;
    background: #fff;
    margin: 1.5em 0;
    border: 0;
}

.pre-title {
    color: var(--color-primary);
    font-weight: 700;
    width: 100%;
    margin: 0;
    line-height: 2;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--blue-gray-900);
    border-color: var(--blue-gray-900);
    -webkit-box-shadow: 0 10px 30px 0 rgba(21, 10, 82, 0.35) !important;
    box-shadow: 0 10px 30px 0 rgba(21, 10, 82, 0.35) !important;
}

.btn-secondary:hover {
    background: #18263a;
    border-color: #18263a;
}

.btn-primary .btn-header {
    border: 2px solid var(--color-primary);
}



#mobileCardsArrows {
    position: relative;
    z-index: 9;
}

#mobileCardsArrows .nextarrow {
    width: 1.563rem;
    height: 1.563rem;
    display: block;
    position: absolute;
    top: -4.813rem;
    right: .313rem;
    cursor: pointer;
    background: #fff;
    padding: 1.5em;
    border-radius: 3em;
    box-shadow: 0 5px 20px 0 rgba(94, 66, 85, .1);
}


#mobileCardsArrows .nextarrow:hover {
    background: var(--color-primary);
}

#mobileCardsArrows .nextarrow:hover:before {
    border-color: #fff;
}

#mobileCardsArrows .nextarrow:hover:after {
    background: #fff;
}

#mobileCardsArrows .nextarrow::before {
    position: absolute;
    content: '';
    height: 0.5rem;
    width: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    left: calc(43% + 5px);
    transition: .2s ease;
}

#mobileCardsArrows .nextarrow::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--color-primary);
    transition: .2s ease;
    left: 27%;
}

#mobileCardsArrows .prevarrow {
    width: 1.563rem;
    height: 1.563rem;
    display: block;
    position: absolute;
    top: -4.813rem;
    right: 3.438rem;
    cursor: pointer;
    background: #fff;
    padding: 1.5em;
    border-radius: 3em;
    box-shadow: 0 5px 20px 0 rgba(94, 66, 85, 0.1);
}

#mobileCardsArrows .prevarrow:hover:before {
    border-color: #fff;
}

#mobileCardsArrows .prevarrow:hover {
    background: var(--color-primary);
}

#mobileCardsArrows .prevarrow:hover:after {
    background: #fff;
}

#mobileCardsArrows .prevarrow:hover {
    background: var(--color-primary);
}

#mobileCardsArrows .prevarrow::before {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    right: calc(40% + 5px);
    transition: .2s ease;
}

#mobileCardsArrows .prevarrow::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--color-primary);
    transition: .2s ease;
    right: 24%;
}

.slick-slide {
    outline: none;
}

#benefitsSection {
    padding-bottom: 4rem;
    position: relative;
    z-index: 99;
}

.benefits-section__container {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    align-items: center;
}

.benefits-section__header {
    text-align: center;
}

.pre-title {
    font-size: 1.25rem;
}

.pre-title-mobile {
    display: none;
}

.benefits-section__main {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.benefits-section__cards-container {
    --height: auto; /* It's set with JS */
    --gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
    transition: height 1s ease;
}
.benefit-card {
    flex: 0 0 calc((100% - var(--gap) * 2) / 3);
    border-radius: 8px;
    background: #fff;
    padding: 1.25rem;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -webkit-box-shadow: 0 1px 16px rgba(39, 47, 106, 0.15);
    box-shadow: 0 1px 16px rgba(39, 47, 106, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9375rem;
}

.benefit-text {
    line-height: 1.125rem;
}

.expand-benefits-container {
    display: none;
    padding: 0 .75rem;
}

.expand-benefits {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--blue-900);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .benefit-card {
        flex: 0 0 calc((100% - var(--gap) * 1) / 2);
    }
}
@media (max-width: 576px) {
    .pre-title-desktop {
        display: none;
    }

    .pre-title-mobile {
        display: block;
    }
    .benefits-section__cards-container {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        height: var(--height); /* It's set with JS */
        padding: .75rem;
    }

    .benefit-card {
        flex: 0 0 auto;
    }
    .expand-benefits-container {
        display: none;
    }

    .benefits-section__main--collapsed-small-screens .benefits-section__cards-container {
        overflow: hidden;
    }

    .benefits-section__main--collapsed-small-screens .expand-benefits-container {
        display: block;
    }
    .footer-links-container {
        flex-direction:column;
    }
}

.benefit-title {
    color: var(--blue-800);
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0;
}

.benefit-text {
    color: var(--gray-500);
    font-size: .875rem;
    font-weight: 500;
    margin: 0;
}

.feature-card {
    border-radius: 0.25rem;
    padding: 1em;
    -webkit-box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    cursor: default;
    transform: translateZ(0);
    backface-visibility: hidden;
    background: #fff;

    &:hover {
        transform: scale(1.1, 1.1);
    }
}

/* LANGUAGE SELECT */
#lang-cust .dropdown-menu {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

#lang-cust .fa-times {
    position: absolute;
    right: 0;
    margin: 0.2em 0.75em;
}

#lang-cust h3 {
    font-weight: bold;
}

#langSelector .hamburger {
    box-shadow: none !important;
    position: fixed;
    right: 0 !important;
    margin: 0 0.5em;
}

#lang-cust .dropdown-item {
    padding: 0.75em 2em;
}

#language-selector > li > a {
    padding: 0;
    text-align: center;
}

#lang-cust {
    height: 3.25rem;
    padding: 0 0.625rem;
}

#lang-cust .btn {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

#lang-cust > span {
    padding: 7px 1px 0 0;
}

#lang-cust > a {
    padding: 15px 1px 0 3px;
    display: inline;
}

#langSelector .dropdown-menu {
    position: absolute;
    padding: 0;
    margin: 1em;
    right: -4.5em;
    left: inherit;
    border: 0;
    -webkit-box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    color: var(--gray-900);
    background-color: #fff;
}

#langSelector .dropdown-toggle {
    background: none;
    color: var(--color-primary);
    padding: 0.75em 0.5em;
    border-radius: 2em;
    font-size: 1em;
    left: -2.75em;
    margin: 0;
    -webkit-appearance: none;
}

#langSelector .flag-icon {
    width: 1.75em;
    height: 1.75em;
    background-size: cover;
    padding: 0.75em 0.5em;
    border-radius: 2em;
    font-size: 1em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    line-height: 5px;
    margin-right: .5rem;
}

#lang-cust .flag-icon {
    border-radius: 2em;
    margin-right: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#langSelect {
    padding: 0.65em;
}

.dropdown-toggle .flag-icon:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.dropdown-toggle::after {
    display: none;
}

#dropdownLang:focus, #dropdownLang.focus {
    box-shadow: none;
}

.offer-title {
    font-weight: 400;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 1);
}

#gallerySection img {
    position: relative;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 10em;
    box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    min-height: 19em;
    padding: 0.5em;
    width: 100%;
    object-fit: cover;
}

#camerasSection {
    position: relative;
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 0 0 10em 0;
}

#plansSection {
    padding: 0;
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(238, 239, 242, 1) 100%);
}

.camera-360-plate {
    background-color: var(--white);
    color: var(--blue-gray-900);
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .15);
    padding: 1rem;
}

#getOfferBtn {
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

#getOfferBtn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
}

#mainNav .navbar-nav .nav-item .nav-link {
    font-family: var(--font-family-sans-serif);
    letter-spacing: 1px;
}

.switch {
    font-size: 1rem;
    position: relative;
}

.switch input {
    position: absolute;
    height: 1px;
    width: 1px;
    background: none;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    padding: 0;
}

.switch input + label {
    position: relative;
    min-width: calc(calc(2.375rem * .8) * 2);
    border-radius: calc(2.375rem * .8);
    height: calc(2.375rem * .8);
    line-height: calc(2.375rem * .8);
    display: inline-block;
    cursor: pointer;
    outline: none;
    user-select: none;
    vertical-align: middle;
    text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
}

.switch input + label::before, .switch input + label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(calc(2.375rem * .8) * 2);
    bottom: 0;
    display: block;
}

.switch input + label::before {
    right: 0;
    background-color: var(--orange-500);
    border-radius: calc(2.375rem * .8);
    transition: 0.2s all;
}

.switch input + label::after {
    top: 3px;
    left: 3px;
    width: calc(calc(2.375rem * .8) - calc(2px * 3));
    height: calc(calc(2.375rem * .8) - calc(2px * 3));
    border-radius: 50%;
    background-color: white;
    transition: 0.2s all;
}

.switch input:checked + label::before {
    background-color: var(--color-primary);
}

.switch input:checked + label::after {
    margin-left: calc(2.375rem * .8);
}

.switch input:focus + label::before {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(248, 118, 21, .25);
}

.switch input:disabled + label {
    color: #868e96;
    cursor: not-allowed;
}

.switch input:disabled + label::before {
    background-color: #e9ecef;
}

.switch.switch-sm {
    font-size: 0.875rem;
}

.switch.switch-sm input + label {
    min-width: calc(calc(1.9375rem * .8) * 2);
    height: calc(1.9375rem * .8);
    line-height: calc(1.9375rem * .8);
    text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
}

.switch.switch-sm input + label::before {
    width: calc(calc(1.9375rem * .8) * 2);
}

.switch.switch-sm input + label::after {
    width: calc(calc(1.9375rem * .8) - calc(2px * 2));
    height: calc(calc(1.9375rem * .8) - calc(2px * 2));
}

.switch.switch-sm input:checked + label::after {
    margin-left: calc(1.9375rem * .8);
}

.switch.switch-lg {
    font-size: 1.25rem;
}

.switch.switch-lg input + label {
    min-width: calc(calc(3rem * .8) * 2);
    height: calc(3rem * .8);
    line-height: calc(3rem * .8);
    text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
}

.switch.switch-lg input + label::before {
    width: calc(calc(3rem * .8) * 2);
}

.switch.switch-lg input + label::after {
    width: calc(calc(3rem * .8) - calc(2px * 2));
    height: calc(calc(3rem * .8) - calc(2px * 2));
}

.switch.switch-lg input:checked + label::after {
    margin-left: calc(3rem * .8);
}

.switch + .switch {
    margin-left: 1rem;
}

.switch-arrow {
    position: absolute;
    bottom: 2.3em;
    margin-left: 12.7em;
    padding-left: 3px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    fill: var(--color-primary);
}

.floorfy-dark-bg {
    /*
    background:var(--gray-900) !important;
    */
    background: var(--blue-gray-900) !important;
}

.floorfy-dark-text {
    color: var(--gray-900) !important;
}

#pricesHeader {
    height: 37em !important;
    min-height: 31rem !important;
    border-radius: 0;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

/*
 * CONTACT SECTION:
 * These are all styles for contact section
*/
.contact-section {
    padding: 8em 0;

    & input {
        min-height: 48px;
    }

    & textarea {
        padding: 1em 1.25em;
    }

    & .btn-dark {
        display: flex;
        align-items: center;
        gap: .5em;
        background-color: var(--blue-800) !important;
        font-size: 18px;
        font-weight: 500;
        border-radius: 8px !important;
        border: none !important;
        padding: 10px 16px;
        letter-spacing: 1px;
        box-shadow: none;

        & img {
            width: 20px;
            height: 20px;
            filter: var(--filter-white);
        }

        &:hover {
            background-color: var(--blue-700) !important;
        }

        &:focus-visible {
            outline: 2px solid var(--blue-400);
            box-shadow: inset 0 0 0 2px white;
        }
    }

    & .submit-terms {
        font-size: .813rem !important;
        margin: 0;
    }
}

#pricesHeader {
    padding-top: 12em;
}

#langSelector {
    cursor: pointer;
}

#langSelector .fa-chevron-down {
    font-size: 12px;
}

/*
 * FAQ SECTION:
 * These are all styles for faq section
*/

#faqSection {
    padding-bottom: 4em;
    padding-top: 4em;

    .container {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .faq-section__header {
        text-align: center;
    }

    .faq-section__content {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
    }

    & .card {
        background: var(--blue-gray-900);
        color: #fff;
        border: 0;
        -webkit-box-shadow: 0 0 15px 0 rgba(21, 25, 43, 0.1);
        box-shadow: 0 0 15px 0 rgba(21, 25, 43, 0.1);
        border-radius: 10px;

        & .card-header {
            background-color: #fff;
            border: 0;
            padding: 0;
            border-radius: 7px;

            &:hover {
                color: #fff;
                background: var(--blue-gray-900);
            }

            &.active {
                color: #fff;
                box-shadow: none;
                background: var(--blue-gray-900);

                & a {
                    color: #fff;
                }
            }

            & a {
                color: var(--blue-gray-900);
                font-size: 18px;
                line-height: 28px;
                font-weight: 600;
                display: block;
                position: relative;
    
                &:after {
                    content: '\f078';
                    font-family: "FontAwesome";
                    position: absolute;
                }
    
                &:hover {
                    color: #fff;
                }
            }
        }
    }

    & .card-body {
        border-radius: 0 0 10px 10px;
        padding: 0 30px 10px 30px;
    }

    .btn-link {
        font-weight: bold;
        text-decoration: none;
    }
}

#logo {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .2));
}

.card-header a[aria-expanded="true"] {
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.card-header > a[aria-expanded="true"] {
    box-shadow: none;
}

.card-header.active a:after {
    content: '\f077' !important;
    font-family: "FontAwesome" !important;
}

.faq-area-img {
    position: absolute;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 25% 95%;
    left: -330px;
    -webkit-animation: ani-rotate 50s linear infinite;
    animation: ani-rotate 50s linear infinite;
}

@keyframes ani-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floorfy-primary-bg {
    background: var(--color-primary);
}

.floorfy-secondary-bg {
    background: var(--gray-900);
}

.locationIcon {
    font-size: 0.5em;
}

.locationRow {
    font-size: 1.2em;
}

#owl-testi {
    padding: 0;
}

.steps-circle {
    height: 8em;
    width: 8em;
    filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
    margin-bottom: 1em;
    position: relative;
    z-index: 999;
}

.steps-circle svg {
    fill: var(--color-primary);
}

.steps-circle i {
    color: var(--color-primary);
}

.steps-circle-sm {
    height: 8em;
    width: 8em;
    background-color: #fff;
    border: 4px solid #f87615;
    border-radius: 6em;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    padding: 1.5em;
    filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
    padding-top: 0;
    cursor: default;
}

.steps-circle-sm:hover {
    transform: scale(0.9);
}

.steps-circle-sm svg {
    fill: var(--color-primary);
    width: 75%;
}

#stepsLogo {
    width: 100%;
    bottom: 5.4em;
    filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
}

.product-dots {
    position: absolute;
    margin-top: 4.3em;
    z-index: 10;
    width: auto;
    margin-left: 0;
    filter: drop-shadow(-18px 4px 4px rgba(8, 18, 109, 0.15));
}

.dots {
    position: absolute;
    top: 6em;
    z-index: 10;
    filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.1));
    height: 65%;
    width: auto;
    pointer-events: none;
}

#floorfy-step-circle {
    border: 0;
    filter: none;
}

#floorfy-step-circle {
    border: 0;
    filter: none;
    margin-bottom: 1em;
}

.testi-item {
    margin-top: 0;
}

.testi-item .client-pic img {
    border: 3px solid #11132C;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    text-align: center;
    height: 2.5em;
    color: var(--gray-900);
    font-weight: 600;
    width: 100%;
}

.hr-text:before {
    content: '';
    background: linear-gradient(to right, transparent, var(--gray-900), transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    line-height: 1.5em;
    color: var(--blue-900);
    cursor: pointer;
    border: 3px solid var(--blue-900);
    border-radius: 2em;
    padding: .5em 3em;
    outline: 1em solid #F0F1F4;
}

.hr-text.changed:after {
    outline: 1em solid #F3F4F6;
}

#servicesComparisonTable {
    color: var(--blue-900);
    background: #fff;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

#servicesComparisonTable td {
    text-align: center;
}

#servicesComparisonTable th {
    text-align: left;
}

#servicesComparisonTable thead {
    background: var(--blue-900);
    color: #fff;
}

#servicesComparisonTable thead th {
    border-bottom: 0;
}

#stepsSection {
    padding-top: 0;
    padding-bottom: 0;
}

.card-container {
    cursor: pointer;
}
.navbar-toggler {
    border: 0;
    height: 100%;
}

.login-link {
    color: var(--color-primary);
    text-transform: capitalize;
}

.login-link a {
    color: var(--color-primary) !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.camera-360-plate .section-title {
    color: #fff;
}

.camera-price {
    font-size: 2em;
    font-weight: 600;
}

.steps-circle:hover {
    filter: none;
}

.contact-navbar {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
    background: #fff !important;
}
#plansSection .fa-circle {
    color: var(--color-primary);
    font-size: 0.5em;
}

#plansSection .fa-check {
    color: var(--color-primary);
    font-size: 1em;
}

#servicesComparisonTable .fa-check {
    color: var(--color-primary);
    opacity: 0.7;
}

#floorfyEbook {
    filter: drop-shadow(2px 8px 6px rgba(8, 18, 109, 0.3));
    width: 20em;
    margin: 0 1em 0 0;
}

.rectangle {
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 16px 2px rgba(26, 27, 35, 0.2);
}

.product-steps-dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
}

.steps-dot {
    height: 10px;
    width: 10px;
    background-color: #f87615;
    border-radius: 50%;
    display: inline-block;
}

.register-link {
    box-shadow: 0 5px 10px 0 rgba(21, 10, 82, 0.2) !important;
}

.register-link-middle {
    position: relative;
    bottom: 5.5em;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.register-link-middle:hover {
    transform: scale(1.05);
}

.download-app-link {
    text-decoration: none !important;
}

.steps-label {
    font-size: 20px;
    color: var(--color-primary);
}

#freePlanIcon {
    width: 3em;
    margin: 1em;
}

#freePlanIcon .cls-9 {
    fill: none;
    stroke: #f26d07;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4px;
}

#starterPackPlanIcon {
    width: 3.5em;
    margin: 0 0.5em;
}

#smallPlanIcon {
    width: 5.5em;
    margin: 1em;
}

#mediumPlanIcon {
    width: 8em;
    margin: 0.3em 1em;
}

#largePlanIcon {
    width: 10em;
    margin: 1.2em 0;
    padding: 0 0.5em;
}

.pricing .card-price .period {
    font-size: 1rem;
}

.hamburger {
    outline: none !important;
    margin: 0;
    padding: 0;
}

.hamburger-box {
    transform: scale(0.8, 0.8);
    margin-top: 5px;
}

.navbar-toggler {
    cursor: pointer;
}

.navbar-nav i {
    vertical-align: middle;
}

#iframeTourExample {
    display: block;
    min-width: 100%;
}

#iframeTourExample .modal-content {
    border: 0;
}

#plansSection .fa-times {
    color: transparent;
    font-size: 0.625rem;
}

.table-responsive {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing .card-price {
    font-weight: 500;
    font-size: 1.5em;
}

.starter-plan-title {
    font-size: 1em !important;
    font-weight: 600 !important;
}

.pricing .card-title {
    font-weight: 600 !important;
}

.virtual-tours-numbers {
    margin: 0 !important;
    padding-bottom: 1em;
}

.pricing ul li {
    margin-bottom: 0.5rem;
    margin-left: 1.5em;
}

#plan-prices .fa-ul {
    margin-left: 0 !important;
    list-style-type: none !important;
}

#plan-prices hr {
    opacity: 0.2;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.text-line-through {
    text-decoration: line-through;
}

#gallerySection a {
    text-decoration: none;
}

#gallerySection .card:hover img {
    -webkit-font-smoothing: subpixel-antialiased;
    transition: all ease-in-out 0.5s;
}

#gallerySection .card {
    box-shadow: none !important;
}

#gallerySection img::after {
    content: "";
    border-radius: 5px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card-location {
    font-size: 1.2em;
}

@keyframes shrink {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 150% 150%;
    }
}

#comparePlansBtn {
    opacity: 1 !important;
}

#servicesComparisonTable td {
    text-align: center;
    vertical-align: middle;
}

.img-hover-zoom--zoom-n-rotate {
    overflow: hidden;
    position: relative;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 15em;
    box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    min-height: 13em;
    width: 100%;
    transform: scale(0.75);
}

/* Zoom-n-rotate Container */
.img-hover-zoom--zoom-n-rotate img {
    transition: transform .5s ease-in-out;
}

/* The Transformation */
.img-hover-zoom--zoom-n-rotate:hover img {
    transform: scale(2) rotate(25deg);
}

.camera-container {
    pointer-events: none;
}

.show-tour-example-btn {
    pointer-events: all;
    text-decoration: underline;
}

#tourExamplesModal .close {
    background: #fff;
    border-radius: 100%;
    line-height: 0.5;
    position: absolute;
    right: 2rem;
    top: 2rem;
    outline: none;
    z-index: 1;
}

#tourExamplesModal .modal-header {
    border: none;
}

#tourExamplesModal .modal-content {
    background: none;
}

#tourExamplesModal .modal-title {
    font-weight: 600;
}

body.modal-open {
    overflow: hidden !important;
}

.feat-carousel-wrap:before {
    position: absolute;
    content: '';
    left: 60px;
    top: 190px;
    bottom: 180px;
    width: 250px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.80);
    -webkit-box-shadow: 3.062px 21.786px 59px 0 rgba(0, 52, 74, 0.18);
    box-shadow: 3.062px 21.786px 59px 0 rgba(0, 52, 74, 0.18);
}

.feat-carousel-wrap:after {
    position: absolute;
    content: '';
    left: 20px;
    top: 215px;
    bottom: 205px;
    width: 250px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.70);
    -webkit-box-shadow: 3.062px 21.786px 59px 0 rgba(0, 52, 74, 0.18);
    box-shadow: 3.062px 21.786px 59px 0 rgba(0, 52, 74, 0.18);
}

.steps-circle-title {
    position: absolute;
    bottom: 1.4em;
    font-size: 14px;
    color: #f87615;
}

.steps-circle-title-two-lines {
    line-height: 1em;
    height: 3em;
    width: 7em;
    position: absolute;
    bottom: -0.25em;
}

#owl-clients:before {
    background: transparent;
}

#owl-clients .owl-stage-outer {
    opacity: 0.5;
}

.pricing .card-price .period {
    position: relative;
    left: -4px;
}

.text-transparent {
    color: transparent !important;
}

.benefit-icon svg {
    fill: var(--color-primary);
}

.text-light {
    color: var(--blue-gray-200) !important;
}

.starter-pack-title {
    font-size: 1.1em !important;
}

.features-plan-list {
    font-size: 1rem;
}

#loadingScreen {
    z-index: 9999;
}

.without-prenavbar {
    top: 0 !important;
}

#footerWave {
    position: relative;
    bottom: -2em;
}

@keyframes animateWave {
    0% {
        transform: scale(1, 0);
    }
    100% {
        transform: scale(1, 1);
    }
}

.testimonial-desc {
    background-color: var(--white) !important;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-height: 22rem;
}

.testimonial-desc p {
    font-size: 15px;
    line-height: 26px;
    min-height: 7vh;
}

.testi-img {
    bottom: 4em;
    position: relative;
}

#clients {
    padding-top: 4em;
    position: relative;
    z-index: 9;

    .pre-title {
        text-align: center;
    }

    .section-title {
        margin: 0;
        text-align: center;
    }

    .section-description {
        margin: 0;
        text-align: center;
    }

    .clients-section__header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.testimonial-desc i {
    color: var(--gray-200);
}

.addon-circle-image {
    background-color: var(--gray-50);
    background-repeat: no-repeat;
    background-size: 3em;
    background-position: top;
    height: 5em;
    width: 5em;
    max-height: 5em;
    max-width: 5em;
    border-radius: 4em;
    border: 3px solid var(--gray-200) !important;
    background-position-y: 1em;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.addon-circle-image.active {
    border: 3px solid var(--orange-500) !important;
    background-color: var(--orange-300) !important;
}

#camera_addons .modal-footer {
    border: 0 !important;
}

#rentalfa_thetascLabel::before,
#rent_2thetavLabel::before,
#rent_thetasc_ukLabel::before,
#rent_thetav_ukLabel::before {
    top: 3em;
}

#rentalfa_thetascLabel::after,
#rent_2thetavLabel::after {
    top: 3em;
}

#camera_addons .custom-checkbox {
    width: 100%;
}

#camera_addons .custom-control-label {
    width: 100%;
    font-weight: 500;
    color: var(--blue-gray-800);
}

.addon-circle-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-delivery {
    font-size: 1.5em;
}

#camera_addons .modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}

#camera_addons .custom-control-label p {
    line-height: 20px;
    font-size: 0.8em;
    color: var(--gray-500);
}

#camera_addons .custom-control-label a {
    color: var(--blue-gray-800);
    text-decoration: underline;
}

.openhouse-icon {
    width: 2em;
}

#lastNews .card-body p {
    display: -webkit-box;
    max-width: 400px;
    height: 5em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 1em 0;
    color: var(--blue-gray-900);
    font-family: Noto Serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
}

#lastNews .card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    color: var(--blue-gray-900);
}

.client-info {
    color: #11132C;
}

.testi-item .client-info .company {
    color: #F26D07;
    font-weight: bold;
    text-transform: uppercase;
}

.company {
    color: var(--orange-500);
    font-weight: 600;
}

#offer {
    border-radius: 1.25rem;
    background: linear-gradient(94deg, #D7E2EF -0.25%, #FFF 101.45%);    overflow: hidden;
    -webkit-box-shadow: 0 12px 48px 0 rgba(84, 93, 120, .2);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 3px 30px 0 rgba(84, 93, 120, .2);
}

.offer-title {
    color: #11132C;
    margin-bottom: 1em !important;
}

.modal-fullscreen-xl {
    padding: 0 !important;
}

.modal-fullscreen-xl .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen-xl .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen-xl .modal-body {
    overflow-y: auto;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--blue-900);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--blue-900);
}

#currencyModal .modal-dialog {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    margin: 0 auto;
}

#currencyModal .close,
#camera_addons .close {
    font-size: 2em;
    outline: none;
}

.navbar-shadowed {
    background-color: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.navbar-no-shadowed {
    background-color: #f8f9fa !important;
    box-shadow: none !important;
}

.no-shadow {
    box-shadow: none !important;
}

#tourExamplesModal ul.a {
    list-style-type: circle;
}

.input-error {
    border: 2px solid rgb(244, 67, 54) !important;
    -webkit-transition: 0.4s ease !important;
    transition: 0.4s ease !important;
}

.input-error::-webkit-input-placeholder {
    color: rgb(244, 67, 54) !important;
}

.camera-prices-text {
    color: var(--orange-500);
    display: block;
    margin-bottom: 2px;
    font-size: 0.8em;
}

#cameraDetails {
    overflow: auto;
}

/*
 * Card Skeleton for Loading
 */

.skeleton-card {
    background-color: #fff;
    height: auto;
    width: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
    margin: 1.5em 0;
}

/* Card image loading */
.card__image img {
    width: 100%;
    height: 100%;
}

.card__image.loading {
    height: 10em;
    width: 400px;
}

/* Card title */
.card__title {
    font-size: 22px;
    font-weight: 700;
}

.card__title.loading {
    height: 1.5rem;
    width: 91%;
    margin: 1rem;
    border-radius: 3px;
    margin-bottom: 1.25em;
}

.card__textline {
    font-size: 22px;
}

.card__textline.loading {
    height: 1rem;
    width: 91%;
    margin: 1rem;
    border-radius: 3px;
}

.card__lastline {
    font-size: 22px;
}

.card__lastline.loading {
    height: 1rem;
    width: 70%;
    margin: 1rem;
    border-radius: 3px;
}

/* Card description */
.card__btn {
    font-size: 16px;
}

.card__btn.loading {
    height: 2.5rem;
    margin: 1rem;
    border-radius: 3px;
    width: 7em;
    margin-left: 3em;
    margin-top: 2em;
    margin-bottom: 2em;
}

/* The loading Class */
.loading {
    position: relative;
    background-color: #e2e2e2;
}

/* The moving element */
.loading::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: -webkit-gradient(linear, left top,
    right top, from(transparent),
    color-stop(rgba(255, 255, 255, 0.2)),
    to(transparent));
    background: linear-gradient(90deg, transparent,
    rgba(255, 255, 255, 0.2), transparent);
    /* Adding animation */
    animation: loading 0.8s infinite;
}

/* Loading Animation */
@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}

#lastNews .card-body {
    padding: 2rem;
}


#lastNews .card {
    border-radius: 10px
}

.lastNewsContent .btn-link {
    text-transform: uppercase;
    color: var(--blue-900);
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
}

.lastNewsContent i {
    color: var(--color-primary-bg);
}

.card-new-title {
    font-size: 24px;
    text-align: center;

}

#lastNews .card-body p {
    display: table-cell !important;
    vertical-align: middle !important;
}

.waves-bottom {
    position: relative;
    background: transparent;
    filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, .1));
    z-index: -1;
    transform: scale(-1);

    @media (max-width: 768px) { 
        &.homepage {
            display: none;
        }
    }
}

.quote-icon {
    position: absolute;
    top: 0.75em;
    left: 1.75em;
}

.testi-comment {
    position: relative;
    bottom: 3em;
    font-style: italic;
}

.testi-logo {
    width: 60%;
}

.testi-rating {
    bottom: 3em;
    position: relative;
}

.disabled-plan-switch {
    color: var(--gray-400) !important;
}

.popular-plan {
    font-weight: 600;
    letter-spacing: 0.5em;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
    bottom: 2em;
    font-size: 0.75em;
    padding: 4px 0;
    text-transform: uppercase;
}

.border-radius-top-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.show-plan-info {
    outline: none;
}

.product-video .embed-responsive {
    transform: rotateY(0);
}

#lastNews .slick-current .card {
    /*
    position: absolute;
    */
    z-index: 9999;
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -o-transition: all 0.5s ease 0.5s;
    -ms-transition: all 0.5s ease 0.5s;
    transition: all 0.5s ease 0.5s;
}

.slick-track {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-bottom: 1em;
}

#lastNews .slick-slide:not(.slick-current) {
    opacity: 0.4;
}

#startWithoutSupport {
    padding-right: 1em;
    text-decoration: underline;
}

.supportStatus {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 1em;
    line-height: 1em;
    color: #2ecc71;
}

.supportStatus i {
    font-size: 0.75em;
    color: #2ecc71;
    padding: 0.5em;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-animation: blink normal 1.5s infinite ease-in-out;
    /* Firefox */
    -webkit-animation: blink normal 1.5s infinite ease-in-out;
    /* Webkit */
    -ms-animation: blink normal 1.5s infinite ease-in-out;
    /* IE */
    animation: blink normal 1.5s infinite ease-in-out;
    /* Opera */

}

#compatibleCamerasSection {
    padding-top: 4rem !important;
    padding-bottom: 2rem !important;
}

#supportPhone,
#appMobilePhone,
#agencyPhone {
    padding-left: 5.65em !important;
}

#counter {
    position: relative;
    z-index: 9;
}

#stepsSection .container {
    top: 0;
    position: relative;
}

.curve-prices {
    fill: #fff;
}

.mobile-cta {
    font-weight: 500;
}

.mobile-cta-demo {
    position: relative;
    bottom: 8em;
}

.navbar-shadowed .nav-link {
    color: var(--blue-gray-900) !important;
}

.free-days-label {
    position: absolute;
    color: var(--gray-400);
}

header {
    position: relative;
    background-color: black;
    width: 100%;
    overflow: hidden;
    min-height: 41rem;
}

@media (max-width: 768px) {
    header {
        min-height: 45rem;
    }
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(26, 27, 35);
    z-index: 1;
    background: linear-gradient(to bottom, rgba(26, 27, 35, 1) 6%, transparent 100%);
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: fit-content;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#virtualizeSlider .modal-content,
#howitworksSlider .modal-content {
    border-radius: 10px;
}

#virtualizeSlider .btn,
#howitworksSlider .btn {
    font-weight: 500;
    box-shadow: none;
    color: var(--blue-gray-800);
}

.img-client-alfainmo {
    width: 60% !important;
}

.product-section-desktop {
    gap: 3rem;
}

.product-frame.autodescriptions-frame  {
    position: relative;
    padding: 1em;
    background: white;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.autodescriptions-frame__wrapper {
    position: absolute;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    padding: 1em;
}

.autoDescriptionText__wrapper {
    display: none;
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    padding: 1rem 1rem 1rem 1.25rem;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    overflow: hidden;
    height: 37em;
    overflow-y: auto;
    min-width: 100%;  
    pointer-events: all;
}

.blurred--filter {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    user-select: none;
}


.autoDescriptionAnimations__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


    position: absolute;
    top: 47.5%;
    left: 48%;
    transform: translate(-50%, -55%);
    min-height: 100%;
    min-width: 100%;
}

.generating-descriptions__image {
    max-width: 10em;
}

.generating-descriptions__text {
    font-size: 1.25em;
    font-weight: 700;
}

.autoDescriptionText__cursor {
    display: inline-block;
    min-width: 10px;
    min-height: 20px;
    background-color: black;
    animation: blinkCursor 1s infinite;

    /* animation: blinkCursor 0.7s infinite; */
  }
  
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.autodescriptions-frame__title {
    color: var(--gray-800);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
}


.product-content-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;   
}

.product-content-icon__rounded {
    background-color: white;
    padding: 1rem;
    border-radius: 100px;
    box-shadow: 0px 1px 8px rgba(39, 47, 106, .20);
}

.home360-icon,
.bigShare-icon {
    filter: var(--filter-blue-800);
}

.bigShare-icon {
    position: relative;
    right: 3px;
}

.doubleArrow-icon {
    filter: var(--filter-gray-300);
}


.product-button.active {
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: none;
}

.product-button.active img{
    filter: brightness(0) saturate(100%) invert(48%) sepia(82%) saturate(1611%) hue-rotate(354deg) brightness(93%) contrast(105%) !important;
}

.product-button {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-radius: 10px;
    width: 8rem;
    aspect-ratio: 1;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -ms-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.2s ease 0s;
    box-shadow: 0px 1px 8px rgba(39, 47, 106, 0.20);
    gap: .5rem;
    outline-color: var(--gray-100);
}

.product-button img {
    user-select: none;
}

.product-button .customBadge {
    border-radius: 4px;
    background-color: var(--blue-800);
    position: absolute;
    top: .35rem;
    right: .35rem;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 4px;
    color: white;
}

.product-button:hover {
    transform: scale(1.05, 1.05);
}

.product-button.active {
    background: var(--gray-50);
    pointer-events: none;
}

.product-button.active path {
    stroke: var(--orange-500);
}

.product-button.active rect {
    stroke: var(--orange-500);
}

.virtual-tour-button.active path:last-of-type {
    fill: var(--orange-500);
}

#productSection {
    padding: 0;
    padding-bottom: 4rem;
}

#productSection2 {
    padding: 0;
    padding-top: 5rem;
}

.col-left-product {
    padding: 20rem 0;
}

.product-frame {
    border-radius: 0.625rem;
    background: #000;
}

.product-frame iframe img {
    width: 100%;
    height: auto;
}

.video-iframe img {
    width: 100%;
    height: auto;
}

.product-current-frame {
    /*
    background: var(--blue-gray-900);
    */
    background: #000;
    border-radius: 1.25rem;
    padding: 1em;
    width: 100%;
}

.product-current-frame-mbl,
.product-current-frame iframe,
.product-current-frame-mbl iframe {
    border-radius: 0.625rem;
}

.product-current-frame-mbl iframe {
    min-height: 20rem;
}

.product-frame:not(:first-of-type) {
    display: none;
}

.n-tours {
    font-weight: 500;
    font-size: 1.5rem;
    top: 2px;
    position: relative;
}

.yearly-plan-subtitle {
    left: -2px;
    position: relative;
}

#tourExamplesModal {
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.after-example-btn .circle-btn,
.before-example-btn .circle-btn {
    position: absolute;
}

.circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5em;
    width: 2.5em;
    background: #fff;
    border-radius: 3em;
    cursor: pointer;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2));

}

.after-example-btn .circle-btn {
    padding-left: 0.25rem;
}

.before-example-btn .circle-btn {
    padding-right: 0.375rem;
}

.circle-btn i {
    color: var(--blue-gray-900);
}

.fa-arrow-alt-circle-left:before,
.fa-arrow-alt-circle-right:before {
    background: var(--blue-900);
    border-radius: 100%;
    cursor: pointer;
}

.text-promo-cam {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin: 0;
    line-height: 1;
}

.tour-example-overlay {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#carouselExampleControls {
    height: 100%;
    width: 100%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#carouselExampleControls .carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

#carouselExampleControls .carousel-item,
#carouselExampleControls .carousel-inner {
    height: 100%;
}

#carouselExampleControls .carousel-caption {
    position: initial;
    top: 0;
    pointer-events: none;
}

.col-app-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
    padding-right: 4em;

    @media (max-width: 1200px) {
        padding-right: 3em;
    }

    & .input-group {
        gap: .5em;

        & input {
            min-height: 48px;
            border-radius: 8px;
        }
        
        & .iti--allow-dropdown {
            flex: 1;
        }
    }

    & .btn-dark {
        display: flex;
        align-items: center;
        gap: .5em;
        background-color: var(--blue-800) !important;
        font-size: 18px;
        font-weight: 500;
        border-radius: 8px !important;
        border: none !important;
        padding: 10px 16px;
        letter-spacing: 1px;
        box-shadow: none;

        & img {
            width: 20px;
            height: 20px;
            filter: var(--filter-white);
        }

        &:hover {
            background-color: var(--blue-700) !important;
        }

        &:focus-visible {
            outline: 2px solid var(--blue-400);
            box-shadow: inset 0 0 0 2px white;
        }
    }
}

.col-app-left-content__header {
    & p {
        margin: 0;
    }

    @media (max-width: 992px) {
        display: flex;
        flex-direction: column;
        gap: 1em;
        padding: 2em;
    }
}

.col-app-left-content__links {
    display: flex;
    gap: 1em;

    & a {
        text-decoration: none;

        & img {
            filter: drop-shadow(0px 0px 8px rgba(26, 27, 35, .1));
            margin: 0;
        }
    }
}

.product-navbar {
    background: #fff;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    border-radius: 0.625rem;
    align-items: center;
    padding: 0.75em 0.75em 0.75em 1em;
    width: 100%;
    margin-bottom: 1em;
    box-shadow: 0 2px 15px rgba(86, 92, 113, 0.1);
}

.product-navbar .btn {
    background: #fff !important;
    color: var(--gray-900) !important;
    border: 0.063rem solid var(--gray-200) !important;
    border-radius: 0.313rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    padding: 0.5rem 0.75rem !important;
}

.product-navbar .btn svg {
    margin-right: 0.5rem;
}

.product-navbar-title {
    font-weight: bold;
    color: var(--blue-800);
}

.buttons-and-frame-container {
    display: flex;
    padding: 1em;
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    gap: 1rem;
    background: #fff;
    border-radius: 0.625rem;
    padding: 1rem;
    box-shadow: 0px 1px 10px 0px rgba(65, 79, 119, 0.20);
}

.product-button .feature-title {
    color: var(--gray-900);
    font-weight: 500;
}

#lastNews .slick-arrow {
    position: absolute;
    cursor: pointer;
    top: 11em;
    padding: 2em;
}

#lastNews .prevarrow {
    left: -5em;
}

#lastNews .nextarrow {
    right: -5em;
}

#offer .section-title {
    width: 13ch;
}

/*
 * APP MOBILE SECTION:
 * These are all styles for app mobile section
*/

#appMobile {
    padding: 4em 0 !important;

    & .app-mobile-content {
        background-color: #fff;
        box-shadow: 0 -2px 30px rgba(0, 0, 0, .1);
        border-radius: .5rem;
        overflow: hidden;
    }

    & .section-title {
        text-align: left;
    }



    .container {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }


    @media only screen
    and (min-device-width: 320px)
    and (max-device-width: 480px) {
        padding-top: 6rem !important;
        padding-bottom: 4rem !important;
        width: fit-content;
    }

    @media (max-width: 992px) {
        padding-top: 4em;
        padding-bottom: 8em;

        & .pre-title,
        & .section-title {

            text-align: center;
        }
    }

    @media (min-width: 992px) {
        padding-top: 6rem !important;
        padding-bottom: 4rem !important;
    }
}

.product-card {
    background: #fff;
    filter: drop-shadow(0px 0px 12px rgba(26, 27, 35, 0.15));
    border-radius: 0.938rem;
}

.product-button-mbl {
    display: flex;
}

.product-property-description {
    display: flex;
    padding: 0.75rem 1rem;
    padding-right: 0.5rem;
    color: var(--blue-gray-800);
}

.left-buttons {
    display: flex;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.right-buttons {
    display: flex;
    padding: 0.65rem;
    gap: 0.5rem;
    border-left: 1px solid var(--gray-200);
    align-items: center;
    justify-content: center;
}

.product-property-description-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-property-description-right span {
    display: flex;
    align-items: center;
    padding: 0.1rem 0;
}

.product-property-title {
    font-weight: bold;
}

.product-property-icon {
    margin-right: 0.25rem;
}

.product-property-id {
    padding-top: 0.313rem;
}

.product-property-id,
.product-property-location {
    color: var(--gray-500);
}

.product-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
    width: 3.2rem;
    background: #fff;
    border-radius: 3em;
    cursor: pointer;
    border: 2px solid var(--orange-500);
    transition: all 0.2s ease 0s;
}

.product-circle-btn.active {
    height: 3.75rem;
    width: 3.75rem;
}

.product-inner-circle-btn {
    border-radius: 3em;
    height: 3.25rem;
    width: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-circle-btn.active .product-inner-circle-btn {
    background: var(--blue-gray-800);
}

.product-circle-btn.active path {
    stroke: #fff;
}

.product-circle-btn.active rect {
    fill: white;
}

.product-circle-btn.active line {
    stroke: var(--blue-gray-800);;
}

.left-buttons .product-circle-btn:nth-child(2).active path {
    stroke: #fff;
    fill: #fff;
    stroke-width: 0;
}

.right-buttons .product-circle-btn:nth-child(1).active path {
    stroke: #fff;
    fill: #fff;
}

.img-client-Century21 {
    max-width: 90%;
}

.img-client-Alfa {
    max-width: 90%;
    padding: 0.5rem;
}

.testimonialsContent {
    margin: 0;
}

.service-counter {
    color: var(--orange-500);
    font-weight: bold;
}

#lastNews .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--orange-500) !important;
}

.slick-dots li button::before {
    width: 1.875rem !important;
    font-size: 1rem;
}

.badge-primary.badge-saving {
    color: #fff;
    background-color: var(--blue-gray-700) !important;
}

.badge-saving {
    position: relative;
    font-weight: 500 !important;
    padding: 0.5em 1em;
    padding-left: 0.5em;
    float: right;
    top: 3px;
    border-radius: 0;
    right: -1.6rem;
    font-size: 0.75rem;
}

.badge-saving:before {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent var(--blue-gray-700) !important;
    top: 0;
    left: -12px;
    border-width: 12px 12px 12px 0;
}

#camera_addons .badge-saving {
    border-top-left-radius: 12px;
}

#camera_addons .badge-saving:before {
    top: 6px;
    left: -9.5px;
    border-width: 24px 11px 0 0;
}

#camera_addons .badge-saving {
    padding: 0.75em 1em;
    padding-left: 1em;
}

.plan-text-summary {
    text-align: center;
    color: var(--blue-gray-800);
    margin: 0;
    font-weight: 500;
}

.plan-summary-hr {
    margin-top: 2rem;
}

.cam-addon-title {
    font-size: 1.125rem;
}

.camera-addon-divider {
    margin-top: 0.375rem;
}

#camera_addons .modal-dialog {
    overflow: hidden;
}

.video-iframe {
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-size: contain !important;
    background-position: center !important;
    border-radius: 0.625rem;
}

.header-banner {
    height: 100%;
    position: relative;
    background-size: 100% 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-frame {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.header-banner video {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    width: 100%;
    transform: initial;
}

.header-banner:before {
    content: '';
    position: absolute;
    background: linear-gradient(to bottom, rgba(26, 27, 35, 1) 6%, transparent 100%) !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.homepage-header .header-content {
    position: absolute;
   /* top: max(18.75rem, 50vh);*/
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 10;
}

@media (max-width: 768px) {
    .homepage-header .header-content {
        top: max(18.75rem, 40vh);
    }
}

@media (max-width: 576px) {
    .homepage-header .header-content {
        top: max(18.75rem, 49vh);
    }

    .homepage-header .header-content .header-title {
        line-height: 1.5em !important;
    }
}

@media (max-width: 320px) {
    #offerSection {
        top: 2rem;
    }

    .header-banner video {
        height: fit-content;
    }
}

.mobile-hero-video {
    top: 4rem !important;
    aspect-ratio: 1/2;
}

.images-frame {
    position: relative;
    overflow: hidden;
}

.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    user-select: none;
}

.product-gallery__item {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    margin: 0;
}

.product-gallery__preview {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    background: #000;
}

.product-gallery__preview-wrapper {
    position: relative;
}

.product-gallery__close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    border: none;
    outline: none !important;
    border-radius: 100px;
    padding: .5em;
    margin: 1em;
    background: #fff;
}

.product-gallery__preview-img {
    width: 100%;
    border-radius: 5px;
}

/* Scrollbar for .product-gallery__grid */
.product-gallery__grid::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

/* Background color of the scrollbar track */
.product-gallery__grid::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

/* Color of the scrollbar handle */
.product-gallery__grid::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* On hover, color of the scrollbar handle */
.product-gallery__grid::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}


/* Scrollbar for .product-gallery__grid */
.autoDescriptionText__wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

/* Background color of the scrollbar track */
.autoDescriptionText__wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

/* Color of the scrollbar handle */
.autoDescriptionText__wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* On hover, color of the scrollbar handle */
.autoDescriptionText__wrapper::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.product-current-frame-mbl {
    min-height: 20em;
}

.product-current-frame-mbl .autodescriptions-frame {
    box-shadow: rgba(65, 79, 119, 0.2) 0 1px 10px 0;
    height: 22em;
}

.product-current-frame-mbl .product-gallery__grid {
    max-height: 455px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 15px;
}

.product-current-frame-mbl .autoDescriptionText__wrapper {
    max-height: 18em;
}

.product-gallery__item img {

    /* transform-origin: 0 0;
    transition: transform .25s, visibility .25s ease-in; */


    transform-origin: 65% 75%;
    transition: transform 1s, filter .5s ease-out;

    width: 100%;
    height: 100%;
    object-fit: cover;

    /* max-width: 100%; */
   
    /* -webkit-transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    -ms-transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.2s cubic-bezier(.25, .8, .25, 1); */
}

.product-gallery__item img:hover {
    transform: scale(1.5, 1.5);
    
}

.product-section-mobile .product-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 18px;
    align-items: center;
    margin: auto;
}
.product-section-mobile .container {
    padding-left: 15px;
    padding-right: 15px;

}
.product-section-mobile .product-button {
    min-width: 86px;
    max-width: 86px;
    font-size: 12px;
    gap: .25em;
}
.product-section-mobile .product-button svg{
    padding: 0;
    height: 40px;
}

.product-section-mobile .product-gallery__preview {
    padding: 1em;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-buttons__scroller{
    overflow: scroll;
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.product-buttons__scroller::-webkit-scrollbar {
    display: none;
}
.product-section-mobile .images-frame{
    height: fit-content;
    padding-bottom:15px ;
}

#floorplansSection {
    background-color: white;
    padding-bottom: 0 !important;

    & .section-text {
        font-weight: 500;
        margin: 0 auto;
    }

    & .mobile-cta-start-container {
        margin-top: 2em;
        margin-bottom: 4em;
    }
}

.mobile-cta__container {
    position: relative;
    z-index: 998;
}

.monthly-plans {
    width: 100%;
}

.yearly-plans {
    display: none;
    width: 100%;
}

.yearly-plan {
    display: block;
}

/* Header video */
.header-video__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-top: 3rem;
}

.header-video__play-button .header-video__play-button-icon {
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.header-video__play-button .header-video__play-button-text {
    pointer-events: none;
}

.header-video__play-button:focus {
    box-shadow: 0 0 0 .2rem rgb(255 255 255 / 25%) !important;
}

.header-video__dialog {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999;
    padding: .25em;
    background: rgba(0, 0, 0, .5);
    border: 0;
}

.header-video__video {
    width: 50%;
    border-radius: 10px;
    border: 4px solid var(--white);
    background: var(--white);
}

.header-video__video--fullscreen {
    border: 0;
}


@media (max-width: 992px) {
    .header-video__video {
        width: 90vw;
    }

    #navbarResponsive {
        background: white;
        width: 100%;
        position: absolute;
        left: 0;
        top: 3.85em;
    }

    #navbarResponsive.show {
        margin: 0 0 2em 0;
    }

    #mainNav {
        height: 62px;
    }
}

.section__wrapper {
    flex-direction: column;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;

    .section-title {
        margin: 0 !important;
    }
}
.section__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2em;
}

@media (max-width: 1200px) { 
    .product-content-icons {
        display: none;
    }
}

.camera-header {
    position: absolute;
    bottom: 1em;
    left: calc(25.5rem + 50vw);
    z-index: 9;
    transition: all 0.3s ease;
}

@media (max-width: 1800px) {
    .camera-header {
        left: calc(15.5rem + 50.5vw);
    }
}

@media (max-width: 1600px) {
    .camera-header {
        left: calc(15.5rem + 50.5vw);
    }
}

@media (max-width: 1400px) {
    .camera-header {
        left: calc(18.5rem + 46.5vw);
    }
}

@media (max-width: 1200px) {
    .camera-header {
        left: calc(15.5rem + 38.5vw);
    }
}

@media (max-width: 992px) { 
    .camera-header {
        display: none;
    }
    .product-gallery__grid { 
        grid-gap: 10px;
    }
}




/* CSS Variables */
:root {
    --circleDiameter: 2rem;
    --circleDiameterMobile: .5;
    --equisWidth: 14rem;
    --equisWidthMobile: 7rem;
    --equisHeight: 8rem;
    --equisHeightMobile: 4rem;
    --equisRoationSpeed: 10s;
    /* --gray-600: #777777;
    --gray-50: #f9f9f9;
    --white: #ffffff;
    --blue-400: #6495ed; */
}

/* .generating-descriptions-modal */
.autoDescriptionAnimations__content {
    position: absolute;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    z-index: 1;
}

.autoDescriptionAnimations__header {
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    padding: 4rem 12rem;
}

.generating-descriptions-modal__step {
    position: relative;
    width: 100%;
    height: 100%;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.generating-descriptions-modal__step-text {
    width: max-content;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-600);
    opacity: 0;
    animation: fade 2s ease-in-out infinite;
}

.product-current-frame-mbl .generating-descriptions-modal__step-text {
    font-size: 16px;
}

.generating-descriptions-modal__step[data-step="1"] .generating-descriptions-modal__step-text {
    position: absolute;
    top: 10em;
}

.product-current-frame-mbl .generating-descriptions-modal__step[data-step="1"] .generating-descriptions-modal__step-text {
    position: absolute;
    top: 6em;
}

.generating-descriptions-modal__step[data-step="2"] .generating-descriptions-modal__step-text {
    top: 12em;
}

.product-current-frame-mbl .generating-descriptions-modal__step[data-step="2"] .generating-descriptions-modal__step-text {
    top: 10em;
}

.generating-descriptions-modal__step[data-step="3"] .generating-descriptions-modal__step-text {
    top: 12em;
}

.product-current-frame-mbl .generating-descriptions-modal__step[data-step="3"] .generating-descriptions-modal__step-text {
    top: 10em;
}


@keyframes fade {
    0%, 100% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
}

.generating-descriptions-modal__image {
    width: 15em;
}

.product-current-frame-mbl .generating-descriptions-modal__image {
    width: 10em;
}

.generating-descriptions-modal__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.generating-descriptions-modal__equirectangular {
    position: absolute;
    border: 2px solid var(--white);
    border-radius: 8px;
    width: var(--equisWidth);
    height: var(--equisHeight);
    animation: maintain var(--equisRoationSpeed) linear infinite;
    pointer-events: none;
    background-color: var(--gray-50);
}

.product-current-frame-mbl .generating-descriptions-modal__equirectangular {
    width: var(--equisWidthMobile);
    height: var(--equisHeightMobile);
}

.generating-descriptions-modal__equirectangular__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.generating-descriptions-modal__equirectangular:nth-of-type(1) {
    z-index: 1;
    top: calc(-1 * var(--equisWidth) / 2);
    left: -8rem;
}

.product-current-frame-mbl .generating-descriptions-modal__equirectangular:nth-of-type(1) {
    z-index: 1;
    top: calc(-1 * var(--equisWidthMobile) / 2);
    left: -3rem;
}

.generating-descriptions-modal__equirectangular:nth-of-type(2) {
    z-index: 2;
    top: calc(var(--circleDiameter) / 2 - var(--equisWidth) / 2 - 5px);
    right: -12rem;
}

.product-current-frame-mbl .generating-descriptions-modal__equirectangular:nth-of-type(2) {
    z-index: 2;
    top: calc(var(--circleDiameterMobile) / 2 - var(--equisWidthMobile) / 2 - 5px);
    right: -6rem;
}

.generating-descriptions-modal__equirectangular:nth-of-type(3) {
    z-index: 1;
    top: calc(var(--circleDiameter) / 2 - var(--equisWidth) / 2 - 5px);
    left: -12rem;
}

.product-current-frame-mbl .generating-descriptions-modal__equirectangular:nth-of-type(3) {
    z-index: 1;
    top: calc(var(--circleDiameterMobile) / 2 - var(--equisWidthMobile) / 2 - 5px);
    left: -6rem;
}

.generating-descriptions-modal__equirectangular:nth-of-type(4) {
    z-index: 0;
    left: calc(var(--circleDiameter) / 2 - var(--equisWidth) / 2 - 5px);
    bottom: calc(-1 * var(--equisWidth) / 2);
}

.product-current-frame-mbl .generating-descriptions-modal__equirectangular:nth-of-type(4) {
    z-index: 0;
    left: calc(var(--circleDiameter) / 2 - var(--equisWidth) / 2 - 5px);
    bottom: -1em;
}

.generating-descriptions-modal__equirectangular.img-error {
    object-fit: contain;
    padding: 1.5rem;
}

.generating-descriptions-modal__rotate {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: rotate var(--equisRoationSpeed) linear infinite;
}

.product-current-frame-mbl .generating-descriptions-modal__rotate {
    top: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes maintain {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Animated text */
.animated-text {
    display: inline-flex;
    gap: 0.3rem;
    justify-content: center;
}

.animated-text__wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
    transition: width 2s ease;
}

.animated-text__wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    color: var(--blue-400);
}

.animated-text__wrapper b.is-visible {
    position: relative;
}

.animated-text.rotate-1 .animated-text__wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.animated-text.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.animated-text.rotate-1 b.animated-text--visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    -moz-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
}

.animated-text.rotate-1 b.animated-text--hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    -moz-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
}

.mobile-switch-texts .yearly-text {
    display: none;
}

.pricing-switch-text {
    display: flex;
    align-items: center;
}

.pricing-switch-text label {
    margin: 0;
}

@keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        -moz-transform: rotateX(120deg);
        -ms-transform: rotateX(120deg);
        -o-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        -moz-transform: rotateX(360deg);
        -ms-transform: rotateX(360deg);
        -o-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}

@keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        -moz-transform: rotateX(-40deg);
        -ms-transform: rotateX(-40deg);
        -o-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}


/* Product section (floorplans frame) */
.floorplans-frame  {
    background: var(--white)
}

.floorplans-frame__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.floorplans-frame__wrapper img {
    max-width: 80%;
}

.your-logo-here {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px dashed var(--gray-300);
    padding: 8px 28px;
}

.your-logo-here__text {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-300);
    text-transform: uppercase;
    margin: 0;
}

.product-current-frame-mbl .floorplans-frame {
    min-height: 24em;
}

.product-current-frame-mbl .floorplans-frame__wrapper {
    min-height: inherit;
}

@media (max-width: 568px) {
    .your-logo-here {
        padding: 4px 14px; 
    }
}

@media (max-width: 768px) {
    .your-logo-here { 
        right: 1em;
        bottom: 1em;
        padding: 4px 14px; 
    }

    .your-logo-here__text {
        font-size: 12px;
    }

    .floorplans-frame__wrapper img {
        max-width: 80% !important;
    }
}

@media (max-width: 992px) {
    .floorplans-frame__wrapper img {
        max-width: 100%;
    }
}

.header-home__title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
    font-size: 1.875rem;
    line-height: 2.375rem;
}

.header-home__title span { 
    color: white;
    font-weight: 400;

}

.header-home__title span:nth-child(2) {
    font-weight: 600;
}

#autoDescriptionsSection {
    padding-top: 4em;
    padding-bottom: 8rem;

    & .primary-button__wrapper {
        padding: 2rem 0;
    }

    & .section-description {
        text-align: center;
    }
}

#autoDescriptionsSection .container,
#homeStagingSection .container,
#certifiedVideocallsSection .container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    #autoDescriptionsSection .container,
    #homeStagingSection .container,
    #certifiedVideocallsSection .container {
        gap: 1em;
    }
}

.autoDescriptions-section__container,
.homeStaging-section__container,
.certifiedVideocalls-section__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 568px) {
    .autoDescriptions-section__container img {
        width: 100vw;
    }
}

/*
 * HOMESTAGING SECTION:
 * These are all styles for home staging section
*/

#homeStagingSection {
    padding: 4em 0;

    & .home-staging-image-desktop {
        display: flex;

        @media (max-width: 768px) {
            display: none;
        }
    }

    & .home-staging-image-mobile {
        display: none;
        
        @media (max-width: 768px) {
            display: flex;
        }
    }
}

#certifiedVideocallsSection {
    padding-top: 4em !important;
    padding-bottom: 4em !important;

    & img {
        width: auto;
        max-width: 100%;
    }
}

#autoDescriptionsSection,
#homeStagingSection,
#certifiedVideocallsSection,
#supportSection {
    & .pre-title,
    & .section-title,
    & .section-text {
        text-align: center;
    }
}

.homeStaging-section__container {
    & img {
        width: 100%;
    }
}

/*
 * SUPPORT SECTION:
 * These are all styles for support section
*/

#supportSection {
    padding-top: 4em !important;
    padding-bottom: 4em !important;


    & .container {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    &.homepage {
        padding-top: 4em;
    }

    & .container {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    & .support-form {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
        padding: 1.5em 2em 2em;
        background-color: var(--white);
        box-shadow: 0 3px 25px rgba(0, 0, 0, .1);
        border-radius: 10px;
        min-width: 40%;

        @media (max-width: 768px) {
            flex: 1;
        }
    }

    & .avatars-overlapped {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;

        list-style-type: none;
        margin: 0;
        padding: 0;
    
        & li {
            margin-right: -1.5em;
            z-index: 1;
            border-radius: 50%;
            border: 2px solid white;
            display: inline-block;
            position: relative;
            box-shadow: 0px 1px 3px 0px rgb(0 0 0 / .3);

            &:first-of-type {
                margin-right: 0;
            }

            & img {
                transition: width .3s ease, height .3s ease;

                @media (max-width: 992px) {
                    max-width: 6em;
                    max-height: 6em;
                }

                @media (max-width: 768px) {
                    max-width: 5.5em;
                    max-height: 5.5em;
                }
                
                @media (max-width: 576px) {
                    max-width: 4.5em;
                    max-height: 4.5em;
                }
            }
        }
    }

    & .btn-dark {
        background-color: var(--blue-800) !important;
        font-size: 18px;
        font-weight: 500;
        border-radius: 8px;
        border: none !important;
        padding: 10px 16px;
        letter-spacing: 1px;
        box-shadow: none;

        &:hover {
            background-color: var(--blue-700) !important;
        }

        &:focus-visible {
            outline: 2px solid var(--blue-400);
            box-shadow: inset 0 0 0 2px white;
        }
    }

    & .form-control {
        border-radius: 8px;
        min-height: 48px;
    }

    & .support-section__container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 2em;
    }

    & .support-form__content {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
    }   
    
    & .support-avatar {
        display: block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        z-index: 2;
        border: 3px solid white;
        background: #fff;
    }

    & .form-radio-buttons {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: .25em;
    
        & li {
            display: flex;
            align-items: center;
            gap: .5em;
            padding: .5em 0;
            outline-color: var(--orange-500);
    
            &:focus-visible {
                background-color: var(--orange-50);
                padding: 0.5em;
            }
    
            & label {
                cursor: pointer;
                margin-bottom: 0 !important;
                line-height: 1;
            }
        }
    
        & .custom-radio {
            border: 0.2rem solid #fff;
            background-color: var(--bg-color);
            border-radius: 50%;
            accent-color: var(--orange-500) !important; 
            outline: none;
        }
    
        & input[type="radio"] {
            cursor: pointer;
            height: 1.2rem;
            width: 1.2rem;  
        }
    }
}

/*
 * CONTACT SECTION:
 * These are all styles for contact section
*/

.contact-section {

    & .container {
        display: flex;
        flex-direction: column;
        gap: 3em;
    }

    & .contact-section__header {
        display: flex;
        flex-direction: column;
        gap: .5em;
        align-items: center;

        & .section-title {
            text-align: center;
            margin-bottom: 0;
        }
    
        & .section-subtitle {
            text-align: center;
            margin-bottom: 0;
        }
    }

    & .contact-section__content {
        display: flex;
        flex-direction: column;
        gap: 2em;
        align-items: center;
    }

    & .contact-section__form {
        display: flex;
        flex-direction: column;
        gap: 1em;
        width: 50%;

        @media (max-width: 768px) {
            width: 100%;
        }
    }

    & .contact-section__footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3em;
    }
}

/*
 * SHOWCASES SECTION:
 * These are all styles for showcases section
*/
.showcases-share-row {
    display: flex;
    flex-direction: column;
    align-items: center;

    & .showcases-section__header{
        display: flex;
        flex-direction: column;
        align-items: center;

        & .pre-title {
            text-align: center;
        }

        & .section-title {
            text-align: center;
        }

        & .section-description {
            text-align: center;
        }
    }
}

.mobile-cta-start-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
}

.customCheckbox {
    display: flex;
    align-items: center;
    gap: .25em;
    margin: 0;

    input[type="checkbox"] {
        /* Add if not using autoprefixer */
        -webkit-appearance: none;
        /* Remove most all native input styles */
        appearance: none;
        /* For iOS < 15 */
        background-color: var(--form-background);
        /* Not removed via appearance */
        margin: 0;

        font: inherit;
        color: var(--gray-500);
        width: 1.15em;
        height: 1.15em;
        border: 0.1em solid var(--gray-500);
        border-radius: 0.15em;

        display: grid;
        place-content: center;

        margin-right: .25em;
        min-height: inherit;
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        transform: scale(0);
        transform-origin: bottom left;
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        /* Windows High Contrast Mode */
        background-color: CanvasText;
        filter: var(--filter-orange-500);
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]:focus {
        outline: max(2px, 0.15em) solid currentColor;
        outline-offset: max(2px, 0.15em);
    }

    input[type="checkbox"]:disabled {
        --form-control-color: var(--form-control-disabled);

        color: var(--form-control-disabled);
        cursor: not-allowed;
    }
}
.customCheckbox--error {
    color: var(--red-400);

    input[type="checkbox"] {
        border-color: var(--red-400);
    }
}

.offer__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    column-gap: 2rem;
    
    a {
        border: 1px solid var(--gray-800);
        border-radius: .5rem;
        padding: .5rem 1rem;
        font-weight: 500;
    }
}

.offer__text {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.offer__title {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.offer__title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.offer__subtitle {
    margin: 0;
}

.offer__badge {
    background: var(--orange-500);
    color: var(--white);
    border-radius: .25rem;
    font-size: 1rem;
    font-weight: bold;
    padding: .25rem .5rem;
    width: fit-content;
}
@media (max-width: 992px) {
    .offer__wrapper {
        column-gap: 0;
    }
}
@media (max-width: 768px) {
    .offer__wrapper {
        align-items: flex-end;
        column-gap: 0;

        img {
            max-width: 180px;
        }
    }
    .offer__text {
        padding-block: 4em;
    }
}