:root, [data-bs-theme="light"] {
    color-scheme: light;
    --primary: #286091;
    --primary-light: #61c1ee;
    --primary-bg: #ebf5ff;
    --secondary: #e09731;
    --secondary-light: #ffb957;
    --black: #292727;
    --gray: #6b7280;
    --light-gray: #9ca3af;
    --very-light-gray: #f1f2f3;
    --faint-gray: #e7e9eb;
    --white: #fff;
    --white-text: #fff;
    --navbar-bg: #fff;
    --gray-bg: #F9F9FA;
    --form-bg: #FFFFFFCC;
    --footer-bg: #292727;
    --shadow-color: #00000017;
    --black-opasity: #292727a0;
    --white-opasity: #ffffffa0;
}
.theme-icon-active {
    fill: var(--white);
}
.theme-icon {
    fill: var(--black);
}
[data-bs-theme="dark"] {
    color-scheme: dark;
    --primary: #61c1ee;
    --primary-light: #61c1ee;
    --primary-bg: #ebf5ff;
    --secondary: #e09731;
    --black: #fff;
    --gray: #c1cad9;
    --light-gray: #9ca3af;
    --very-light-gray: #f1f2f3;
    --faint-gray: #e7e9eb;
    --white: #292727;
    --white-text: #fff;
    --navbar-bg: #1a1919;
    --form-bg: #000000B3;
    --footer-bg: #1a1919;
    --shadow-color: #ffffff38;
    --black-opasity: #ffffffa0;
    --white-opasity: #292727a0;
}
.nav-item:not(.dropdown) {
    display: flex;
    align-items: center;
    justify-content: end;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

p {
    padding: 0;
    margin: 0;
}

body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    font-family: "Futura LT";
    background: var(--white);
}
.custom-container {
    padding: clamp(20px,4vw,40px) clamp(20px,4vw,60px);
}

a:not(.default) {
    text-decoration: none;
    color: var(--white-text);
}

    a:not(.default):hover {
        color: var(--white-text);
        text-decoration: underline;
    }

#nav {
    padding: clamp(10px,4vw,20px) clamp(20px,4vw,60px);
    background: var(--navbar-bg);
}

    #nav ul {
        gap: 20px 30px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #nav .toggler {
        background: none;
        border: none;
    }

    #nav .toggler {
        background: none;
        border: none;
    }

        #nav .toggler .toggle-button {
            width: 24px;
            height: 24px;
            position: relative;
        }

            #nav .toggler .toggle-button span {
                transition: all 0.4s ease-out;
            }

            #nav .toggler .toggle-button span {
                height: 4px;
                background: var(--primary);
                width: 100%;
                left: 0;
                right: 0;
                position: absolute;
            }

                #nav .toggler .toggle-button span:first-child {
                    top: 0;
                }

                #nav .toggler .toggle-button span:nth-child(2) {
                    top: 50%;
                    margin-top: -2px;
                }

                #nav .toggler .toggle-button span:last-child {
                    bottom: 0;
                }

        #nav .toggler:has(+ .collapse.show, + .collapsing) .toggle-button span:first-child {
            transform: rotate(45deg);
            position: absolute;
            top: 50%;
        }

        #nav .toggler:has(+ .collapse.show, + .collapsing) .toggle-button span:nth-child(2) {
            opacity: 0;
        }

        #nav .toggler:has(+ .collapse.show, + .collapsing) .toggle-button span:last-child {
            transform: rotate(135deg);
            position: absolute;
            top: 50%;
        }

    #nav a:not(.demo-link) {
        color: var(--black);
        font-size: 15px;
        text-transform: uppercase;
    }

    #nav .demo-link {
        background: var(--primary);
        color: var(--white);
        padding: 10px 30px;
        border-radius: 90px;
        cursor: pointer;
        display:flex;
        align-items:center;
    }

        #nav .demo-link:hover {
            background: var(--primary-light);
        }

footer {
    display: grid;
    background: var(--footer-bg);
    color: var(--white-text);
    margin-top: auto;
    gap: clamp(30px,6vw,60px);
    font-size: clamp(16px,3.4vw,20px);
}

    footer .content {
        gap: 30px;
    }

    footer .addresses {
        gap: 30px;
    }

    footer .title {
        font-size: 19px;
    }

    footer .getintouch {
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
    footer a {
        color: var(--white-text)
    }

.main-banner {
    min-height: clamp(470px, 80vh, 650px);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: clamp(20px,4vw,30px) clamp(20px,4vw,120px);
    display: flex;
}

    .main-banner > div:not(.row) {
        gap: 50px;
    }

    .main-banner .title {
        color: var(--white-text);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(20px,8vw,55px);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-wrap: balance;
    }

    .main-banner .subtitle {
        color: var(--white-text);
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(19px,5vw,23px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .main-banner .secondary-subtitle {
        color: var(--white-text);
        text-align: justify;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(16px,3.4vw,23px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .main-banner .demo-button {
        background: var(--white);
        border: none;
        padding: 6px 7px 6px 30px;
        border-radius: 135px;
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(14px,2vw,23px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

        .main-banner .demo-button span {
            display: flex;
            padding: clamp(10.5px,1vw,16.5px);
            flex-direction: column;
            align-items: center;
            gap: clamp(9.6px,1vw,15px);
            border-radius: 195px;
            background: var(--secondary);
        }

            .main-banner .demo-button span img {
                width: 16px;
            }

    .main-banner .banner-links {
        display: flex;
        align-items: flex-start;
        gap: 80px;
        width: 100%;
    }

        .main-banner .banner-links > a > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

            .main-banner .banner-links > a > div span {
                display: flex;
                padding: 11px;
                align-items: center;
                gap: 10px;
                border-radius: 130px;
                background: var(--white-text);
            }

                .main-banner .banner-links > a > div span img {
                    width: 16px;
                }

.why {
    display: flex;
    padding: clamp(30px,4vw, 70px) clamp(20px,4vw,60px);
    gap: clamp(40px,5vw, 98px);
    flex-direction: column;
}

    .why .content {
        display: flex;
        gap: 21px;
        flex-direction: column;
    }

        .why .content .cards {
            display: flex;
            align-items: center;
            gap: 20px;
            align-self: stretch;
            justify-content: space-between;
        }
            .why .content .cards * {
                transition: all 0.5s;
            }

            .why .content .cards .solution-card {
                height: 440px;
                width: clamp(315px,30vw,700px);
                max-width: 700px;
                padding: 14px 10px;
                position: relative;
                border-radius: 10px;
                background: lightgray 50%;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                display: flex;
                overflow: hidden;
                flex-direction:column;
                justify-content:end;
            }


                .why .content .cards .solution-card .shadow {
                    position: absolute;
                    width: 100%;
                    height: 30%;
                    margin: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    border-radius: 0px 0px 10px 10px;
                    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--black) 95%);
                    z-index: 1;
                }

                .why .content .cards .solution-card .texts {
                    width: 100%;
                    z-index: 2;
                }

                .why .content .cards .solution-card .title {
                    color: var(--white);
                    font-feature-settings: 'liga' off, 'clig' off;
                    font-size: clamp(15px, 3vw, 30px);
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

                .why .content .cards .solution-card .subtitle {
                    color: var(--white);
                    font-feature-settings: 'liga' off, 'clig' off;
                    font-size: clamp(13px, 2vw, 16px);
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    opacity: 0;
                }

@media (hover: hover) and (pointer: fine) {
    .why .content .cards .solution-card:hover .texts {
        transform: none !important;
    }

    .why .content .cards .solution-card:hover .subtitle {
        opacity: 1;
    }
}

.why .content .cards .solution-card .icon {
    display: flex;
    width: clamp(30px, 3vw, 44px);
    height: clamp(30px, 3vw, 44px);
    padding: clamp(7.5px, 1vw, 11px);
    justify-content: center;
    align-items: center;
    gap: clamp(6.8px, 0.8vw, 10px);
    flex-shrink: 0;
    border-radius: 130px;
    background: var(--white-opasity);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

    .why .content .cards .solution-card .icon > img {
        width: clamp(9.9px, 1vw, 14.545px);
        height: auto;
        flex-shrink: 0;
        margin: auto;
    }

.why .content > .title {
    color: var(--black);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: clamp(30px,3vw, 44px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.why .solutions {
    display: flex;
    padding: 0px 60px;
    align-items: center;
    gap: clamp(40px,5vw, 110px);
    align-self: stretch;
}

    .why .image-group {
       display: flex;
        gap: 10px; 
    }

    .why .image-group img {
        width: 190px;
        height: auto;
    }

    .why .solutions .title {
        color: var(--primary);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .why .solutions .title a {
        color: var(--primary);
        text-decoration:none;
    }
    .why .solutions .subtitle {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .why .solutions .text {
        color: var(--gray);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(13px, 2vw, 16px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.why .stats {
    display: flex;
    padding: 0px clamp(0px, 5vw, 50px);
    align-items: center;
    gap: 40px;
    align-self: stretch;
}


    .why .stats > div {
        display: flex;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        flex: 1 0 0;
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0px 0px 19px 0px var( --shadow-color);
    }

    .why .stats .value {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .why .stats p {
        text-align: center;
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .why .stats .title {
        font-size: clamp(30px,3vw, 44px);
    }

    .why .stats .subtitle {
        font-size: clamp(13px, 2vw, 16px);
    }

    .why .stats span {
        color: var(--primary);
        font-size: clamp(23px, 1.7vw, 30px);
        margin-top: auto;
        margin-bottom: auto;
    }
.owl-carousel .owl-stage{
    display:flex !important;
}
.leading {
    padding: clamp(38px, 10vw, 100px);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url("/img/leading.jpg") center no-repeat;
    background-size: cover;
    height: clamp(470px, 70vh, 650px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .leading .title {
        color: var(--white-text);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(20px,5vw, 55px);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: left;
        text-wrap: balance;
    }

    .leading .leading-button {
        background: var(--white);
        border: none;
        padding: 6px 7px 6px 30px;
        border-radius: 135px;
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 33px;
    }

        .leading .leading-button span {
            display: flex;
            padding: 11px;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            border-radius: 195px;
            background: var(--secondary);
        }

.integration .getstart-button {
    background: var(--primary);
    border: none;
    padding: 6px 7px 6px 30px;
    border-radius: 135px;
    color: var(--white-text);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: clamp(16px,5vw,20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 33px;
}

    .integration .getstart-button span {
        display: flex;
        padding: 11px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-radius: 195px;
        background: var(--secondary);
    }

    .integration .getstart-button:hover {
        background: var(--primary-light);
    }

        .integration .getstart-button:hover span {
            background: var(--secondary-light);
        }
.partners {
    display: flex;
    padding: clamp(20px,4vw,60px) clamp(20px,4vw,60px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

    .partners .title {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
        width: 100%;
    }

    .partners .logos {
        display: flex;
        padding: clamp(20px,4.2vw,72px) clamp(20px,4vw,60px);
        align-items: center;
        gap: 40px;
        width: 100%;
        justify-content: center;
        overflow: hidden;
    }
        .partners .logos .logo {
            padding:20px;
        }
        .partners .logos .logo > div {
            height: 100px;
            display: flex;
            inset: 0;
            background-repeat: no-repeat !important;
            background-position: center !important;
            background-size: contain !important;
        }
    .partners .testimonials {
        width: 100%;
    }

        .partners .testimonials .text {
            color: var(--gray);
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: clamp(15px,2.5vw, 19px);
            font-style: italic;
            font-weight: 400;
            line-height: normal;
        }
        .partners .testimonials .testimonial {
            height: 100%;
        }
        .partners .testimonials .testimonial > div {
            display: flex;
            flex-direction: column;
            text-align: justify;
            padding: 20px;
            margin: 20px;
            gap: 8px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0px 0px 19px 0px var( --shadow-color);
            /*height: 100%;*/
        }
        .partners .testimonials .testimonial .text a {
            color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1))
        }

        .partners .testimonials .testimonial .text {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 14;
            overflow: hidden;
        }
        .partners .testimonials .name {
            color: var(--black);
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .partners .testimonials .position {
            color: var(--gray);
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
.main-content {
    display: flex;
    padding: clamp(30px,4vw, 70px) clamp(20px,4vw,60px);
    gap: clamp(40px,5vw, 50px);
    flex-direction: column;
}
    .main-content .main-title {
        display: flex;
        padding: 0px 140px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
        .main-content .main-title .subtitle {
            font-size: clamp(16px,3.4vw,20px);
        }

.feature-cards, .feature-cards > div {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    justify-content: space-between;
}


    .feature-cards * {
        transition: all 0.5s;
    }

    .feature-cards .feature-card {
        height: 440px;
        width: clamp(315px,30vw,700px);
        max-width: 700px;
        padding: 14px 10px;
        position: relative;
        border-radius: 10px;
        background: lightgray 50%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        overflow: hidden;
        flex-direction:column;
        justify-content:end;
    }

        .feature-cards .feature-card:hover {
            width: 700px;
        }

        .feature-cards .feature-card .shadow {
            position: absolute;
            width: 100%;
            height: 30%;
            margin: 0;
            bottom: 0;
            left: 0;
            right: 0;
            border-radius: 0px 0px 10px 10px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, var(--black) 95%);
            z-index: 1;
        }

        .feature-cards .feature-card .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            margin: 0;
            bottom: 0;
            left: 0;
            right: 0;
            border-radius: 0px 0px 10px 10px;
            background: var(--primary);
            z-index: 2;
            opacity:0;
        }
        .feature-cards .feature-card .texts {
            width:100%;
            z-index: 3;
        }
        .feature-cards .card-data {
            display:none;
        }
        .feature-cards .feature-card .title {
            color: var(--white);
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: clamp(15px, 3vw, 30px);
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .feature-cards .feature-card .subtitle {
            color: var(--white);
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: clamp(13px, 2vw, 16px);
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            opacity: 0;
        }

@media (hover: hover) and (pointer: fine) {
    .feature-cards .feature-card:hover .texts {
        transform: none !important;
    }
    .feature-cards .feature-card:hover .bg {
        opacity: 1;
    }

    .feature-cards .feature-card:hover .subtitle {
        opacity: 1;
    }
}
.app {
    display: flex;
    padding: 0px 60px;
    align-items: center;
    gap: 110px;
    align-self: stretch;
}

    .app .app-images {
        display: flex;
    }
        .app .app-images img {
            width: 250px;
            height: auto;
        }
    .app .app-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        justify-content: space-between;
    }
    .app .title {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .app .content {
        color: var(--gray);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(16px,3.4vw,20px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: justify;
    }
.integration {
    display: flex;
    padding: 0px 140px;
    align-items: start;
    gap: 30px;
    align-self: stretch;
    flex-direction: column;
}

    .integration .title {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width:100%;
    }

    .integration .content {
        color: var(--gray);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(16px,3.4vw,20px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: justify;
    }
.integration-img {
    padding: 20px;
    height: 100%;
}
    .integration-img > div {
        height: 100px;
        display: flex;
        inset: 0;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: contain !important;
    }
.about-section {
    display: flex;
    padding: 0px 150px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
    .about-section .title {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(30px,3vw, 44px);
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .about-section .content {
        color: var(--gray);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(13px, 2vw, 16px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
.team-member {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 0px 19px 0px var( --shadow-color);
}
    .team-member .avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-size:cover;
        background-repeat:no-repeat;
        background-position:center;
    }
    .team-member .name {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(16px,3.4vw,23px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .team-member .position {
        color: var(--black);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(15px,2.7vw,20px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .team-member .content {
        color: var(--gray);
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: clamp(13px, 2vw, 14px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: justify;
        word-spacing: -2px;
    }
    .team-member .intouchlink{
        width:100%;
        color:var(--primary);
        text-decoration:underline;
        text-align:justify;
    }
.main-banner .contact-info {
    color: var(--white);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.main-banner .addresses {
    color: var(--white-text);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.contact-content {
    display: flex;
    align-content: center;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    gap: 30px;
}
.contact-form {
    display: flex;
    padding: 20px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    border-radius: 4px;
    background: var(--form-bg);
}
.contact-form h2 {
    color: var(--black);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-submit {
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 90px;
    background: var(--primary);
    border:none;
    color:var(--white);
}
    .form-submit img {
        width: 24px;
        height: 24px;
    }
.supportlink {
    color: var(--black);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.supportlink a {
    color: var(--black);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration:underline;
} 
.contact-info-black a{
    color:var(--black);
}
.mobile-container {
    background: var(--gray-bg);
}
.selection {
    color: var(--black);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
@media only screen and (min-width:768px) {
    #nav .toggler {
        display: none;
    }
    .why .content .cards .solution-card:hover {
        width: 700px;
    }
}

@media only screen and (max-width:767.98px) {
    footer .content {
        flex-direction: column;
    }
    .why .content .cards .solution-card .shadow {
        height: 100%;
        background: linear-gradient(180deg, var(--black-opasity) 0%, var(--black-opasity) 70%, var(--black) 95%);
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--black) 95%);
    }
    .main-banner .banner-links {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }


        .why .content .cards .solution-card {
            height: 230px;
            width: clamp(167px,40vw,700px);
            padding: 7px 10px;
        }
        .why .content .cards {
            flex-wrap:wrap;
        }
            .why .content .cards .solution-card .texts {
                transform: translateY(0);
            }

            .why .content .cards .solution-card .subtitle {
                padding-top: 9px;
                opacity: 1;
            }

    .why .solutions {
        padding: 0px;
        flex-direction: column-reverse;
    }

    .why .stats {
        padding: 0px;
        flex-wrap: wrap;
    }

    .leading {
        gap: 36px;
        justify-content: center;
    }

        .leading .title {
            text-align: center;
        }
    .main-content .main-title {
        padding: 0px;
    }

    .feature-cards {
        flex-direction: column;
    }
        .feature-cards .feature-card {
            height: 230px;
            width:100% !important;
            width: clamp(167px,40vw,700px);
            padding: 7px 10px;
        }
            .feature-cards .card-data {
                display: block;
            }
            .feature-cards .feature-card .texts {
                transform: none !important;
            }

            .feature-cards .feature-card .subtitle {
                padding-top: 9px;
                opacity: 1;
                display:none;
            }
    .app {
        padding: 0px;
        gap: 30px;
        flex-direction:column;
    }
    .app > div {
        width:100%;
    }
    .about-section {
        padding: 0px;
    }
    .integration {
        padding: 0px;
        gap:20px;
    }
}

.privacy {
    color: var(--gray);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: clamp(13px, 2vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: clamp(20px,4vw,40px) clamp(20px,8vw,150px);
}