/*!
Theme Name: Steinpilz landing
Theme URI: http://underscores.me/
Author: Steinpilz
Author URI: https://stein-pilz.com/
Description: Steinpilz landing theme
Version: 1.0.0
*/

@import url("/wp-content/themes/steinpilz-landing/css/reset.css");
@import url("/wp-content/themes/steinpilz-landing/css/normalize.css");
@import url("/wp-content/themes/steinpilz-landing/fonts/maax/stylesheet.css");

:root {
    --body-color: #f3f4ed;

    --primary-color: #91b920;
    --secondary-color: #d5ff5e;
    --third-color: #b7ebf2;
    --fourth-color: #3e3e3e;
    --fifth-color: #484848;
    --dark-color: #2d2d2d;

    --color-font: #3e3e3e;
    --white-color: #fff;

    --primary-font-size: 25px;
    --primary-title-font-size: 75px;
    --secondary-title-font-size: 60px;
    --primary-btn-font-size: 21px;
    --items-title-font-size: 22px;
    --main-link-font-size: 15px;

    --font-famaly: "Maax";

    --container-size: 1371px;
    --container-size-lsm: 1319px;
    --container-size-sm: 1180px;
    --container-97: 97%;
    --container-footer: 1520px;

    --plyr-color-main: #91b920;
}

@media (max-width: 1500px) {
    :root {
        --primary-font-size: 22px;
        --primary-title-font-size: 60px;
        --secondary-title-font-size: 46px;
        --primary-btn-font-size: 18px;
        --items-title-font-size: 19px;
        --main-link-font-size: 15px;

        --container-size: 1371px;
        --container-size-lsm: 1319px;
        --container-size-sm: 926px;
        --container-97: 97%;
        --container-footer: 1520px;
    }
}

@media (max-width: 1169px) {
    :root {
        --primary-font-size: 18px;
        --large-title-font-size: 35px;
        --primary-title-font-size: 35px;
        --primary-btn-font-size: 16px;
        --items-title-font-size: 18px;
        --main-link-font-size: 14px;

        --secondary-title-font-size: 27px;
    }
}

@media (max-width: 710px) {
    :root {
        --primary-font-size: 18px;
        --large-title-font-size: 30px;
        --primary-title-font-size: 30px;
        --primary-btn-font-size: 14px;
        --items-title-font-size: 16px;
        --main-link-font-size: 12px;

        --container-97: 95%;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 3px;
}

::-webkit-scrollbar-button {
    background-color: var(--primary-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
}

::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background-color: var(--primary-color);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body {
    color: var(--color-font);
    box-sizing: border-box;
    font-family: var(--font-famaly);
    font-size: var(--primary-font-size);
    background: var(--body-color);
    /* max-width: 2300px; */
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: 0.2s;
    color: var(--color-font);
}

em {
    font-style: italic;
}

h2 {
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h3 {
    font-weight: 800;
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

b,
strong {
    font-weight: 700;
}

textarea:focus::placeholder,
input:focus::placeholder {
    color: transparent !important;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
    color: transparent !important;
}

textarea:focus:-moz-placeholder,
input:focus:-moz-placeholder {
    color: transparent !important;
}

/* FF 4-18 */

textarea:focus::-moz-placeholder,
input:focus::-moz-placeholder {
    color: transparent !important;
}

/* FF 19+ */

textarea:focus:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
    color: transparent !important;
}

/* IE 10+ */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body.overflow-hidden {
    overflow: hidden !important;
}

.container {
    max-width: var(--container-size);
    width: 100%;
    margin: 0 auto;
}

.container-sm {
    max-width: var(--container-size-sm);
    width: 100%;
    margin: 0 auto;
}

.container-lsm {
    max-width: var(--container-size-lsm);
    width: 100%;
    margin: 0 auto;
}

.container-97 {
    max-width: var(--container-97);
    width: 100%;
    margin: 0 auto;
}

.container-footer {
    max-width: var(--container-97);
    width: 100%;
    margin: 0 auto;
}

.mb {
    margin-bottom: 130px;
}

.cmb {
    margin-bottom: 48px;
}

.cmb:last-child {
    margin-bottom: 0;
}

.cover__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contain__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-btn-wrapper {
    position: relative;
    display: inline-flex;
}

.main-btn {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: var(--primary-btn-font-size);
    display: inline-flex;
    height: 70px;
    padding: 25px 32px 23px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 50px;
    transform: translate(0, 0);
    transition: 0.2s;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.main-btn-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--fourth-color);
    z-index: 1;
    opacity: 0;
    visibility: visible;
    transition: 0.2s;
}

.main-btn-shadow.dark {
    background: #2d2d2d;
}

.main-btn__two {
    margin-left: 10px;
}

.main-btn.main-btn__tr {
    border-radius: 50px;
    box-shadow: 0 0 0 2px var(--fourth-color) inset;
    color: var(--color-font);
    background: transparent;
}

.main-btn.main-btn__wt {
    border-radius: 50px;
    box-shadow: 0 0 0 2px var(--fourth-color) inset;
    color: var(--color-font);
    background: var(--white-color);
}

.main-btn.main-btn-gray {
    background: var(--fourth-color);
}

.main-btn-center {
    display: flex;
    justify-content: center;
}

.btn-m-t {
    margin-top: 64px;
}

.btn-center {
    display: flex;
    justify-content: center;
}

.main-title {
    font-size: var(--primary-title-font-size);
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: -0.64px;
    margin-bottom: 16px;
}

.main-title strong {
    color: var(--primary-color);
}

.main-headline-text {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.main-text {
    font-size: var(--primary-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.016px;
}

.main-text.text-d-m {
    margin-bottom: 24px;
}

.main-text ul,
.main-text ol {
    padding-left: 20px;
}

.main-text ul li {
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.main-text ul li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 4px;
    background: url(../img/check-regular.svg) no-repeat center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.main-text ol li {
    list-style: decimal;
}

.main-text ul,
.main-text p {
    margin-bottom: 30px;
}

.main-text ul li::marker {
    color: var(--color-font);
}

.main-text ul:last-child,
.main-text p:last-child {
    margin-bottom: 0;
}

.main-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: var(--main-link-font-size);
    font-style: normal;
    font-weight: 600;
    line-height: 146%;
    letter-spacing: -0.015px;
}

.main-link svg {
    margin-left: 6px;
}

.theme-slider-navs {
    display: flex;
    justify-content: center;
    position: relative;
}

.theme-arrows {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.theme-arrow-prev,
.theme-arrow-next {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.theme-arrow-prev svg,
.theme-arrow-next svg {
    width: 100%;
}

.theme-arrow-prev svg circle,
.theme-arrow-next svg circle {
    fill: var(--primary-color);
}

.theme-pagination-under-slider {
    position: relative;
    z-index: 2;
}

.theme-pagination-under-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Header */

.site-header {
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container-97);
    max-width: 1920px;
    margin: 0 auto;
    padding: 35px 0;
}

.site-header__side {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    margin-right: 50px;
}

.site-header__buttons {
    display: flex;
}

.lang-burger {
    margin-right: 31px;
}

/* Header end */

/* Lang end */

.lang {
    position: relative;
    padding: 12px 0;
    font-weight: 500;
}

.header-lang-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.header-lang-trigger svg {
    margin-right: 8px;
}

.header-lang-list {
    position: absolute;
    left: -11px;
    top: 100%;
    border-radius: 10px;
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    padding: 16px 31px 16px 34px;
    opacity: 0;
    visibility: 0;
    transition: 0.2s;
    z-index: 10;
}

.lang-item {
    position: relative;
}

.lang-item.lang-item-de {
    margin-bottom: 16px;
}

.lang-item.current-lang {
    position: relative;
}

.lang-item.current-lang::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 5px;
    left: -21px;
}

.header-lang.is-active .header-lang-list {
    opacity: 1;
    visibility: visible;
}

/* Lang end */

/* menu */

.header-nav {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding: 16px 35px;
    padding: 16px 17.5px 16px 17.5px;
    position: relative;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.header-link.header-link-1 .header-underline_1 {
    bottom: -10px;
}

.header-link.header-link-2 .header-underline_2 {
    bottom: 2px;
}

.header-link.header-link-3 .header-underline_3 {
    bottom: -18px;
}

.header-link.header-link-4 .header-underline_4.de {
    bottom: -10px;
}

.header-underline_1,
.header-underline_2,
.header-underline_3,
.header-underline_4 {
    display: flex;
    justify-content: center;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.header-underline {
    display: flex;
}

.header-nav .main-btn-wrapper,
.main-navigation__close-menu {
    display: none;
}

.header-nav__layer {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 19;
}

.burger {
    display: none;
}

.lang-burger {
    display: flex;
    align-items: center;
    justify-self: center;
}

/* menu end */

/* menu animaniton */

.header-link .nav-anim-1 {
    stroke-dasharray: 160;
    stroke-dashoffset: -160;
    /* Start with 0 */
}

@keyframes nav-anim {
    to {
        stroke-dashoffset: 0;
    }
}

.header-link .nav-anim-2 {
    stroke-dasharray: 320;
    stroke-dashoffset: -320;
    /* Start with 0 */
}

.header-link .nav-anim-2.de {
    stroke-dasharray: 452;
    stroke-dashoffset: -452;
    /* Start with 0 */
}

.header-link .nav-anim-3 {
    stroke-dasharray: 320;
    stroke-dashoffset: -320;
    /* Start with 0 */
}

.header-link .nav-anim-4 {
    stroke-dasharray: 320;
    stroke-dashoffset: -320;
    /* Start with 0 */
}

/* Стили только для Safari */
.is-safari .header-link .nav-anim-1 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    /* Начальное состояние */
}

.is-safari .header-link .nav-anim-2 {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
}

.is-safari .header-link .nav-anim-2.de {
    stroke-dasharray: 452;
    stroke-dashoffset: -452;
    /* Start with 0 */
}

.is-safari .header-link .nav-anim-3 {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
}

.is-safari .header-link .nav-anim-4 {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
}

/* Keyframes для Safari */
@keyframes nav-anim-safari {
    from {
        stroke-dashoffset: 160;
        /* Начальное состояние */
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* menu animaniton end */

/* floater */

.site-floater {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 920px;
    width: 100%;
    height: 110px;
    border-radius: 100px;
    border: 4px solid #3e3e3e;
    background: var(--grey, #f3f4ed);
    z-index: 10;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 20px 22px;
}

.site-floater__side {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-floater.nav-up {
    bottom: 31px;
    transition: 0.5s;
}

.site-floater.nav-down {
    bottom: -150px;
    transition: 0.5s;
}

.site-floater__img {
    margin-right: 18px;
}

.site-floater__text {
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    transition: 0.5s;
}

.site-floater.bottom.nav-up,
.site-floater.bottom.nav-down {
    position: absolute;
    top: -250px;
    padding: 50px 54px 50px 52px;
    height: 201px;
    max-width: 1340px;
    width: 100%;
    background: var(--secondary-color);
    transition: 0.5s;
}

.site-floater.bottom .site-floater__text {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.floater_img_max {
    display: none;
}

.site-floater.bottom .floater_img {
    display: none;
}

.site-floater.bottom .floater_img_max {
    display: flex;
    margin-right: 30px;
}

.site-floater.bottom .site-floater__img {
    margin-right: 30px;
}

.site-floater.bottom .main-btn {
    font-size: 30px;
    font-weight: 500;
    padding: 26px 40px;
    height: auto;
}

/* floater end */

/* hero */

.hero {
    margin-top: 121px;
}

.hero__title {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 90px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero__title span {
    display: inline-block;
    position: relative;
}

.hero__title span svg {
    position: absolute;
    left: -25px;
    top: -11px;
    z-index: -1;
}

.hero-product .hero__title span svg {
    width: 298px;
    height: 58px;
    transform: rotate(-1.073deg);
    left: -75px;
    top: 22px;
}

@media screen and (max-width: 1169px) {
    .hero-product .hero__title span svg {
        width: 170px;
        left: -31px;
        top: 2px;
    }
}

@media screen and (max-width: 480px) {
    .hero-product .hero__title span svg {
        width: 150px;
        left: -15px;
        top: 0;
    }
}

.hero__title .nav-anim-2 {
    stroke-dasharray: 1440;
    stroke-dashoffset: -1440;
    /* Start with 0 */
    animation: nav-anim 1s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    animation-delay: 0.7s;
}

.hero__text {
    max-width: 812px;
    width: 100%;
    margin: 50px auto;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.hero__btns {
    display: flex;
    justify-content: center;
}

/* hero end */

/* about-us */

.about-us {
    margin-top: 100px;
    margin-bottom: 175px;
    position: relative;
}

@media screen and (max-width: 1169px) {
    .about-us {
        margin-bottom: 57px;
    }
}

.about-us-image {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.about-us-image svg {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1169px) {
    .about-us-image {
        max-width: 600px;
    }
}

.about-us__svg {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

@media screen and (max-width: 1169px) {
    .about-us__svg {
        margin: 10px auto;
    }
}

@media screen and (max-width: 710px) {
    .about-us__svg svg {
        width: 100%;
        height: 90px;
    }
}

.plyr,
.block-without-video {
    max-width: 926px !important;
    width: 100%;
    height: 520px;
    border-radius: 30px;
    overflow: hidden !important;
    margin: 0 auto;
    margin-top: 186px;
}

.plyr__controls {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    width: 130px;
    height: 130px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: #fff;
    transition: 0.2s;
}

.plyr__control--overlaid svg {
    fill: var(--primary-color) !important;
    width: 60px !important;
    height: 60px !important;
    left: 4px !important;
    position: relative !important;
    transition: 0.2s;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover;
}


.big-green-line {
    position: absolute;
    top: -80px;
    left: -20px;
    z-index: -1;
}

.big-green-line-two {
    position: absolute;
    top: 342px;
    left: -240px;
}

.big-green-line-two-arr {
    position: absolute;
    top: 1091px;
    left: -229px;
}

.big-green-line-three {
    position: absolute;
    top: 835px;
    left: 0px;
}

.big-green-line-last {
    position: absolute;
    top: 165px;
    left: 50%;
    transform: translateX(-50%);
}

/* about-us end */

/* successfully developing */

.successfully-developing {
    margin-bottom: 130px;
    position: relative;
}

.successfully-developing__title {
    max-width: 1100px;
    margin: 0 auto;
}

/* successfully developing end */

/* we-do-it */

.we-do-it {
    margin-bottom: 175px;
    position: relative;
}

.we-do-it__title {
    position: relative;
}

.we-do-it__text {
    max-width: 969px;
    width: 100%;
    margin: 50px auto;
}

.we-do-it__svg {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

/* we-do-it end */


/* bg-items */

.bg-items {
    position: relative;
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 110px 0 220px 0;
    z-index: 2;
}

.bg-items__text {
    margin: 40px 0;
}

.bg-items__rows {
    margin-top: 142px;
}

.bg-items__top-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bg-items__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 178px;
    position: relative;
}

.bg-items__row:nth-child(even) {
    flex-direction: row-reverse;
}

.bg-items__row:last-child {
    margin-bottom: 0;
}

.bg-items__side {
    max-width: 654px;
    width: 100%;
}

.bg-items__img {
    max-width: 631px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.bg-items__row:nth-child(even) .bg-items__img {
    justify-content: flex-start;
}

.bg-items__side-title {
    font-size: var(--secondary-title-font-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 70px;
}

.bg-items__side-text {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* bg-items-end */

.how-it-works {
    margin-bottom: 50px;
}

.dark-bg {
    position: relative;
    background: var(--fourth-color);
}

.white-top-bg {
    position: absolute;
    background: var(--body-color);
    height: 290px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-items__top.top-it-experts__top {
    max-width: 1030px;
    width: 100%;
    margin: 0 auto 47px auto;
}

.top-it-experts .bg-items {
    background: var(--third-color);
}

.top-it-experts {
    padding-bottom: 170px;
}

.top-it-experts__employees {
    margin-bottom: 54px;
    user-select: none;
}

.top-it-experts__employees-2 {
    display: none;
}

.top-it-experts__employee {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

.top-it-experts__text {
    max-width: 858px;
    width: 100%;
    margin: 0 auto 50px auto;
}

.top-it-experts__btn {
    margin-bottom: 172px;
}

.top-it-experts__positions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto 56px auto;
}

.top-it-experts__positions-item {
    display: flex;
    height: 40px;
    padding: 24px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #edfdff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    user-select: none;
}

.deliver-effective {
    background: var(--fourth-color);
    padding-bottom: 162px;
    overflow: hidden;
}

.deliver-effective__btn a {
    color: #3e3e3e;
    background: #d5ff5e;
}

.deliver-effective__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.deliver-effective__arrows {
    display: flex;
    align-items: center;
}

.deliver-effective__items {
    margin-bottom: 60px;
    overflow: visible !important;
}

.deliver-effective__title {
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 120%;
    color: #d5ff5e;
    margin-bottom: 110px;
}

.deliver-effective__item {
    color: #ffffff;
    display: flex;
    height: auto !important;
}

.deliver-effective__item-img {
    min-width: 340px;
    max-width: 340px;
    height: auto;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.deliver-effective__item-img.adaptive {
    display: none;
}

.deliver-effective__item-img img,
.deliver-effective__item-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deliver-effective__item-l {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
    background: #2d2d2d;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #eaede1;
}

.deliver-effective__item-text {
    margin-bottom: 40px;
}

.deliver-effective__item-text strong {
    color: #d5ff5e;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
}

.deliver-effective__item-text p:not(:last-child) {
    margin-bottom: 30px;
}

.deliver-effective__item-bot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.deliver-effective__item-bot-l-n {
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    color: #d5ff5e;
}

.deliver-effective__item-bot-l-p,
.deliver-effective__item-bot-l-l {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #eaede1;
    opacity: 0.3;
    transition: 0.1;
}

.deliver-effective-prev {
    margin-right: 10px;
}

.deliver-effective-prev,
.deliver-effective-next {
    cursor: pointer;
    user-select: none;
}

.deliver-effective-prev svg path,
.deliver-effective-next svg path,
.deliver-effective-prev svg rect,
.deliver-effective-next svg rect {
    transition: 0.2s;
}

.deliver-effective-next.swiper-button-disabled,
.deliver-effective-prev.swiper-button-disabled {
    opacity: 0.7;
    cursor: default;
}

.light-gray-bg {
    background: var(--fifth-color);
    padding: 113px 0;
}

.partners__item {
    margin-right: 60px;
}

#partners-infiniteslide {
    margin-bottom: 96px;
}

.partners__items-mobile {
    display: none;
}

.partners__items {
    display: flex;
}

/* slide */

.our-services {
    padding: 170px 0;
    overflow: hidden;
}

.our-services__slider.swiper {
    overflow: visible;
}

.our-services__item-img {
    width: 100%;
    height: 200px;
    margin-bottom: 52px;
    user-select: none;
}

.our-services__item-img img {
    height: 100%;
    object-fit: contain;
}

.our-services__slider .our-services__item {
    height: auto;
}

.our-services__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 46px 40px 56px 40px;
    border-radius: 20px;
}

.our-services__item-title {
    min-height: 108px;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
}

.our-services__item-text {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 35px */
}

.our-services__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.our-services__title {
    color: var(--body-color);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.our-services__arrows {
    display: flex;
    align-items: flex-end;
}

.our-services-button-prev {
    margin-right: 10px;
}

.our-services-button-prev,
.our-services-button-next {
    cursor: pointer;
    user-select: none;
}

.our-services-button-prev svg path,
.our-services-button-next svg path,
.our-services-button-prev svg rect,
.our-services-button-next svg rect {
    transition: 0.2s;
}

.our-services-button-next.swiper-button-disabled,
.our-services-button-prev.swiper-button-disabled {
    opacity: 0.7;
    cursor: default;
}

.price-block {
    position: relative;
}

.price-block .bg-items {
    position: relative;
    z-index: 2;
}

.price-block .price-block__w-layer {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 490px;
    background: var(--body-color);
}

.price-block {
    margin-bottom: 40px;
}

.our-success {
    margin-bottom: 180px;
}

.accordion__title.main-title {
    text-align: center;
}

.our-success .bg-items {
    background: var(--third-color);
    padding: 125px 0 120px 0;
}

.our-success .our-success__top .main-title {
    margin-bottom: 40px;
}

.our-success__subtitle {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    max-width: 1113px;
    margin: 0 auto;
}

.accordion__title {}

.accordion .container-faq {
    max-width: 1340px;
    margin: 0 auto;
}

.accordion__items {
    /* margin: 53px 0 421px; */
    margin: 53px 0;
}

.accordion__items .accordion__item {
    border-radius: 25px;
    position: relative;
    transition: 0.2s;
    overflow: hidden;
    user-select: none;
}

.accordion__items .accordion__item.active {
    background: rgba(213, 255, 94, 1);
    position: relative;
    margin-bottom: 20px;
}

.accordion__items .accordion__item .accordion__item-num {
    margin-right: 5px;
}

.accordion__items .accordion__item .accordion__item:last-child {
    margin-bottom: 0;
}

.accordion__items .accordion__item .accordion__item-img {
    display: flex;
    margin-right: 26px;
    width: 60px;
}

.accordion__items .accordion__item .accordion__item-img img {
    width: 100%;
}

.accordion__items .accordion__item .accordion__item-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 40px;
}

.accordion__items .accordion__item .accordion__item-top-wrapper.active {
    padding-bottom: 0;
}

.accordion__items .accordion__item .accordion__item-top-wrapper .accordion__item-top {
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.024px;
    width: 90%;
}

.accordion__items .accordion__item .accordion__item-top-wrapper .accordion__item-top-arr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transform: rotate(0deg);
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
}

.accordion__items .accordion__item .accordion__item-top-wrapper .accordion__item-top-arr svg {
    transition: 0.2s;
}

.accordion__items .accordion__item .accordion__item-top-wrapper.active .accordion__item-top-arr svg {
    transform: rotate(47deg);
}

.accordion__items .accordion__item .accordion__item-top-wrapper.active .accordion__item-top {
    color: #3e3e3e;
}

.accordion__items .accordion__item .accordion__item-l-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    text-align: left;
}

.accordion__items .accordion__item .accordion__item-more {
    padding: 0 44px 0 44px;
    padding-top: 0;
    transition: 0.5s;
    height: 0;
    opacity: 0;
    visibility: hidden;
    width: 1075px;
    z-index: 2;
}

.accordion__items .accordion__item .accordion__item-more.active {
    padding: 15px 44px 44px 44px;
    height: auto;
    opacity: 1;
    visibility: visible;
    border-radius: 0px 0px 10px 0px;
}

@media (max-width: 1169px) {

    .accordion__items .accordion__item,
    .accordion__items .accordion__item .container {
        width: 100%;
    }

    .accordion__items .accordion__item .accordion__item-more {
        width: 100%;
    }
}

/*# sourceMappingURL=accordion.css.map */

.site-footer {
    position: relative;
    margin-top: 421px;
}

.footer-lang-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
}

.footer-lang-trigger svg {
    margin-right: 8px;
}

.footer-lang-trigger svg path {
    transition: 0.2s;
}

.footer-lang-list {
    position: absolute;
    left: -11px;
    top: 100%;
    border-radius: 10px;
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    padding: 16px 31px 16px 34px;
    opacity: 0;
    visibility: 0;
    transition: 0.2s;
}

.footer-lang.is-active .footer-lang-list {
    opacity: 1;
    visibility: visible;
}

.site-footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
    background: #3e3e3e;
    padding: 36px 52px 36px 37px;
    margin-bottom: 50px;
}

.site-footer__row-l {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 40px;
}

.footer-logo svg path {
    transition: 0.2s;
}

.site-footer__row-r {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px;
}

.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-nav ul li {
    margin-right: 40px;
}

.footer-nav ul li:last-child {
    margin-right: 0;
}

.footer-nav ul li a {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.2s;
}

@media screen and (max-width: 1580px) {
    .footer-nav ul li {
        margin-right: 30px;
    }

    .footer-nav ul li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1400px) {
    .footer-nav ul li {
        margin-right: 20px;
    }

    .footer-nav ul li a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-nav ul li {
        margin-right: 16px;
    }

    .footer-nav ul li a {
        font-size: 14px;
    }
}


.footer-nav-line {
    width: 2px;
    height: 17px;
    background: #6a6a6a;
    margin: 0 50px;
}

.footer-nav-social svg path {
    transition: 0.2s;
}

.footer-nav-social {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 1169px) {
    .footer-nav-social {
        gap: 20px;
    }
}

.copyright-row {
    color: #a9a9a9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 49px;
}

.copyright-nav ul {
    display: flex;
    align-items: center;
}

.copyright-nav ul li {
    margin-right: 30px;
}

.copyright-nav ul li:last-child {
    margin-right: 0;
}

.copyright-nav ul li a {
    color: #a9a9a9;
    transition: 0.2s;
}

.copyright-row__top {
    margin-bottom: 10px;
}

.our-services-pagination,
.partners__items-mobile-bottom {
    display: none;
}

.lang.mobile {
    display: none;
}

.scrollup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #656565;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    z-index: 10;
    transition: 0.2s;
    cursor: pointer;
}

.scrollup.active {
    opacity: 0.3;
}

.header-link {
    cursor: pointer;
}

.plyr:hover .plyr__controls {
    opacity: 1;
    visibility: visible;
}

.plyr__control--overlaid:hover svg {
    fill: var(--white-color) !important;
}

.svg-image path.path-animate {
    fill-opacity: 1;
    /* Заливка сразу видна */
    stroke: #3e3e3e;
    /* Цвет обводки */

    /* Толщина обводки */
    overflow: visible;
}

#svg1 {
    stroke-width: 7;
}

#svg2 {
    /* stroke-width: 4; */
}

.svg-image path.path-animate.small-scale {
    transform: scale(0.9);
}

.svg-image path.path-animate-two.small-scale {
    transform: scale(0.8);
}

#trigger1 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -30px;
}

#trigger2 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -100px;
}

#trigger3 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -450px;
    left: 100px;
}

#svg3 {
    position: absolute;
    top: -100px;
    right: 0;
}

@media screen and (max-width: 1169px) {
    #svg3 {
        display: none;
    }
}

#trigger4 {
    width: 100px;
    height: 2px;
}

#trigger5 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -250px;
}

#trigger6,
#trigger7,
#trigger8,
#trigger9,
#trigger10,
#trigger11 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -550px;
}

#trigger12,
#trigger13,
#trigger14 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -550px;
}

#trigger15,
#trigger16,
#trigger17,
#trigger18 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -550px;
}

#trigger19 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -550px;
}

#trigger20 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -520px;
}

#trigger21 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -250px;
}

#trigger22 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: 500px;
}

#trigger23 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: 0px;
}

#trigger24 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: -200px;
}

@media (max-width: 1169px) {
    #trigger24 {
        top: 0;
    }
}

@media (max-width: 500px) {
    #trigger24 {
        top: -150px;
    }
}

#trigger25 {
    width: 100px;
    height: 2px;
    position: absolute;
    top: 300px;
}

@media (max-width: 1169px) {
    #trigger25 {
        top: 450px;
    }
}

@media (max-width: 710px) {
    #trigger25 {
        top: 550px;
    }
}

@media (min-width: 1169px) {
    .header-link:hover .nav-anim-1 {
        animation: nav-anim 0.75s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    .header-link:hover .nav-anim-2 {
        animation: nav-anim 1s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    .header-link:hover .nav-anim-3 {
        animation: nav-anim 1s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    .header-link:hover .nav-anim-4 {
        animation: nav-anim 1s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    /* Анимации только для Safari */
    .is-safari .header-link:hover .nav-anim-1 {
        animation: nav-anim-safari 0.75s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    .is-safari .header-link:hover .nav-anim-2,
    .is-safari .header-link:hover .nav-anim-3,
    .is-safari .header-link:hover .nav-anim-4 {
        animation: nav-anim-safari 1s cubic-bezier(0.08, 0.69, 0.1, 1) alternate forwards;
    }

    .scrollup.active:hover {
        opacity: 1;
    }

    .main-btn-wrapper:hover .main-btn {
        transform: translate(-10px, -10px);
    }

    .main-btn-wrapper:hover .main-btn-shadow {
        opacity: 1;
        visibility: visible;
    }

    .main-btn-wrapper:hover .main-btn.main-btn__tr {
        background: var(--primary-color);
        color: var(--white-color);
        box-shadow: none;
    }

    .main-btn-wrapper:hover .main-btn.wh-hover {
        background: var(--white-color);
        color: var(--color-font);
        box-shadow: none;
    }

    .main-btn-wrapper:hover .main-btn.green-hover {
        background: var(--secondary-color);
        color: var(--color-font);
        box-shadow: none;
    }

    .main-btn-wrapper:hover .main-btn.green-d-hover {
        background: var(--primary-color);
        color: var(--white-color);
        box-shadow: none;
    }

    .site-floater.bottom .main-btn-wrapper:hover .main-btn.green-d-hover {
        background: var(--white-color);
        color: var(--color-font);
    }

    .deliver-effective__hover-block a:hover {
        color: var(--secondary-color);
        opacity: 1;
    }

    .our-services-button-prev:hover svg rect,
    .our-services-button-next:hover svg rect {
        fill: #787878;
    }

    /* .our-services-button-prev:hover svg path,
  .our-services-button-next:hover svg path {
    fill: var(--fourth-color);
  } */
    .our-services-button-next.swiper-button-disabled:hover svg rect,
    .our-services-button-prev.swiper-button-disabled:hover svg rect {
        fill: #656565;
    }

    .our-services-button-next.swiper-button-disabled:hover svg path,
    .our-services-button-prev.swiper-button-disabled:hover svg path {
        fill: #eaede1;
    }

    .site-floater:hover {
        background: var(--white-color);
    }

    .accordion__items .accordion__item:hover {
        background: rgba(213, 255, 94, 1);
        position: relative;
    }

    .footer-nav ul li a:hover {
        color: #d5ff5e;
    }

    .footer-nav-social svg:hover path {
        fill: #d5ff5e;
    }
    
    .footer-nav-social .footer-nav-social__instagram svg:hover path {
        fill: #3E3E3E;
    }
    .footer-nav-social .footer-nav-social__instagram svg:hover path:first-child {
        fill: #d5ff5e;
    }

    .copyright-nav ul li a:hover {
        text-decoration: underline;
    }

    .header-lang-trigger:hover {
        color: var(--primary-color);
    }

    .footer-lang-trigger:hover {
        color: var(--secondary-color);
    }

    .footer-lang-trigger:hover svg path {
        fill: var(--secondary-color);
    }

    .footer-logo:hover svg path {
        fill: var(--secondary-color);
    }

    a.deliver-effective__item-bot-l-l:hover {
        opacity: 1;
    }
}

@media (max-width: 1580px) {
    .accordion .container-faq {
        width: 90%;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        width: 90%;
    }

    .container-footer {
        width: 90%;
    }
}

@media (max-width: 1650px) {

    .header-link,
    .header-lang-trigger {
        font-size: 18px;
    }

    .header-link {
        padding: 16px 12px;
    }
}

@media (max-width: 1500px) {
    .hero__title {
        font-size: 76px;
        max-width: 900px;
    }

    .header-link {
        padding: 16px 10px;
    }

    .hero__title span svg {
        max-width: 477px;
    }

    .hero__text {
        font-size: 22px;
    }

    .video-image {
        right: 0;
    }

    .bg-items__top-img {
        max-width: 926px;
        margin: 0 auto;
    }

    .our-success .bg-items__top-img {
        max-width: 680px;
    }

    .successfully-developing__svg svg {
        width: 100%;
        height: auto;
    }

    .we-do-it__svg.we-do-it__svg2 img,
    .bg-items__top-img img,
    .bg-items__top-img img {
        width: 100%;
    }

    .bg-items__side-text {
        font-size: 22px;
    }

    .bg-items__side-title {
        margin-bottom: 50px;
    }

    .bg-items__img {
        max-width: 450px;
    }

    .bg-items__img img {
        width: 100%;
    }

    .top-it-experts__employee {
        width: 120px;
        height: 120px;
    }

    /* .deliver-effective__text, */
    .deliver-effective__btn {
        width: 95%;
    }

    .container {
        width: 90%;
    }

    .our-services__item-img {
        height: 140px;
        margin-bottom: 40px;
    }

    .our-services__item-title {
        min-height: 92px;
        font-size: 38px;
    }

    .our-services__item-text {
        font-size: 22px;
    }

    .site-floater {
        max-width: 860px;
        width: 100%;
        height: 90px;
        padding: 14px 24px 14px 22px;
    }

    .main-btn {
        height: 54px;
        padding: 18px 32px 18px 32px;
    }

    .site-floater__img {
        height: 54px;
    }

    .site-floater__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .site-floater__text {
        font-size: 22px;
    }

    .scrollup {
        width: 60px;
        height: 60px;
    }

    .plyr--full-ui.plyr--video .plyr__control--overlaid {
        width: 90px;
        height: 90px;
    }

    .plyr__control--overlaid svg {
        width: 40px !important;
        height: 40px !important;
    }

    .our-services__title {
        font-size: 52px;
    }

    .deliver-effective-prev,
    .deliver-effective-next,
    .our-services-button-prev,
    .our-services-button-next {
        width: 60px;
    }

    .deliver-effective-prev svg,
    .deliver-effective-next svg,
    .our-services-button-prev svg,
    .our-services-button-next svg {
        width: 100%;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        padding: 34px 54px 34px 52px;
        height: 160px;
    }

    .site-floater.bottom.nav-up .site-floater__img,
    .site-floater.bottom.nav-down .site-floater__img {
        height: 84px;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        top: -220px;
    }

    .deliver-effective__title {
        font-size: 70px;
    }

    .big-green-line-last {
        top: 128px;
        width: 650px;
    }
}

@media (max-width: 1460px) {
    .container-lsm {
        width: 90%;
    }

    #trigger21 {
        top: -100px;
    }

    #trigger22 {
        top: 350px;
    }

    #svg20 .path-animate-two,
    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 16px;
    }

    #trigger23 {
        top: 250px;
    }

    .big-green-line-two {
        left: -260px;
    }

    .big-green-line-two-arr {
        left: -250px;
    }

}

@media (max-width: 1430px) {
    .header-logo {
        width: 190px;
        margin-right: 30px;
    }

    .header-logo svg {
        width: 190px;
        height: 49.75px;
    }

    .header-link,
    .header-lang-trigger {
        font-size: 15px;
    }

    .hero {
        margin-top: 40px;
    }

    .bg-items__img {
        max-width: 430px;
    }

    .bg-items__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .plyr--video {
        height: 420px;
    }

    .our-services__item {
        padding: 36px 30px 46px 30px;
    }

    .our-services__item-img {
        height: 100px;
        margin-bottom: 30px;
    }

    .site-floater.bottom .site-floater__text {
        font-size: 36px;
    }

    #trigger1 {
        top: -30px;
    }

    #trigger2 {
        top: -50px;
    }

    #trigger5 {
        top: -150px;
    }

    #trigger6,
    #trigger7,
    #trigger8,
    #trigger9,
    #trigger10,
    #trigger11 {
        top: -350px;
    }

    #trigger12,
    #trigger13,
    #trigger14 {
        top: -350px;
    }

    #trigger15,
    #trigger16,
    #trigger17,
    #trigger18 {
        top: -350px;
    }

    #trigger19 {
        top: -350px;
    }

    #trigger20 {
        top: -550px;
    }

    #trigger21 {
        top: 285px;
    }

    #trigger22 {
        top: 750px;
    }

    #svg20 .path-animate-two,
    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 12px;
    }

    #trigger23 {
        top: 300px;
    }

    .big-green-line-two-arr {
        left: -253px;
        top: 1085px;
    }
}

@media (max-width: 1340px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 1300px) {

    .successfully-developing__svg img,
    .price-block .bg-items__top-img img {
        width: 100%;
    }

    .bg-items__side {
        max-width: 471px;
    }

}

@media (max-width: 1270px) {
    .header-nav {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }

    .header-logo {
        width: 179px;
        margin-right: 30px;
    }

    .header-logo svg {
        width: 179px;
        height: 49.75px;
    }

    .header-link,
    .header-lang-trigger {
        font-size: 14px;
    }

    .lang-burger {
        margin-right: 20px;
    }
}

@media (max-width: 1200px) {

    .header-link,
    .header-lang-trigger {
        font-size: 13px;
    }
}

@media (max-width: 1169px) {
    .lang-burger {
        margin-right: 0;
    }

    #trigger1 {
        top: -450px;
    }

    #trigger2 {
        top: -350px;
    }

    #trigger3 {
        top: -450px;
    }

    #trigger4 {
        position: absolute;
        top: -450px;
    }

    #trigger5 {
        top: -850px;
    }

    #trigger6,
    #trigger7,
    #trigger8,
    #trigger9,
    #trigger10,
    #trigger11 {
        top: -850px;
    }

    #trigger12,
    #trigger13,
    #trigger14 {
        top: -850px;
    }

    #trigger15,
    #trigger16,
    #trigger17,
    #trigger18 {
        top: -850px;
    }

    #trigger19 {
        top: -850px;
    }

    #svg21 {
        left: -133px;
        top: -66px;
        max-width: 193px;
    }

    #trigger20 {
        top: -700px;
    }

    #trigger21 {
        top: -700px;
    }

    #trigger22 {
        top: -200px;
    }

    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 20px;
    }

    #trigger23 {
        top: -350px;
    }

    .big-green-line-two-arr {
        left: -129px;
        top: 534px;
        max-width: 70px;
    }

    .big-green-line-last {
        top: 78px;
        width: 374px;
    }

    .header-lang {
        margin-right: 40px;
    }

    .scrollup {
        right: 10px;
        bottom: 140px;
    }

    .container {
        width: 93%;
    }

    .mb {
        margin-bottom: 80px;
    }

    .cmb {
        margin-bottom: 28px;
    }

    .main-btn__one {
        margin-right: 10px;
    }

    .btn-m-t {
        margin-top: 34px;
    }

    .main-title {
        margin-bottom: 10px;
    }

    .main-text.text-d-m {
        margin-bottom: 14px;
    }

    .main-text ul,
    .main-text ol {
        padding-left: 15px;
    }

    .main-text ul li {
        margin-left: 8px;
        margin-bottom: 8px;
    }

    .main-text ul,
    .main-text p {
        margin-bottom: 20px;
    }

    .header-container {
        padding: 18px 0;
    }

    .lang-item.current-lang::before {
        top: 1px;
    }

    .main-navigation {
        position: fixed;
        left: auto;
        right: -120%;
        top: 0;
        height: 100%;
        min-width: 375px;
        background: var(--secondary-color);
        z-index: 20;
        padding: 15px 15px 30px 30px;
        transition: 0.5s;
    }

    .main-navigation.clicked {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav .main-btn-wrapper,
    .main-navigation__close-menu {
        display: flex;
    }

    .main-navigation__close-menu {
        justify-content: flex-end;
        margin-bottom: 95px;
    }

    .header-link {
        align-items: left;
    }

    .header-nav__layer.show {
        display: block;
    }

    .header-container .site-header__buttons .main-btn-wrapper {
        display: none;
    }

    .site-header__side {
        width: 100%;
    }

    .burger {
        display: block;
    }

    .header-link {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 40px;
        padding: 0;
        height: auto;
    }

    .main-navigation__mobile-btn .main-btn.main-btn__wt {
        font-size: 20px;
    }

    .header-link:hover svg {
        display: none;
    }

    .main-navigation ul li:last-child .header-link {
        margin-bottom: 0px;
    }

    .main-navigation ul {
        margin-bottom: 90px;
    }

    .header-nav .main-btn-wrapper a {
        width: 100%;
    }

    .hero__title {
        max-width: 700px;
        font-size: 50px;
    }

    .hero__title span svg {
        top: -36px;
        width: 320px;
    }

    .hero__title span svg path {
        stroke-width: 8px;
    }

    .hero__text {
        max-width: 700px;
        margin: 40px auto;
        font-size: 18px;
    }

    .hero {
        margin-top: 105px;
    }

    .main-btn {
        min-width: 265px;
        padding: 20px 82px;
        height: auto;
    }

    .plyr,
    .block-without-video {
        max-width: 100% !important;
    }

    .video {
        margin-bottom: 0;
        padding-bottom: 70px;
    }

    .successfully-developing__title {
        max-width: 700px;
        margin: 0 auto;
    }

    .successfully-developing__svg {
        display: flex;
        justify-content: center;
    }

    .successfully-developing__svg img {
        max-width: 600px;
        width: 100%;
        max-width: 0 auto;
    }

    .successfully-developing {
        margin-bottom: 57px;
    }

    .we-do-it__svg2 img {
        max-width: 700px;
    }

    .we-do-it__text {
        max-width: 700px;
        width: 100%;
        margin: 30px auto;
    }

    .we-do-it__title {
        max-width: 700px;
        margin: 0 auto;
    }

    .we-do-it {
        margin-bottom: 90px;
    }

    .bg-items {
        padding: 80px 0;
    }

    .bg-items.container-97 {
        max-width: 100%;
        border-radius: 0;
    }

    .container-sm {
        width: 93%;
        max-width: 700px;
    }

    .main-title.bg-items__title {
        font-size: 37px;
        margin-bottom: 0;
    }

    .bg-items__text {
        margin: 30px 0;
    }

    .bg-items__rows {
        margin-top: 100px;
    }

    .bg-items__row {
        margin-bottom: 100px;
    }

    .bg-items__img {
        max-width: 300px;
    }

    .bg-items__img svg {
        height: auto;
    }

    .bg-items__side {
        max-width: 345px;
    }

    .bg-items__side-text {
        font-size: 18px;
    }

    .bg-items__side-title {
        margin-bottom: 30px;
    }

    .how-it-works {
        margin-bottom: 10px;
    }

    .top-it-experts__positions {
        display: none;
    }

    .top-it-experts__employee {
        width: 70px;
        height: 70px;
        margin-right: 5px;
    }

    .top-it-experts__employees {
        margin-bottom: 10px;
    }

    .top-it-experts__employees-2 {
        display: block;
    }

    .top-it-experts__btn {
        margin-bottom: 100px;
    }

    .top-it-experts {
        margin-bottom: 10px;
        padding-bottom: 0;
    }

    .bg-items__rows {
        max-width: 700px;
    }

    .deliver-effective__title {
        font-size: 35px;
        margin-bottom: 56px;
    }

    .deliver-effective__item-img.pc {
        display: none;
    }

    .deliver-effective__item-img.adaptive {
        display: flex;
        min-width: 64px;
        max-width: 64px;
        height: 64px;
        margin-right: 16px;
        border-radius: 12px;
    }

    .deliver-effective__item-bot-l {
        display: flex;
    }

    .deliver-effective__btn {
        display: flex;
        justify-content: center;
    }

    .deliver-effective {
        padding: 162px 0;
    }

    #partners-infiniteslide {
        margin-bottom: 60px;
    }

    .light-gray-bg {
        padding: 80px 0;
    }

    .our-services__title {
        font-size: 37px;
    }

    .our-services__item-text {
        font-size: 15px;
    }

    .our-services__item-title {
        font-size: 27px;
        min-height: 64px;
    }

    .our-services__item-img {
        height: 150px;
        margin-bottom: 30px;
    }

    .our-services {
        padding: 80px 0 80px 0;
    }

    .our-success .bg-items__text {
        font-size: 20px;
    }

    .our-success .container-sm {
        max-width: 720px;
    }

    .our-success .bg-items__top-img img {
        max-width: 450px;
    }

    .accordion__title.main-title {
        font-size: 37px;
        margin-bottom: 50px;
    }

    .accordion .container-faq {
        width: 96%;
    }

    .accordion__items .accordion__item .accordion__item-l-title {
        font-size: 23px;
        line-height: 120%;
        padding-bottom: 11px;
    }

    .accordion__items .accordion__item .accordion__item-top-wrapper {
        /* padding: 11px 0px; */
        padding: 11px 0px 11px 20px;
    }

    .accordion__items .accordion__item.active .accordion__item-top-wrapper {
        padding: 11px 0px 11px 20px;
    }

    .accordion__items .accordion__item .accordion__item-more {
        padding: 0 20px 0 20px;
    }

    .accordion__items .accordion__item .accordion__item-more.active {
        padding: 10px 20px 24px 20px;
    }

    .site-floater.bottom .main-btn {
        font-size: var(--primary-btn-font-size);
        padding: 20px 82px;
        height: auto;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        padding: 20px 24px 20px 22px;
        height: 110px;
    }

    .site-floater.bottom .site-floater__text {
        font-size: 18px;
        font-weight: 700;
    }

    .site-floater.bottom .site-floater__img {
        margin-right: 18px;
    }

    .site-floater.bottom .floater_img_max {
        width: 70px;
        height: 70px;
        margin-right: 0;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        top: -139px;
        border-radius: 30px;
    }

    .accordion__items {
        /* margin: 53px 0 220px; */
        margin: 53px 0;
    }

    .site-footer {
        margin-top: 220px;
    }

    .our-success {
        margin-bottom: 90px;
    }

    .price-block,
    .our-services {
        margin-bottom: 10px;
    }

    .footer-nav-line {
        display: none;
    }

    .footer-nav ul li a {
        font-size: 13px;
    }

    .footer-nav ul li {
        margin-right: 14px;
    }

    .footer-nav {
        margin-right: 30px;
    }

    .footer-logo {
        width: 31px;
        margin-right: 30px;
    }

    .footer-logo svg {
        width: 100%;
    }

    .site-footer__row {
        padding: 27px 25px;
        border-radius: 30px;
    }

    .copyright-row {
        font-size: 13px;
    }

    .plyr--full-ui.plyr--video .plyr__control--overlaid {
        width: 80px;
        height: 80px;
    }

    .plyr__control--overlaid svg {
        width: 30px !important;
        height: 30px !important;
    }

    .deliver-effective .main-btn,
    .bg-items .main-btn {
        min-width: 345px;
    }

    .site-floater,
    .site-floater.nav-up {
        max-width: 96%;
    }

    .site-floater__text {
        font-size: 18px;
    }

    .site-floater .main-btn {
        min-width: 225px;
        height: auto;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        width: 96%;
    }

    .container-footer {
        width: 96%;
    }

    .copyright-nav ul li {
        margin-right: 10px;
    }

    .accordion .container {
        width: 96%;
    }

    .our-services-pagination {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .our-services-pagination .swiper-pagination-bullet {
        background: #ffffff;
        width: 4px;
        height: 4px;
        transition: 0.2s;
        margin: 0 10px !important;
    }

    .our-services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #ffffff;
        width: 40px;
        height: 4px;
        border-radius: 10px;
    }

    .deliver-effective__items,
    .our-services__slider {
        width: 90%;
        margin-left: 0 !important;
    }

    .accordion__items .accordion__item .accordion__item-top-wrapper .accordion__item-top-arr {
        background: #d5ff5e;
    }

    .accordion__item-text.main-text {
        width: 90%;
    }
}

@media screen and (max-width: 990px) {
    .site-footer__row {
        flex-direction: column;
    }

    .site-footer__row-r {
        flex-direction: column;
    }

    .footer-nav {
        margin-right: 0;
    }

    .footer-logo {
        width: 42px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .footer-nav ul li {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-nav ul li:last-child {
        margin-bottom: 0px;
    }

    .footer-nav ul li a {
        font-size: 16px;
    }

    .footer-nav ul {
        flex-direction: column;
        margin-bottom: 40px;
    }
}

@media (max-width: 900px) {
    #trigger1 {
        top: -450px;
    }

    #trigger2 {
        top: -350px;
    }

    #trigger3 {
        top: -450px;
    }

    #trigger4 {
        position: absolute;
        top: -450px;
    }

    #trigger5 {
        top: -550px;
    }

    #trigger6,
    #trigger7,
    #trigger8,
    #trigger9,
    #trigger10,
    #trigger11 {
        top: -550px;
    }

    #trigger12,
    #trigger13,
    #trigger14 {
        top: -550px;
    }

    #trigger15,
    #trigger16,
    #trigger17,
    #trigger18 {
        top: -550px;
    }

    #trigger19 {
        top: -550px;
    }

    .plyr,
    .block-without-video {
        height: 392px;
    }

    #svg21 {
        left: -79px;
        top: -181px;
        max-width: 146px;
    }

    #trigger20 {
        top: -700px;
    }

    #trigger21 {
        top: -1300px;
    }

    #trigger22 {
        top: -500px;
    }

    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 20px;
    }

    #trigger23 {
        top: -350px;
    }

    .big-green-line-two-arr {
        left: -73px;
        top: 366px;
        max-width: 53px;
    }

    .big-green-line-last {
        top: 78px;
        width: 374px;
    }

}


@media (max-width: 800px) {
    #svg21 {
        left: -47px;
        top: -63px;
        max-width: 110px;
    }

    #trigger20 {
        top: -620px;
    }

    #trigger21 {
        top: -600px;
    }

    #trigger22 {
        top: -300px;
    }

    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 20px;
    }

    #trigger23 {
        top: -150px;
    }

    .big-green-line-two-arr {
        left: -50px;
        top: 434px;
        max-width: 45px;
    }

    .big-green-line-last {
        top: 78px;
        width: 374px;
    }

}

@media (max-width: 710px) {
    .deliver-effective__top {
        justify-content: center;
        margin-bottom: 40px;
    }

    .site-footer__row-r .lang {
        display: none;
    }

    .copyright-row__bottom {
        text-align: center;
    }

    #trigger1 {
        top: -350px;
    }

    #trigger2 {
        top: -350px;
    }

    #trigger3 {
        top: -450px;
    }

    #trigger4 {
        position: absolute;
        top: -250px;
    }

    #trigger5 {
        top: -550px;
    }

    #trigger6,
    #trigger7,
    #trigger8,
    #trigger9,
    #trigger10,
    #trigger11 {
        top: -450px;
    }

    #trigger12,
    #trigger13,
    #trigger14 {
        top: -450px;
    }

    #trigger15 {
        top: -650px;
    }

    #trigger16,
    #trigger17,
    #trigger18 {
        top: -350px;
    }

    #trigger19 {
        top: -450px;
    }

    #svg21 {
        left: -7px;
        top: -63px;
        max-width: 110px;
    }

    #trigger21 {
        top: -600px;
    }

    #trigger22 {
        top: -300px;
    }

    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 20px;
    }

    #trigger23 {
        top: -150px;
    }

    .big-green-line-two-arr {
        left: -10px;
        top: 434px;
        max-width: 45px;
    }

    .big-green-line-last {
        top: 78px;
        width: 374px;
    }



    .plyr,
    .block-without-video {
        height: 392px;
    }

    .scrollup {
        right: 10px;
        bottom: 104px;
    }

    .plyr--full-ui.plyr--video .plyr__control--overlaid {
        width: 70px;
        height: 70px;
    }

    .plyr__control--overlaid svg {
        width: 20px !important;
        height: 20px !important;
    }

    .header-container {
        padding: 15px 0;
    }

    .hero {
        margin-top: 140px;
        margin-bottom: 60px;
    }

    .hero__title {
        width: 335px;
    }

    .site-header__buttons .lang {
        margin-right: 8px;
    }

    .header-lang-trigger {
        font-size: 20px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 21;
    }

    .site-header.active {
        border-bottom: 2px solid #3e3e3e;
        background: #f3f4ed;
    }

    .site-header .logo,
    .site-header.active .logo {
        position: relative;
        z-index: 23;
    }

    .main-navigation {
        min-width: auto;
        width: 100%;
    }

    .hero__btns {
        flex-direction: column;
    }

    .main-btn {
        min-width: auto;
        width: 100%;
    }

    .main-btn__two {
        margin-left: 0;
        margin-top: 12px;
    }

    .plyr,
    .block-without-video {
        height: 197px;
        border-radius: 15px;
    }

    .successfully-developing__title {
        max-width: 330px;
        margin-bottom: 20px;
    }

    .we-do-it__title {
        max-width: 327px;
    }

    .we-do-it__svg {
        height: 128px;
        margin: 30px auto;
    }

    .we-do-it__title {
        max-width: 305px;
    }

    .we-do-it__title br {
        display: none;
    }

    .we-do-it__svg {
        height: 128px;
        margin: 30px auto;
    }

    .we-do-it__svg.we-do-it__svg1.we-do-it__svg2 {
        height: 90px;
    }

    .we-do-it__svg.we-do-it__svg1.we-do-it__svg2 svg {
        width: 100%;
        height: 90px;
    }

    .we-do-it__svg.we-do-it__svg2 {
        height: 252px;
    }

    .we-do-it__svg2 svg {
        width: 100%;
        height: 252px;
    }

    .our-success .bg-items__top-img img {
        width: 100%;
    }

    .main-btn-wrapper {
        width: 100%;
    }

    .deliver-effective .main-btn,
    .bg-items .main-btn {
        min-width: auto;
        width: 100%;
    }

    .copyright-nav ul {
        flex-direction: column;
    }

    .bg-items__row,
    .bg-items__row:nth-child(even) {
        flex-direction: column;
    }

    .bg-items__side-text {
        margin-bottom: 30px;
    }

    .bg-items__side {
        max-width: 100%;
        text-align: center;
    }

    .bg-items__img {
        max-width: 90%;
    }

    .bg-items__img svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .main-btn-center.top-it-experts__btn {
        max-width: 93%;
        margin: 0 auto;
    }

    #partners-infiniteslide,
    #partners-bot-infiniteslide {
        display: none;
    }

    .partners__items-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 345px;
        margin: 0 auto;
        height: 290px;
        overflow: hidden;
    }

    .partners__items-mobile.active {
        height: auto;
        overflow: visible;
    }

    .partners__item {
        margin-right: 40px;
        display: flex;
        align-items: center;
        margin-top: 42px;
    }

    .partners__item:nth-child(even),
    .partners__item:last-child {
        margin-right: 0;
    }

    .partners__items-mobile-bottom {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .partners__items-mobile-arrow.active {
        transform: rotate(180deg);
    }

    .our-services__top {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .our-services__title {
        margin-bottom: 40px;
    }

    .deliver-effective__items {
        width: 100%;
    }

    .our-services__slider {
        width: 93%;
        margin-left: 0 !important;
    }

    .our-services__item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 27px 19px 43px 19px;
        border-radius: 10px;
    }

    .top-it-experts .main-title.bg-items__title.text-center {
        max-width: 345px;
        margin: 0 auto;
    }

    .our-success .bg-items__top-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .bg-items__top-img svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .site-floater.bottom.nav-up,
    .site-floater.bottom.nav-down {
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        border: 3px solid #3e3e3e;
        background: #d5ff5e;
        transform: translateX(-50%);
        left: 50%;
        height: 330px;
        padding: 40px 15px;
        top: -350px;
        transition: none;
    }

    .site-floater.bottom .main-btn {
        font-weight: 500;
        font-size: 20px;
        transition: none;
		padding: 20px 75px;
    }

    .site-floater.bottom.nav-up .site-floater__side,
    .site-floater.bottom.nav-down .site-floater__side {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: none;
    }

    .accordion {
        margin-bottom: 415px;
    }

    .site-floater__img,
    .site-floater__text {
        display: none;
    }

    .site-floater {
        max-width: 100%;
        width: 100%;
        background: var(--grey, #f3f4ed);
        border: none;
        bottom: -120px;
        left: 0;
        border-radius: 0;
        transform: translateX(0);
        border-top: 2px solid #3e3e3e;
    }

    .site-floater.nav-up {
        max-width: 100%;
        bottom: 0;
    }

    .site-floater .main-btn-wrapper {
        width: 100%;
    }

    .site-floater .main-btn-wrapper .main-btn.main-btn-gray {
        box-shadow: 0 0 0 2px var(--fourth-color) inset;
        color: var(--color-font);
        background: transparent;
    }

    .site-floater.bottom.nav-up .site-floater__img,
    .site-floater.bottom.nav-down .site-floater__img {
        display: block;
        margin-bottom: 20px;
    }

    .site-floater.bottom.nav-up .site-floater__text,
    .site-floater.bottom.nav-down .site-floater__text {
        display: block;
        font-size: 27px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        text-align: center;
    }

    .site-floater.nav-down {
        transition: none;
    }

    .accordion__items .accordion__item .accordion__item-l-title {
        font-size: 20px;
        font-weight: 500;
        line-height: 120%;
        max-width: 90%;
    }

    .accordion .container {
        width: 93%;
    }

    /* .accordion__items .accordion__item .accordion__item-top-wrapper {
    padding: 0px 0px 11px 0px;
  } */

    .accordion__items .accordion__item .accordion__item-more {
        padding: 0 17px 0 15px;
    }

    .accordion__items .accordion__item .accordion__item-more.active {
        padding: 10px 17px 15px 15px;
    }

    .accordion__items .accordion__item.active .accordion__item-top-wrapper {
        position: relative;
    }

    .accordion__items .accordion__item .accordion__item-top-wrapper {
        padding: 16px 0px 16px 16px;
    }

    .accordion__items .accordion__item.active .accordion__item-top-wrapper {
        padding: 16px 0px 16px 16px;
    }

    .header-lang {
        margin-right: 8px;
    }

    .header-lang-list {
        left: -60px;
    }

    .lang.mobile {
        display: block;
        padding: 0;
        margin-top: 40px;
    }

    .copyright-nav ul li {
        margin-right: 0;
        margin-bottom: 3px;
    }

    .copyright-row__top {
        margin-bottom: 7px;
    }

    .hero__title .nav-anim-2 {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        /* Start with 0 */
        animation: none;
        animation-delay: 0;
    }

    .partners__items-wrapper {
        display: none !important;
    }

    .deliver-effective__item-l {
        width: 100%;
    }

    .deliver-effective__title {
        text-align: center;
    }

    .deliver-effective {
        padding: 80px 0;
    }

    .deliver-effective__item-l,
    .deliver-effective__item-text strong {
        font-size: 14px;
    }

    .deliver-effective__item-bot {
        flex-direction: column;
        align-items: flex-start;
    }

    .deliver-effective__item-bot-l {
        margin-bottom: 8px;
    }

    .deliver-effective__item-bot-r {
        max-width: 160px;
    }

    .deliver-effective__item-bot-r svg {
        width: 100%;
    }

    .deliver-effective__item-bot-l-n,
    .deliver-effective__item-bot-l-p,
    .deliver-effective__item-bot-l-l {
        font-size: 14px;
    }

    .successfully-developing__svg svg {
        height: 220px;
    }
}

@media (max-width: 560px) {

    #svg21 {
        left: -27px;
        top: -133px;
        max-width: 70px;
    }

    #trigger20 {
        top: -650px;
    }

    #trigger21 {
        top: -450px;
    }

    #trigger22 {
        top: -200px;
    }

    #svg21 .path-animate-two,
    #svg22 .path-animate-two {
        stroke-width: 20px;
    }

    #trigger23 {
        top: -100px;
    }

    .big-green-line-two-arr {
        left: -23px;
        top: 321px;
        max-width: 24px;
    }

    .big-green-line-last {
        top: 60px;
        width: 210px;
    }
}

@media (max-width: 395px) {
    #svg21 {
        left: -18px;
        top: -163px;
        max-width: 53px;
    }

    .big-green-line-two-arr {
        left: -18px;
        top: 268px;
        max-width: 20px;
    }
}

@media (max-width: 359px) {
    .hero__title {
        width: 100%;
    }

    #trigger1 {
        top: -150px;
    }

    #trigger2 {
        top: -350px;
    }

    #trigger3 {
        top: -150px;
    }

    #trigger4 {
        position: absolute;
        top: -50px;
    }

    #trigger5 {
        top: -250px;
    }

    #trigger6,
    #trigger7,
    #trigger8,
    #trigger9,
    #trigger10,
    #trigger11 {
        top: -150px;
    }

    #trigger12,
    #trigger13,
    #trigger14 {
        top: -150px;
    }

    #trigger15 {
        top: -450px;
    }

    #trigger16,
    #trigger17,
    #trigger18 {
        top: -150px;
    }

    #trigger19 {
        top: -250px;
    }

    .header-logo {
        width: 150px;
        margin-right: 15px;
    }

    .header-logo svg {
        width: 100%;
    }

}

@media screen and (orientation: landscape) and (max-width: 932px) {
    .main-navigation {
        overflow-y: scroll;
    }

    #step-3 img {
        padding-top: 12px !important;
        width: 80px !important;
    }

    #step-3 .step-title {
        font-size: 36px !important;
        padding: 15px 0 12px 0 !important;
    }

    #step-3 .step-message {
        font-size: 14px !important;
        padding: 0 16px 30px 16px !important;
    }

    .site-floater {
        display: none !important;
    }

    .scrollup {
        right: 10px;
        bottom: 10px;
    }
}


/* Our products */

.our-products {
    position: relative;
    margin-bottom: 100px;
}

.our-products .svg-arrow {
    position: absolute;
    top: 56%;
    left: 43%;
}

@media screen and (max-width: 1169px) {
    .our-products .svg-arrow {
        display: none;
    }
}

.our-products__title {
    color: var(--primary-color);
}

.our-products__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 107px;
    margin-bottom: 100px;
}

.our-products__rows {
    margin-top: 120px;
}

.our-products__top-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.our-products__row:nth-child(even) {
    flex-direction: row-reverse;
}

.our-products__row:last-child {
    margin-bottom: 0;
}

.our-products__side {
    max-width: 620px;
    width: 100%;
}

.our-products__img {
    max-width: 615px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.our-products__img svg {
    width: 100%;
    height: 100%;
}

.our-products__row:nth-child(even) .our-products__img {
    justify-content: flex-start;
}

.our-products__side-title {
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-font);
    border-radius: 25px;
    line-height: 120%;
    margin-bottom: 40px;
    width: max-content;
}

.our-products__side-text {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 30px;
    opacity: 0.8;
}

@media screen and (max-width: 1169px) {
    .our-products__rows {
        margin-top: 80px;
    }

    .our-products__row {
        flex-direction: column-reverse;
        gap: 100px;
    }

    .our-products .our-products__rows .our-products__row:nth-child(even) {
        flex-direction: column-reverse;
    }

    .our-products .our-products__rows .our-products__row .our-products__img {
        justify-content: center;
    }

    .our-products__img {
        max-width: 436px;
    }

    .our-products__side {
        text-align: center;
    }

    .our-products__side-title {
        font-size: 27px;
        margin: 0 auto 30px;
    }

    .our-products__side-text {
        font-size: 18px;
    }

    .our-products .main-btn {
        font-size: 21px;
        line-height: 1;
        min-width: 196px;
        padding: 25px 32px;
    }
}

@media screen and (max-width: 710px) {
    .our-products.container-97 {
        max-width: 100%;
    }

    .our-products__rows.container-lsm {
        width: 100%;
    }

    .our-products__rows {
        margin-top: 50px;
    }

    .our-products__row {
        gap: 50px;
        margin-bottom: 50px;
    }

    .our-products__side-title {
        width: 100%;
        border-radius: 0;
    }

    .our-products__side-text {
        padding: 0 16px;
    }

    .our-products__img {
        max-width: 295px;
    }

    .our-products .main-btn {
        font-size: 18px;
        min-width: 177px;
        width: auto;
        margin: 0 auto;
    }
}

/* END Our products */




/* Startups and Products */
.startups-products {
    padding: 0 0 100px 0;
}

.startups-products:nth-child(2) {
    padding-top: 100px;
}

.startups-products__title {
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
}

@media screen and (max-width: 1169px) {
    .startups-products__title {
        font-size: 50px;
    }
}

@media screen and (max-width: 710px) {
    .startups-products__title {
        font-size: 30px;
    }
}

.container-product {
    max-width: 1652px;
    width: 97%;
    margin: 0 auto;
}

.startups-products__rows {
    margin-top: 100px;
}

.startups-products__row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.startups-products__row:nth-child(even) {
    flex-direction: row-reverse;
}

.startups-products__row:last-child {
    margin-bottom: 0;
}

.startups-products__side {
    max-width: 628px;
    width: 100%;
    flex: 1;
}

.startups-products__side.without-image {
    max-width: 100%;
}

.startups-products__side-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--color-font);
    line-height: normal;
    letter-spacing: 0;
    text-wrap: balance;
    text-transform: none;
}

.startups-products__side-text {
    font-size: 25px;
    font-weight: 400;
    color: var(--color-font);
    line-height: 140%;
    margin-bottom: 40px;
}

.startups-products__img {
    flex: 1;
    max-width: 670px;
    max-height: 450px;
}

.startups-products__img svg {
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 1580px) {
    .container-product {
        width: 90%;
    }

    .startups-products__side-title {
        font-size: 45px;
    }

    .startups-products__side-text {
        font-size: 25px;
    }

    .startups-products__img {
        flex: 1;
    }
}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1169px) {
    .startups-products__rows {
        margin-top: 50px;
    }

    .startups-products__row,
    .startups-products__row:nth-child(even) {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .startups-products__side {
        text-align: center;
    }

    .startups-products__side-title {
        font-size: 35px;
    }

    .startups-products__img img {
        border-radius: 0;
    }
}

@media screen and (max-width: 710px) {

    .startups-products {
        padding: 0 0 140px 0;
    }

    .startups-products:first-of-type {
        padding-top: 60px;
    }

    .startups-products:nth-child(2) {
        padding-top: 40px;
    }

    .startups-products__side-title {
        font-size: 30px;
    }

    .startups-products__side-text {
        font-size: 18px;
    }

    .startups-products__img img {
        width: 55%;
    }
}

.product-trigger-id {
    position: absolute;
    top: -570px;
    width: 100px;
    height: 2px;
}

@media screen and (max-width: 1169px) {
    .product-trigger-id {
        top: -300px;
    }
}

@media screen and (max-width: 710px) {
    .product-trigger-id {
        top: -200px;
    }
}

/* END Startups and Products */

#svg19 {
    position: relative;
}

/* Фикс для Safari - анимация foreignObject */
#svg19 foreignObject {
    will-change: transform, opacity;
    transform-origin: center center;
    -webkit-transform-origin: center center;
}

#svg19 .custom-number-svg {
    color: #91B920;
    text-align: center;
    font-family: Maax;
    font-size: 200px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    transform: rotate(350deg);
    -webkit-transform: rotate(350deg);
    will-change: transform, opacity;
    /* Для Safari - принудительное использование GPU */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}


.grecaptcha-badge {
    display: none !important;
}

/* iOS Chrome Fix для флоутер кнопки */
@supports (-webkit-touch-callout: none) {
    /* Фикс для iOS Safari и Chrome */
    .site-floater.nav-up {
        bottom: calc(31px + env(safe-area-inset-bottom, 0px));
        /* Альтернативный фикс используя dvh вместо px */
        bottom: max(31px, calc(100dvh - 100vh + 31px));
    }
    
    /* Дополнительная безопасность для нижней кнопки */
    .site-floater {
        /* Защита от перекрытия системными элементами iOS */
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
}

/* Специфичный фикс для body с классом is-ios */
body.is-ios .site-floater.nav-up {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

/* Дополнительный фикс специфично для iOS Chrome */
@media screen and (max-width: 710px) {
    /* На мобильных устройствах корректируем позицию */
    .site-floater.nav-up {
        bottom: 0;
        bottom: env(safe-area-inset-bottom, 0px);
    }
    
    .site-floater.nav-down {
        bottom: -150px;
    }
    
    /* Для iOS используем кастомное свойство --vh */
    body.is-ios .site-floater.nav-up {
        bottom: env(safe-area-inset-bottom, 0px);
		bottom: 0;
    }
}

/* Фикс для очень маленьких экранов */
@media screen and (max-width: 400px) {
    .site-floater {
        max-width: 95%;
        padding: 15px 20px;
        height: auto;
        min-height: 90px;
    }
    
    .site-floater__text {
        font-size: 18px;
    }
    
    .site-floater .main-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}