@charset "UTF-8";

@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(0)
    }

    to {
        transform: translateX(-50%) translateY(5px)
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 0 100%
    }
}

@keyframes pulse {
    0%,to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes shine {
    to {
        transform: translateX(100%);
        opacity: 1
    }
}

*, ::after, ::before {
    box-sizing: border-box
}

.light-theme p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #37373c
}

.hero-banner-target {
    align-items: center;
    overflow: hidden;
    padding-top: 50px;
    background: fixed
}

    .hero-banner-target .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%
    }

    .hero-banner-target, .hero-banner-target .container {
        display: flex;
        justify-content: space-between;
        position: relative
    }

        .hero-banner-target .container {
            width: 100%;
            padding-top: 84px;
            padding-bottom: 84px
        }

        .hero-banner-target .hero_content--left {
            flex: 1;
            position: relative;
            max-width: 617px
        }

            .hero-banner-target .hero_content--left .top_title {
                align-self: stretch;
                color: #333;
                font-size: 12px;
                font-style: normal;
                font-weight: 700;
                line-height: 24px;
                letter-spacing: .12px;
                margin-bottom: 32px
            }

            .hero-banner-target .hero_content--left h1, .hero-banner-target .hero_content--left p {
                align-self: stretch;
                color: #333;
                font-size: 48px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                /*margin-bottom: 32px*/
            }

            .hero-banner-target .hero_content--left p {
                font-size: 18px;
                font-weight: 400;
                line-height: 188.889%;
                letter-spacing: .16px;
                margin-bottom: 64px !important
            }

            .hero-banner-target .hero_content--left .hero-logos img {
                max-width: 119px;
                margin-right: 34px;
                max-height: 107px
            }

        .hero-banner-target .hero_content--right {
            flex: 1;
            max-width: 406px
        }

        .hero-banner-target .contact-form {
            display: flex;
            padding: 36px var(--24, 24px);
            flex-direction: column;
            align-items: flex-start;
            max-width: 480px;
            border-radius: var(--24, 24px);
            background: #fff;
            box-sizing: border-box
        }

            .hero-banner-target .contact-form .title {
                font-family: "DM Sans","Open Sans",sans-serif;
                font-size: 24px;
                font-weight: 500;
                line-height: 31px;
                letter-spacing: .02em;
                text-align: left;
                color: #1f1f23
            }

            .hero-banner-target .contact-form .form-group {
                width: 100%;
                display: flex
            }

                .hero-banner-target .contact-form .form-group:not(:last-of-type) {
                    margin-bottom: 24px
                }

            .hero-banner-target .contact-form input[type=email], .hero-banner-target .contact-form input[type=text], .hero-banner-target .contact-form select {
                width: 100%;
                font-family: "DM Sans","Open Sans",sans-serif;
                font-size: 14px;
                font-weight: 400;
                line-height: normal;
                color: #6b7280;
                caret-color: #6b7280;
                outline: 1px solid #aeaebc;
                height: 46px;
                background: #fff;
                padding: 14px 20px;
                box-sizing: border-box;
                border-radius: 8px;
                border: unset
            }

            .hero-banner-target .contact-form textarea {
                font-family: "DM Sans","Open Sans",sans-serif;
                font-size: 14px;
                font-weight: 400;
                line-height: normal;
                box-sizing: border-box;
                border: unset
            }

            .hero-banner-target .contact-form input[type=email]:hover, .hero-banner-target .contact-form input[type=text]:hover, .hero-banner-target .contact-form select:hover {
                outline: 1px solid #434349 !important;
                border: unset
            }

            .hero-banner-target .contact-form input[type=email]:focus-visible, .hero-banner-target .contact-form input[type=text]:focus-visible, .hero-banner-target .contact-form select:focus-visible {
                color: #1f1f23;
                outline: 1px solid #434349 !important;
                border: unset
            }

            .hero-banner-target .contact-form input[type=email]::placeholder, .hero-banner-target .contact-form input[type=text]::placeholder, .hero-banner-target .contact-form select::placeholder {
                color: #999
            }

            .hero-banner-target .contact-form textarea {
                width: 100%;
                padding: 14px 20px;
                outline: 1px solid #aeaebc;
                background: #fff;
                height: 100px;
                min-height: 56px;
                max-inline-size: -webkit-fill-available;
                caret-color: #6b7280;
                color: #6b7280;
                caret-shape: underscore;
                resize: none !important;
                transition: .3ms ease;
                margin-bottom: 8px;
                max-width: -moz-available;
                border-radius: 8px;
                opacity: .75
            }

                .hero-banner-target .contact-form textarea:hover {
                    outline: 1px solid #434349 !important;
                    border: unset
                }

                .hero-banner-target .contact-form textarea:focus-visible {
                    color: #1f1f23;
                    outline: 1px solid #434349 !important;
                    border: unset
                }

                .hero-banner-target .contact-form textarea::placeholder {
                    color: #6b7280 !important
                }

            .hero-banner-target .contact-form .form-group-privacy {
                margin-bottom: 30px
            }

                .hero-banner-target .contact-form .form-group-privacy label {
                    color: #6a768b;
                    font-family: "DM Sans","Open Sans",sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 16px
                }

                    .hero-banner-target .contact-form .form-group-privacy label a {
                        text-decoration: underline;
                        color: #6a768b
                    }

            .hero-banner-target .contact-form .form-control:hover {
                outline: 0
            }

.form-control::-webkit-scrollbar-thumb {
    background: #18181d
}

.form-control::-webkit-scrollbar-track {
    background: #fff
}

.form-control::-webkit-scrollbar {
    background: #fff
}

.description, .light-theme .services .service-item:hover .link a, li, p {
    color: #1f1f23
}

.light-theme p:not(:last-child) {
    margin-bottom: initial
}

.hero-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.light-theme .achievements {
    padding: 100px 150px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f7f8
}

.light-theme .achievements__container {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%
}

.light-theme .achievements__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.light-theme .achievements__text-content {
    width: 45.3%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

    .light-theme .achievements__text-content .achievements__title {
        font-size: 34px;
        font-weight: 500;
        color: #1f1f23;
        line-height: 1.3;
        margin-bottom: 0
    }

    .light-theme .achievements__text-content .achievements__description {
        font-size: 15px;
        color: #37373c;
        line-height: 1.8
    }

.light-theme .achievements__items {
    width: 47.4%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap
}

    .light-theme .achievements__items .achievement-item {
        display: flex;
        align-items: start;
        gap: 16px;
        width: calc(50% - 20px)
    }

    .light-theme .achievements__items .achievement-item__icon, .light-theme .services .service-item__content__logos .logo img {
        width: 40px;
        height: 40px
    }

        .light-theme .achievements__items .achievement-item__icon svg {
            width: 40px;
            height: 40px;
            min-width: 40px
        }

    .light-theme .achievements__items .achievement-item__details {
        display: flex;
        flex-direction: column
    }

        .light-theme .achievements__items .achievement-item__details .achievement-item__number {
            font-size: 32px;
            font-weight: 600;
            color: #1f1f23;
            line-height: 40px;
            visibility: visible;
            opacity: 1;
            transition: opacity .3s ease
        }

        .light-theme .achievements__items .achievement-item__details .achievement-item__label {
            font-size: 16px;
            font-weight: 400;
            color: #1f1f23;
            line-height: 26px
        }

.light-theme .features {
    padding: 80px 150px;
    position: relative
}

.light-theme .features__container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.light-theme .features .bg {
    background: linear-gradient(to bottom,#f5f7f8 0,#e1e5ed 100%);
    width: 100%;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0
}

.light-theme .features__title {
    font-family: "DM Sans","Open Sans",sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 39px;
    letter-spacing: .005em;
    text-align: center;
    margin: 0 auto 48px
}

.light-theme .features__image {
    border-radius: 24px;
    width: 968px;
    height: auto;
    object-fit: cover;
    margin: 0 auto 48px
}

.light-theme .features__subtitle {
    color: #1f1f23;
    font-feature-settings: "liga" off;
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin: 0 auto 48px
}

.light-theme .features__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center
}

.light-theme .features__item {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.333% - 20px);
    box-sizing: border-box
}

.light-theme .features__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px
}

    .light-theme .features__icon svg {
        width: 100%;
        height: 100%
    }

.light-theme .features__details {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.light-theme .features__headline {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500
}

.light-theme .features__description {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400
}

.light-theme .services, .light-theme .services .service-item {
    padding: 100px 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.light-theme .services__container {
    max-width: 1142px;
    width: 100%;
    display: flex;
    flex-direction: column
}

.light-theme .services__title {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 34px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 24px
}

.light-theme .services__description {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 42px !important;
    max-width: 736px
}

.light-theme .services__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%
}

.light-theme .services .service-item {
    background: #fff;
    border-radius: 24px;
    padding: 44px;
    flex-direction: row;
    gap: 42px;
    box-shadow: 0 0 1px rgba(0,0,0,.05),0 4px 8px rgba(0,0,0,.1)
}

    .light-theme .services .service-item:hover {
        box-shadow: 0 0 1px 0 rgba(0,0,0,.05),0 8px 16px 0 rgba(0,0,0,.1)
    }

        .light-theme .services .service-item:hover .link a svg {
            filter: brightness(0) saturate(100%) invert(1%) sepia(10%) saturate(6475%) hue-rotate(214deg) brightness(98%) contrast(78%)
        }

.light-theme .services .service-item__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 50%
}

.light-theme .services .service-item__content__title {
    color: #1f1f23;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: .6px
}

.light-theme .services .service-item__content__description {
    color: #37373c;
    font-family: "DM Sans","Open Sans",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .15px
}

.light-theme .services .service-item__content ul {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    margin-top: 16px
}

.light-theme .pageSectionProcess li, .light-theme .services .service-item__content li {
    color: #1f1f23;
    font-family: "DM Sans","Open Sans",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: .2px;
    position: relative;
    padding-left: 20px
}

    .light-theme .services .service-item__content li:before {
        content: "•";
        color: #1f1f23;
        width: 1em;
        left: 7px;
        position: absolute;
        top: 0;
        transform: none
    }

.light-theme .services .service-item__content__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 9px
}

    .light-theme .services .service-item__content__logos .logo {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 8px
    }

        .light-theme .services .service-item__content__logos .logo span {
            font-family: "DM Sans",sans-serif;
            font-size: 15px;
            color: #37373c
        }

.light-theme .services .service-item__image {
    width: 50%;
    border-radius: 24px;
    object-fit: cover
}

.light-theme .services .link a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-family: "DM Sans","Open Sans",sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .45px;
    text-transform: uppercase
}

.light-theme .cta-form {
    padding: 100px 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.light-theme .cta-form__container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 42px
}

.light-theme .cta-form__title {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 34px;
    line-height: 130%;
    font-weight: 500;
    margin: 0
}

.light-theme .cta-form__content {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 42px;
    box-shadow: 0 0 1px rgba(0,0,0,.05),0 4px 8px rgba(0,0,0,.1);
    overflow: hidden;
    position: relative
}

.light-theme .cta-form__form {
    border-right: 1px solid #e0e2e3;
    gap: 24px;
    position: relative
}

    .light-theme .cta-form__form::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        /*background-image: url(/wp-content/uploads/2024/10/form-gradient.webp);*/
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        max-height: 100%
    }

.light-theme .cta-form__contact, .light-theme .cta-form__form {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.light-theme .cta-form__subtitle {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.light-theme .cta-form__description {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 24px
}

.light-theme .cta-form__options, .light-theme .cta-form__question {
    display: flex;
    flex-direction: column;
    gap: 8px
}

    .light-theme .cta-form__question .cta-form__description {
        color: #37373c;
        font-family: "DM Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: .15px;
        margin-bottom: 42px !important
    }

    .light-theme .cta-form__question .cta-form__subtitle {
        color: #37373c;
        font-family: "DM Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        letter-spacing: .18px;
        margin-bottom: 0
    }

.light-theme .cta-form__option {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: max-content;
    cursor: pointer
}

    .light-theme .cta-form__option input[type=radio] {
        width: 18px;
        height: 18px
    }

    .light-theme .cta-form__option.chb-container_default {
        gap: 0
    }

        .light-theme .cta-form__option.chb-container_default input {
            position: absolute !important
        }

            .light-theme .cta-form__option.chb-container_default input:checked ~ .checkmark {
                outline: 1.5px solid #1f1f23 !important;
                background: #fff
            }

        .light-theme .cta-form__option.chb-container_default .checkmark {
            width: 18px;
            height: 18px;
            -webkit-transition: all 200ms;
            -o-transition: all 200ms;
            -moz-transition: all 200ms;
            transition: all 200ms;
            border: 0 !important;
            background: #37373f;
            cursor: pointer !important;
            margin-right: 8px;
            background: 0 0;
            outline: 1.5px solid #d6d8da;
            border-radius: 4px !important;
            top: 0
        }

            .light-theme .cta-form__option.chb-container_default .checkmark:after {
                left: 6px;
                top: 4px;
                width: 5px;
                height: 10px;
                border: solid #1f1f23;
                border-width: 0 1.5px 1.5px 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg)
            }

        .light-theme .cta-form__option.chb-container_default:hover .checkmark {
            outline: 1.5px solid #1f1f23 !important
        }

    .light-theme .cta-form__option .cta-form__label {
        color: #37373c;
        font-family: "DM Sans",sans-serif;
        font-size: 15px;
        line-height: 28px
    }

.light-theme .cta-form__fields {
    gap: 24px;
    height: 100%
}

.light-theme .cta-form__field, .light-theme .cta-form__fields, .worked ul {
    display: flex;
    flex-direction: column
}

    .light-theme .cta-form__field input, .light-theme .cta-form__field textarea {
        border: 0;
        border-bottom: 1px solid #b8bdc6;
        padding: 14px 20px;
        font-family: "DM Sans",sans-serif;
        font-size: 16px;
        color: #6b7280
    }

        .light-theme .cta-form__field input::placeholder, .light-theme .cta-form__field textarea::placeholder {
            color: #6b7280
        }

        .light-theme .cta-form__field input:focus, .light-theme .cta-form__field textarea:focus {
            outline: 0;
            border-bottom-color: #1f1f23;
            color: #1f1f23
        }

    .light-theme .cta-form__field textarea {
        resize: vertical !important;
        height: 47px;
        overflow: hidden;
        box-sizing: border-box
    }

.light-theme .cta-form__button {
    margin-top: auto;
    margin-bottom: 0
}

.light-theme .cta-form input[type=radio] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #d6d8da;
    border-radius: 50%;
    outline: 0;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms
}

    .light-theme .cta-form input[type=radio]:checked {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 18px;
        height: 18px;
        border: 1.5px solid #37373c;
        border-radius: 50%;
        outline: 0;
        cursor: pointer;
        position: relative;
        opacity: 1
    }

    .light-theme .cta-form input[type=radio]::before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #37373c;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0
    }

    .light-theme .cta-form input[type=radio]:checked::before {
        opacity: 1
    }

    .light-theme .cta-form input[type=radio]:hover {
        border: 1.5px solid #37373c
    }

.light-theme .features-section {
    background: #f5f7f8;
    padding: 124px 150px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden
}

.light-theme .features-section__container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: column
}

.light-theme .features-section__title {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 34px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 24px;
    width: 810px
}

.light-theme .features-section__row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    position: relative;
    padding-top: 31px;
    padding-right: 26px
}

.light-theme .features-section__description {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 15px;
    line-height: 28px;
    max-width: 810px;
    gap: 42px;
    display: flex;
    flex-direction: column
}

    .light-theme .features-section__description ul li {
        padding-left: 24px;
        position: relative
    }

        .light-theme .features-section__description ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 5.5px;
            transform: none;
            width: 16px;
            height: 16px;
            background: 0 0;
            background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00075 10.7801L3.68742 8.46672C3.56276 8.34207 3.3937 8.27204 3.21741 8.27204C3.04113 8.27204 2.87207 8.34207 2.74741 8.46672C2.62276 8.59137 2.55273 8.76043 2.55273 8.93672C2.55273 9.024 2.56993 9.11044 2.60333 9.19108C2.63673 9.27172 2.68569 9.345 2.74741 9.40672L5.53408 12.1934C5.79408 12.4534 6.21408 12.4534 6.47408 12.1934L13.5274 5.14005C13.6521 5.0154 13.7221 4.84634 13.7221 4.67005C13.7221 4.49377 13.6521 4.3247 13.5274 4.20005C13.4028 4.0754 13.2337 4.00537 13.0574 4.00537C12.8811 4.00537 12.7121 4.0754 12.5874 4.20005L6.00075 10.7801Z' fill='%232EC24F' stroke='%232EC24F'/%3E%3C/svg%3E%0A");
            background-size: contain;
            background-repeat: no-repeat
        }

            .light-theme .features-section__description ul li:before li:not(:last-child) {
                margin-bottom: 10px
            }

    .light-theme .features-section__description p, .light-theme .features-section__description ul li {
        color: #37373c;
        font-family: "DM Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: .15px
    }

.light-theme .features-section__image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover
}

.light-theme .features-section .bg {
    background: linear-gradient(180deg,#6c83ff 0,#6a5ac7 100%);
    border-radius: 50%;
    width: 182px;
    height: 182px;
    position: absolute;
    left: -157px;
    top: 212px;
    filter: blur(150px);
    background-size: 100% 200%;
    background-position: 0 0
}

.light-theme .features-section .group-2085662454 {
    position: relative;
    width: 481px;
    height: 372px;
    box-sizing: border-box
}

.light-theme .features-section .rectangle-34624143 {
    background: linear-gradient(180deg,#e1e5ed 0,#f5f7f8 100%);
    border-radius: 24px;
    width: 481px;
    height: 341px;
    position: relative;
    z-index: 1;
    margin: 0;
    transform: translate(0,0)
}

.light-theme .features-section .rectangle-34624142 {
    border-radius: 24px;
    width: 481px;
    height: 341px;
    position: relative;
    z-index: 2;
    margin-top: -341px;
    object-fit: cover;
    transform: translate(0,0)
}

.light-theme .trusted-companies {
    padding: 64px 150px;
    position: relative
}

    .light-theme .trusted-companies .hidden, .light-theme .trusted-companies__logo:hover img {
        display: none
    }

.light-theme .trusted-companies__container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.light-theme .trusted-companies__text {
    float: left;
    width: 350px;
    margin-right: 30px
}

    .light-theme .trusted-companies__text p {
        width: 382px;
        height: 88px
    }

.light-theme .trusted-companies__title {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 32px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 0
}

.light-theme .trusted-companies__description {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 15px;
    line-height: 24px;
    margin-top: 8px
}

    .light-theme .trusted-companies__description p {
        width: 352px
    }

.light-theme .trusted-companies__logo {
    float: left;
    width: calc(25% - 30px);
    margin: 0 15px;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center
}

    .light-theme .trusted-companies__logo img {
        max-width: 100%;
        height: auto;
        object-fit: contain
    }

    .light-theme .trusted-companies__logo:hover img.hidden {
        display: block
    }

.light-theme .pageSectionProcess {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: #f5f7f8;
    overflow: hidden
}

    .light-theme .pageSectionProcess ul {
        list-style-type: none;
        padding-left: 0;
        text-align: left
    }

    .light-theme .pageSectionProcess li:before {
        content: "•";
        color: #1f1f23;
        width: 1em;
        left: 7px;
        position: absolute;
        top: 0;
        transform: none
    }

.light-theme .pageSectionProcess__title {
    text-align: center;
    margin-bottom: 30px
}

.light-theme .pageSectionProcess__text {
    text-align: center;
    max-width: 538px;
    margin: 0 auto 60px
}

.light-theme .pageSectionProcess__step {
    max-width: 854px
}

    .light-theme .pageSectionProcess__step.section {
        padding-top: 0
    }

.light-theme .pageSectionProcess__step--content {
    display: flex;
    gap: 120px;
    justify-content: center
}

.light-theme .pageSectionProcess__step--content__left, .light-theme .pageSectionProcess__step--content__right {
    width: calc(50% - 60px)
}

.light-theme .pageSectionProcess__step--title {
    font-family: "DM Sans";
    font-size: 26px;
    font-weight: 500;
    line-height: 33.8px;
    letter-spacing: .02em;
    text-align: right;
    color: #120a00;
    margin-bottom: 20px
}

.light-theme .pageSectionProcess__step--text {
    font-family: Graphik;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: right;
    color: #6a747e
}

.light-theme .pageSectionProcess__step--image {
    width: 100%;
    height: auto;
    object-fit: cover
}

.light-theme .section:not(:last-child) {
    padding-bottom: 146px
}

.light-theme .sections {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 80px
}

.light-theme .page-progress-cont {
    width: 2px;
    height: calc(100% - 16px);
    position: absolute;
    top: 8px;
    left: 50%;
    background-color: #d1d5db;
    border-radius: 10px;
    z-index: 9
}

    .light-theme .page-progress-cont .progress-bar {
        width: 2px;
        background-color: #5d81ff;
        height: 0%;
        border-radius: 10px
    }

    .light-theme .page-progress-cont .point_circle {
        background: #f5f7f8;
        width: 36px;
        height: 36px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        z-index: 10
    }

    .light-theme .page-progress-cont .progress-points {
        opacity: 0;
        transition: all .2s ease
    }

        .light-theme .page-progress-cont .progress-points .point {
            width: 24px;
            height: 24px;
            border: 12px solid #d1d5db;
            background-color: #fff;
            border-radius: 100%;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: all .2s ease;
            z-index: 11
        }

            .light-theme .page-progress-cont .progress-points .point.passed {
                border: 8px solid #5d81ff
            }

.light-theme .sectionCTAServicesPage {
    padding: 64px 0;
    position: relative
}

    .light-theme .sectionCTAServicesPage .bg {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url(/wp-content/uploads/2024/10/cta-gradient.webp);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        max-height: 100%;
        max-width: 626px
    }

.light-theme .sectionCTAServicesPage__wrapper {
    gap: 19px;
    display: flex;
    justify-content: start;
    align-items: center;
    align-self: stretch;
    padding: 24px 64px;
    border-radius: 24px;
    background: linear-gradient(97deg,#e9eef9 1.18%,#e5f0ee 90.48%);
    box-sizing: border-box;
    min-height: 367px
}

.light-theme .sectionCTAServicesPage__content {
    max-width: 54%
}

.light-theme .sectionCTAServicesPage__title2 {
    color: #1f1f23;
    font-family: "DM Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: .64px;
    margin-bottom: 24px !important
}

.light-theme .sectionCTAServicesPage__text {
    color: #1f1f23;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    line-height: 28px;
    letter-spacing: .16px;
    margin-bottom: 24px
}

    .light-theme .sectionCTAServicesPage2__text strong, .light-theme .sectionCTAServicesPage__text strong {
        font-weight: 800
    }

.light-theme .sectionCTAServicesPage__image.desc {
    position: absolute;
    right: 100.71px;
    max-width: 360px;
    bottom: 0;
    display: flex
}

.light-theme .sectionCTAServicesPage__image.mob {
    display: none
}

.light-theme .sectionCTAServicesPage svg, .light-theme .sectionCTAServicesPage2 svg {
    position: absolute;
    right: 0;
    top: 0
}

.light-theme .sectionCTAServicesPage .sectionCTAServicesPage__wrapper:hover {
    cursor: pointer
}

    .light-theme .sectionCTAServicesPage .sectionCTAServicesPage__wrapper:hover .btn_arrow_anime {
        background: #6de888
    }

        .light-theme .sectionCTAServicesPage .sectionCTAServicesPage__wrapper:hover .btn_arrow_anime .arrow {
            width: 33px
        }

.light-theme .success_cases .section-header {
    text-align: left;
    width: 100%
}

    .light-theme .expect-to-gain .section-header .section-title, .light-theme .success_cases .section-header .section-title {
        font-family: "DM Sans",sans-serif;
        font-size: 34px;
        color: #1f1f23;
        line-height: 1.3;
        font-weight: 500;
        margin-bottom: 43px
    }

.light-theme .expect-to-gain {
    padding: 84px 150px;
    position: relative;
    overflow: hidden
}

    .light-theme .expect-to-gain .container {
        display: flex;
        flex-direction: row;
        gap: 100px;
        align-items: flex-start;
        justify-content: flex-start
    }

    .light-theme .expect-to-gain .section-header {
        z-index: 10
    }

        .light-theme .expect-to-gain .section-header .section-title {
            text-align: left;
            margin-bottom: 24px
        }

        .light-theme .expect-to-gain .section-header .section-description {
            font-family: "DM Sans",sans-serif;
            font-size: 15px;
            color: #37373c;
            line-height: 28px;
            max-width: 600px;
            text-align: left;
            margin-bottom: 24px
        }

    .light-theme .expect-to-gain .gain-items {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%
    }

        .light-theme .expect-to-gain .gain-items .gain-item {
            display: flex;
            gap: 24px;
            align-items: flex-start
        }

            .light-theme .expect-to-gain .gain-items .gain-item:not(:last-child) {
                border-bottom: 1px solid #dbdbdb;
                padding-bottom: 50px
            }

            .light-theme .expect-to-gain .gain-items .gain-item .gain-number {
                width: 50px;
                height: 50px;
                border: 1px solid #1f1f23;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: "DmSans-SemiBold",sans-serif;
                font-size: 24px;
                color: #1f1f23;
                min-width: 50px;
                min-height: 50px
            }

            .light-theme .expect-to-gain .gain-items .gain-item .gain-content .gain-title {
                color: #1f1f23;
                font-family: "DM Sans";
                font-size: 24px;
                font-style: normal;
                font-weight: 600;
                line-height: 130%;
                letter-spacing: .12px;
                align-items: center;
                display: flex;
                margin-bottom: 14px;
                margin-top: 10px
            }

            .light-theme .expect-to-gain .gain-items .gain-item .gain-content .gain-text {
                font-family: "DM Sans",sans-serif;
                font-size: 15px;
                color: #37373c;
                line-height: 28px
            }

    .light-theme .expect-to-gain .cta-button {
        margin-top: 40px
    }

        .light-theme .expect-to-gain .cta-button .btn {
            background: #5ad876;
            border-radius: 54px;
            padding: 16px 36px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: "DM Sans",sans-serif;
            font-size: 16px;
            color: #1f1f23;
            text-decoration: none;
            box-shadow: 0 0 1px rgba(0,0,0,.05),0 4px 8px rgba(0,0,0,.1)
        }

            .light-theme .expect-to-gain .cta-button .btn img {
                width: 8.33px;
                height: 16px
            }

    .light-theme .expect-to-gain .background-circle {
        position: absolute;
        left: -160px;
        top: 325px;
        width: 182px;
        height: 182px;
        background: linear-gradient(180deg,#6c83ff 0,#6a5ac7 100%);
        border-radius: 50%;
        filter: blur(150px)
    }

    .light-theme .expect-to-gain .left-column {
        flex: 0 0 auto;
        position: relative
    }

    .light-theme .expect-to-gain .right-column {
        flex: 1 1 0%;
        overflow: hidden
    }

    .light-theme .expect-to-gain .section-header.fixed {
        position: fixed;
        top: 9.75rem;
        left: auto;
        width: auto;
        z-index: 10;
        height: 258px
    }

    .light-theme .expect-to-gain .section-header.bottom-fixed {
        position: absolute;
        bottom: 84px;
        left: 0;
        width: 100%
    }

.light-theme .sectionCTAServicesPage2 {
    padding: 64px 0;
    position: relative
}

    .light-theme .sectionCTAServicesPage2 .bg {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url(/wp-content/uploads/2024/10/cta-gradient-1.webp);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        max-height: 100%;
        max-width: 626px
    }

.light-theme .sectionCTAServicesPage2__wrapper {
    gap: 19px;
    display: flex;
    justify-content: start;
    align-items: center;
    align-self: stretch;
    padding: 24px 64px;
    border-radius: 24px;
    background: linear-gradient(97deg,#e9eef9 1.18%,#e5f0ee 90.48%);
    box-sizing: border-box;
    min-height: 455px
}

.light-theme .sectionCTAServicesPage2__content {
    max-width: 43%
}

.light-theme .sectionCTAServicesPage2__title2 {
    color: #1f1f23;
    text-align: left;
    font-family: "DM Sans",sans-serif;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 24px !important
}

.light-theme .sectionCTAServicesPage2__text {
    color: #1f1f23;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    line-height: 28px;
    letter-spacing: .16px;
    margin-bottom: 42px
}

.light-theme .sectionCTAServicesPage2__image.desc {
    position: absolute;
    right: 0;
    max-width: 459px;
    bottom: unset;
    display: flex
}

.light-theme .sectionCTAServicesPage2__image.mob {
    display: none
}

.light-theme .sectionCTAServicesPage2 .sectionCTAServicesPage2__wrapper:hover {
    cursor: pointer
}

    .light-theme .sectionCTAServicesPage2 .sectionCTAServicesPage2__wrapper:hover .btn_arrow_anime {
        background: #6de888
    }

        .light-theme .sectionCTAServicesPage2 .sectionCTAServicesPage2__wrapper:hover .btn_arrow_anime .arrow {
            width: 33px
        }

.light-theme .collaboration-process {
    padding: 64px 150px 100px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.light-theme .collaboration-process__container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 42px
}

.light-theme .collaboration-process__title {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 34px;
    line-height: 130%;
    letter-spacing: .005em;
    font-weight: 500
}

.light-theme .collaboration-process__steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    gap: 60px;
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto
}

.light-theme .collaboration-step {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 0 1px rgba(0,0,0,.05),0 4px 8px rgba(0,0,0,.1);
    align-self: start
}

.light-theme .collaboration-step__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
}

.light-theme .collaboration-step__number {
    color: #1f1f23;
    font-family: "DM Sans",sans-serif;
    font-size: 44px;
    letter-spacing: .005em;
    font-weight: 500
}

.light-theme .collaboration-step__text, .light-theme .collaboration-step__title {
    color: #37373c;
    font-family: "DM Sans",sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .01em;
    font-weight: 700
}

.light-theme .collaboration-step__text {
    font-size: 15px;
    font-weight: 400
}

.light-theme .collaboration-step__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px
}

.light-theme .collaboration-step--2 {
    margin-top: 64px
}

.light-theme .collaboration-step--3 {
    margin-top: 128px
}

.app_dev_services .feedback-columns {
    display: flex;
    gap: 60px
}

.app_dev_services .column {
    width: 50%
}

.app_dev_services .first-column .testemotianls-box, .app_dev_services .second-column .testemotianls-box {
    margin-bottom: 70px
}

.app_dev_services .testemotianls-box .comment {
    display: flex;
    flex-direction: column;
    padding: 32px;
    flex-wrap: wrap;
    align-items: start
}

.app_dev_services .testemotianls-box .comment-blockquote p {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 28px !important;
    letter-spacing: .02em !important;
    text-align: left;
    color: #37373c
}

.app_dev_services .testemotianls-box .comment-blockquote:before {
    content: none
}

.app_dev_services .testemotianls-box .comment-blockquote {
    position: relative;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .02em;
    text-align: left;
    padding-left: 0;
    display: initial;
    color: #37373c
}

.app_dev_services .author-svg {
    max-width: 72px
}

.app_dev_services .testemotianls-box .author {
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    letter-spacing: .02em;
    text-align: left;
    color: #18181d
}

.app_dev_services .testemotianls-box .author-comment {
    margin-bottom: 32px;
    max-width: 100%;
    flex: 0 0 100%
}

.app_dev_services .testemotianls-box .author-box {
    padding: 0;
    gap: 16px;
    width: 100%
}

    .app_dev_services .testemotianls-box .author-box svg {
        align-self: center;
        justify-self: end;
        margin-right: 0;
        margin-left: auto;
        min-width: 124px
    }

.app_dev_services .testemotianls-box .author-info {
    max-width: 200px
}

.app_dev_services .testemotianls-box .author-information {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .01em;
    text-align: left;
    color: #888
}

.app_dev_services .mobile-only {
    display: none !important
}

.worked h2 {
    margin-bottom: 43px
}

.worked .worked_box {
    padding: 36px 48px;
    background: #2b2b32;
    border-radius: 8px
}

    .worked .worked_box:nth-child(1) {
        order: 2
    }

    .worked .worked_box:nth-child(2) {
        order: 1
    }

    .worked .worked_box:nth-child(3) {
        order: 3
    }

    .worked .worked_box .image {
        max-width: 488px
    }

    .worked .worked_box:not(:last-child) {
        margin-bottom: 43px
    }

    .worked .worked_box .top {
        margin-bottom: 24px
    }

        .worked .worked_box .top img {
            margin-right: 10px
        }

        .worked .worked_box .top .name_project {
            display: flex;
            align-items: center
        }

        .worked .worked_box .top .location_project {
            font-family: "Open Sans",sans-serif;
            color: #babfc9
        }

        .worked .worked_box .top .industry, .worked .worked_box .top .location_project, .worked .worked_box a {
            font-weight: 600;
            font-size: 18px;
            line-height: 140%;
            display: flex;
            align-items: center
        }

        .worked .worked_box .name_project, .worked .worked_box .top .industry {
            font-family: "Open Sans",sans-serif;
            color: #babfc9;
            margin-right: 24px
        }

    .worked .worked_box .name_project {
        font-weight: 600;
        font-size: 18px;
        line-height: 140%;
        color: #e1e5ed;
        border-radius: 2px;
        background: #3f3f49;
        padding: 2px 10px
    }

    .worked .worked_box h3 {
        font-family: "Open Sans",sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 147%;
        letter-spacing: .015em;
        color: #cdcfd2;
        margin-bottom: 36px
    }

    .worked .worked_box a {
        color: #888;
        text-transform: uppercase;
        z-index: 1
    }

        .worked .worked_box a img {
            margin-left: 12px
        }

    .worked .worked_box .text {
        max-width: 532px;
        padding-right: 24px
    }

    .worked .worked_box:hover {
        background: #36363f
    }

        .worked .worked_box:hover a {
            color: #5ad876
        }

            .worked .worked_box:hover a img {
                filter: invert(67%) sepia(97%) saturate(438%) hue-rotate(35deg) brightness(157%) contrast(96%)
            }

.technology_section {
    padding: 100px 0
}

    .technology_section .technology_section--wrapper .content-head .title {
        color: #1f1f23;
        font-family: "DM Sans","Open Sans",sans-serif;
        font-size: 34px;
        font-weight: 500;
        line-height: 44.2px;
        letter-spacing: .005em;
        text-align: left;
        margin-bottom: 24px
    }

    .technology_section .technology_section--wrapper .content-head .desc {
        font-family: "DM Sans","Open Sans",sans-serif;
        color: #37373c;
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: .01em;
        text-align: left;
        margin-bottom: 42px
    }

    .technology_section .technology_section--wrapper .tech-row {
        text-align: center;
        padding: 0 50px
    }

        .technology_section .technology_section--wrapper .tech-row .tech-row-items {
            justify-content: space-between;
            align-items: flex-start;
            align-self: stretch;
            display: flex
        }

        .technology_section .technology_section--wrapper .tech-row:not(:last-child) {
            margin-bottom: 66px
        }

        .technology_section .technology_section--wrapper .tech-row .tech-label {
            margin-bottom: 42px;
            gap: 42px;
            display: flex;
            align-items: center;
            justify-content: start
        }

            .technology_section .technology_section--wrapper .tech-row .tech-label h3 {
                margin-bottom: 0;
                color: #1f1f23;
                font-family: "DM Sans","Open Sans",sans-serif;
                font-size: 24px;
                font-weight: 500;
                line-height: normal;
                letter-spacing: .39px
            }

        .technology_section .technology_section--wrapper .tech-row .tech {
            display: flex;
            width: 115px;
            flex-direction: column;
            align-items: center;
            gap: 12px
        }

        .technology_section .technology_section--wrapper .tech-row .tech-logo img {
            max-width: 100%
        }

        .technology_section .technology_section--wrapper .tech-row .tech-text {
            width: 100%;
            font-family: "DM Sans","Open Sans",sans-serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 24px;
            color: #4f4f56;
            text-align: center
        }

.hero-card-animation {
    margin-right: 57px
}

.card-container {
    position: relative;
    width: 462px;
    height: 268px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 16px
}

    .card-container .card-mask {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #fff;
        clip-path: inset(0)
    }

    .card-container .color-card {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0 0
    }

    .card-container .shine {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle,rgba(255,255,255,.8) 20%,transparent 70%);
        animation: shine 1s linear;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none
    }

.light-theme .achievements__title {
    margin-bottom: 0
}

@media (min-width:992px) {
    .light-theme .page-id-12970 .sectionCTAServicesPage2__image.desc {
        right: 60px
    }
}

@media (min-width:1024px) {
    .light-theme .features-section__content {
        max-width: 566px;
        margin-top: 40px
    }

    .light-theme .features-section__image {
        max-width: 501px
    }

    .light-theme .expect-to-gain .left-column {
        width: 489px
    }

    .light-theme .collaboration-process__title {
        width: 579px
    }

    .technology_section .technology_section--wrapper .content-head .desc {
        width: 736px
    }
}

@media (min-width:1025px) {
    .light-theme .features__title {
        width: 714px
    }
}

@media (min-width:1041px) {
    .light-theme .services .service-item__content {
        max-width: 50%
    }

    .light-theme .services .service-item__content__logos {
        gap: 31px
    }

    .light-theme .services .service-item__image {
        width: 472px;
        object-fit: cover;
        position: absolute;
        right: 0;
        height: 100%;
        max-height: max-content;
        max-width: max-content
    }

    .light-theme .page-id-12970 .service-item__image {
        width: 540px
    }
}

@media (min-width:1200px) {
    .hero-banner-target .hero_content--left h1 {
        padding-right: 30px
    }

    .light-theme .services .service-item__image {
        width: 513px;
        object-fit: cover;
        position: absolute;
        right: 0;
        max-height: max-content;
        max-width: max-content
    }

    .light-theme .sectionCTAServicesPage, .light-theme .sectionCTAServicesPage2 {
        padding: 64px 0
    }

    .light-theme .sectionCTAServicesPage2__image.desc {
        right: 50px
    }

    .app_dev_services .testemotianls-box .comment-blockquote p {
        font-size: 16px !important
    }

    .app_dev_services .testemotianls-box:first-child {
        margin-right: 16px
    }

    .app_dev_services .testemotianls-box:not(:first-child) {
        margin-left: 16px
    }

    .app_dev_services .testemotianls-box .author {
        font-size: 18px
    }

    .app_dev_services .testemotianls-box .author-information {
        max-width: 100%;
        font-size: 14px
    }

    .postid-13827 .light-theme .services .service-item__image {
        bottom: 0
    }
}

@media (min-width:1500px) {
    .hero-banner-target .container {
        align-items: center;
        min-height: 793px
    }

    .hero-banner-target .hero_content--left {
        align-self: center
    }
}

@media (max-width:1500px) {
    .light-theme .achievements {
        padding: 100px 10px 64px
    }

    .light-theme .features {
        padding: 80px 10px
    }

    .light-theme .cta-form, .light-theme .services {
        padding: 100px 12px
    }

    .light-theme .features-section {
        padding: 124px 12px 64px
    }

    .light-theme .trusted-companies {
        padding: 64px 12px
    }

    .light-theme .expect-to-gain {
        padding: 84px 12px
    }

    .light-theme .collaboration-process {
        padding: 64px 12px 100px
    }
}

@media (max-width:1216px) {
    .light-theme .achievements {
        background: #f5f7f8
    }

    .light-theme .features-section__row {
        gap: 42px
    }

    .light-theme .features-section__image {
        max-width: 301px
    }

    .light-theme .expect-to-gain .section-header.bottom-fixed {
        left: 24px !important
    }
}

@media (max-width:1200px) {
    .light-theme .sectionCTAServicesPage2__image.desc, .light-theme .sectionCTAServicesPage__image.desc {
        position: relative;
        right: 0;
        top: 0;
        max-width: 40%
    }

    .worked .worked_box {
        padding: 36px 24px
    }

        .worked .worked_box .text {
            margin-bottom: 24px
        }

    .hero-card-animation {
        margin-right: 0
    }
}

@media (max-width:1099px) {
    .hero-banner-target .hero_content--left {
        padding-right: 30px;
        margin: 0
    }
}

@media (max-width:1024px) {
    .light-theme .achievements {
        padding: 100px 10px 60px
    }

    .light-theme .features {
        padding: 60px 10px
    }

    .light-theme .features__item {
        width: calc(50% - 15px)
    }

    .light-theme .services {
        padding: 60px 12px
    }

        .light-theme .services .service-item {
            flex-direction: column-reverse;
            align-items: center;
            padding: 24px
        }

        .light-theme .services .service-item__content, .light-theme .services__description {
            max-width: 100%
        }

        .light-theme .services .service-item__image {
            width: 100%;
            margin-top: 0
        }

    .light-theme .cta-form {
        padding: 60px 12px
    }

    .light-theme .cta-form__content {
        flex-direction: column
    }

    .light-theme .cta-form__form {
        border-right: none;
        border-bottom: 1px solid #e0e2e3
    }

    .light-theme .cta-form__button {
        margin-top: 40px
    }

    .light-theme .features-section {
        padding: 60px 12px
    }

    .light-theme .features-section__title {
        width: 100%;
        margin-bottom: 24px;
        text-align: left
    }

    .light-theme .features-section__row {
        flex-direction: column;
        gap: 42px
    }

    .light-theme .features-section__description {
        max-width: 100%
    }

        .light-theme .features-section__description ul li:before {
            top: 9px;
            transform: none
        }

    .light-theme .features-section .group-2085662454 {
        max-width: 280px;
        width: 100%;
        height: 100%;
        margin: 0 auto
    }

    .light-theme .features-section .rectangle-34624143 {
        max-width: 280px
    }

    .light-theme .trusted-companies {
        padding: 60px 12px
    }

    .light-theme .sectionCTAServicesPage .bg {
        display: none
    }

    .light-theme .sectionCTAServicesPage__image.desc {
        position: absolute;
        right: -4px;
        top: 12px
    }

    .light-theme .sectionCTAServicesPage__wrapper {
        gap: 19px;
        display: flex;
        justify-content: start;
        align-items: center;
        align-self: stretch;
        padding: 39px 36px 0;
        border-radius: 24px;
        background: #e1e5ed
    }

    .light-theme .expect-to-gain {
        padding: 60px 12px
    }

        .light-theme .expect-to-gain .container {
            gap: 42px;
            flex-direction: column
        }

        .light-theme .expect-to-gain .section-header {
            display: flex;
            flex-direction: column
        }

            .light-theme .expect-to-gain .section-header .section-description {
                margin-bottom: 0;
                order: 3
            }

        .light-theme .expect-to-gain .scroll_to_top_form, .light-theme .expect-to-gain a, .light-theme .expect-to-gain button {
            order: 2;
            max-width: 100% !important;
            margin-bottom: 24px
        }

        .light-theme .expect-to-gain .gain-items .gain-item {
            gap: 12px
        }

            .light-theme .expect-to-gain .gain-items .gain-item .gain-number {
                max-width: 40px;
                max-height: 40px
            }

        .light-theme .expect-to-gain .left-column {
            width: 100%
        }

        .light-theme .expect-to-gain .section-header.fixed {
            position: relative !important
        }

        .light-theme .expect-to-gain .section-header.bottom-fixed {
            bottom: auto;
            position: relative
        }

    .light-theme .sectionCTAServicesPage2 .bg {
        display: none
    }

    .light-theme .sectionCTAServicesPage2__image.desc {
        position: absolute;
        right: -4px;
        top: 12px
    }

    .light-theme .sectionCTAServicesPage2__wrapper {
        gap: 19px;
        display: flex;
        justify-content: start;
        align-items: center;
        align-self: stretch;
        padding: 39px 36px 0;
        border-radius: 24px;
        background: #e1e5ed
    }

    .light-theme .collaboration-process {
        padding: 120px 12px 60px
    }

    .light-theme .collaboration-process__steps {
        grid-template-columns: 1fr
    }

    .light-theme .collaboration-step {
        margin-top: 0
    }

    .light-theme .collaboration-step--1, .light-theme .collaboration-step--2, .light-theme .collaboration-step--3 {
        grid-column: auto
    }
}

@media (max-width:991px) {
    .light-theme .pageSectionProcess {
        padding: 80px 0
    }

    .light-theme .pageSectionProcess__step {
        max-width: 100%
    }

        .light-theme .pageSectionProcess__step .pageSectionProcess__step--content.isEven {
            flex-direction: column-reverse
        }

        .light-theme .pageSectionProcess__step.section {
            padding-left: 50px;
            padding-top: 0
        }

    .light-theme .pageSectionProcess__step--content {
        flex-direction: column;
        gap: 24px
    }

    .light-theme .pageSectionProcess__step--content__left, .light-theme .pageSectionProcess__step--content__right {
        width: 100%
    }

    .light-theme .pageSectionProcess__step--title {
        text-align: left;
        font-size: 24px;
        line-height: 28px
    }

    .light-theme .pageSectionProcess__step--text {
        text-align: left
    }

    .light-theme .section:not(:last-child) {
        padding-bottom: 36px
    }

    .light-theme .sections {
        padding-top: 24px
    }

    .light-theme .page-progress-cont {
        left: 16px
    }

    .light-theme .sectionCTAServicesPage button, .light-theme .sectionCTAServicesPage2 button {
        max-width: initial !important
    }

    .light-theme .sectionCTAServicesPage__wrapper {
        gap: 19px;
        display: flex;
        justify-content: start;
        align-items: center;
        align-self: stretch;
        padding: 39px 36px 0;
        border-radius: 24px;
        background: #e1e5ed;
        flex-direction: column
    }

    .light-theme .sectionCTAServicesPage2__image.desc, .light-theme .sectionCTAServicesPage__image.desc {
        position: relative;
        right: 0;
        top: 0
    }

    .light-theme .sectionCTAServicesPage {
        padding: 64px 0
    }

    .light-theme .sectionCTAServicesPage__content {
        max-width: 100%
    }

    .light-theme .sectionCTAServicesPage__wrapper {
        max-width: 400px;
        margin: 0 auto
    }

    .light-theme .sectionCTAServicesPage2__wrapper {
        gap: 19px;
        display: flex;
        justify-content: start;
        align-items: center;
        align-self: stretch;
        padding: 39px 36px 0;
        border-radius: 24px;
        background: #e1e5ed;
        flex-direction: column
    }

    .light-theme .sectionCTAServicesPage2 {
        padding: 64px 0
    }

    .light-theme .sectionCTAServicesPage2__content {
        max-width: 100%
    }

    .light-theme .sectionCTAServicesPage2__wrapper {
        max-width: 600px;
        margin: 0 auto
    }
}

@media (max-width:870px) {
    .light-theme .achievements__content {
        flex-direction: column;
        gap: 36px
    }

    .light-theme .achievements__items .achievement-item, .light-theme .achievements__text-content {
        width: 100%
    }

    .light-theme .achievements__items {
        flex-direction: column;
        width: 100%;
        gap: 30px
    }

    .light-theme .features__title {
        margin: 0 auto 42px;
        text-align: left
    }

    .light-theme .features__image {
        margin: 0 auto 42px
    }

    .light-theme .features__subtitle {
        margin: 0 auto 48px;
        text-align: left
    }

    .light-theme .features__list {
        flex-direction: column;
        gap: 24px
    }

    .light-theme .features__item {
        width: 100%;
        padding: 24px
    }

    .light-theme .features__icon {
        margin-bottom: 22px
    }

    .light-theme .pageSectionProcess__title {
        text-align: left
    }

    .light-theme .pageSectionProcess__text {
        text-align: left;
        max-width: 100%
    }

    .light-theme .expect-to-gain .gain-items .gain-item .gain-content .gain-title {
        margin-bottom: 12px
    }
}

@media (max-width:816px) {
    .hero-banner-target .container {
        flex-direction: column;
        padding-top: 102px;
        padding-bottom: 40px;
        min-height: initial
    }

    .hero-banner-target .hero_content--left p {
        max-width: 100%;
        margin-bottom: 64px !important
    }

    .hero-banner-target .hero_content--left .hero-logos {
        display: none
    }

    .hero-banner-target .hero_content--right {
        max-width: 100%
    }

    .hero-banner-target .down-arrow {
        animation: bounce-mobile 1s ease-in-out infinite alternate
    }

    @keyframes bounce-mobile {
        0% {
            transform: translateX(-50%) translateY(0)
        }

        to {
            transform: translateX(-50%) translateY(2px)
        }
    }

    .hero-banner-target .contact-form {
        max-width: 100%
    }
}

@media (max-width:768px) {
    .hero-banner-target {
        padding: 50px 0 0
    }

    .light-theme .services {
        padding: 60px 12px
    }

        .light-theme .services .service-item {
            gap: 24px
        }

    .light-theme .trusted-companies__text p {
        width: 100%;
        height: auto
    }

    .light-theme .trusted-companies__description p {
        width: 100%
    }

    .light-theme .trusted-companies__text {
        float: none;
        width: 100%;
        margin-right: 0
    }

    .light-theme .trusted-companies__logo {
        width: calc(33.333% - 30px)
    }

    .light-theme .expect-to-gain .cta-button .btn {
        padding: 12px 24px;
        font-size: 14px
    }

    .light-theme .expect-to-gain .background-circle {
        left: 50%;
        transform: translateX(-50%);
        top: 250px;
        width: 150px;
        height: 150px
    }

    .app_dev_services .feedback-columns {
        flex-direction: column
    }

    .app_dev_services .column {
        width: 100%
    }

    .app_dev_services .testemotianls-box .comment {
        min-height: 100%;
        justify-content: space-between
    }

    .app_dev_services .testemotianls-box .author-comment {
        margin-bottom: 32px
    }

    .app_dev_services .testemotianls-box .author-info {
        max-width: 100%;
        margin: 0
    }

    .app_dev_services .testemotianls-box .author-information {
        margin: 0
    }

    .app_dev_services .mobile-only {
        display: block !important
    }

    .app_dev_services .desktop-only {
        display: none !important
    }

    .light-theme .second_title.h-2-title, .light-theme h2 {
        font-size: 28px;
        margin-bottom: 42px
    }
}

@media (max-width:680px) {
    .hero-banner-target .hero_content--left .top_title, .hero-banner-target .hero_content--left h1, .hero-banner-target .hero_content--left p {
        color: #333
    }

    .hero-banner-target .contact-form textarea {
        overflow: hidden
    }

    .light-theme .sectionCTAServicesPage__content {
        max-width: 100%
    }

    .light-theme .sectionCTAServicesPage__title2 {
        font-size: 32px
    }

    .light-theme .sectionCTAServicesPage__image.desc {
        display: none
    }

    .light-theme .sectionCTAServicesPage__image.mob {
        display: flex
    }

    .light-theme .sectionCTAServicesPage2__content {
        max-width: 100%
    }

    .light-theme .sectionCTAServicesPage2__title2 {
        font-size: 32px
    }

    .light-theme .sectionCTAServicesPage2__image.desc {
        display: none
    }

    .light-theme .sectionCTAServicesPage2__image.mob {
        display: flex
    }

    .worked .worked_box {
        flex-direction: column-reverse;
        padding: 24px
    }

        .worked .worked_box .image {
            margin-bottom: 30px;
            order: 1
        }

        .worked .worked_box .top {
            flex-wrap: wrap;
            margin-bottom: 0
        }

            .worked .worked_box .top > * {
                margin-bottom: 24px;
                margin-right: 24px
            }

        .worked .worked_box .name_project {
            font-size: 14px
        }

        .worked .worked_box h3 {
            font-size: 24px;
            line-height: 147%
        }

        .worked .worked_box a {
            font-size: 18px;
            line-height: 140%;
            align-self: start
        }

        .worked .worked_box .text {
            padding-right: 0;
            order: 2
        }

    .card-container, .card-container .card-mask svg {
        max-width: 100%;
        width: 100%;
        height: auto
    }
}

@media (max-width:550px) {
    .light-theme .cta-form__contact, .light-theme .cta-form__form {
        padding: 24px
    }

        .light-theme .cta-form__form::after {
            content: none
        }

    .worked .worked_box .text {
        margin-bottom: initial
    }
}

@media (max-width:480px) {
    .light-theme .trusted-companies {
        padding: 80px 0
    }

    .light-theme .trusted-companies__logo {
        width: calc(50% - 30px)
    }
}
