/* 
Theme Name: Base Theme Child
Template: base
*/

:root :where(.is-layout-constrained) > * {
    margin: 0 !important;
}

:root {
    --section-spacing-small: 8rem;
    --lang-border-radius: 2rem;
}

.decor .components-placeholder {
    display: none;
}

body {
    background-color: #f5f5f7;
    font-family: var(--font-main) !important;
    line-height: 1.2 !important;
}

section:not(.header-row, .footer-row, .win) {
    width: 100%;
    /* height: 100vh; */
    /* max-height: 200rem; */
    padding: var(--section-spacing) var(--section-spacing);

    @media (max-width: 1199px) and (min-width: 810px) {
        padding: var(--section-spacing) var(--spacing-big);
    }
}

.presence,
.voice,
.cases,
.faq {
    min-height: fit-content !important;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-big);

    @media (max-width: 809px) and (min-width: 0) {
        gap: var(--section-spacing);
    }
}
.section-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
    font-size: var(--font-size);
    
    &.center {
        text-align: center;

        h2,
        p {
            text-align: center;
        }
    }

    p {
        color: #5F606C;

        .dark-bg & {
            color: #ababb5;
        }
    }
}

h1, h2 {
    --h-letter-spacing: -0.192rem;
}
h3 {
    --h-letter-spacing: -0.104rem;
}
h5, .h5 {
    font-weight: var(--h5-text-weight) !important;
}

mark {
    background-color: transparent;
    color: var(--primary-color);
    font-style: italic;
}

.button,
.wp-block-button .wp-block-button__link {
    flex-shrink: 0;

    @media (max-width: 809px) and (min-width: 0) {
        width: 100% !important;
    }

    &.bronze,
    .bronze & {
        background-color: var(--secondary-color);
        color: var(--white);
        border-color: #f5f5f733;

        &:hover {
            background-color: rgb(177, 133, 53) !important;
            border-color: #f5f5f733 !important;
        }
    }

    &.white,
    .white & {
        background-color: var(--white);
        color: var(--main-color);
        border-color: var(--white);
    }
}

.site-main {
    margin: 0;
}
body:not(.home) {
    .site-main {
        > section {
            padding-top: var(--header-height);

            @media (max-width: 809px) {
                padding-top: var(--mobile-header-height);
            }
        }
    }
}


.popup-win.mob-menu .wrapper {
    justify-content: center;
}

.popup-win.mob-menu .wrapper:not(.dark-bg, .light-bg) {
    backdrop-filter: blur(5px);
    background-color: rgba(32, 33, 40, .8);
    color: var(--white);
}

header {
    --header-col-bg: #2021280d;
    --header-bg: #2021281a;
    --menu-color: #202128;
    --menu-item-color_hover: var(--menu-color);
    --menu-item-color_active: var(--menu-color);
    --menu-item-bg_hover: rgba(32, 33, 40, 0.2);
    --menu-item-bg_active: var(--menu-item-bg_hover);
    --header-border-color: #20212833;
    --header-logo-bg: #20212833;
    --header-logo-bg_hover: #20212880;
    --header-logo-filter: invert(1);

    * {
        transition: all 0.3s ease;
    }

    .header-row {
        padding: 5rem var(--section-spacing) 0rem var(--section-spacing);

        @media (max-width: 809px) and (min-width: 0) {
            padding-top: 2.5rem;

            .wrapper {
                gap: 1rem;
            }
        }

        .menu-logo-col {
            background-color: var(--header-col-bg);
            border-radius: 2.5rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: .5rem;
            gap: .5rem;

            .site-menu,
            .burger {
                background-color: var(--header-bg);
                border: .1rem solid var(--header-border-color);
                border-radius: 2rem .5rem .5rem 2rem;
                backdrop-filter: blur(9.5px);
                padding: 1.2rem 3rem;

                &::before,
                &::after {
                    background-color: var(--menu-color);
                    width: 1.9rem;
                    left: 2.5rem;
                }
                span {
                    width: 1.9rem;
                    left: 2.5rem;
                    opacity: .5;
                    background-color: var(--menu-color);

                    .menu-main-opened & {
                        opacity: 0;
                    }
                }
            }
            .burger {
                width: 6.7rem;
            }
            .site-branding a {
                --mobile-logo-width: 2.8rem !important;
                display: block;
                background-color: var(--header-logo-bg);
                border: .1rem solid var(--header-border-color);
                border-radius: .5rem 2rem 2rem .5rem;
                backdrop-filter: blur(9.5px);
                padding: 1.3rem 3rem;
                transition: background-color 0.3s ease;

                @media (max-width: 809px) and (min-width: 0) {
                    padding: 1.2rem 1.9rem 1.2rem 1.4rem;
                }

                &:hover {
                    background-color: var(--header-logo-bg_hover);
                }

                img {
                    filter: var(--header-logo-filter);
                }
            }
        }
        .lang-col {
            background-color: var(--header-col-bg);
            border-radius: 2.5rem;
            padding: .5rem;
        }
    }

}

.rk-lang-switcher {
    position: relative;
    display: flex;
    flex-direction: column;

    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 10px;
    }

    .rk-lang-current {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--menu-color);
        cursor: pointer;
        font-size: 1.8rem;
        text-transform: uppercase;
        font-weight: 600;
        transition: background 0.3s ease;
        padding: 1.8rem 2rem;
        background-color: var(--header-bg);
        border: .1rem solid var(--header-border-color);
        border-radius: var(--lang-border-radius);
        backdrop-filter: blur(9.5px);
        transition: all 0.25s ease;

        @media (max-width: 809px) and (min-width: 0) {
            padding: 1.3rem 2rem;
        }

        img {
            width: 2.8rem;
            height: 2rem;
        }
    }

    .rk-lang-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        list-style: none;
        margin: 0;
        padding: 0;
        background-color: var(--header-bg);
        border: .1rem solid var(--header-border-color);
        border-top: 0;
        backdrop-filter: blur(9.5px);
        border-radius: 0 0 var(--lang-border-radius) var(--lang-border-radius);
        min-width: 100%;
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        pointer-events: none;
        transition: all 0.25s ease;
        z-index: 999;

        li {
            margin: 0;

            &:last-of-type a {
                border-radius: 0 0 var(--lang-border-radius) var(--lang-border-radius);
                border: none;
            }
        }

        a {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: 1.8rem 2rem;
            text-decoration: none;
            color: var(--menu-color);
            border-bottom: .1rem solid var(--header-border-color);
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: 600;
            transition: background 0.2s ease;

            @media (max-width: 809px) and (min-width: 0) {
                padding: 1.3rem 2rem;
            }

            img {
                width: 2.8rem;
                height: 2rem;
            }

            &:hover {
                background: var(--menu-item-bg_hover);
            }
        }
    }

    &:hover {
        .rk-lang-current {
            border-radius: var(--lang-border-radius) var(--lang-border-radius) 0 0;
        }
        .rk-lang-dropdown {
            position: static;
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
    }
}

.dark-section header,
.menu-main-opened header {
    --header-col-bg: #f5f5f70d;
    --header-bg: rgba(245, 245, 247, 0.1);
    --menu-color: #f5f5f7;
    --menu-item-bg_hover: #f5f5f71a;
    --header-border-color: rgba(245, 245, 247, 0.2);
    --header-logo-bg: #f5f5f733;
    --header-logo-bg_hover: #f5f5f780;
    --header-logo-filter: invert(0);
}

body.disable-sticked-header  .site-header {
    transform: translateY(-101%) !important;
}

.hero-wrapper {
    background-color: #202129;
    position: relative;
    overflow: visible;

    .prism {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin-bottom: -100vh;
        z-index: 0;
        pointer-events: none;

        model-viewer,
        canvas {
            width: 100%;
            height: 100%;
            display: block;
        }
    }

    > section {
        position: relative;
        z-index: 1;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.6s ease;
    }
}

.hero-wrapper.prism-loading > section {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.hero,
.error-page {
    --h1-size: 7.2rem;
}
.hero {
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-height: 100vh;

    @media (max-width: 809px) and (min-width: 0) {
        padding-bottom: 4rem !important;
    }

    .fade {
        z-index: 1;
        background: linear-gradient(#202128 0%, #20212800 100%);
        flex: none;
        width: 100%;
        height: 40%;
        position: absolute;
        top: 0;
        left: 0%;
    }

    .wrapper {
        z-index: 1;
        flex-flow: column;
        flex: 1 0 0;
        place-content: flex-start flex-end;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        /* max-width: 2400px; */
        padding: 0;
        display: flex;
        position: relative;
        overflow: visible;

        .hero-content {
            flex-flow: column;
            flex: none;
            place-content: flex-start;
            align-items: flex-start;
            gap: 5rem;
            width: 100%;
            height: min-content;
            padding: 0;
            display: flex;
            position: relative;
            overflow: visible;

            @media (max-width: 809px) and (min-width: 0) {
                gap: 2.5rem;
            }

            h1 {
                margin-bottom: 0;
            }

            .hero-content-text {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                color: #ababb5;

                @media (max-width: 1199px) and (min-width: 810px) {
                    flex-direction: column;
                    place-content: flex-start;
                    align-items: flex-start;
                    gap: 5rem;
                }

                @media (max-width: 809px) and (min-width: 0) {
                    flex-direction: column;
                    place-content: flex-start;
                    align-items: flex-start;
                    gap: 2.5rem;
                    font-size: 2rem;
                    color: #F5F5F7;

                    .button {
                        font-size: 2rem;
                        min-height: 4.4rem;
                    }
                }
            }
        }
        .ticker {
            overflow: clip;
            will-change: transform;
            contain: paint;
            width: 100%;
            display: flex;
            align-items: center;
            mask: linear-gradient(270deg,#0000 5%,#000 11.2613% 94%,#0000 98%);
            -webkit-mask: linear-gradient(270deg,#0000 5%,#000 11.2613% 94%,#0000 98%);

            .ticker-track {
                display: inline-flex;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 2rem;
                position: relative;
                flex: 0 0 auto;
                white-space: nowrap;
                will-change: transform;
                contain: paint;

                h6 {
                    background-color: rgba(54, 55, 57, 0.5);
                    color: rgb(160, 161, 171);
                    border-radius: 2rem;
                    letter-spacing: .024rem;
                    padding: 1rem 2rem;
                    margin: 0;
                    backdrop-filter: blur(19px);
                    -webkit-backdrop-filter: blur(19px);

                    @media (max-width: 809px) and (min-width: 0) {
                        font-size: 1.5rem;
                    }
                }
            }

            .ticker-track-clone {
                display: inline-flex;
                flex: 0 0 auto;
                white-space: nowrap;
                will-change: transform;
                contain: paint;
            }
            
        }
    }

}

.what {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

    .wrapper {
        text-align: center;
        max-width: 78rem;

        --h2-size: 5rem;
        --h-line-height: 1.1;

        @media (max-width: 1199px) and (min-width: 810px) {
            --h2-size: 4.2rem;
            --h-line-height: 1.1;
            max-width: 50rem;
        }

        @media (max-width: 809px) and (min-width: 0) {
            --h2-size: 3.6rem;
            --h-line-height: .9;
        }
    }

}

.agile {
    position: relative;
    background: linear-gradient(180deg,#e9e9ec 0%,#f5f5f7 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    @media (max-width: 809px) and (min-width: 0) {
        min-height: 0 !important;
    }

    .wrapper {
        flex: 1;
    }

    .fade {
        background: linear-gradient(180deg, #f4f4f600 0%, #f5f5f7 57.6577%);
        z-index: 1;
        flex: none;
        height: 40%;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .flow-preview {
        background-color: #2021280d;
        border-radius: 2.5rem;
        padding: .5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        aspect-ratio: 4/3;
        
        @media (max-width: 809px) {
            background-color: transparent;
            padding: 0;
            aspect-ratio: 4/3;
        }

        .flow-diagram {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            background-color: #dedee2;
            border: .1rem solid #cacace;
            border-radius: 2rem;
            flex: 1;
            overflow: hidden;

            @media (max-width: 809px) and (min-width: 0) {
                background-color: #F5F5F766;
                border-color: #E3E5EA;
            }

            .toolbar {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;
                padding: 1.5rem;
                
                @media (max-width: 809px) and (min-width: 0) {
                    padding: 1rem;
                    gap: .5rem;
                }
                
                .tool {
                    width: 3rem;
                    height: 3rem;
                    background-color: #f4f4f4;
                    border-radius: 1rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: .6rem;
                    font-size: 1.6rem;

                    @media (max-width: 809px) and (min-width: 0) {
                        gap: .5rem;
                        font-size: 0;
                        width: 2.5rem;
                        height: 2.5rem;
                        background-color: #fff;
                    }

                    img {
                        width: 2rem;
                        height: 2rem;

                        @media (max-width: 809px) and (min-width: 0) {
                            width: 1.6rem;
                            height: 1.6rem;
                        }
                    }
                }

                &.left {
                    flex-direction: column;
                }
                
                &.right {
                    justify-content: flex-end;

                    .tool {
                        width: auto;
                        height: 3.8rem;

                        @media (max-width: 809px) and (min-width: 0) {
                            height: 3.2rem;
                            padding: .8rem !important;
                        }

                        &.add-converse {
                            padding: 0 .8rem;
                        }
                        
                        &.add-node {
                            padding: 0 1.2rem;

                            @media (max-width: 809px) and (min-width: 0) {
                                gap: 0;
                            }
                        }
                    }
                }
            }

            .flow-canvas {
                position: absolute;
                /* top: calc(-18% + 5rem);
                left: calc(-37.3% + 5rem);
                width: 156%;
                height: auto; */
                top: 6rem;
                left: 0;
                right: 0;
                bottom: 0;
                overflow: hidden;

                svg {
                    width: 171% !important;
                    margin-top: -9%;
                    margin-left: -30%;
                }

                canvas {
                    width: 100%;
                }
            }
        }
    }

}

.zero {
    padding-top: 5rem;
    position: relative;
    background-color: #F4F4F6;
    
    @media (max-width: 809px) and (min-width: 0) {
        min-height: 0 !important;
    }

    h2 {
        font-size: 3.5rem;
    }

    .cards {
        display: flex;
        gap: .5rem;
        border-radius: 2rem;
        overflow: hidden;

        @media (max-width: 809px) {
            flex-direction: column;
            max-width: 60rem;
            margin: 0 auto;
        }

        .card {
            flex: 1;
            display: flex;
            flex-direction: column;
            border-radius: .5rem;
            padding: 0;
            gap: 0;
            background: linear-gradient(#dedee2 0%,#e9e9ec 100%);

            .card-content {
                flex-grow: 1;
                padding: 4rem;
                display: flex;
                flex-direction: column;
                gap: 2rem;
                background-color: #dedee1;
                border-radius: 1.5rem 1.5rem .5rem .5rem;
                color: #5F606C;

                @media (max-width: 960px) {
                    padding: 2rem;
                    gap: 1.5rem;
                }

                @media (max-width: 809px) {
                    border-radius: .5rem;
                }
            }

            .img {
                width: 100%;
                height: 50%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                aspect-ratio: 1 / 1.2;
                position: relative;
                
                @media (max-width: 809px) {
                    height: auto !important;
                    aspect-ratio: 3/2;
                }

                svg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }

}

.slides {
    --section-spacing: 5.5vh;
    --section-spacing-small: 4vh;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    height: var(--slides-scroll-height, 100vh);
    min-height: 100vh;
    max-height: none !important;

    @media (max-width: 809.98px) {
        --section-spacing: 2.5vh;
        --section-spacing-small: 1.5vh;
    }

    &.is-pinned .slides-shell {
        position: fixed;
        top: 0;
        left: var(--slides-fixed-left, 0);
        width: var(--slides-fixed-width, 100%);
    }

    &.is-ended .slides-shell {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    &.is-ended-pinned .slides-shell {
        position: fixed;
        top: 0;
        left: var(--slides-fixed-left, 0);
        width: var(--slides-fixed-width, 100%);
    }

    &.is-ended-pinned .slides-section {
        transform: rotate(2deg);
        background-color: #dedee3;

        @media (max-width: 809.98px) {
            border-radius: 2.5rem;
        }
    }

    .slides-shell {
        padding: var(--section-spacing-small) 0 0 var(--section-spacing);
        height: 100%;
        box-sizing: border-box;

        @media (max-width: 809.98px) {
            padding: calc(var(--section-spacing) * 2) 0 calc(var(--section-spacing) * 2) var(--section-spacing);
        }
    }

    .slides-section {
        display: grid;
        grid-template-rows: auto 1fr;
        flex: 1;
        padding: .5rem;
        border-radius: 2.5rem;
        background-color: #e9e9ec;
        overflow: hidden;
        position: sticky;
        top: var(--section-spacing);
        height: calc(var(--slides-sticky-height, 100vh) - var(--section-spacing) * 2);
        transition: all .3s ease-in-out;

        @media (max-width: 809.98px) {
            top: calc(var(--section-spacing) * 2);
            border-radius: 2.5rem 0 0 2.5rem;
            height: calc(var(--slides-sticky-height, 100vh) - calc(var(--section-spacing) * 4));
        }

        .section-content {
            padding: var(--section-spacing) var(--section-spacing) calc(var(--section-spacing-small) - 3rem);

            @media (max-width: 809.98px) {
                padding: 2.5rem;
                gap: 1rem;

                h3 {
                    letter-spacing: -.12rem;
                }
            }
        }

        .slides-track {
            display: flex;
            flex-grow: 1;
            height: 100%;
            min-height: 0;
            padding-left: var(--section-spacing-small);
            position: relative;
            padding-top: 3.2rem;
            padding-bottom: 2rem;
            border-radius: .5rem;

            @media (max-width: 809.98px) {
                padding: 0;
            }

            .slide {
                flex: 1;
                display: flex;
                align-items: stretch;
                gap: 2rem;
                height: auto;
                max-height: 100%;
                box-sizing: border-box;
                transform-origin: 50% 50% 0px;
                will-change: transform;
                border-radius: 1.5rem;
                background-color: #dfdfe3;
                padding: var(--spacing);
                transition: all .3s ease-in-out;
                opacity: 0;

                position: absolute;
                right: 0;
                top: 3.2rem;
                bottom: 2rem;
                left: var(--section-spacing-small);
                translate: 100% 0;

                @media (max-width: 809.98px) {
                    flex-direction: column;
                    top: 0;
                    left: 0;
                    padding: 2.5rem 0 .5rem 2.5rem;
                }

                &.past {
                    transform: rotate(1deg) scale(1.01, 1.01);
                    background-color: #d3d3d9;
                    translate: 0 0;
                    opacity: 1;

                    @media (max-width: 809.98px) {
                        transform: rotate(1deg) scale(1.01, 1.01);
                    }
                }

                &.past:last-child {
                    transform: none;
                    background-color: #dfdfe3;
                }

                &.active {
                    position: static;
                    translate: 0 0;
                    opacity: 1;
                }

                .slide-content {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    width: 33.333%;
                    padding: 2rem;
                    
                    p {
                        color: #80808f;
                        line-height: 1.2;
                    }

                    @media (max-width: 809.98px) {
                        width: 100%;
                        padding: 0;
                        padding-right: 2.5rem;
                    }
                }

                .slide-img {
                    width: 66.666%;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-color: #EEEEF1;
                    border-radius: 1rem;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    
                    @media (max-width: 809.98px) {
                        width: 100%;
                        flex-grow: 1;
                        border-radius: 2rem;
                    }
                        
                    .button {
                        position: relative;
                        z-index: 2;
                        color: #fff;
                        background-color: #202128;
                        border-color: #f5f5f7cc;
                        width: fit-content !important;

                        &:hover {
                            background-color: rgb(54, 55, 57) !important;
                        }
                    }
                }
            }
        }
    }

}

.shadow {
    padding: var(--section-spacing) var(--section-spacing) 0 !important;
    margin-top: var(--section-spacing);
    max-height: none !important;
    position: relative;
    z-index: 1000;

    .one {
        align-items: flex-start;
        height: 80rem;

        @media (max-width: 1199px) and (min-width: 810px) {
            height: 80rem;
        }

        .section-content {
            width: 60%;
            max-width: 80rem;
            background-color: #393b48;
            border-radius: 2.5rem;
            flex-flow: column;
            padding: 4rem;
            padding: 4rem 4rem 5rem;
            gap: 3rem;
            position: relative;
            z-index: 3;

            @media (max-width: 809.98px) {
                width: 100%;
                gap: 1.5rem;
                padding: 2rem 2rem 3rem;
            }

            p {
                color: #ababb5;
            }
        }
        .user-card {
            width: 60%;
            max-width: 90rem;
            background: linear-gradient(180deg,#292a33 0%,#33343d 100%), #33343d;
            border-radius: 2.5rem;
            position: relative;
            overflow: hidden;
            position: absolute;
            top: 17rem;
            right: 0;
            height: 50rem;
            z-index: 1;

            /* @media (max-width: 1199px) and (min-width: 810px) {
                width: 80%;
                height: 43rem;
            } */

            @media (max-width: 809.98px) {
                width: 100%;
                position: relative;
                top: 0;
                /* height: 43rem; */
            }

            .user-card-inner {
                height: 50rem;
                position: relative;
                z-index: 1;
                border: .1rem solid #60616c;
                border-radius: 2.5rem;
                pointer-events: none;
                overflow: hidden;
            }

            .user-card-content {
                position: relative;
                top: -3.9rem;
                z-index: 1;
                color: #7f7f8e85;
                display: flex;
                flex-direction: column;
                gap: 0;
                height: 100%;
                overflow: hidden;
                font-size: 1.4rem;
                justify-content: flex-start;
                -webkit-mask: url(images/user-mask.png) 50% / cover no-repeat;
                -webkit-mask-source-type: luminance;
                mask: url(images/user-mask.png) 50% / cover no-repeat luminance;
            }

            .marquee-line {
                position: relative;
                overflow: hidden;
                width: 100%;
                flex: 0 0 auto;
                contain: paint;
            }

            .marquee-track {
                display: inline-flex;
                align-items: center;
                gap: 1rem;
                white-space: nowrap;
                will-change: transform;
                animation: marquee-left 200s linear infinite;
            }

            .marquee-line.reverse .marquee-track {
                animation-name: marquee-right;
            }

            .marquee-track span {
                flex: 0 0 auto;
            }

            .fade-left, .fade-right, .fade-bottom {
                position: absolute;
                z-index: 5;
                pointer-events: none;
            }
            .fade-left {
                width: 35%;
                top: 0;
                bottom: 0;
                left: 0;
                background: linear-gradient(90deg,#282a3399 0%,#20212800 100%)
            }
            .fade-right {
                width: 35%;
                top: 0;
                bottom: 0;
                right: 0;
                background: linear-gradient(90deg, #20212800 0%, #282a3399 100%);
            }
            .fade-bottom {
                height: 50%;
                left: 0;
                bottom: 0;
                right: 0;
                background: linear-gradient(180deg,#20212800 0%,#292a3399 100%);
                z-index: 1;
            }

            .bottom-ticker {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                padding: 1.6rem 2.4rem 1.2rem;
                z-index: 2;
                overflow: hidden;
                pointer-events: none;
                contain: paint;
            }

            .bottom-ticker-track {
                display: flex;
                align-items: stretch;
                gap: 2rem;
                width: max-content;
                animation: bottom-ticker-scroll 180s linear infinite;
                will-change: transform;
                contain: paint;
            }

            .bottom-ticker-group {
                display: flex;
                gap: 2rem;
                align-items: stretch;
            }

            .comment-card {
                flex: 0 0 auto;
                width: auto;
                display: flex;
                flex-direction: column;
                gap: .5rem;
            }

            .comment-top {
                display: flex;
                flex-wrap: wrap;
                gap: 0.6rem 1.2rem;
                font-size: 1.4rem;
                line-height: 1.4;
                color: #7f7f8e;
                background-color: #343542;
                border-radius: 0 2rem .5rem .5rem;
                padding: 1.2rem 1.6rem 1.2rem 1.4rem;
                position: relative;

                &::before {
                    content: "";
                    width: 2.6rem;
                    height: 2.6rem;
                    position: absolute;
                    top: -1.9rem;
                    left: -.1rem;
                    background-size: 100% 100%; 
                    background-image: url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 viewBox=%220 0 26 26%22><path d=%22M 1 8.336 L 1 25 L 25 25 L 25 19 L 19 19 C 10.879 19 6.301 14.095 3.455 7.906 C 2.969 6.848 1 7.172 1 8.336 Z%22 fill=%22rgb(52, 53, 66)%22></path></svg>"); 
                }

                .comment-channel,
                .comment-name,
                .comment-company {
                    display: flex;
                    align-items: center;
                    gap: .4rem;

                    &:before {
                        content: "";
                        width: 1.6rem;
                        height: 1.6rem;
                        background-size: 100% 100%; 
                    }
                }
                .comment-channel {
                    color: #555561;
                    &:before {
                        background-image: url("images/icons/chat.svg"); 
                    }
                    &.call:before {
                        background-image: url("images/icons/call.svg"); 
                    }
                    &.email:before {
                        background-image: url("images/icons/email.svg"); 
                    }
                    &.whatsapp:before {
                        background-image: url("images/icons/whatsapp.svg"); 
                    }
                }
                .comment-name {
                    &:before {
                        background-image: url("images/icons/card.svg"); 
                    }
                }
                .comment-company {
                    &:before {
                        background-image: url("images/icons/org.svg"); 
                    }
                }
            }

            .comment-channel {
                font-weight: 600;
                color: #b0b0ba;
            }

            .comment-message {
                font-size: 1.3rem;
                line-height: 1.45;
                color: #7f7f8e;
                white-space: nowrap;
                background: #2f313c;
                border-radius: .5rem .5rem 2rem 2rem;
                padding: 1.2rem 1.6rem 1.2rem 1.4rem;
            }
            
        }
    }

    .two {

        @media (max-width: 809px) and (min-width: 0) {
            margin-top: var(--section-spacing);
        }
        .section-content {
            p {
                color: #ababb5;
            }

            strong {
                font-weight: normal;
                color: #F5F5F7;
            }
        }

        .globe  {
            --container-size: calc((100vw - var(--section-spacing) * 2) / 1.4);
            width: 100%;
            height: calc(var(--container-size) / 2);
            overflow: hidden;
            overflow: hidden;
            position: relative;

            @media (max-width: 809px) and (min-width: 0) {
                --container-size: calc((100vw - var(--section-spacing) * 2) * 1.2);
                margin-left: calc(var(--section-spacing) * -1);
                width: calc(100vw);
            }

            &::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 30%;
                background: linear-gradient(180deg, rgba(32, 32, 39, 0) 0%, #202027 100%);
                z-index: 2;
                pointer-events: none;
            }
            
            .globe-circle {
                width: var(--container-size);
                height: var(--container-size);  
                background: url("images/globe-circle.svg")  no-repeat top center / cover;
                margin: 4rem auto 0;
                position: relative;
                z-index: 1;

                @media (max-width: 809px) and (min-width: 0) {
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
        model-viewer {
            width: var(--container-size);
            height: var(--container-size);
            position: absolute;
            top: 0;
            left: 0;
        }
        
    }

}

.presence {
    padding: var(--section-spacing) 0 !important;

    @media (max-width: 809px) and (min-width: 0) {
        padding: calc(var(--section-spacing) * 2) 0 !important;
        min-height: 0 !important;
    }


    .wrapper {
        padding: 0 var(--section-spacing);
        
        .section-content {
            padding: 4rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
            background: linear-gradient(#e6e6e9 0%,#f5f5f7 100%);
            border-radius: 2rem;
            line-height: 1.2;
            position: relative;
            z-index: 1;

            @media (max-width: 1199px) and (min-width: 810px) {
                --font-size: 2rem;
            }

            @media (max-width: 809px) and (min-width: 0) {
                padding: var(--section-spacing);
                gap: var(--section-spacing);
                height: calc(53rem - 8rem);
            }
        }
    }

    .words {
        margin-top: 4rem;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 2;

        @media (max-width: 809px) and (min-width: 0) {
            transform: translateY(-100%);
            position: absolute;
            width: 100%;
            overflow: hidden;
        }

        .fade-bottom {
            background: linear-gradient(180deg, #f4f4f600 0%, #f5f5f7 57.6577%);
            pointer-events: none;
            z-index: 1;
            flex: none;
            height: 36%;
            position: absolute;
            bottom: -4rem;
            left: 0;
            right: 0;
        }

        .words-grid {
            display: grid;
            gap: 1rem;
            width: max-content;
            padding: 0;
            margin: 0 auto;
            /* mask: linear-gradient(90deg, #0000 0%, #000 18.018% 82.4324%, #0000 99.0991%);
            -webkit-mask: linear-gradient(90deg, #0000 0%, #000 18.018% 82.4324%, #0000 99.0991%); */

            @media (max-width: 809px) and (min-width: 0) {
                gap: 0;
            }
        }

        .words-row {
            display: grid;
            grid-template-columns: repeat(24, minmax(8rem, 1fr));
            align-items: center;
            column-gap: 1.6rem;
            row-gap: 1rem;
            justify-content: center;

            @media (max-width: 809px) and (min-width: 0) {
                grid-template-columns: repeat(24, minmax(6rem, 1fr));
            }
        }

        .word {
            font-size: 3.4rem;
            font-weight: 700;
            line-height: 4.617rem;
            color: #202128;
            opacity: 0.7;
            white-space: nowrap;
            transform-origin: center;
            transition: transform 0.2s ease;
            user-select: none;

            @media (max-width: 809px) and (min-width: 0) {
                font-size: 2.4rem;
                
                &:nth-of-type(1),
                &:nth-of-type(2),
                &:nth-of-type(3) {
                    display: none;
                }
            }
        }

        .word-rtl {
            font-family: "Tajawal", "DM Sans", sans-serif;
        }

        .word-accent {
            color: #96712a;
        }

        .weight-600 {
            font-weight: 600;
        }

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

        .weight-400 {
            font-weight: 400;
        }

        .weight-300 {
            font-weight: 300;
        }

        .weight-200 {
            font-weight: 200;
        }
    }
}

.voice {
    padding-top: var(--section-spacing) !important;
    padding-bottom: var(--section-spacing) !important;

    @media (max-width: 809px) and (min-width: 0) {
        padding-top: calc(var(--section-spacing) * 2) !important;
        padding-bottom: calc(var(--section-spacing) * 2) !important;
        min-height: 100vh;
        height: 100vh;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .wrapper {
        gap: 5rem;

        @media (max-width: 809px) and (min-width: 0) {
            gap: 2rem;
            flex: 1;
            min-height: 0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
    }

    .section-content {
        gap: 2rem;

        @media (max-width: 809px) and (min-width: 0) {
            gap: 1rem;
            flex: 0 0 auto;

            br {
                display: none;
            }
        }
    }

    .voice-grid {
        display: flex;
        justify-content: center;
        background: linear-gradient(180deg, #dfdfe3 0%, #e9e9ec 100%);
        border-radius: 2.5rem;
        height: 60vh;
        overflow: hidden;

        @media (max-width: 809px) and (min-width: 0) {
            flex-direction: column;
            height: 100%;
            flex: 1;
            min-height: 0;
            background: linear-gradient(180deg, #F1F1F4 0%, #DEDEE3 100%);
        }

        .voice-col {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 4rem;
            overflow: hidden;
            position: relative;
            width: 37%;
            background: linear-gradient(180deg,var(--token-e8e22eb8-15ca-40c1-b30e-fb7cd323b489,#dfdfe3)0%,var(--token-99ac57e6-d72f-437d-ad1a-3c14cfa6b7a6,#e9e9ec)100%);

            @media (max-width: 1199px) and (min-width: 810px) {
                padding: 0 3rem;
            }

            @media (max-width: 809px) and (min-width: 0) {
                padding: 0 !important;
                width: 100% !important;
                height: auto;
                flex: 0 0 auto;
                min-height: 0;
                align-items: stretch;

                &:nth-child(1) {
                    flex-shrink: 0;
                    height: auto;
                    background: linear-gradient(180deg, #E6E6EA 0%, rgba(233, 233, 236, 0) 100%);
                }

                &:nth-child(2) {
                    flex: 0 0 auto;
                }
            }

            .text {
                font-size: var(--font-size-medium);
                color: #80808f;
                line-height: 1;

                &.absolute {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    background: linear-gradient(#e6e6ea 40%,#e9e9ec00 100%);
                    padding: 4rem;
                    z-index: 2;

                    @media (max-width: 1199px) and (min-width: 810px) {
                        padding: 3rem;
                    }

                    @media (max-width: 809px) and (min-width: 0) {
                        position: static;
                        padding: 2rem 2rem .5rem;
                        background: transparent;
                    }
                }

                @media (max-width: 809px) and (min-width: 0) {
                    padding: 0;
                    font-size: 1.1rem;
                }
            }

            .slider-ticker {
                position: relative;
                height: 100%;
                width: 100%;
                overflow: hidden;
                display: flex;
                align-items: flex-start;
                justify-content: flex-start;
                user-select: none;

                @media (max-width: 809px) and (min-width: 0) {
                    display: none;
                }

                .slider-ticker-track {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: .4rem;
                    will-change: transform;
                }

                img {
                    display: block;
                    width: 100%;
                    height: auto;
                }
            }

            &:nth-child(2) {
                width: 27%;
                background: linear-gradient(#20212800 0%, #2021280d 100%);
                border-left: .1rem solid #2021281a;
                border-right: .1rem solid #2021281a;
                position: relative;
                padding: 0;

                @media (max-width: 809px) and (min-width: 0) {
                    border: none;
                    background: transparent;

                    .player {
                        height: auto;
                        overflow: visible;
                        width: 100%;
                    }

                    .fade-top,
                    .fade-bottom {
                        display: none !important;
                    }
                }
            }

            .fade-bottom {
                background: linear-gradient(#e9e9ec00 0%,#e6e6ea 80%);
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2rem;
                width: 100%;
                z-index: 10;
                pointer-events: none;
                transition: opacity 0.2s ease;
            }
            .fade-top {
                background: linear-gradient(#DFDFE3 40%,#e9e9ec00 100%);
                position: absolute;
                left: 0;
                top: 0;
                height: 2rem;
                width: 100%;
                z-index: 10;
                pointer-events: none;
                transition: opacity 0.2s ease;

                @media (max-width: 809px) and (min-width: 0) {
                    background: linear-gradient(#e6e6ea 20%,#e9e9ec00 100%);
                }
            }

            .fade-top.is-hidden,
            .fade-bottom.is-hidden {
                opacity: 0;
            }

            .player {
                overflow: auto;
                display: flex;
                flex-direction: column;
                gap: 3rem;
                height: 100%;
                padding: 4rem;
                scrollbar-width: none;
                -ms-overflow-style: none;

                @media (max-width: 1199px) and (min-width: 810px) {
                    padding: 3rem;
                    gap: 2rem;
                }

                @media (max-width: 809px) and (min-width: 0) {
                    padding: 0 2rem;
                    gap: 1.5rem;

                    br {
                        display: none;
                    }
                }

                &::-webkit-scrollbar {
                    display: none;
                }

                .playlist {
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    position: relative;

                    @media (max-width: 809px) and (min-width: 0) {
                        flex-direction: row;
                        height: 4rem;
                        overflow: hidden;
                        align-items: center;
                        gap: .5rem;
                    }

                    .playlist-track {
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        width: 100%;
                        transition: transform 0.3s ease;

                        @media (max-width: 809px) and (min-width: 0) {
                            flex-direction: row;
                            gap: 0;
                            flex: 1;
                            min-width: 0;
                        }
                    }

                    .playlist-nav {
                        display: none;
                        width: 4rem;
                        height: 4rem;
                        padding: .5rem;
                        border-radius: .5rem 1.5rem 1.5rem .5rem;
                        background: #f5f5f7 url(images/icons/next.svg) center center no-repeat;
                        background-size: 2rem;
                        cursor: pointer;
                        z-index: 2;

                        &.prev {
                            transform: rotate(180deg);
                        }

                        &:disabled {
                            opacity: .5;
                            cursor: not-allowed;
                        }

                        @media (max-width: 809px) and (min-width: 0) {
                            display: inline-flex;
                            flex-shrink: 0;
                        }
                    }

                    .playlist-item {
                        background-color: #f5f5f7;
                        border-radius: .5rem;
                        padding: 1rem 1.5rem;
                        gap: .8rem;
                        font-size: var(--font-size-medium);
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        position: relative;
                        overflow: hidden;

                        @media (max-width: 809px) and (min-width: 0) {
                            width: 100%;
                            flex: 0 0 100%;
                            opacity: 0;

                            &.visible {
                                opacity: 1;
                            }
                        }

                        &:first-child {
                            border-radius: 1.5rem 1.5rem .5rem .5rem;

                            @media (max-width: 809px) and (min-width: 0) {
                                border-radius: .5rem;
                            }
                        }
                        &:last-child {
                            border-radius: .5rem .5rem 1.5rem 1.5rem;

                            @media (max-width: 809px) and (min-width: 0) {
                                border-radius: .5rem;
                            }
                        }

                        .name {
                            font-weight: 500;
                            color: #202128;
                            text-overflow: ellipsis;
                            overflow: hidden;
                            white-space: nowrap;
                            cursor: default;
                            user-select: none;

                            @media (max-width: 809px) and (min-width: 0) {
                                font-size: 1.4rem;
                            }
                        }
                        .control {
                            width: 2rem;
                            height: 2rem;
                            background: url(images/icons/play.svg) center center no-repeat;
                            background-size: contain;
                            cursor: pointer;
                            user-select: none;
                            flex-shrink: 0;
                        }

                        .progress {
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 0;
                            height: 100%;
                            background-color: #2021281a;
                            pointer-events: none;
                            opacity: .6;
                        }

                        audio {
                            position: absolute;
                        }

                        &.active {
                            background-color: #e6e1d9;

                            .control {
                                background-image: url(images/icons/stop.svg);
                            }

                            .progress {
                                opacity: 1;
                            }
                        }
                    }
                }
            }

            &:nth-child(3) {
                padding: 4rem;

                @media (max-width: 1199px) and (min-width: 810px) {
                    padding: 3rem;
                }

                @media (max-width: 809px) and (min-width: 0) {
                    padding: 2rem !important;
                    width: 100%;
                    flex: 1 1 auto;
                    min-height: 0;
                    height: auto;
                    align-items: stretch;
                    justify-content: stretch;
                    flex-direction: column;
                    background: transparent;
                }
            }

            .transcripts {
                display: flex;
                flex-direction: column;
                height: 100%;
                width: 100%;
                min-height: 0;
                flex: 1 1 auto;
                overflow: hidden;

                .empty-state {
                    display: none;

                    .empty-text {
                        padding: 1.5rem;
                        color: #20212899;
                        font-size: var(--font-size-medium);
                        text-align: center;
                        border-radius: 2.5rem;
                        background: linear-gradient(180deg, #EBEBEF 0%, #F5F5F7 100%);
                        width: fit-content;
                        margin: 0 auto;
                    }
                }

                &.is-empty {
                    .transcript-item:not(.empty-state) {
                        display: none;
                    }

                    .empty-state {
                        display: flex;
                    }

                    .body {
                        justify-content: center;
                    }
                }

                .transcript-item {
                    flex-direction: column;
                    background-color: #f5f5f780;
                    border-radius: 2rem;
                    height: 100%;
                    flex: 1 1 auto;
                    min-height: 0;
                    max-height: 100%;
                    display: none;
                    overflow: hidden;

                    &.active {
                        display: flex;
                    }

                    .header {
                        font-size: 1.5rem;
                        font-weight: 500;
                        color: #292a33;
                        padding: 1.5rem 2rem;
                        border-bottom: .1rem solid #e3e3e7;

                        @media (max-width: 809px) and (min-width: 0) {
                            font-size: 1.1rem;
                            padding: 1.5rem;
                        }
                    }

                    .body {
                        flex: 1 1 auto;
                        min-height: 0;
                        padding: 1.5rem 2rem;
                        overflow: auto;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;

                        @media (max-width: 809px) and (min-width: 0) {
                            padding: 1.5rem;
                        }

                        p {
                            color: rgba(32, 33, 40, 0.6);
                            font-size: 1.5rem;
                            line-height: 1.1;
                            letter-spacing: -4%;
                            padding: 1.5rem;
                            background-color: #f5f5f7;
                            border-radius: 1.5rem 1.5rem .5rem 1.5rem;
                            width: fit-content;
                            max-width: 90%;
                            align-self: flex-end;

                            @media (max-width: 809px) and (min-width: 0) {
                                font-size: 1rem;
                            }

                            &::before {
                                content: "Paul";
                                display: block;
                                font-weight: 500;
                                color: #202128;
                                font-size: 1rem;
                                margin-bottom: .5rem;

                                @media (max-width: 809px) and (min-width: 0) {
                                    font-size: .8rem;
                                }
                            }

                            &.agent {
                                background-color: #E6E1D9;
                                border-radius: 1.5rem 1.5rem 1.5rem .5rem;
                                align-self: flex-start;

                                &::before {
                                    content: "Jay - Agent";
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.orchestrating {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 7.5rem;
    position: relative;
    max-height: none !important;
    height: 300vh;

    @media (max-width: 809px) and (min-width: 0) {
        gap: 2.5rem;
    }

    .wrapper {
        padding: 0 var(--section-spacing);
    }

    .orchestrating-image {
        position: relative;
        flex-grow: 1;
        width: 100%;
        max-height: 100vh;
        position: sticky;
        top: 0;
        padding: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: 2rem;

        .orchestrating-lottie {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
        }
        .orchestrating-lottie-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
    }
}

.lazy-loading {
    position: relative;
}

.flow-canvas.lazy-loading {
    position: absolute;
}

.lazy-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7.5rem;
    height: 7.5rem;
    transform: translate(-50%, -50%);
    background: url('images/icons/spinner.svg') center / contain no-repeat;
    z-index: 2;
    pointer-events: none;
}

.cases {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: var(--section-spacing) !important;

    .wrapper {
        padding: 0 var(--section-spacing);
        margin-bottom: 5rem;

        @media (max-width: 809px) and (min-width: 0) {
            margin-bottom: 3rem;
            padding-top: var(--section-spacing);
        }
    }

    .cases-slider {
        mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10.8108%, rgb(0, 0, 0) 88.2883%, rgba(0, 0, 0, 0) 100.45%);
        -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10.8108%, rgb(0, 0, 0) 88.2883%, rgba(0, 0, 0, 0) 100.45%);
        padding: 5rem 0;

        @media (max-width: 809px) and (min-width: 0) {
            padding: 2rem 0 4rem;
            mask: none;
            -webkit-mask: none;
        }

        .swiper-slide {
            --h-line-height: 1.2;
            --h-letter-spacing: -0.04em;
            --letter-spacing: -0.04em;
            width: 71rem;
            height: 40rem;
            display: flex;
            gap: .5rem;
            justify-content: space-between;
            font-size: var(--font-size-medium);
            line-height: 1.2;
            opacity: 0.75;
            transition: opacity 0.3s ease;
            position: relative;
            perspective: 1200px;
            padding: 0 .25rem;

            @media (max-width: 809px) and (min-width: 0) {
                width: calc(100% - 4rem);
                min-height: 52rem;
                /* height: 70dvh; */
            }

            .left {
                width: 35.5%;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                gap: 2rem;
                padding: 2.5rem;
                border-radius: 2rem .5rem .5rem 2rem;
                background-color: #EDEDF1;

                p {
                    color: #202128CC;
                }
            }
            .right {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 2rem;
                padding: 2.5rem;
                border-radius: .5rem 2rem 2rem .5rem;
                background-color: #EDEDF1;
            }

            &.swiper-slide-active {
                opacity: 1;

                .left {
                    background-color: #E6E1D9;

                    p {
                        color: #60616C;
                    }
                }
                
                .right {
                    background-color: #E8E8ED;
                }
            }

            .top {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 5.6rem;
            }

            .card {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                padding: 2rem;
                border-radius: 1.2rem;
                background-color: #F1F1F4;
                border: .1rem solid #2021280d;

                .label {
                    color: #60616C;
                }
                .value {
                    font-weight: 500;
                }

                .card-row {
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    align-items: flex-start;
                    justify-content: flex-start;

                }
                .card-col {
                    display: flex;
                    flex-direction: column;
                    gap: .5rem;
                    align-items: flex-start;
                    justify-content: flex-start;
                    flex: 1;
                }

                &.recovers {
                    padding: 0 2rem;
                    gap: 2rem;
                    background-color: transparent;
                    border: none;

                    .card-row {
                        flex-direction: row;
                    }
                }
            }

            .bottom {
                display: flex;
                justify-content: stretch;

                .button {
                    width: 100%;
                    background-color: #2021280D;
                    border: .1rem solid #2021281A;

                    &:hover {
                        background-color: #dfdfe3 !important;
                        color: #202128 !important;
                        cursor: pointer !important;
                    }
                }
            }

            .slide-flip {
                width: 100%;
                height: 100%;
                position: relative;
                transform-style: preserve-3d;
                transition: transform 0.7s ease;
            }

            .slide-face {
                position: absolute;
                inset: 0;
                backface-visibility: hidden;
                transform-style: preserve-3d;

                @media (max-width: 809px) {
                    flex-direction: column;

                    .left {
                        width: 100%;
                        border-radius: 2rem 2rem .5rem .5rem;
                    }
                    .right {
                        width: 100%;
                        border-radius: .5rem .5rem 2rem 2rem;
                    }
                }
            }

            .slide-front {
                display: flex;
                gap: .5rem;
                transform: translateZ(1rem);
            }

            .slide-back {
                transform: rotateY(180deg) translateZ(1rem);
                display: flex;
                gap: .5rem;

                @media (max-width: 809px) {
                    transform: rotateX(180deg) translateZ(1rem);
                }

                .left {
                    border-radius: .5rem 2rem 2rem .5rem;
                }

                .right {
                    border-radius: 2rem .5rem .5rem 2rem;
                }
                .recovers {
                    padding: 0;
                    border-radius: 0;

                    .card-row {
                        flex-direction: column;
                        gap: 2rem;
                    }
                }

                @media (max-width: 809px) {
                    .left {
                        border-radius: .5rem .5rem 2rem 2rem;
                    }
                    .right {
                        border-radius: 2rem 2rem .5rem .5rem;
                    }
                }

            }

            .slide-flip.is-flipped {
                transform: rotateY(180deg);

                @media (max-width: 809px) {
                    transform: rotateX(180deg);
                }
            }

            .back-content {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
                height: 100%;
            }

            .back-scroll {
                flex: 1;
                overflow-y: auto;
                padding-right: .5rem;
            }
        }

        &.is-paused {
            + .cases-pagination .swiper-pagination-bullet-active {
                .cases-bullet-progress {
                    animation: none;
                    transform: scaleX(0);
                }
            }
        }
    }

    .cases-pagination {
        margin-top: 0;
        display: flex;
        justify-content: center;
        gap: 1.5rem;

        .swiper-pagination-bullet {
            position: relative;
            width: 2rem;
            height: 2rem;
            border-radius: 10rem;
            background-color: #60616c;
            overflow: hidden;
            opacity: 1;
            transition: width 0.4s ease;
            cursor: pointer;
            user-select: none;

            @media (max-width: 809px) and (min-width: 0) {
                width: 1.5rem;
                height: 1.5rem;
            }

            &:hover {
                opacity: .8;
            }

            .cases-bullet-progress {
                position: absolute;
                inset: 0;
                background-color: #96712A;
                transform: scaleX(0);
                transform-origin: left center;
            }
        }

        .swiper-pagination-bullet-active {
            width: 10rem;
            background-color: #dedee3;

            &:hover {
                opacity: 1;
            }

            .cases-bullet-progress {
                animation: cases-pagination-progress calc(var(--cases-autoplay, 6000ms) + var(--cases-speed, 600ms)) linear infinite;
            }
        }
    }
}

.advantage {
    padding: var(--section-spacing) !important;
    display: flex;
    flex-direction: column;
    height: 65vh;
    min-height: 60rem;

    @media (max-width: 809px) and (min-width: 0) {
        min-height: min-content !important;
        padding-bottom: 11.5rem !important;
    }

    .wrapper {
        background: 
            url(images/illustrations/advantage.svg) bottom/contain no-repeat,
            linear-gradient(180deg,#f4f4f600 0%, #e9e9ec 99.0991%);
        padding: 4rem;
        gap: 4rem;
        justify-content: space-between;
        align-items: start;
        border-radius: 3rem;
        overflow: hidden;
        flex-grow: 1;

        @media (max-width: 809px) and (min-width: 0) {
            padding: var(--section-spacing);
            justify-content: start;
            padding-bottom: calc(20vw + var(--section-spacing) * 2);
            min-height: 32rem;
            overflow: visible;
            background-size: 150%;

            .section-content {
                gap: var(--section-spacing);
            }

            .button {
                --button-height: 5.5rem;
                --button-font-size: 2.5rem;
                position: absolute;
                bottom: -7.5rem;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    }
}

.faq {
    @media (max-width: 809px) and (min-width: 0) {
        padding-bottom: calc(var(--section-spacing) * 2) !important;
    }
}

.accordion {
    box-shadow: none;
    background-color: #f1f1f3;
    border-radius: 2.5rem;
    padding: .5rem;
    gap: .5rem;

    .accordion-item {
        &:first-of-type {
            .acc-header {
                border-top-left-radius: 2rem;
                border-top-right-radius: 2rem;
            }
        }
        &:last-of-type {
            .acc-header,
            .acc-content {
                border-bottom-left-radius: 2rem;
                border-bottom-right-radius: 2rem;
            }
        }

        .acc-header {
            padding: 2rem;
            border-radius: .5rem;
            background-color: #e9e9ec;
            margin: 0;
            justify-content: space-between;
            gap: 1.5rem;

            @media (max-width: 809px) and (min-width: 0) {
                font-size: 1.8rem;
            }

            &::before {
                width: 3rem;
                height: 3rem;
                border: none;
                transform: none;
                background: url('images/icons/arrow.svg') center/contain no-repeat;
                position: static;
                order: 2;
                flex-shrink: 0;
            }

            &.active {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
                color: var(--main-color);

                &::before {
                    transform: rotate(180deg);
                }
            }
        }

        .acc-content {
            .content {
                padding: 2rem;
                border-radius: .5rem;
                background-color: #fff;
                margin: 0;
                color: #60616c;
                line-height: 1.2;
            }
            &.active .content {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }
        }
    }
}

footer.site-footer {
    padding: 15rem var(--section-spacing);
    background-color: var(--main-color);

    @media (max-width: 809px) and (min-width: 0) {
        padding: var(--section-spacing) var(--section-spacing) 8rem var(--section-spacing);
    }

    .wrapper {
        padding: 0;
        justify-content: flex-start;
        gap: 1rem 7.5rem;

        @media (max-width: 809px) and (min-width: 0) {
            justify-content: space-between;
            gap: 2.5rem 5rem; 
        }

        .logo-col {
            flex-direction: row;
            gap: 2rem;

            @media (max-width: 809px) and (min-width: 0) {
                gap: 1rem;
            }

            .site-branding a {
                background-color: #F1F1F3;
                border-radius: 2rem;
                padding: 1.4rem 1.5rem;
                display: block;

                @media (max-width: 809px) and (min-width: 0) {
                    padding: 1.3rem 1.1rem;
                    border-radius: 1rem;
                }

                img {
                    filter: invert(1);
                }
            }
            .lang-col {
                --header-bg: rgba(245, 245, 247, 0.1);
                --header-border-color: rgba(245, 245, 247, 0.2);
                --menu-color: #f5f5f7;
                --menu-item-bg_hover: rgba(32, 33, 40, 0.2);
                height: 6rem;
                display: flex;
                align-items: stretch;

                @media (max-width: 809px) and (min-width: 0) {
                    --lang-border-radius: 1rem;
                    height: 5rem;

                    .rk-lang-current,
                    .rk-lang-dropdown a {
                        padding: 1.4rem 2rem
                    }
                }

                .rk-lang-current {
                    height: 100%;
                    flex-shrink: 0;
                }

            }
        }

        .col-cta {
            margin: 0 0 0 auto;
            align-items: flex-end;
            gap: 2rem;
            color: #ababb5;
            font-size: var(--font-size-medium);
            text-align: right;
            max-width: 32rem;

            @media (max-width: 1199px) and (min-width: 810px) {
                max-width: 22rem;
            }

            @media (max-width: 809px) and (min-width: 0) {
                width: 100%;
                max-width: 100%;
                order: 6;
                text-align: left;
                align-items: start;
                margin-top: 6rem;
                gap: 1.5rem;
            }

            h3 {
                font-size: var(--h4-size);
            }
        }
        .col-separator {
            width: 100%;
            height: 0;
        }

        .menu-col {
            gap: 3rem;
            justify-content: flex-start;

            @media (max-width: 809px) and (min-width: 0) {
                width: 40%;
                margin-bottom: 2.5rem;
            }

            h3 {
                font-size: var(--font-size);
            }

            .menu {
                flex-direction: column;
                gap: 3rem;

                a {
                    font-size: var(--font-size-medium);
                    padding: 0;
                }
            }
        }
    }

    .copy {
        color: #f5f5f780;
        font-size: 1rem;

        .wrapper {
            padding-top: 8rem;

            @media (max-width: 809px) {
                padding-top: 3rem;
            }
        }
    }
}

.scroll-to-top {
    display: none;
}


/* Contact page */
.contact {
    padding-bottom: 0 !important;
    .wrapper {
        padding-top: 120px;
        gap: 7.5rem;

        .home & {
            padding-top: 0;
        }

        .section-content {
            gap: 3rem;
            
            p {
                font-size: var(--font-size-big);
                max-width: 60%;
            }
        }

        .two-col {
            h5 {
                color: var(--primary-color);
                margin-bottom: 3rem;
            }
            p {
                display: flex;
                gap: 2rem;
                color: #ababb5;
                margin-bottom: 1.5rem;

                img {
                    width: 2.4rem;
                    height: 2.4rem;
                }

                a {
                    color: #f5f5f7cc;
                    text-decoration: underline;
                }
            }
        }
    }
    .map {
        height: 60vh;
        width: 100vw;
        margin-left: calc(-1 * var(--section-spacing)) !important;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            pointer-events: none;
            background: linear-gradient(
            #202128 0%,
            #20212800 100%
            );
        }
    }
}

/* About page */
.page:not(.home) {
    main section:last-of-type {
        padding-bottom: 10rem;
    }
    .section-content {
        padding-top: var(--section-spacing);
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: calc(-1 * var(--header-height));
            left: calc(-1 * var(--section-spacing));
            width: 100vw;
            height: calc(100% + var(--header-height));
            background-color: #E8E8EB;
            z-index: -1;
        }

        section:not(.dark-bg) {
            p {
                font-size: var(--font-size-big);
                color: var(--main-color);
            }
        }
    }
    .about-image {
        -webkit-mask: linear-gradient(#0000 10%, #000 100%);
        mask: linear-gradient(#0000 10%, #000 100%);
        margin-left: calc(-1 * var(--section-spacing)) !important;
        width: 100vw;

        img {
            height: 80vh;
            object-position: center;
            object-fit: cover;
        }
    }

    .content {
        color: #60616c;
        margin-bottom: var(--section-spacing) !important;

        .big-text {
            font-size: var(--font-size-big);
            color: #60616c;
            padding: var(--section-spacing) 0;
        }
        &.bg-transition,
        .big-text {
            position: relative;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: calc(-1 * var(--section-spacing));
                width: 100vw;
                height: 100%;
                background: linear-gradient(180deg,  #e9e9ec 0%, #f5f5f7 100%);
                z-index: -1;
            }
        }

        h2 {
            margin-bottom: 4rem !important;
        }
    }

    .dl {
        strong {
            font-weight: 500;
        }

        .wp-block-columns {
            gap: .5rem;
            margin-bottom: .5rem !important;

            .wp-block-column {
                border-radius: .5rem;
                padding: 2.5rem;
                min-height: 12rem;

                @media (max-width: 809px) {
                    padding: 1.5rem;
                }

                &:first-of-type {
                    flex: 1 0 0;
                    background-color: #f1f1f3;
                    color: #202128;
                }

                &:last-of-type {
                    flex: 2 0 0;
                    background-color: #2021280d;
                    color: #5f606c;
                }

                .transparent & {
                    background-color: transparent;
                    padding: 0 !important;
                    min-height: 0;
                    color: #60616c;
                }
            }

            &:first-of-type {
                .wp-block-column {
                    &:first-of-type {
                        border-radius: 2rem .5rem .5rem .5rem;
                    }
                    &:last-of-type {
                        border-radius: .5rem 2rem .5rem .5rem;
                    }
                }
            }

            &:last-of-type {
                .wp-block-column {
                    &:first-of-type {
                        border-radius: .5rem .5rem .5rem 2rem;
                    }
                    &:last-of-type {
                        border-radius: .5rem .5rem 2rem .5rem;
                    }
                }
            }

            .transparent & {
                gap: 1rem;
                margin-bottom: 1rem !important;
            }
        }
    }

    .section {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 5rem 0;
        margin-bottom: 0 !important;

        @media (max-width: 1199px) and (min-width: 810px) {
            padding: 7.5rem 0;
        }
        @media (max-width: 809px) {
            padding: 3rem 0;
        }
    }

    .bloquote {
        max-width: 60%;
        gap: 1rem;
        margin-bottom: var(--section-spacing) !important;

        @media (max-width: 1199px) and (min-width: 810px) {
            max-width: 75%;
        }
        @media (max-width: 809px) {
            max-width: 100%;
        }


        .bq-content {
            padding: 3rem;
            background-color: #ffdb99;
            border-radius: 3rem 3rem .5rem .5rem;
            text-align: center;
            font-style: italic;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            @media (max-width: 809px) {
                padding: 2rem;
            }

            &::before {
                content: '';
                background: url(images/icons/bloquote.svg) no-repeat center center;
                background-size: contain;
                width: 2.6rem;
                height: 2rem;
            }
            &::after {
                content: '';
                background: url(images/icons/bloquote.svg) no-repeat center center;
                background-size: contain;
                width: 2.6rem;
                height: 2rem;
                transform: rotate(180deg);
                margin: 0 0 0 auto;
            }
        }
        .bq-footer {
            width: 100%;
            padding: 3rem;
            background-color: #e9e9ec;
            border-radius: .5rem .5rem 3rem 3rem;
            gap: 2rem;

            @media (max-width: 809px) {
                padding: 2rem;
            }

            img {
                width: 6rem;
                border-radius: 50%;
            }

            .bq-foot-content {
                font-size: var(--font-size-medium);
                color: #60616c;
                gap: 1rem;

                h6 {
                    font-size: var(--font-size);
                    font-weight: 500;
                }
            }
        }
    }

    .cta {
        background: linear-gradient(180deg, #f4f4f600 0%, #e9e9ec 99.0991%);
        border-radius: 3rem;
        padding: 4rem;
        min-height: calc(60vh - 100rem);

        @media (max-width: 1199px) and (min-width: 810px) {
            min-height: calc(45vh - 100rem);
        }

        @media (max-width: 809px) {
            padding: 2rem;
        }

        .cta-content {
            color: #60616c;
            gap: 2rem;
        }
    }
}

.error404 {
    .site-header {
        display: none !important;
    }
}
.error-page {
    section {
        padding-bottom: 0;
        min-height: 60vh;
        justify-content: center;
        display: flex;
        flex-flow: column;

        .section-content {
            gap: 3rem;
        }
    }
    .button {
        width: fit-content;
    }
}

@keyframes cases-pagination-progress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes slider-ticker-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-1 * var(--slider-shift, 200px)));
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes bottom-ticker-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes words-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) and (min-width: 810px) {
    :root {
        --h1-size: 4.2rem;
        --h2-size: 3rem;
        --h3-size: 2.6rem;
        --h4-size: 2rem;
        --h5-size: 1.3rem;
        --h6-size: 1.2rem;

        --section-spacing: 7.5rem;
        --section-spacing-small: 7rem;

        --button-font-size: 1.8rem;
        --font-size: 1.8rem;
        --font-size-medium: 1.2rem;
        --font-size-big: 2.2rem;
    }

    .hero,
    .error-page {
       --h1-size: 6.4rem; 
    }
}

@media (max-width: 809px) and (min-width: 0) {
    :root {
        --h1-size: 3.6rem;
        --h2-size: 2.6rem;
        --h3-size: 2.2rem;
        --h4-size: 1.8rem;
        --h5-size: 1.1rem;
        --h6-size: 1.1rem;
        --h-line-height: 1;

        --section-spacing: 2rem;
        --section-spacing-small: 2.5rem;

        --button-font-size: 1.6rem;
        --font-size: 1.6rem;
        --font-size-medium: 1.1rem;
        --font-size-big: 2rem;
        --mobile-font-main: 1.6rem;

        --mobile-padding: 0;
    }

    .hero,
    .error-page {
       --h1-size: 5.6rem; 
    }

    h1, h2 {
        --h-letter-spacing: -0.104rem;
    }
    h3 {
        --h-letter-spacing: -0.088rem;
    }
    h4 {
        --h-letter-spacing: -0.072rem;
    }
    h5, h6 {
        --h-letter-spacing: normal;
    }
}

@media (min-width: 2000px) {
    :root {
        --root-font-size: 0.5vw;
    }
}

/* WebChat Styles Override */
.popup-win {
    padding: 4.8rem;

    @media (max-width: 1199px) and (min-width: 810px) {
        padding: 3.2rem;
    }

    @media (max-width: 809px) and (min-width: 0) {
        padding: 2rem;
    }

    .win {
        border-radius: var(--border-radius);
        background-color: #EBEBEE;
        height: 100%;
        width: 100%;
        max-width: 90rem;
        padding: 0;
        overflow: hidden;

        h3 {
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 0;
            padding: 1.5rem 4.6rem 1.5rem 2rem;
            border-bottom: .1rem solid #E3E3E8;
            background-color: #F2F2F4;
        }

        .close {
            top: 1.65rem;
            right: 1.65rem;
            width: 1.6rem;
            height: 1.6rem;

            &::before, &::after {
                background-color: var(--main-color);
                height: 0.15rem;
                width: 1.3rem;
                right: auto;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%) rotate(45deg);

                &:hover {
                    background-color: var(--quaternary-color);
                }
            }
            &::after {
                transform: translate(-50%, -50%) rotate(-45deg);
            }
        }

        #chatbot-container {
            border-radius: var(--border-radius-small);
            width: 100%;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .widget {
                height: 100%;

                .chat  {
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    max-height: 100%;

                    .chat-body {
                        background-color: #EBEBEE;

                        [data-testid="virtuoso-item-list"] {
                            > div:first-child {
                                padding-top: 2rem;

                                @media (max-width: 809px) and (min-width: 0) {
                                    padding-top: 1.5rem;
                                }
                            }
                            > div:last-child {
                                padding-bottom: 2rem;

                                @media (max-width: 809px) and (min-width: 0) {
                                    padding-bottom: 1.5rem;
                                }
                            }
                        }
                        .messageContent {
                            padding: 0 1rem;

                            @media (max-width: 809px) and (min-width: 0) {
                                padding: 0 .5rem;
                            }
                        }
                    }

                    .user-message-container {
                        .chat-message-bubble {
                            width: 90% !important;
                            max-width: 36rem !important;
                            padding: 1.5rem;
                            background-color: #E6E1D9;
                            margin-bottom: 1rem;
                            box-shadow: none;
                            border-bottom-right-radius: .5rem;
                        }
                        .message-title {
                            font-weight: 500;
                            color: var(--main-color);
                        }
                        .message-text {
                            color: #20212899;
                            padding: 0;
                            font-size: 1.5rem;
                            line-height: 1.1;
                        }
                    }

                    .bot-message-container,
                    .bot-form-container {
                        .chat-message-bubble {
                            width: 90% !important;
                            max-width: 36rem !important;
                            padding: 1.2rem;
                            background-color: #F5F5F7;
                            margin-bottom: 1rem;
                            box-shadow: none;
                            border-bottom-left-radius: .5rem;
                        }
                        .message-title {
                            color: var(--main-color);
                            font-weight: 500;
                        }
                        .message-text {
                            color: #20212899;
                            padding: 0;
                            font-size: 1.5rem;
                            line-height: 1.1;
                        }

                        .rjsf {
                            label {
                                color: #60616C !important;
                                font-size: 1.3rem;
                                font-weight: 500;
                                padding-left: 1rem;
                                margin-top: 1rem;
                                margin-bottom: 0;
                            }
                            button {
                                background-color: #202128;
                                border: none;
                                color: var(--white);
                                border-radius: var(--border-radius);
                                margin-top: 1.6rem;
                                font-size: 1.5rem;
                                font-weight: 600;
                                height: 3.2rem;
                                
                                &:hover {
                                    background-color: #202128;
                                    border: none;
                                    opacity: .9;
                                }
                            }

                            .widget-error {
                                padding-left: 1rem;
                                font-size: 1.1rem;
                                margin-top: .3rem;
                            }
                        }
                    }

                    .chat-input-container {
                        padding: 2rem;
                        background-color: #EBEBEE;
                        border-top: .1rem solid #E3E3E8;

                        @media (max-width: 809px) and (min-width: 0) {
                            padding: 1.5rem;
                        }

                        input {
                            box-shadow: 0px 1px 2px 0px #1159FF14;
                            border: .1rem solid transparent;
                            border-radius: var(--border-radius-small);
                            padding: 1.6rem 2rem;
                            font-size: 1.5rem;
                            font-weight: normal;
                            color: var(--main-color);
                            margin-right: 1.5rem;

                            @media (max-width: 809px) and (min-width: 0) {
                                margin-right: 1rem;
                            }

                            &:focus {
                                border-color: var(--main-color);
                            }

                            &::placeholder {
                                color: #C2C2CB;
                                text-transform: capitalize;
                            }
                        }

                        .chat-btn-send {
                            min-width: 5.6rem;
                            min-height: 5.6rem;
                            max-width: 5.6rem;
                            max-height: 5.6rem;
                            width: 5.6rem;
                            height: 5.6rem;
                            border-radius: var(--border-radius-small);
                            background-color: var(--main-color);
                            box-shadow: 0px 1px 2px 0px #1159FF14;

                            &::before {
                                content: "";
                                width: 2.4rem;
                                height: 2.4rem;
                                min-width: 2.4rem;
                                min-height: 2.4rem;
                                background: url('images/icons/send.svg') center center no-repeat;
                            }

                            &:disabled {
                                background-color: #C3C9D3 !important;
                                opacity: 1;
                                filter: none;
                            }

                            svg {
                                display: none;
                            }
                        }
                    }
                    &.step-0 .welcomeForm label.widget-input-label {
                        font-size: 1.2rem;
                        color: var(--dark-grey);
                        margin-bottom: .6rem;
                    }
                    &.step-0 .welcomeForm input {
                        font-size: 1.6rem;
                        color: var(--main-color);
                        border-color: #D0D4DD;
                        background-color: #fff;
                        margin-bottom: 1.2rem;

                        &::placeholder {
                            color: #A6AFBF;
                        }
                    }
                    &.step-0 form .submit-button, 
                    &.step-0 form .select-button {
                        width: 100%;
                        max-width: 32rem;
                        background-color: var(--button-background);
                        border: var(--button-border);
                        margin-top: 1.6rem;
                        
                        &:hover {
                            background-color: var(--button-background_hover);
                            border: var(--button-border);
                        }
                    }
                }
            }
        }
    }
}
