@charset "UTF-8";

@font-face {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/ProximaNova-Regular.woff);
    font-display: swap
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 600;
    font-style: normal;
    src: url(../fonts/ProximaNova-Semibold.woff);
    font-display: swap
}

@font-face {
    font-family: "Sommet Rounded";
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/SommetRoundedBold.woff);
    font-display: swap
}

@font-face {
    font-family: "Sommet Rounded";
    font-weight: 900;
    font-style: normal;
    src: url(../fonts/SommetRoundedBlack.woff);
    font-display: swap
}

:root {
    --green: #009982;
    --accent: #0EA48D;
    --gray: #575757;
    --white-lilac: #f8f8f8;
    --white: #fff
}

*,
::after,
::before {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Proxima Nova', Arial, sans-serif;
    line-height: 22px;
    color: var(--gray);
    background-color: var(--white-lilac);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.input__visible {
    display: none;
    width: 10px;
    position: absolute;
    opacity: 0;
}

body.modal--opened {
    overflow: hidden
}

a {
    text-decoration: none;
    color: var(--gray)
}

a:hover {
    color: var(--green)
}

img {
    max-width: 100%;
    height: auto
}

.gap-20 {
    margin-right: 20px;
    margin-bottom: 20px;
}

.btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    outline: 0
}

.container {
    width: 100%;
    max-width: 1320px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto
}

#footer,
#header {
    flex: 0 0 auto
}

#content {
    flex: 1 0 auto;
    min-height: 100%;
    padding-top: 100px;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}

.nav-toggle__item {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 8px;
    background-color: var(--green);
    transition: .2s
}

.nav-toggle__item:not(:last-child) {
    margin-bottom: 5px
}

.nav-toggle--active .nav-toggle__item:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.nav-toggle--active .nav-toggle__item:nth-child(2) {
    opacity: 0
}

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

.nav-toggle--active .nav-toggle__item:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.btn-style {
    background-color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    background-color: var(--green);
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 45px;
    flex-shrink: 0;
    transition: .4s
}

.btn-style:hover {
    color: var(--white);
    background-color: var(--accent)
}

.btn-style--shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .07)
}

.section__header--center {
    display: flex;
    justify-content: center;
    position: relative;
}

.solutions-more__header,
.section__header {
    position: relative;
}

.section__title {
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    font-family: 'Sommet Rounded';
    position: relative;
    padding-top: 40px;
    text-align: center
}

.section__title h2 {
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    font-family: 'Sommet Rounded';
    position: relative;
    padding-top: 0px;
    text-align: center;
}

.service__tasks-title h2 {
    max-width: 700px;
}

.section__title--small,
.section__title--small h2 {
    font-size: 24px;
    line-height: 30px;
    max-width: 765px
}

.section__title--white {
    color: var(--white)
}

.section__title-line {
    position: absolute;
    top: 0;
    width: 63px;
    left: 50%;
    transform: translate(-50%, -50%)
}

.section__title-line2 {
    position: absolute;
    width: 63px;
    left: 50%;
    transform: translate(-50%, -50%)
}

.section__title-line::before,
.section__title-line2::before {
    content: "";
    position: absolute;
    width: 44px;
    height: 9px;
    background-color: var(--green);
    border-radius: 45px;
    left: 0
}

.section__title-line::after,
.section__title-line2::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--green);
    border-radius: 50%;
    right: 0
}

.section--gap {
    padding: 50px 0
}

.section--gap-top {
    padding-top: 50px
}

.bg-triangle:not(.bg-globe) {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.bg-triangle::after {
    content: "";
    position: absolute;
    width: 526px;
    height: 365px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    right: -90px;
    bottom: 32px;
    opacity: .5;
    background-image: url(../img/backgrounds/triangle-bottom.svg)
}

.bg-triangle--top::after {
    top: 24px;
    left: -105px;
    background-image: url(../img/backgrounds/triangle.svg)
}

.bg-triangle--white::after {
    background-image: url(../img/backgrounds/triangle-white.svg)
}

.bg-triangle--flipped::after {
    background-image: url(../img/backgrounds/triangle-white-flipped.svg)
}

.bg-globe {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.bg-globe::before {
    content: "";
    position: absolute;
    width: 411px;
    height: 429px;
    background-image: url(../img/backgrounds/globe.svg);
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    z-index: -1
}

.radio input[type=radio] {
    display: none
}

.radio input[type=radio]:checked~label::before {
    border-color: var(--green);
    background-size: 15px
}

.radio label {
    position: relative;
    padding-left: 35px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #818181
}

.radio label::before {
    content: "";
    position: absolute;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    left: 0;
    top: 0;
    /* background-image: url(../img/icons/chb-checked.svg); */
    background-image: url(../img/icons/o-checked.svg);
    background-repeat: no-repeat;
    background-size: 0;
    background-position: center;
    transition: .2s
}

.checkbox input[type=checkbox] {
    display: none
}

.checkbox input[type=checkbox]:checked~label::before {
    background-color: var(--green);
    border-color: var(--green);
    background-size: 8px
}

.checkbox label {
    position: relative;
    padding-left: 36px;
    cursor: pointer
}

.checkbox label::before {
    content: "";
    position: absolute;
    background-color: #fff;
    border: 1px solid #acacac;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    left: 0;
    top: 1px;
    transition: .2s
}

.select__item--hidden {
    display: none
}

.select {
    max-width: 320px;
    width: 100%;
    height: 48px;
    font-size: 15px;
    line-height: 19px;
    position: relative;
    background-color: var(--white)
}

.select--active .select__current-value::after {
    transform: translate(-50%, -50%) rotate(180deg)
}

.select--active .select__options {
    opacity: 1;
    visibility: visible;
    top: 102%
}

.select__current-value {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 15px;
    cursor: pointer
}

.select__current-value::after {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 6px;
    background-image: url(../img/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: 15px;
    transform: translate(-50%, -50%);
    transition: .2s
}

.select__item option[value=hide] {
    display: none
}

.select__options {
    position: absolute;
    top: 98%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 20px;
    list-style: none;
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in;
    z-index: 33;
    max-height: 320px;
    overflow: auto
}

.select__option {
    cursor: pointer
}

.select__option--selected,
.select__option:hover {
    color: var(--green)
}

.dropdown--active .dropdown__header svg {
    transform: rotate(180deg)
}

.dropdown--active .dropdown__header svg path {
    fill: var(--green)
}

.dropdown--active .dropdown__content {
    display: flex;
    background: #ededed;
    max-height: 250px;
    overflow-y: auto;
}

.dropdown--active .dropdown__content::-webkit-scrollbar {
    width: 10px;
}

.dropdown--active .dropdown__content::-webkit-scrollbar-track {
    background: #dbdbdb;
    border: none;
    background-clip: content-box;
}

.dropdown--active .dropdown__content::-webkit-scrollbar-thumb {
    background: #818181;
    border: none;
}


.dropdown--has-checked .dropdown__current-value {
    color: var(--green)
}

.dropdown__header svg {
    transition: .4s
}

.dropdown__content {
    flex-direction: column;
    row-gap: 16px;
    display: none
}

.header {
    padding: 20px 0;
    position: fixed;
    z-index: 99;
    background-color: white;
    width: 100%;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    flex: 0 0 auto;
}

.header__logo-img {
    width: 180px
}

.nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-y: auto
}

.header__nav-list {
    display: flex
}

.header__nav-item:not(:last-child) {
    margin-right: 10px
}

.nav__item.header__nav-item svg {
    flex: 0 0 auto;
}

.header__nav-link {
    font-size: 16px;
    line-height: 19px
}

.header__right {
    display: flex;
    align-items: center
}

.header__search-btn {
    font-size: 0;
    margin-right: 40px
}

.header__search-btn svg:hover circle,
.header__search-btn svg:hover path {
    stroke: var(--accent)
}

.header__nav-right-link {
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    border-radius: 45px;
    padding: 5px 8px;
    transition: .4s
}

.header__nav-right-link:hover {
    color: var(--white);
    background-color: var(--accent)
}

.search {
    position: absolute;
    z-index: 3;
    background-color: #f2f2f2;
    right: 0;
    left: 0;
    padding-top: 20px;
    padding-bottom: 22px;
    top: 50px;
    transition: .4s;
    opacity: 0;
    visibility: hidden
}

.search--active {
    top: 93px;
    opacity: 1;
    visibility: visible
}

.search__form {
    display: flex;
    align-items: center
}

.search__input {
    padding: 20px 24px;
    box-shadow: 0 25px 45px rgba(128, 128, 128, .15);
    border-radius: 65px;
    border: 0;
    width: 100%;
    margin-right: 16px;
    line-height: 24px;
    color: #686f78;
    outline: 0;
    transition: .5s
}

.search__input::-moz-placeholder {
    color: #686f78
}

.search__input:-ms-input-placeholder {
    color: #686f78
}

.search__input::placeholder {
    color: #686f78
}

.search__input:focus {
    box-shadow: 0 25px 45px rgba(0, 153, 130, .15)
}

.search__form-btn {
    width: 108px
}

.order-demo {
    display: flex;
    align-items: center
}

.order-demo svg {
    margin-left: 13px
}

.intro {
    background-color: #435156;
    position: relative;
    background-image: url(../img/backgrounds/globe-big.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    width: 517px;
    height: 300px;
    background-image: url(../img/backgrounds/triangle.svg);
    background-repeat: no-repeat
}

.intro-style--2 {
    background-image: url(../img/backgrounds/page-intro.jpg);
    background-size: cover
}

.intro__inner {
    position: relative;
    z-index: 2;
    color: var(--white)
}

.intro__title,
.intro__title h1 {
    margin: 0 0 32px;
    font-family: 'Sommet Rounded';
    font-size: 72px;
    line-height: 72px;
    font-weight: 700
}

.intro__subtitle {
    margin: 0 0 48px
}

.intro__link {
    width: 303px;
    font-size: 18px
}

.intro__actions {
    display: flex
}

.intro__action:first-child {
    margin-right: 40px
}

.intro__action-documentation {
    width: 355px
}

.main-page__intro-inner {
    padding: 135px 0;
    max-width: 468px
}

.main-page__intro-title {
    max-width: 469px
}

.conference-more {
    padding: 43px 0;
    background-repeat: no-repeat;
    background-size: cover
}

.conference-more__inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.conference-more__left {
    margin-right: 73px;
    flex-shrink: 0
}

.conference-more__logo {
    width: 180px
}

.conference-more__title,
.conference-more__title h2 {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: 600
}

.conference-more__description {
    margin: 0;
    max-width: 612px;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px
}

.conference-more__link {
    width: 244px
}

.statistics {
    background-color: #f8f8f8
}

.statistics__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px
}

.statistics__col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.statistics-item {
    display: flex;
    align-items: center
}

.statistic-item__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 24px;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 21px;
    flex-shrink: 0;
    text-align: center
}

.statistic-item__text {
    max-width: 415px;
    font-size: 16px
}

.principles {
    background-color: var(--white)
}

.principles__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 63px
}

.principles__col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.principles__item {
    display: flex;
    align-items: center
}

.principles__icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin-right: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px;
    flex-shrink: 0
}

.principles__description {
    max-width: 250px;
    font-size: 16px;
    line-height: 19px
}

.solutions-more {
    background-image: url(../img/backgrounds/page-intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 133px;
    padding-bottom: 156px
}

.solutions-more::after {
    width: 440px;
    height: 303px;
    top: 52px;
    left: 0
}

.solutions-more__inner {
    display: flex;
    justify-content: center;
    color: var(--white)
}

.solutions-more__col:first-child {
    margin-right: 100px
}

.solutions-more__item {
    display: flex;
    flex-direction: column
}

.solutions-more__item-heading {
    display: flex;
    justify-content: space-between
}

.solutions-more__item-title {
    margin-bottom: 36px
}

.solutions-more__item-subtitle {
    color: #3fb498;
    font-weight: 900;
    font-family: 'Sommet Rounded';
    font-size: 30px;
    line-height: 31px
}

.solutions-more__item-heading-inner {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    margin-right: 33px
}

.solutions-more__item-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--green);
    border-radius: 50%;
    font-size: 0;
    transition: .4s
}

.solutions-more__item-more:hover {
    background-color: var(--white)
}

.solutions-more__item-more:hover svg path {
    stroke: var(--green)
}

.solutions-more__item-description {
    font-size: 16px;
    line-height: 19px;
    max-width: 325px
}

.services-more {
    background-color: var(--white)
}

.scalable__container {
    max-width: 1920px;
    overflow: hidden;
    padding-top: 300px;
    padding-bottom: 400px;
    position: relative;
    margin: -300px auto -400px
}

#scalable-slider {
    overflow: visible
}

.scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card {
    position: relative;
    background-color: var(--white);
    transform: translateY(-50px);
    z-index: 2;
    border-color: transparent;
    transition: .6s;
    height: unset;
    padding-top: 1px;
    box-shadow: 0 45px 200px rgba(0, 0, 0, .21), 0 120px 120px rgba(132, 132, 132, .08)
}

.scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card-title {
    color: #575757
}

.scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card-info-hidden {
    display: block
}

@media (min-width: 768px) {
    .scalable__slider .scalable__slide:hover .scalable__card {
        position: relative;
        background-color: var(--white);
        transform: translateY(-50px);
        z-index: 2;
        border-color: transparent;
        transition: .6s;
        height: unset;
        padding-top: 1px;
        box-shadow: 0 45px 200px rgba(0, 0, 0, .21), 0 120px 120px rgba(132, 132, 132, .08)
    }

    .scalable__slider .scalable__slide:hover .scalable__card-title {
        color: #575757
    }

    .scalable__slider .scalable__slide:hover .scalable__card-info-hidden {
        display: block
    }
}

@media (max-width: 768px) {
    .scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card {
        position: relative;
        background-color: var(--white);
        transform: translateY(-50px);
        z-index: 2;
        border-color: transparent;
        transition: .6s;
        height: unset;
        padding-top: 1px;
        box-shadow: 0 45px 200px rgba(0, 0, 0, .21), 0 120px 120px rgba(132, 132, 132, .08)
    }

    .scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card-title {
        color: #575757
    }

    .scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card-info-hidden {
        display: block
    }
}

.scalable__slide {
    width: 480px;
    height: 480px;
    position: relative
}

.scalable__card {
    background-color: #435156;
    position: absolute;
    width: 100%;
    height: 100%;
    border-right: 1px solid #637277
}

.scalable__card--gray {
    background-color: #f8f8f8;
    border: none;
    border-right: 1px solid #d3d6d8
}

.scalable__card--gray .scalable__card-title {
    color: var(--gray)
}

.scalable__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    width: 221px;
    height: 221px;
    margin-top: 107px;
    margin-left: auto;
    margin-right: auto
}

.scalable__card-icon.why-choose-us__card-icon .scalable__card-icon-inner {
    width: 140px;
    height: 140px;
}

.scalable__card-icon--full .scalable__card-icon-inner {
    width: 100%;
    height: 100%
}

.scalable__card-icon-inner {
    width: 180px;
    height: 180px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.scalable__card-info {
    padding: 56px
}

.scalable__card-info-hidden {
    display: none
}

.scalable__card-title {
    font-weight: 600;
    color: var(--white);
    font-size: 18px;
    line-height: 22px;
    margin: 0
}

.scalable__card-title h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin: 0
}

.scalable__card-title svg {
    position: relative;
    top: 1px;
    margin-left: 12px
}

.scalable__card-description {
    margin: 24px 0 40px;
    font-size: 16px;
    line-height: 19px
}

.scalable__card-list {
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 19px
}

.scalable__card-list-item {
    padding-left: 44px;
    position: relative
}

.scalable__card-list-item a {
    color: var(--green)
}

.scalable__card-list-item a:hover {
    text-decoration: underline;
    color: var(--gray)
}

.scalable__card-list-item:not(:last-child) {
    margin-bottom: 16px
}

.scalable__card-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/checked.svg);
    background-repeat: no-repeat;
    top: -3px;
    background-position: center
}

.scalable__card-link {
    width: 244px
}

.scalable__navigation {
    position: absolute;
    top: 50%;
    z-index: 2;
    left: 0;
    right: 0
}

.scalable__nav {
    position: absolute
}

.scalable__nav--prev {
    left: 32px
}

.scalable__nav--next {
    right: 32px
}

.article-card {
    background-color: #f8f8f8;
    height: 100%;
    position: relative
}

.article-card--white {
    background-color: #fff
}

.article-card__header {
    display: flex;
    position: relative;
    overflow: hidden;
    /* height: 250px */
}

.article-card__header::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 17px solid #fff;
    bottom: -1px;
    left: 40px;
    z-index: 3
}

.article-card__logo {
    position: absolute;
    z-index: 2;
    width: 110px;
    -o-object-fit: cover;
    object-fit: cover;
    top: 20px;
    right: 20px
}

.article-card__thumbnail {
    display: flex;
    position: relative;
    width: 100%;
    height: 250px;
}

.article-card__thumbnail picture {
    width: 100%;
}

.article-card__thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(38, 38, 38, .15), rgba(38, 38, 38, .15));
    /* background: linear-gradient(0deg, rgba(38, 38, 38, .35), rgba(38, 38, 38, .35)) */
}

.article-card__thumbnail-img {
    width: 100%;
    height: 100%;
    display: block;
    /* height: 100%; */
    /* -o-object-fit: cover; */
    /* object-fit: cover */
}

.article-card__date {
    position: absolute;
    z-index: 2;
    color: var(--white);
    left: 40px;
    bottom: 30px
}

.article-card__date span {
    font-size: 36px;
    line-height: 43px
}

.article-card__info {
    padding: 40px
}

.article-card__title {
    font-weight: 600;
    display: block;
    max-width: 340px;
    margin-bottom: 48px;
    margin-right: 33px;
    position: absolute
}

.article-card__title svg {
    position: relative;
    top: 1px;
    margin-left: 12px
}

.article-card__markers {
    margin-top: 120px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    -moz-column-gap: 32px;
    column-gap: 32px
}

.marker {
    color: #969696;
    font-size: 16px;
    line-height: 19px;
    padding-left: 20px;
    position: relative
}

.marker::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%)
}

.marker--green::before {
    background-color: #7fe898
}

.marker--orange::before {
    background-color: #ffd75f
}

.marker--blue::before {
    background-color: #76d7fa
}

.last-articles {
    position: relative;
    background-color: var(--white)
}

.publications__slide {
    width: 413px;
    height: auto
}

.publications__container {
    max-width: 1400px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    position: relative
}

#publications-slider {
    max-width: 1280px
}

.publications__navigation {
    display: flex;
    height: 34px;
    z-index: 2;
    position: absolute;
    top: 52%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto
}

.publications__nav {
    position: absolute;
    z-index: 3
}

.publications__nav.swiper-button-disabled {
    cursor: unset
}

.publications__nav.swiper-button-disabled svg path {
    stroke: #575757
}

.publications__nav--prev {
    left: -30px
}

.publications__nav--next {
    right: -30px
}

.last-articles__more {
    margin-top: 40px;
    text-align: center
}

.last-articles__more-link {
    width: 269px
}

.partners {
    position: relative;
    overflow: hidden;
    background-color: var(--white)
}

.partners__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.partners__col {
    flex: 0 0 auto;
    width: 16.66666667%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

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

.partners__bottom {
    margin-top: 54px
}

.system-standart {
    display: flex;
    align-items: center;
    justify-content: center
}

.system-standart__text {
    margin: 0;
    font-size: 12px;
    line-height: 14px;
    text-align: center
}

.system-standart__logo {
    width: 99px;
    margin-left: 15px
}

.tasks {
    background-color: #f8f8f8;
    position: relative;
    z-index: 1 !important;
    transition: .4s
}

.tasks::after {
    top: 80px;
    left: -145px
}

.tasks::before {
    content: "";
    position: absolute;
    width: 323px;
    height: 412px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0
}

.tasks__title {
    max-width: 455px
}

.tasks__inner {
    position: relative;
    z-index: 2;
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    align-items: center;
    margin-top: 73px;
}

.tasks__img-wrap {
    width: 100%;
    max-width: 870px;
    margin-right: 77px
}

.tasks__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tasks__list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 340px;
    width: 100%;
    position: absolute;
    right: 0;
}

.tasks__item {
    padding: 24px 23px 0 20px;
    transition: .8s
}

.tasks__item:not(:last-child) {
    margin-bottom: 34px
}

.tasks__item:hover {
    padding-bottom: 24px;
    background-color: var(--white);
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .4)
}

.tasks__item:hover .tasks__item-title {
    color: var(--green)
}

.tasks__item:hover .tasks__description {
    display: block
}

.tasks__item-title {
    margin: 0 0 16px;
    font-weight: 600;
    cursor: pointer
}

.tasks__description {
    margin: 0;
    font-size: 16px;
    line-height: 19px;
    display: none
}

.page__intro {
    min-height: 192px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 72px;
    background-color: #435156;
    position: relative;
    background-image: url(../img/backgrounds/page-intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    overflow: hidden
}

.page__intro::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 303px;
    background-image: url(../img/backgrounds/triangle.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    top: 30px
}

.page__title,
.page__title h1 {
    font-family: 'Sommet Rounded';
    margin: 0;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    color: var(--white);
    position: relative;
    z-index: 1
}

.static__heading {
    padding-top: 64px;
    padding-bottom: 118px;
    background-color: #f8f8f8;
    position: relative
}

.static__heading::before {
    content: "";
    position: absolute;
    width: 409px;
    height: 590px;
    background-image: url(../img/backgrounds/globe-circle.svg);
    bottom: 0;
    left: 0
}

.static__heading-inner {
    position: relative;
    z-index: 1
}

.thumb {
    margin: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.thumb__img {
    width: 100%;
    height: 553px;
    -o-object-fit: contain;
    object-fit: contain
}

.thumb__caption {
    background-color: var(--white);
    margin: 0;
    padding: 31px 54px;
    text-align: center;
    font-size: 24px;
    line-height: 29px
}

.static__thumb {
    margin-top: 56px
}

.static__content {
    background-color: var(--white)
}

.static__content-inner {
    padding-top: 56px;
    padding-bottom: 79px
}

.page__header-nav-container {
    max-width: 1920px
}

.page__header-nav-inner {
    display: flex;
    align-items: center
}

.page__header-nav-title {
    color: var(--green);
    font-size: 16px;
    line-height: 19px;
    display: none
}

.page__nav-toggle {
    font-size: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 24px;
    height: 24px;
    display: none
}

.page__nav-toggle.page__nav-toggle--active .page__nav-toggle-item:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.page__nav-toggle.page__nav-toggle--active .page__nav-toggle-item:nth-child(2) {
    opacity: 0
}

.page__nav-toggle.page__nav-toggle--active .page__nav-toggle-item:nth-child(3) {
    width: 13px;
    transform: rotate(-45deg)
}

.page__nav-toggle-item {
    display: block;
    background-color: var(--green);
    height: 1.7px;
    border-radius: 4px;
    transition: .4s
}

.page__nav-toggle-item:not(:last-child) {
    margin-bottom: 2.3px
}

.page__nav-toggle-item:nth-child(1) {
    width: 13px
}

.page__nav-toggle-item:nth-child(2) {
    width: 6.7px
}

.page__nav-toggle-item:nth-child(3) {
    width: 9.7px
}

.page__nav {
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    z-index: 4
}

.page__nav-list {
    display: flex;
    justify-content: center;
    padding: 0 30px
}

.page__nav-item:not(:last-child) {
    margin-right: 60px
}

.page__nav-link {
    display: inline-block;
    padding: 19px 0;
    font-size: 16px;
    line-height: 19px;
    position: relative
}

.page__nav-link--current {
    color: var(--green)
}

.page__nav-link--current::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--green)
}

.about__intro {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #f8f8f8
}

.about__intro::before {
    width: 310px;
    height: 420px
}

.about__video {
    padding: 0 15px
}

.video-card__inner {
    max-width: 1064px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    background-color: var(--white)
}

.video-card__inner iframe {
    width: 100%;
    height: 487px
}

.video-card__caption {
    padding: 24px 32px
}

.video-card__title,
.video-card__title h3 {
    margin: 0;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700
}

.video-card__description {
    margin: 11px 0 0
}

.about__statistics {
    max-width: 1165px;
    width: 100%;
    margin: 80px auto 0
}

.about__statistics-inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px
}

.about__statistics-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.our-mission {
    position: relative;
    background-color: var(--white)
}

.our-mission::before {
    content: "";
    position: absolute;
    width: 254px;
    height: 323px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    transform: rotate(180deg)
}

.our-mission__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2
}

.awards,
.why-choose-us {
    background-color: var(--white)
}

.awards::after {
    top: 0;
    left: 0
}

.awards__title {
    margin-bottom: 116px
}

.awards__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    position: relative
}

.awards__col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.awards__block {
    border: 2px solid var(--green);
    height: 100%;
    position: relative
}

.awards__block::before {
    content: "";
    position: absolute;
    height: 4px;
    width: 270px;
    background-color: var(--green);
    background-color: var(--white);
    left: 20px;
    top: -3px
}

.awards__block-heading {
    top: -40px;
    left: 28px;
    position: absolute;
    display: flex;
    align-items: flex-end
}

.awards__block-icon {
    display: inline-block;
    width: 59px;
    height: 55px;
    margin-right: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.awards__block-title,
.awards__block-title h3 {
    margin: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 37px;
    font-family: 'Sommet Rounded'
}

.awards__block-title--second {
    position: relative;
    top: -4px
}

.awards__block-list {
    margin: 0;
    padding: 45px 97px 36px 31px;
    list-style: none
}

.awards__block-item {
    display: flex
}

.awards__block-item:not(:last-child) {
    margin-bottom: 32px
}

.awards__name {
    color: var(--green);
    font-size: 21px;
    line-height: 21px;
    font-weight: 700;
    font-family: 'Sommet Rounded';
    width: 90px;
    flex-shrink: 0
}

.awards__description {
    margin: 0;
    font-size: 16px;
    line-height: 19px
}

.sertificates {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden
}

.sertificates::after {
    content: "";
    position: absolute;
    width: 412px;
    height: 323px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: -112px;
    right: -47px;
    transform: rotate(270deg)
}

.sertificates__slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.sertificates__item {
    display: flex;
    justify-content: center
}

.sertificates__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .3);
    transition: .4s;
    opacity: 0;
}

.sertificates__item:hover::before {
    opacity: 1;
}


.sertificates__img {
    transition: .4s
}



.sertificates__navigation {
    position: absolute;
    top: 45%;
    z-index: 2;
    left: 0;
    right: 0
}

.sertificates__nav {
    position: absolute
}

.sertificates__nav svg {
    width: 34px
}

.sertificates__nav.swiper-button-disabled {
    cursor: unset
}

.sertificates__nav.swiper-button-disabled svg path {
    stroke: #575757
}

.sertificates__nav--prev {
    left: 20px
}

.sertificates__nav--next {
    right: 20px
}

.sertificates__bottom-text {
    display: block;
    margin-top: 60px;
    color: var(--green);
    font-size: 24px;
    line-height: 29px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    max-width: 847px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.sertificates__bottom-text:hover {
    color: var(--accent);
    text-decoration: none
}

.team__inner {
    position: relative;
    z-index: 1;
    margin-right: -5px;
    margin-left: -5px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px
}

.team__col {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px
}

.team__item {
    height: 422px;
    position: relative;
    transition: .4s;
    border: 7px solid transparent
}

.team__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(82, 91, 101, 0) 47.03%, rgba(82, 91, 101, .75) 81.2%)
}

.team__item:hover {
    filter: drop-shadow(0 45px 200px rgba(0, 0, 0, .21)) drop-shadow(0 120px 120px rgba(132, 132, 132, .08));
    border-color: var(--white)
}

.team__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.team__item-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: var(--white);
    padding: 46px 22px 46px 24px
}

.team__name,
.team__name h4 {
    margin: 0 0 12px;
    font-weight: 700;
    font-family: 'Sommet Rounded';
    font-size: 30px;
    line-height: 30px
}

.team__position {
    margin: 0;
    height: 20px
}

.team__bottom {
    margin-top: 60px
}

.press-service__people {
    padding-top: 51px;
    padding-bottom: 116px;
    background-color: #f8f8f8;
    position: relative
}

.press-service__top-text {
    margin: 0 auto 60px;
    text-align: center;
    max-width: 800px
}

.person-card {
    display: flex;
    background-color: var(--white)
}

.person-card--full .person-card__info {
    width: 100%
}

.person-card__info {
    padding: 32px;
    display: flex;
    flex-direction: column
}

.person-card__title {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 31px;
    font-weight: 700;
    font-family: 'Sommet Rounded'
}

.person-card__position {
    max-width: 258px;
    margin-bottom: 30px
}

.person-card__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto
}

.contact-item {
    font-size: 16px;
    display: inline-flex;
    align-items: center
}

.contact-item svg {
    margin-right: 20px
}

.contact-item:not(:last-child) {
    margin-bottom: 16px
}

.contact-item--email {
    color: var(--green);
    text-decoration: underline
}

.contact-item--email:hover {
    text-decoration: none
}

.person-card__img-wrap {
    display: flex;
    width: 304px;
    flex-shrink: 0
}

.person-card__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.press-service__inner {
    margin-right: -10px;
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap
}

.press-service__col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    min-height: 325px
}

.company-info {
    background-color: var(--white);
    overflow: hidden;
    position: relative
}

.company-info::before {
    content: "";
    position: absolute;
    width: 254px;
    height: 323px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    transform: rotate(180deg)
}

.tab__content-item:not(.tab__content-item--active) {
    display: none;
}

.tab__content-item {
    padding: 40px;
    border: 1px solid #eee;
    background-color: #fff;
}

.tab__select {
    position: relative;
    display: none;
}

.tab__select::after {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    position: absolute;
    top: 50%;
    right: 20px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-color: #000 transparent transparent transparent;
}

.tab__select-item {
    -webkit-appearance: none;
    appearance: none;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 0;
    border: 1px solid;
    border-bottom-width: 0;
    outline: none;
    margin: 0;
    font-size: 16px;
    color: #000;
    border-color: #eeeeee;
    background-color: #eeeeee;
    cursor: pointer;
}

.tab__btn {
    font-size: 18px;
    padding: 14px 20px;
    position: relative;
}

.tab__btn::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--green);
    left: 0;
    top: 0;
    display: none;
}

.tab__btn--active::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    height: 1px;
    bottom: -1px;
    background-color: #ffffff;
}

.tab__btn--active {
    background-color: #fff;
    font-weight: 600;
    border: 1px solid #eeeeee;
    border-bottom: none;
}

.tab__btn--active::before {
    display: block;
}

.conference__tab {
    margin-bottom: 20px;
}

.company-info__materials-wrap {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center
}

.company-info__materials-inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    row-gap: 30px;
    width: 100%;
    max-width: 658px;
    -moz-column-gap: 56px;
    column-gap: 56px
}

.company-info__material-col {
    min-height: 1px;
    flex: 0 0 calc(33.3333% - 56px)
}

.download-item {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: var(--green);
    position: relative
}

.download-item svg {
    position: relative;
    top: 1px;
    margin-left: 12px
}

.download-item:hover {
    text-decoration: none;
    color: var(--gray)
}

.download-item::before {
    content: "";
    width: 43px;
    height: 57px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    flex-shrink: 0;
    margin-right: 16px
}

.download-item--pdf::before {
    background-image: url(../img/icons/pdf.svg)
}

.jobs__section {
    padding-top: 80px;
    padding-bottom: 110px
}

.jobs__section::before {
    width: 310px;
    height: 420px
}

.jobs__features {
    padding-top: 60px;
    padding-bottom: 50px
}

.jobs__features-inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    position: relative;
    z-index: 2
}

.jobs__features-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.jobs__feature {
    display: flex;
    align-items: center
}

.jobs__feature-icon {
    display: inline-block;
    width: 49px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 22px;
    flex-shrink: 0
}

.jobs__feature-title {
    font-size: 16px;
    line-height: 19px;
    max-width: 478px
}

.jobs__features-bottom-text {
    font-size: 24px;
    line-height: 29px;
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center
}

.jobs__vacancies {
    background-color: var(--white);
    padding-top: 117px;
    padding-bottom: 139px;
    position: relative
}

.jobs__vacancies::before {
    content: "";
    position: absolute;
    width: 254px;
    height: 323px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    transform: rotate(180deg)
}

.jobs__vacancies-inner {
    position: relative;
    z-index: 1
}

.jobs__vacancy {
    padding: 22px 40px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .4s
}

.jobs__vacancy:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    background-color: var(--white)
}

.jobs__vacancy:not(:last-child) {
    margin-bottom: 24px
}

.jobs__vacancy-title {
    margin: 0
}

.jobs__vacancy-respond {
    width: 182px
}

.coverflow-slider {
    position: relative
}

.coverflow-slider__slide {
    width: 446px;
    height: 349px;
    transition: .4s;
    opacity: 0
}

.coverflow-slider__slide.swiper-slide-active,
.coverflow-slider__slide.swiper-slide-next,
.coverflow-slider__slide.swiper-slide-prev {
    opacity: 1
}

.coverflow-slider__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.coverflow-slider__caption {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-top: 48px
}

.coverflow-slider__navigation {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    z-index: 2
}

.coverflow-slider__nav {
    position: absolute;
    font-size: 0
}

.coverflow-slider__nav svg {
    width: 34px
}

.coverflow-slider__nav--prev {
    left: 10px
}

.coverflow-slider__nav--next {
    right: 10px
}

.single-register__inner {
    position: relative;
    z-index: 1
}

.single-register__item {
    padding: 18px 40px;
    display: flex;
    align-items: center;
    background-color: var(--white);
    transition: .4s
}

.single-register__item:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.single-register__item:not(:last-child) {
    margin-bottom: 24px
}

.single-register__item-info {
    margin-left: 120px;
    margin-right: auto
}

.single-register__item-title {
    margin: 0;
    max-width: 300px;
    width: 100%
}

.single-register__item-description {
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    margin: 0
}

.single-register__item-time {
    font-size: 16px;
    line-height: 24px
}

.single-register__item-link {
    width: 159px
}

.our-clients {
    padding-top: 91px;
    padding-bottom: 64px
}

.our-clients::before {
    content: "";
    position: absolute;
    width: 2100px;
    height: 1017px;
    background-image: url(../img/our-clients/mother-russia.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -53px;
    left: -96px;
    z-index: -1
}

.our-clients::after {
    bottom: 140px;
    right: -80px
}

.our-clients__header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center
}

.our-clients__title,
.our-clients__title h2 {
    margin: 0;
    font-size: 24px;
    line-height: 29px;
    max-width: 800px;
    font-weight: 400
}

.our-clients__block {
    background-color: var(--white);
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.our-clients__regions {
    padding: 40px 48px 40px 32px;
    margin-bottom: 40px
}

.our-clients__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.our-clients__regions-list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 16px
}

.our-clients__region-col {
    flex-basis: calc(20% - 32px);
    min-width: 200px
}

.our-clients__region {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.our-clients__region-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 16px;
    flex-shrink: 0
}

.our-clients__region-name {
    font-size: 16px;
    line-height: 19px
}

.our-clients__departments-inner {
    padding: 53px 40px 46px;
    display: flex;
    justify-content: center
}

.our-clients__departments-list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 30px;
    justify-content: center;
    max-width: 600px
}

.our-clients__department {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 calc(50% - 30px);
    flex-wrap: wrap;
}

.our-clients__department-logo {
    width: 260px;
    -o-object-fit: cover;
    object-fit: cover
}

.our-clients__department-name {
    width: 100%;
    flex: none;
    text-align: center;
}

.contacts {
    padding-top: 60px;
    padding-bottom: 120px
}

.contacts__inner {
    position: relative;
    z-index: 1
}

.contact {
    background-color: var(--white);
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    display: flex;
    flex-wrap: wrap
}

.contact__info {
    width: 50.8%
}

.contact__map {
    width: 49.2%
}

.contact__map iframe {
    border: 0;
    width: 100%;
    height: 100%
}

.contact__info-header {
    padding: 32px;
    max-width: 400px;
    font-size: 16px
}

.contact__info-header-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.contact__info-header-bottom {
    margin-top: 24px
}

.contact__info-item:not(:last-child) {
    margin-bottom: 16px
}

.contact__info-item-title {
    font-weight: 700
}

.contact__feedback-heading,
.contact__feedback-heading h3 {
    margin: 0;
    font-weight: 700;
    padding: 25px 32px;
    background-color: #f8f8f8;
    font-size: 18px;
    line-height: 22px
}

.form__field {
    border: 0;
    padding: 20px 32px;
    font-size: 16px;
    line-height: 19px;
    width: 90%;
    margin: 5px 0;
    outline: 0;
    transition: .4s
}

.form__field:not(.form__field--no-border) {
    border: 1px solid #e6e6e6;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.contact__form-textarea {
    min-height: 171px;
    resize: none
}

.contact__form-textarea::-webkit-scrollbar {
    width: 10px
}

.contact__form-textarea::-webkit-scrollbar-track {
    background-color: #f8f8f8
}

.contact__form-textarea::-webkit-scrollbar-thumb {
    background-color: var(--green)
}

.contact__form-footer {
    background-color: #f8f8f8;
    padding: 17px 32px
}

.contact__form-submit {
    width: 149px
}

.not-found {
    padding-top: 39px;
    padding-bottom: 65px
}

.not-found__container {
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 1
}

.not-found__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px
}

.not-found__subtitle {
    padding: 0;
    text-align: center
}

.not-found__offer {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 19px
}

.not-found__offer a {
    color: var(--green)
}

.not-found__offer a:hover {
    text-decoration: underline
}

.not-found__offer-item--home {
    display: flex;
    align-items: center
}

.not-found__offer-item--home svg {
    margin-left: 12px
}

.not-found__offer-item:not(:last-child) {
    margin-bottom: 16px
}

.news {
    padding-top: 40px;
    padding-bottom: 80px
}

.news__inner {
    position: relative;
    z-index: 1
}

.news__filter {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px
}

.news__content {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.news-card {
    background-color: var(--white);
    padding: 16px 40px;
    display: flex;
    transition: .4s
}

.news-card:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.news-card__date {
    margin-right: 44px
}

.news-card__title {
    color: var(--gray);
    font-weight: 700
}

.load-more--center {
    display: flex;
    justify-content: center
}

.load-more__button {
    width: 240px
}

.news__footer {
    margin-top: 32px
}

.media {
    padding: 80px 0
}

.media__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    row-gap: 24px
}

.media__col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px
}

.media__footer {
    margin-top: 40px
}

.services {
    padding-top: 70px;
    padding-bottom: 80px
}

.services__inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    position: relative;
    z-index: 1
}

.services__text {
    margin: 0 0 64px
}

.service-card {
    display: flex;
    background-color: #fff;
    transition: .4s
}

.service-card:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.service-card__thumbnail {
    display: flex;
    width: 280px;
    flex-shrink: 0;
    position: relative
}

.service-card__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute
}

.service-card__info {
    padding: 32px 26px 42px 32px
}

.service-card__title {
    font-family: 'Sommet Rounded';
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    padding: 0;
}

.service-card__description {
    margin: 12px 0 24px
}

.features {
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px;
    margin-right: -16px;
    margin-left: -16px
}

.features__item {
    display: flex;
    align-items: center
}

.features__item-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-color: var(--green);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0
}

.features__item-title {
    font-weight: 600;
    word-break: break-word;
    margin: 0;
    font-size: 18px;
}

.features__col {
    width: 100%;
    min-height: 1px;
    padding-right: 16px;
    padding-left: 16px
}

.features--four-columns .features__col {
    flex: 0 0 25%;
    max-width: 25%
}

.features--two-columns .features__col {
    flex: 1 1 50%;
    max-width: 50%
}

.service__intro-inner {
    max-width: 689px
}

.service__intro-title {
    margin-bottom: 24px
}

.service__intro-subtitle {
    margin-bottom: 40px
}

.service__heading {
    background-color: #fff
}

.service__partner {
    padding: 46px 0
}

.service__partner-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.service__partner-logo {
    width: 165px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 41px
}

.service__partner-title {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center
}

.service__tasks::after {
    top: 52px
}

.circle {
    display: inline-block;
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--green);
    border-radius: 50%;
    right: -150px;
    top: 78px;
    z-index: -1
}

.service__tasks-header {
    display: flex;
    align-items: center;
    position: relative
}

.service__order-demo {
    max-width: 303px;
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0
}

.service__order-demo.service__order-demo-fixed {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 33;
    display: none;
}

.service__tasks-thumb {
    margin-top: 56px;
    margin-bottom: 80px
}

.service section ol,
.service section ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 19px
}

.service section ol li,
.service section ul li {
    position: relative;
}

.service section ol li:not(:last-child),
.service section ul li:not(:last-child) {
    margin-bottom: 20px
}

.service section ol {
    counter-reset: ordered
}

.service section ol li::before {
    content: counter(ordered) ".";
    counter-increment: ordered;
    color: var(--green);
    margin-right: 16px
}

.service section ul li::before {
    content: "";
    margin-right: 16px;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    display: inline-block;
    border: 2px solid var(--green);
    border-radius: 45px;
    left: 0;
    top: 8px
}

.list-blocks {
    display: flex;
    flex-wrap: wrap
}

.list-block:first-child {
    margin-right: 132px
}

.list-block__title {
    margin: 0 0 20px;
    font-weight: 900;
    font-size: 30px;
    line-height: 31px;
    font-family: 'Sommet Rounded'
}

.task-card {
    background-color: #fff;
    transition: .4s;
    display: flex
}

.task-card:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.task-card__info {
    padding: 32px 49px 32px 32px
}

.task-card__title {
    margin: 0 0 12px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.task-card__description {
    margin: 0
}

.task-card__thumbnail {
    width: 413px;
    height: 100%
}

.task-card__slide {
    width: 413px;
    min-height: 250px
}

.task-card__img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.task-card__slider-navigation {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 1;
    top: 50%
}

.task-card__slider-nav {
    position: absolute
}

.task-card__slider-nav--prev {
    left: 0
}

.task-card__slider-nav--next {
    right: 0
}

.service__tasks-cards {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.service__scheme {
    background-color: #fff;
    position: relative
}

.service__scheme::after {
    top: 52px;
    left: 0
}

.service__scheme-slide {
    display: flex;
    flex-direction: column;
    align-items: center
}

.service__scheme-slide-img {
    max-width: 892px
}

.service__scheme-caption {
    text-align: center;
    font-size: 24px;
    line-height: 29px;
    margin: 43px 0 0;
    max-width: 800px
}

.service__scheme-navigation {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0
}

.service__scheme-nav {
    position: absolute;
    z-index: 1
}

.service__scheme-nav--prev {
    left: 0
}

.service__scheme-nav--next {
    right: 0
}

.service__opportunities {
    position: relative
}

.service__opportunities::before {
    content: "";
    position: absolute;
    width: 254px;
    height: 323px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
    transform: rotate(180deg)
}

.service__opportunities-inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    position: relative;
    z-index: 1
}

.review-card {
    background-color: var(--white-lilac);
    display: flex;
    align-items: flex-start;
}

.review-card--white {
    background-color: #fff
}

.review-card__info {
    padding: 32px;
    display: flex;
    flex-direction: column
}

.review-card__title {
    margin: 0 0 20px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.review-card__text {
    margin: 0 0 30px;
    padding-left: 33px;
    position: relative
}

.review-card__text::before {
    content: "“";
    position: absolute;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 64px;
    line-height: 65px;
    color: var(--green);
    left: -11px;
    top: -18px
}

.review-card__text::after {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 2px;
    height: 48px;
    background-color: var(--green)
}

.review-card__thumbnail {
    display: flex;
    width: 304px;
    flex-shrink: 0;
    margin-left: 50px
}

.review-card__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.review-card__footer {
    display: flex;
    flex-direction: column;
    margin-top: auto
}

.review-card__position {
    font-size: 16px;
    line-height: 19px
}

.service__result {
    background-color: var(--white)
}

.service__opportunities-text {
    margin-bottom: 30px;
}

.service__result-cards {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 64px
}

.service__result-card {
    background-color: var(--white-lilac);
    padding: 16px 24px 16px 40px;
    display: flex
}

.service__result-card-title {
    margin: 0;
    width: 308px;
    flex-shrink: 0
}

.service__result-description {
    margin: 0
}

.service__projects::after {
    width: 440px;
    height: 303px;
    top: 52px;
    left: 0
}

.service__projects-text {
    margin-bottom: 30px;
}

.service__projects-top-text {
    margin: 0 auto 64px;
    text-align: center;
    max-width: 800px;
    font-size: 24px;
    line-height: 29px
}

.service__project-cards {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px
}

.service__project-card-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.service__bottom {
    background-color: #fff;
    padding-bottom: 30px;
}

.service__bottom::after {
    bottom: 289px
}

.service__bottom-top {
    display: flex;
    justify-content: center
}

.service__bottom-top-container {
    max-width: 1064px;
    width: 100%;
}

.service__video {
    margin-bottom: 56px
}

.service__people {
    background-color: var(--white-lilac);
    display: flex
}

.service__people-thumb {
    width: 202px;
    height: 176px
}

.service__people-img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.service__people-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    padding-right: 15px;
    width: 100%;
}

.service__people-name {
    margin: 0;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 36px;
    line-height: 37px
}

.service__publications {
    padding-bottom: 94px
}

.solutions {
    padding-top: 70px;
    padding-bottom: 80px
}

.solutions__inner {
    position: relative;
    z-index: 1
}

.solutions__text {
    margin: 0 0 65px
}

.solutions__cards {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.solution__intro-inner {
    max-width: 903px
}

.solution__intro-title {
    margin-bottom: 40px
}

.solution__inner {
    position: relative;
    z-index: 1
}

.solution__section-title {
    margin-bottom: 40px
}

.solution__section-thumb {
    margin: 48px 0
}

.solution__section-thumb--top {
    margin-top: 0
}

.solution__capabilities {
    padding-bottom: 80px
}

.solution__capabilities-inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.solution__capabilities-features {
    margin-top: 32px
}

.accordion {
    background-color: #fff;
    position: relative;
    transition: .4s
}

.accordion:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.accordion svg {
    transition: .4s;
    position: absolute;
    right: 39px
}

.accordion--active {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.accordion--active .accordion__content {
    max-height: 1000px;
    transition: max-height .5s ease-in
}

.accordion--active svg {
    transform: rotate(180deg)
}

.accordion--gap-32 {
    padding: 32px
}

.accordion--gap-32 svg {
    top: 45px
}

.accordion--gap-42 {
    padding: 42px 32px 32px
}

.accordion--gap-42 svg {
    top: 55px
}

.accordion__top-text {
    position: absolute;
    background-color: var(--green);
    top: 0;
    color: #fff;
    padding: 4px 8px;
    font-size: 24px;
    line-height: 29px
}

.accordion__title {
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px;
    color: var(--gray);
    text-align: left;
    max-width: 1152px;
    padding-right: 30px;
    margin-bottom: 16px
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0, 1.05, 0, 1)
}

.search__page-header {
    padding: 48px 0;
    background-color: #fff
}

.search__page-form {
    margin-bottom: 48px;
    position: relative
}

.search__page-form-input {
    outline: 0;
    border: 0;
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    width: 100%;
    padding: 29px 29px 29px 40px;
    font-weight: 600;
    color: var(--gray)
}

.search__page-result-text {
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 36px;
    line-height: 37px;
    margin: 0
}

.search__page-form-btn {
    position: absolute;
    font-size: 0;
    right: 28px;
    top: 50%;
    transform: translate(-50%, -50%)
}

.search__page-result {
    padding-top: 48px;
    padding-bottom: 120px
}

.search__page-result-block-title {
    margin: 0 0 40px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 24px;
    line-height: 24px
}

.search__page-result-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.search__page-publication {
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    transition: .4s
}

.search__page-publication:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.search__page-publication-title {
    padding-right: 30px;
    margin: 0
}

.search__page-publication-title b {
    color: var(--green);
    text-decoration: underline
}

.search__page-publication-link {
    width: 160px
}

.conferences__intro-inner {
    max-width: 903px
}

.conferences__intro-subtitle {
    margin-bottom: 55px
}

.conferences__info-title,
.conferences__info-title h2 {
    margin: 0 0 40px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.conferences__info-inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px
}

.conferences__info-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.conferences__info-item {
    display: flex
}

.conferences__info-text {
    margin: 0;
    font-size: 16px
}

.conferences__info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--green);
    border-radius: 50%;
    margin-right: 20px
}

.conferences__info-bottom {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 120px
}

.conferences__info-bottom-text {
    max-width: 800px;
    font-size: 24px;
    line-height: 29px;
    margin: 0
}

.conferences__list {
    background-color: var(--white)
}

.conferences__list-inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

.conference-card {
    display: flex;
    background-color: var(--white-lilac);
    transition: .4s
}

.conference-card:hover {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.conference-card__thumb {
    width: 280px;
    flex-shrink: 0
}

.conference-card__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.conference-card__info {
    padding: 32px
}

.conference-card__title,
.conference-card__title h3 {
    margin: 0 0 16px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.conference-card__date {
    display: inline-block;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 24px
}

.conference-card__description {
    margin: 0 0 32px
}

.conference-card__more {
    width: 162px
}

.conference__intro-action-materials {
    min-width: 171px
}

.conference__intro-action-gallery {
    min-width: 177px
}

.conference__top {
    padding-top: 30px
}

.conference__materials-header {
    text-align: center
}

.conference__materials-subtitle {
    display: inline-block;
    margin: 0 0 40px
}

.conference__materials-inner {
    margin-right: -9px;
    margin-left: -9px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px
}

.conference__materials-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 9px;
    padding-left: 9px
}

.conference__materials-card {
    background-color: var(--white);
    padding: 40px;
    height: 100%
}

.conference__materials-title {
    margin: 0 0 39px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.conference__materials-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 10px
}

.conference__materials-link {
    font-weight: 600
}

.conference__materials-link svg {
    margin-left: 10px
}

.conference__materials-bottom {
    margin-top: 40px;
    margin-right: -10px;
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px
}

.conference__materials-bottom-col {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 9px;
    padding-left: 9px
}

.conference__materials-bottom-link {
    font-weight: 600
}

.conference__materials-bottom-link svg {
    margin-left: 10px
}

.conference__about {
    background-color: var(--white)
}

.conference__about-table {
    background-color: var(--white-lilac);
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    padding: 32px 43px 40px;
    margin-bottom: 56px
}

.conference__about-table-inner {
    margin-right: -10px;
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px
}

.conference__about-table-col {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 9px;
    padding-left: 9px
}

.conference__about-table-item-title {
    margin: 0 0 16px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.conference__about-table-item-subtitle {
    font-weight: 600;
    margin: 0;
    max-width: 246px
}

.conference__about-table-bottom {
    text-align: center;
    margin-top: 70px
}

.conference__about-table-bottom-text {
    margin: 0;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 24px;
    line-height: 24px
}

.conference__about-review,
.conference__about-text {
    margin-bottom: 48px
}

.conference__about-bottom {
    display: flex;
    justify-content: center;
    text-align: center
}

.conference__about-bottom-text {
    margin: 0;
    max-width: 800px;
    font-size: 24px;
    line-height: 29px
}

.conference__partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.conference__partners-slider {
    position: relative
}

.conference__partners-navigation {
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    z-index: 1
}

.conference__partners-nav {
    position: absolute
}

.conference__partners-nav--prev {
    left: 0
}

.conference__partners-nav--next {
    right: 0
}

.conference__partner-info {
    margin-top: 40px
}

.conference__partner-subtitle {
    font-weight: 600
}

.conference__partner-name {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600
}

.conference__partner-thumb {
    width: 180px;
    height: 63px
}

.table {
    background-color: var(--white-lilac);
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    padding: 32px 32px 0;
    vertical-align: top;
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.table--white {
    background-color: var(--white)
}

.table thead {
    vertical-align: top
}

.table thead th {
    text-align: left;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px
}

.table tbody tr {
    vertical-align: top
}

.conference__program-table thead th:nth-child(1) {
    width: 198px
}

.conference__program-table thead th:nth-child(2) {
    width: 401px
}

.conference__program-table thead th:nth-child(3) {
    width: 246px
}

.conference__program-table thead th:nth-child(4) {
    width: 198px
}

.conference__program-table tbody tr td:nth-child(even) {
    padding: 32px 0
}

.conference__program-table tbody tr td:nth-child(4) {
    padding-right: 53px;
    font-weight: 600
}

.conference__program-table tbody tr td:nth-child(6) {
    padding-right: 34px
}

.conference__program-table tbody tr:nth-child(1) td:nth-child(even) {
    padding-top: 16px
}

.conference__program-table tbody tr:not(:last-child) td:nth-child(even) {
    border-bottom: 1px solid #e8e8e8
}

.table__cell-mobile-title {
    display: none;
    text-align: left;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px
}

.conference__video {
    background-color: var(--white)
}

.conference__gallery-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center
}

.conference__gallery-more {
    width: 240px
}

.knowledge-base {
    padding-top: 48px;
    padding-bottom: 120px
}

.knowledge-base__filter {
    margin-bottom: 48px
}

.knowledge-base__filter-form {
    display: flex
}

.knowledge-base__filter-item:not(:first-child) {
    margin-left: 25px
}

.knowledge-base__filter-form-actions {
    display: flex;
    align-items: center;
    margin-left: 25px
}

.knowledge-base__filter-form-action--reset {
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    color: var(--green);
    text-decoration: underline
}

.knowledge-base__filter-form-action--reset:hover {
    text-decoration: none;
    color: var(--accent)
}

.knowledge-base__filter-form-action--submit {
    width: 162px;
    height: 50px;
    margin-left: 25px
}

.knowledge-base__inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px
}

.knowledge-base__col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px
}

.knowledge-base__footer {
    margin-top: 40px
}

.kb-detail__info-title {
    margin-bottom: 48px
}

.kb-detail__markers {
    margin-bottom: 46px
}

.kb-detail__markers-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 20px
}

.kb-detail__top {
    padding-top: 46px
}

.kb-detail__slider-navigation {
    top: 36%
}

.kb-detail__bottom {
    background-color: var(--white)
}

.kb-detail__bottom::after {
    bottom: 8px
}

.kb-detail__bottom-content .table {
    margin-bottom: 48px;
    padding-top: 39px
}

.kb-detail__bottom-content .table thead th:nth-child(1) {
    width: 101px
}

.kb-detail__bottom-content .table thead th:nth-child(2) {
    width: 474px
}

.kb-detail__bottom-content .table thead th:nth-child(3) {
    width: 279px
}

.kb-detail__bottom-content .table thead th:nth-child(4) {
    width: 203px
}

.kb-detail__bottom-content .table tbody tr td:nth-child(even) {
    padding: 24px 0
}

.kb-detail__bottom-content .table tbody tr td:nth-child(4) {
    font-weight: 600
}

.kb-detail__bottom-content .table tbody tr:nth-child(1) td:nth-child(even) {
    padding-top: 30px
}

.kb-detail__bottom-content .table tbody tr:not(:last-child) td:nth-child(even) {
    border-bottom: 1px solid #e8e8e8
}

.kb-detail__bottom-content .review-card {
    margin-bottom: 10px
}

.kb-detail__bottom-content .video-card {
    margin-top: 81px;
    margin-bottom: 56px
}

.kb-detail__footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between
}

.kb-detail__meta {
    display: flex;
    flex-direction: column;
    max-width: 468px
}

.kb-detail__meta-link {
    color: var(--green);
    text-decoration: underline;
    display: block;
}

.kb-detail__meta-link:hover {
    text-decoration: none
}

.share {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    -moz-column-gap: 23px;
    column-gap: 23px
}

.share__link svg path {
    fill: var(--gray);
    transition: .4s
}

.share__link:hover svg path {
    fill: var(--green)
}

.subscribe {
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25)
}

.subscribe--error .subscribe__error {
    opacity: 1;
    visibility: visible;
}

.kb-detail__subscribe {
    max-width: 846px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto
}

.subscribe__header {
    background-color: var(--white-lilac);
    padding: 24px 22px;
    text-align: center;
    position: relative;
}

.subscribe__title {
    margin: 0;
    font-size: 18px;
    line-height: 22px
}

.subscribe__error {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: #435156;
    color: #fff;
    border-bottom: 5px solid #009982;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
}

.subscribe__content {
    text-align: center
}

.subscribe__subtitle {
    margin: 33px 0 64px
}

.subscribe__form-footer {
    padding: 17px 0;
    background-color: var(--white-lilac);
    display: flex;
    justify-content: center
}

.subscribe__form-submit {
    width: 154px
}

.kb-detail__related-inner {
    margin-right: -10px;
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    row-gap: 20px
}

.kb-detail__related-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px
}

.kb-detail__related-footer {
    margin-top: 40px
}

.header__demo {
    width: 186px;
    margin-left: 40px
}

.header-en__logo {
    width: 164px
}

.en-page__intro-inner {
    max-width: 594px
}

.en-page__intro-title {
    margin-bottom: 8px
}

.intro__subtitle-big {
    font-family: 'Sommet Rounded';
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px
}

.intro__get-product {
    width: 280px
}

.intro__get-product svg {
    margin-left: 20px
}

.text-block {
    padding: 68px 0;
    text-align: center
}

.text-block__inner {
    display: flex;
    justify-content: center
}

.text-block__description {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    margin: 0
}

.en-page__inner-wrap {
    background-color: var(--white)
}

.en__how {
    padding-top: 0;
    position: relative;
    z-index: 0
}

.en__how::before {
    bottom: -142px
}

.en__how::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--green);
    border-radius: 50%;
    right: -150px;
    top: 20px
}

.en__how-inner {
    display: flex;
    flex-direction: column;
    align-items: center
}

.en__how-inner img {
    margin-top: 60px;
    margin-bottom: 80px
}

.en__features-inner {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 58px;
    -moz-column-gap: 56px;
    column-gap: 56px
}

.en__features-col {
    flex: 0 0 calc(33.3333% - 56px);
    max-width: calc(33.3333% - 56px);
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.en__feature {
    display: flex
}

.en__feature-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 30px
}

.en__feature-title {
    margin: 0;
    font-size: 18px;
    line-height: 22px
}

.en__feature-description {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 19px
}

.en__about {
    padding-top: 0;
    padding-bottom: 55px
}

.en__scalable .swiper:hover {
    z-index: 2
}

.en__scalable .swiper-slide {
    height: 434px
}

.en__scalable .swiper-slide .scalable__card-icon {
    width: 229px;
    height: 229px
}

.en__scalable .swiper-slide .scalable__card-description {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center
}

.en__scalable .swiper-slide:hover {
    position: relative;
    z-index: 2
}

.en__about-download {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1
}

.en__services::before {
    content: "";
    position: absolute;
    width: 323px;
    height: 412px;
    background-image: url(../img/backgrounds/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
    z-index: -1
}

.en__services::after {
    left: -150px;
    top: 57px
}

.request-demo {
    background-image: url(../img/backgrounds/page-intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #435156;
    position: relative;
    z-index: 0
}


.request-demo__inner {
    display: flex;
    flex-direction: column;
    align-items: center
}

.request-demo__btn {
    width: 269px
}

.en__services {
    position: relative;
    background-color: var(--white-lilac);
}

.en__services-triangle {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1
}

.en__services-triangle::before {
    content: "";
    position: absolute;
    width: 526px;
    height: 365px;
    background-repeat: no-repeat;
    background-size: contain;
    left: -143px;
    top: 57px;
    opacity: .5;
    z-index: -1;
    background-image: url(../img/backgrounds/triangle-white.svg)
}

.en__services-slider-wrap {
    max-width: 1310px;
    overflow: hidden;
    position: relative;
    margin: -500px auto;
    padding: 500px 15px
}

.en__services-slider {
    overflow: visible;
    position: relative
}

.en__services-slider-nav {
    position: absolute;
    top: 45%;
    z-index: 1
}

.en__services-slider-nav--prev {
    left: 20px
}

.en__services-slider-nav--next {
    right: 20px
}

.en__service-card {
    background-color: var(--white);
    width: 100%;
    height: 100%
}

.en__services-slide {
    display: flex;
    justify-content: center;
    height: 374px;
    overflow: hidden;
    transition: .4s
}

.en__services-slide:hover {
    overflow: visible
}

.en__services-slide:hover .en__service-card-info-hidden {
    display: block
}

.en__services-slide:hover .en__service-card {
    height: unset;
    box-shadow: 0 45px 200px rgba(0, 0, 0, .21), 0 120px 120px rgba(132, 132, 132, .08)
}

.en__services-slide:hover .en__service-card-title svg {
    transform: rotate(180deg)
}

.en__service-card-info {
    padding: 40px;
    max-height: 550px;
    background-color: var(--white)
}

.en__service-card-info:hover {
    overflow-y: auto;
}

.en__service-card-title {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 29px
}

.en__service-card-title svg {
    position: relative;
    transition: .4s;
    top: 7px;
    margin-left: 10px
}

.en__service-card-info-hidden {
    display: none;
    background-color: var(--white)
}

.en__service-card-info-block {
    display: flex;
    flex-direction: column;
    row-gap: 20px
}

.en__service-card-info-block span {
    color: #525b65;
    font-weight: 700
}

.en__service-card-info-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 16px
}

.en__service-card-info-block ul li {
    padding-left: 44px;
    position: relative
}

.en__service-card-info-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/checked.svg);
    background-repeat: no-repeat;
    top: -3px;
    background-position: center
}

.en__service-card-btn {
    width: 230px;
    margin-top: 33px
}

.en__service-card-thumb {
    display: flex;
    height: 250px
}

.en__service-card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.contactus__list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 470px;
    row-gap: 11px
}

.contactus__item {
    display: flex;
    font-size: 16px;
    line-height: 19px
}

.contactus__text:first-child {
    width: 60px;
    margin-right: 64px
}

.footer-en .footer__right-bottom {
    max-width: unset
}

.en-page__footer-contacts {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.en-page__footer-contacts .footer__contacts-item:not(:last-child) {
    margin-bottom: 0
}

.footer {
    background-color: #435156;
    padding: 40px 0;
    color: #d1d1d1;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    color: #d1d1d1;
    font-size: 16px;
    line-height: 19px;
    position: relative
}

.footer__partner {
    margin-top: 15px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    color: #d1d1d1;
    margin-right: 180px;
    flex-shrink: 0
}

.footer__logo:hover {
    color: unset
}

.footer__logo-img {
    width: 130px;
    height: 30px;
}

.footer__logo-subtitle {
    font-size: 18px;
    font-weight: 900;
    font-family: 'Sommet Rounded';
    max-width: 130px
}

.footer__nav-list {
    display: flex
}

.footer__nav-item:not(:last-child) {
    margin-right: 74px
}

.footer__nav-item--bold {
    font-weight: 600;
    text-decoration: underline
}

.footer__nav-item--bold a {
    color: var(--green)
}

.footer__nav-item--bold a:hover {
    color: var(--white)
}

.footer__nav-link {
    color: #d1d1d1
}

.footer__right-bottom {
    margin-top: 38px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 845px
}

.footer__social {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.footer__social.contact_social {
    margin: 0;
}

.footer__social-link {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 0;
    position: relative;
    transition: .4s;
}

.footer__social-link.footer__social-link--dzen {
    width: 80px;
}

.footer__social-link:hover {
    opacity: .3;
}

.footer__social-link--vk {
    background-image: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.8216 0.307617H9.69219C2.26664 0.307617 0.5 2.04092 0.5 9.31279V17.2889C0.5 24.5742 2.2529 26.3076 9.67836 26.3076H17.8078C25.2334 26.3076 27 24.5878 27 17.3024V9.32637C27 2.04092 25.2471 0.307617 17.8216 0.307617ZM21.8932 18.8597H19.9609C19.2295 18.8597 19.0086 18.2774 17.6974 16.9909C16.5518 15.9076 16.0688 15.7722 15.7789 15.7722C15.3787 15.7722 15.2682 15.8805 15.2682 16.4222V18.1284C15.2682 18.5889 15.1164 18.8597 13.8881 18.8597C12.6961 18.7811 11.5402 18.4258 10.5155 17.8231C9.49088 17.2204 8.62683 16.3875 7.99453 15.393C6.49345 13.5599 5.44902 11.4084 4.9443 9.10967C4.9443 8.8253 5.05469 8.56799 5.6068 8.56799H7.53906C8.03594 8.56799 8.2154 8.78467 8.40859 9.28574C9.34711 11.994 10.9482 14.3503 11.5969 14.3503C11.8453 14.3503 11.9557 14.242 11.9557 13.6326V10.843C11.8729 9.57012 11.1828 9.46174 11.1828 9.00137C11.1919 8.87991 11.2489 8.7667 11.3416 8.68579C11.4344 8.60487 11.5557 8.56261 11.6797 8.56799H14.7162C15.1302 8.56799 15.2682 8.77111 15.2682 9.25861V13.0232C15.2682 13.4295 15.4477 13.5649 15.5719 13.5649C15.8203 13.5649 16.0135 13.4295 16.469 12.9826C17.4477 11.8116 18.2475 10.5069 18.843 9.10967C18.9037 8.94155 19.019 8.79758 19.171 8.69976C19.323 8.60194 19.5035 8.55566 19.6849 8.56799H21.6172C22.1969 8.56799 22.3211 8.85236 22.1969 9.25861C21.4938 10.8034 20.6239 12.2698 19.6021 13.6326C19.3951 13.944 19.3123 14.1065 19.6021 14.4722C19.7953 14.7565 20.4716 15.3117 20.9271 15.8399C21.5896 16.4882 22.1397 17.2384 22.5557 18.0607C22.7213 18.5889 22.4453 18.8597 21.8932 18.8597Z' fill='%23D1D1D1'/%3E%3C/svg%3E");
}

.footer__social-link--youtube {
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='27' viewBox='0 0 26 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 0.307617C2.23858 0.307617 0 2.54619 0 5.30762V21.3076C0 24.069 2.23858 26.3076 5 26.3076H21C23.7614 26.3076 26 24.069 26 21.3076V5.30762C26 2.54619 23.7614 0.307617 21 0.307617H5ZM8.323 7.30762H17.677C19.5122 7.30762 21 8.88446 21 10.8296V15.7856C21 17.7308 19.5122 19.3076 17.677 19.3076H8.323C6.48775 19.3076 5 17.7308 5 15.7856V10.8296C5 8.88446 6.48775 7.30762 8.323 7.30762ZM11.0545 15.7604L15.4297 13.5487C15.5613 13.4822 15.5636 13.2845 15.4335 13.2147L11.0583 10.8648C10.9415 10.802 10.8033 10.892 10.8033 11.0308V15.5924C10.8033 15.7292 10.9379 15.8193 11.0545 15.7604Z' fill='%23D1D1D1'/%3E%3C/svg%3E");
}

.footer__social-link--telegram {
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='27' viewBox='0 0 26 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0.307617C1.79086 0.307617 0 2.09848 0 4.30762V22.3076C0 24.5168 1.79086 26.3076 4 26.3076H22C24.2091 26.3076 26 24.5168 26 22.3076V4.30762C26 2.09848 24.2091 0.307617 22 0.307617H4ZM21.8049 8.05762C21.9331 6.60123 20.3951 7.20092 20.3951 7.20092C19.2596 7.67098 18.0885 8.14868 16.9047 8.63154C13.2343 10.1287 9.44224 11.6755 6.21198 13.1978C4.46044 13.8404 5.48573 14.4829 5.48573 14.4829L8.26257 15.3396C9.54416 15.7251 10.2277 15.2967 10.2277 15.2967L16.2085 11.2274C18.3446 9.77103 17.8319 10.9704 17.3193 11.4844L12.8336 15.7679C12.1501 16.3676 12.4919 16.8816 12.7909 17.1386C13.6384 17.8864 15.7233 19.2546 16.6335 19.8519C16.8704 20.0073 17.0277 20.1105 17.0629 20.1371C17.2766 20.3084 18.43 21.0794 19.199 20.9081C19.968 20.7368 20.0534 19.7516 20.0534 19.7516L21.0787 13.0265C21.2325 11.859 21.4088 10.7368 21.5497 9.84052C21.6828 8.99395 21.7842 8.34892 21.8049 8.05762Z' fill='%23D1D1D1'/%3E%3C/svg%3E");
}

.footer__social-link--dzen {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='26' viewBox='0 0 80 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.509 15.5056C13.4669 17.6153 13.3182 20.2423 13.1423 26C18.5079 26 22.213 25.9797 24.1267 24.1236C25.9828 22.21 25.9997 18.3286 25.9997 13.1392C20.2454 13.3252 17.615 13.4638 15.5088 15.5059L15.509 15.5056ZM0.000343377 13.1392C0.000343377 18.329 0.020596 22.2099 1.87679 24.1236C3.79037 25.9797 7.49593 26 12.8611 26C12.6752 20.2423 12.5366 17.6153 10.4944 15.5056C8.38474 13.4634 5.75771 13.3147 0 13.1389L0.000343377 13.1392ZM12.8608 0.000259656C7.50537 0.000259656 3.79012 0.0171633 1.87645 1.87671C0.0203391 3.79029 0 7.66826 0 12.861C5.75771 12.6751 8.38474 12.5365 10.4944 10.491C12.5366 8.38465 12.6853 5.75762 12.8611 0L12.8608 0.000259656ZM15.5084 10.491C13.4663 8.38465 13.3176 5.75762 13.1417 0C18.5073 0 22.2124 0.0169037 24.1261 1.87645C25.9822 3.79003 25.9991 7.668 25.9991 12.8608C20.2448 12.6748 17.6144 12.5362 15.5081 10.4907' fill='%23D1D1D1'/%3E%3Cpath d='M34.0449 23.3692V19.7835H43.2433V23.3692H46.038V17.4589H44.4307V2.59668H33.9216L33.6251 11.1282C33.5262 13.8979 33.229 16.1482 32.4377 17.4589H31.251V23.3692H34.0449ZM36.2459 11.5239L36.468 4.92121H41.4384V17.4589H35.2568C35.7762 16.2966 36.147 14.2936 36.2459 11.5239Z' fill='%23D1D1D1'/%3E%3Cpath d='M51.0574 17.7065C49.5489 17.7065 48.0658 17.1624 47.2744 16.5689V18.9677C47.8429 19.4375 49.277 20.031 51.4036 20.031C54.5438 20.031 56.2008 18.6214 56.2008 16.1238C56.2008 14.6647 55.2861 13.6756 53.6536 13.3294C55.1873 12.8348 55.8301 11.7467 55.8301 10.3619C55.8301 8.25988 54.173 7.09766 51.5025 7.09766C49.5742 7.09766 48.3132 7.69114 47.5962 8.13624V10.535C48.3868 10.0157 49.4754 9.42219 51.0826 9.42219C52.1705 9.42219 52.863 9.94151 52.863 10.8564C52.863 11.8209 52.2693 12.3402 51.0574 12.3402H49.2034V14.5658H51.0574C52.5658 14.5658 53.1595 15.011 53.1595 16.0991C53.1595 17.0882 52.4424 17.7065 51.0574 17.7065Z' fill='%23D1D1D1'/%3E%3Cpath d='M67.3346 18.9429V16.5442C66.4191 17.1624 64.8862 17.7065 63.4521 17.7065C61.3009 17.7065 60.485 16.6925 60.3617 14.6153H67.4579V13.0573C67.4579 8.72972 65.5542 7.09766 62.6117 7.09766C59.0264 7.09766 57.3203 9.84254 57.3203 13.6014C57.3203 17.929 59.4462 20.031 63.2054 20.031C65.0846 20.031 66.4689 19.5364 67.3346 18.9429ZM62.5619 9.42219C64.0213 9.42219 64.4664 10.6339 64.4664 12.1918V12.4391H60.3617C60.436 10.4608 61.153 9.42219 62.5619 9.42219Z' fill='%23D1D1D1'/%3E%3Cpath d='M76.3038 7.34424V12.2653H72.3722V7.34424H69.4297V19.783H72.3722V14.5899H76.3038V19.783H79.2463V7.34424H76.3038Z' fill='%23D1D1D1'/%3E%3C/svg%3E");
}

.social-link--vk {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='8' fill='%235C636F'/%3e%3cpath d='M16.8351 21.786C10.7112 21.786 7.21942 17.5959 7.07617 10.6125H10.1561C10.2545 15.7337 12.5107 17.9003 14.3014 18.348V10.6125H17.1932V15.0264C18.957 14.8384 20.8193 12.8239 21.446 10.6035H24.3289C24.0938 11.7529 23.6243 12.8414 22.9496 13.8012C22.2748 14.7609 21.4094 15.5711 20.4074 16.1813C21.5256 16.7379 22.5131 17.5252 23.3048 18.4912C24.0965 19.4573 24.6744 20.5803 25.0004 21.786H21.822C21.1416 19.6641 19.4405 18.0167 17.1932 17.7929V21.786H16.8441H16.8351Z' fill='white'/%3e%3c/svg%3e");
}

.social-link--youtube {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='8' fill='%235C636F'/%3e%3cg clip-path='url(%23clip0_402_58)'%3e%3cpath d='M16.0574 9.2489H16.1575C17.0823 9.25228 21.7679 9.28603 23.0312 9.62578C23.4132 9.72947 23.7612 9.93158 24.0406 10.2119C24.3199 10.4922 24.5208 10.841 24.6231 11.2233C24.7367 11.6508 24.8166 12.2167 24.8706 12.8005L24.8819 12.9175L24.9066 13.21L24.9156 13.327C24.9888 14.3553 24.9977 15.3183 24.9989 15.5287V15.613C24.9977 15.8313 24.9876 16.8595 24.9066 17.9305L24.8976 18.0487L24.8875 18.1657C24.8312 18.8092 24.748 19.4482 24.6231 19.9184C24.5211 20.3008 24.3203 20.6498 24.0409 20.9301C23.7615 21.2105 23.4133 21.4125 23.0312 21.5159C21.7262 21.8669 16.7661 21.8917 16.0787 21.8928H15.919C15.5714 21.8928 14.1336 21.886 12.6261 21.8343L12.4349 21.8275L12.337 21.823L12.1446 21.8152L11.9523 21.8073C10.7035 21.7522 9.51437 21.6633 8.9665 21.5148C8.58455 21.4115 8.23645 21.2097 7.95706 20.9295C7.67768 20.6493 7.47683 20.3006 7.37462 19.9184C7.24975 19.4493 7.1665 18.8092 7.11025 18.1657L7.10125 18.0475L7.09225 17.9305C7.03673 17.1682 7.00596 16.4043 7 15.64L7 15.5017C7.00225 15.2598 7.01125 14.4239 7.072 13.5014L7.07987 13.3855L7.08325 13.327L7.09225 13.21L7.117 12.9175L7.12825 12.8005C7.18225 12.2167 7.26212 11.6497 7.37575 11.2233C7.47778 10.8408 7.67856 10.4919 7.95795 10.2115C8.23735 9.93116 8.58554 9.72916 8.96762 9.62578C9.5155 9.47953 10.7046 9.38953 11.9534 9.33328L12.1446 9.3254L12.3381 9.31865L12.4349 9.31528L12.6272 9.3074C13.6979 9.27295 14.769 9.25382 15.8403 9.25003H16.0574V9.2489ZM14.2 12.8602V18.2804L18.8766 15.5714L14.2 12.8602Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_402_58'%3e%3crect width='18' height='18' fill='white' transform='translate(7 7)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.social-link--telegram {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_402_60)'%3e%3cpath d='M32 0H0V32H32V0Z' fill='%235C636F'/%3e%3cpath d='M8.09992 15.7083C12.3949 13.8371 15.2589 12.6034 16.6919 12.0074C20.7834 10.3056 21.6335 10.01 22.1877 10.0001C22.3095 9.99805 22.582 10.0283 22.7586 10.1715C22.9076 10.2924 22.9486 10.4558 22.9683 10.5705C22.9879 10.6851 23.0123 10.9464 22.9929 11.1505C22.7712 13.4801 21.8118 19.1335 21.3237 21.7427C21.1172 22.8468 20.7105 23.217 20.3168 23.2532C19.4613 23.3319 18.8116 22.6878 17.9829 22.1446C16.6862 21.2946 15.9537 20.7654 14.695 19.936C13.2404 18.9774 14.1834 18.4506 15.0124 17.5896C15.2293 17.3643 18.999 13.9355 19.0719 13.6244C19.0811 13.5855 19.0895 13.4405 19.0034 13.3639C18.9172 13.2874 18.7901 13.3136 18.6983 13.3344C18.5683 13.3639 16.4968 14.7331 12.4839 17.4419C11.8959 17.8457 11.3633 18.0424 10.8862 18.0321C10.3601 18.0207 9.34822 17.7346 8.59598 17.4901C7.67333 17.1902 6.94002 17.0316 7.00388 16.5223C7.03714 16.257 7.40248 15.9856 8.09992 15.7083Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_402_60'%3e%3crect width='32' height='32' rx='8' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.social-link--dzen {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='8' fill='%235C636F'/%3e%3cg clip-path='url(%23clip0_402_63)'%3e%3cpath d='M23.8815 15.6349C23.883 15.6349 23.884 15.6349 23.8855 15.6349C23.9859 15.6349 24.0817 15.5928 24.1497 15.519C24.2188 15.4441 24.253 15.3437 24.244 15.2422C23.8826 11.2667 20.7351 8.11814 16.7593 7.75598C16.6585 7.74806 16.557 7.78082 16.4821 7.8503C16.4072 7.91942 16.3654 8.01698 16.3665 8.11886C16.4292 13.4022 17.1261 15.5611 23.8815 15.6349ZM23.8815 16.365C17.1261 16.4388 16.4295 18.5977 16.3669 23.8811C16.3658 23.983 16.4076 24.0805 16.4824 24.1497C16.5494 24.2112 16.6369 24.2454 16.7269 24.2454C16.7377 24.2454 16.7488 24.2451 16.7596 24.244C20.7355 23.8818 23.883 20.7336 24.244 16.7578C24.253 16.6563 24.2192 16.5558 24.1497 16.4809C24.0802 16.4061 23.9834 16.369 23.8815 16.365ZM15.216 7.75778C11.2527 8.13038 8.11532 11.2782 7.75568 15.2429C7.74668 15.3444 7.78052 15.4449 7.85 15.5197C7.91804 15.5935 8.01416 15.6353 8.11424 15.6353C8.11568 15.6353 8.11712 15.6353 8.11856 15.6353C14.8516 15.5579 15.5468 13.4001 15.6102 8.1203C15.6112 8.01842 15.5691 7.9205 15.4942 7.85138C15.4186 7.78226 15.3175 7.74842 15.216 7.75778ZM8.1182 16.3647C8.00624 16.3521 7.9184 16.4053 7.84964 16.4802C7.78052 16.5551 7.74632 16.6555 7.75532 16.7571C8.11496 20.7217 11.2527 23.8696 15.216 24.2422C15.2271 24.2433 15.2386 24.2436 15.2498 24.2436C15.3398 24.2436 15.4269 24.2098 15.4939 24.1482C15.5688 24.0791 15.6109 23.9812 15.6098 23.8793C15.5464 18.5999 14.8516 16.4421 8.1182 16.3647Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_402_63'%3e%3crect width='18' height='18' fill='white' transform='translate(7 7)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.footer__social-item:not(:last-child) {
    margin-right: 23px
}

.footer__social.contact_social .footer__social-item:not(:last-child) {
    margin-right: 10px;
}

.footer__contacts {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer__contacts-item:not(:last-child) {
    margin-bottom: 11px
}

.footer__contacts-link {
    transition: .4s;
    color: #d1d1d1
}

.footer__copyright {
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    left: 0;
    bottom: -26px;
}

.footer__copyright-link {
    color: #d1d1d1;
    margin-left: 100px
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(82, 91, 101, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    transition: .2s;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto
}

.modal--active {
    opacity: 1;
    visibility: visible
}

.modal--active .modal__inner {
    opacity: 1;
    transform: scale(1)
}

.modal__inner {
    background-color: #fff;
    box-shadow: 25px 75px 120px rgba(126, 126, 126, .25);
    transition: .3s ease-in;
    transform: scale(.8);
    opacity: 0
}

.modal__header {
    background-color: var(--white-lilac);
    padding: 40px 20px 15px;
    position: relative
}

.modal__content {
    position: relative
}

.modal__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    text-align: center;
    padding: 0 20px
}

.modal__close--style {
    font-size: 0;
    position: absolute;
    top: 24px;
    right: 20px
}

.modal-order__inner {
    max-width: 600px;
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 40px)
}

.order-form {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
}

.order-form__field {
    padding: 15px 19px;
    max-width: 406px;
}

.order-form__sep {
    padding: 20px 19px;
    font-weight: 700;
    border-bottom: 0px solid #e6e6e6
}

.order-form__radios {
    padding: 10px 19px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    text-align: left;
    margin: 0 10%;
}

.order-form__radio {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.dropdown.order-form__dropdown {
    width: 90%;
    text-align: center;
    margin: 5px auto;
    max-width: 400px;
}

.order-form__dropdown-header {
    border: 1px solid #e6e6e6
}

.order-form__dropdown-content {
    padding: 24px 22px;
    text-align: left;
}

.order-form__dropdown-content label {
    line-height: 24px
}

.order-form__footer {
    /* background-color: var(--white-lilac); */
    padding: 8px 19px 40px;
}

.dropdown__header {
    padding: 13px 19px;
    display: block;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.order-form__submit {
    width: 280px;
    margin-top: 10px;
}

.order-form__agreement-text {
    margin: 0 auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    max-width: 400px;
}

.modal-success__inner {
    padding: 32px;
    text-align: center;
    max-width: 360px;
    width: calc(100% - 30px)
}

.modal-success__title {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    margin: 0
}

.modal-success__text {
    font-size: 16px;
    line-height: 19px;
    margin: 12px 0 0
}

.modal-success__close-bottom {
    width: 240px;
    margin-top: 30px
}

@media (max-width: 1600px) {
    .publications__nav--prev {
        left: 0
    }

    .publications__nav--next {
        right: 0
    }
}

@media (max-width: 1366px) {
    .page__nav-item:not(:last-child) {
        margin-right: 80px
    }

    .features--four-columns .features__col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%
    }

    .footer__nav-item:not(:last-child) {
        margin-right: 50px
    }
}

@media (max-width: 1280px) {
    .our-clients__region-col {
        flex-basis: calc(25% - 32px)
    }

    .tasks__list {
        position: static;
    }
}

@media (max-width: 1200px) {

    .header__search-btn,
    .header__nav-item:not(:last-child) {
        margin-right: 10px;
    }

    #publications-slider {
        max-width: 800px
    }

    .publications__navigation {
        top: 45%
    }

    .publications__nav--prev {
        left: 20px
    }

    .publications__nav--next {
        right: 20px
    }

    .page__nav-item:not(:last-child) {
        margin-right: 40px
    }

    .awards__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .awards__col:not(:last-child) {
        margin-bottom: 61px
    }

    .sertificates__nav--prev {
        left: 0
    }

    .sertificates__nav--next {
        right: 0
    }



    .team__col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%
    }

    .press-service__inner {
        align-items: center;
        flex-direction: column;
        row-gap: 20px
    }

    .press-service__col {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        width: 100%;
        max-width: 630px
    }

    .jobs__slider-nav svg path {
        stroke: var(--green)
    }

    .single-register__item-info {
        margin-left: 15px
    }

    .conference__about-table-col,
    .features--four-columns .features__col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .conference__program-table thead th:nth-child(1) {
        width: 140px
    }

    .conference__program-table thead th:nth-child(2) {
        width: 350px
    }

    .conference__program-table thead th:nth-child(3) {
        width: 190px
    }

    .conference__program-table tbody tr td:not(.table__cell-mobile-title) {
        font-size: 16px
    }

    .knowledge-base__filter-form {
        flex-wrap: wrap;
        row-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }

    .knowledge-base__filter-form-item {
        width: calc(50% - 20px);
        max-width: unset
    }

    .knowledge-base__filter-form-item:not(:first-child) {
        margin: 0
    }

    .knowledge-base__filter-form-actions {
        justify-content: space-between
    }

    .en__features-inner {
        -moz-column-gap: 20px;
        column-gap: 20px
    }

    .en__features-col {
        flex: 0 0 calc(33.3333% - 20px);
        max-width: calc(33.3333% - 20px)
    }

    .en__feature-icon {
        width: 60px;
        height: 60px
    }

    .footer__logo {
        margin-right: 50px
    }
}

@media (max-width: 1024px) {
    .our-clients__region-col {
        flex-basis: calc(33.3333% - 32px)
    }

    .media__col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .service__tasks-header {
        flex-direction: column
    }

    .service__order-demo {
        position: static;
        margin-bottom: 40px
    }

    .service__tasks-title {
        margin-bottom: 40px
    }

    .conference__materials-bottom-col,
    .knowledge-base__col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .footer__nav-item:not(:last-child) {
        margin-right: 30px
    }
}

@media (max-width: 992px) {

    .bg-globe:not(.bg-globe--adaptive)::before,
    .bg-triangle::after {
        content: none
    }

    .bg-globe--adaptive::before {
        width: 373px;
        height: 262px
    }

    .section__title:not(.section__title--small) {
        font-size: 28px;
        line-height: 32px;
        padding-top: 30px;
    }

    .section__title:not(.section__title--small) h2 {
        font-size: 28px;
        line-height: 32px;
        padding-top: 30px;
    }

    .header__nav {
        z-index: 5;
        position: absolute;
        top: 100px;
        background-color: #fff;
        left: 0;
        right: 0;
        padding: 31px 40px 37px 20px;
        transition: .4s;
        visibility: hidden;
        opacity: 0
    }

    .header__nav--active {
        visibility: visible;
        opacity: 1
    }

    .header__nav-list {
        flex-direction: column
    }

    .header__nav-item:not(:last-child) {
        margin: 0 0 30px
    }


    .header__right {
        display: none
    }

    .header-en .header__right {
        display: inline-block;
        margin-left: auto;
        margin-right: 16px
    }

    .header-en .header__nav-right {
        display: none
    }

    .header-en .header__demo {
        width: 128px;
        height: 32px;
        font-size: 12px;
        line-height: 15px;
        margin-left: 16px
    }

    .nav-toggle {
        display: flex
    }

    .intro::before {
        content: none
    }

    .intro:not(.intro-style--2) {
        background-image: none
    }

    .main-page__intro::after {
        content: "";
        position: absolute;
        background-image: url(../img/backgrounds/globe-big.svg);
        width: 450px;
        height: 299px;
        background-size: cover;
        background-position: center;
        top: 0;
        right: -50px
    }

    .intro__title {
        font-size: 58px;
        line-height: 65px
    }

    .main-page__intro {
        min-height: 516px
    }

    .conference-more__inner {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: unset;
        justify-content: unset
    }

    .conference-more__left {
        margin-right: 0;
        margin-bottom: 28px
    }

    .conference-more__description {
        margin-bottom: 32px
    }

    .tab__btn {
        display: none;
    }

    .tab__select {
        display: block;
    }

    .principles__col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .solutions-more {
        background-position: center;
        padding: 80px 0
    }

    .solutions-more::after {
        top: 0;
        width: 220px;
        height: 152px
    }

    .solutions-more__inner {
        flex-direction: column;
        align-items: center
    }

    .solutions-more__col {
        width: 320px
    }

    .solutions-more__col:first-child {
        margin-right: 0;
        margin-bottom: 50px
    }

    .solutions-more__item-title {
        margin-bottom: 0
    }

    .solutions-more__item-subtitle {
        margin: 20px 0
    }

    .solutions-more__item-more {
        width: 40px;
        height: 40px
    }

    .tasks__inner {
        margin-top: 30px;
        flex-direction: column
    }

    .tasks__img-wrap {
        margin-right: 0;
        margin-bottom: 30px;
        padding: 0 15px
    }

    #publications-slider {
        max-width: 650px
    }

    .publications__nav svg {
        width: 24px
    }

    .page__intro::before {
        content: none
    }

    .page__title {
        font-size: 62px;
        line-height: 62px
    }

    .page__header-nav {
        border-bottom: 1px solid #e8e8e8;
        position: relative
    }

    .page__nav {
        position: absolute;
        background-color: #fff;
        top: 54px;
        left: 0;
        right: 0;
        opacity: 0;
        transition: .4s;
        visibility: hidden
    }

    .page__nav--active {
        visibility: visible;
        opacity: 1
    }

    .page__nav-list {
        flex-direction: column;
        padding: 0 20px
    }

    .page__nav-item:not(:last-child) {
        margin-right: 0
    }

    .page__nav-link--current::after {
        content: none
    }

    .page__header-nav-inner {
        justify-content: space-between;
        padding: 15px 0
    }

    .page__header-nav-title {
        display: inline-block
    }

    .page__nav-toggle {
        display: flex
    }

    .video-card__inner iframe {
        height: 380px
    }

    .video-card__title {
        font-size: 22px;
        line-height: 24px
    }

    .our-mission::before {
        content: none
    }

    .awards__inner {
        margin-top: 40px
    }

    .awards__block-heading {
        top: -35px
    }

    .awards__block::before {
        width: 200px
    }

    .awards__block-title {
        font-size: 24px
    }

    .sertificates::after {
        content: none
    }

    .sertificates__nav--prev {
        left: 0
    }

    .sertificates__nav--next {
        right: 0
    }

    .sertificates__bottom-text {
        margin-top: 40px
    }

    .team__col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .team__bottom {
        margin-top: 40px
    }

    .company-info::before {
        content: none
    }

    .company-info__material-col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .jobs__section {
        padding-top: 61px;
        padding-bottom: 40px
    }

    .jobs__features {
        padding-top: 40px;
        padding-bottom: 49px
    }

    .jobs__features-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .jobs__feature {
        align-items: flex-start
    }

    .jobs__feature-icon {
        margin-right: 26px
    }

    .jobs__features-bottom-text {
        margin-top: 40px
    }

    .jobs__vacancies::before {
        content: none
    }

    .coverflow-slider__nav svg {
        width: 24px
    }

    .single-register__item {
        align-items: flex-start;
        flex-direction: column
    }

    .single-register__item-info {
        margin: 20px 0
    }

    .our-clients::before {
        content: none
    }

    .our-clients__region-col {
        flex-basis: calc(50% - 32px)
    }

    .contacts {
        padding: 40px 0
    }

    .contact__info {
        width: 100%
    }

    .contact__map {
        width: 100%;
        height: 400px
    }

    .contact__info-header {
        padding: 20px
    }

    .contact__feedback-heading,
    .contact__feedback-heading h3 {
        padding: 25px 20px
    }

    .form__field {
        padding: 20px
    }

    .contact__form-footer {
        padding: 17px 20px
    }

    .contact__form-submit {
        width: 100%
    }

    .circle {
        display: none
    }

    .service__tasks-thumb {
        margin-top: 30px;
        margin-bottom: 40px
    }

    .service-card {
        flex-direction: column
    }

    .service-card__thumbnail {
        width: 100%
    }

    .service-card__img {
        position: relative;
        height: 268px
    }

    .task-card {
        flex-direction: column-reverse
    }

    .task-card__thumbnail {
        width: 100%
    }

    .task-card__slide {
        width: 100%;
        min-height: 182px
    }

    .service__partner {
        padding-top: 33px;
        padding-bottom: 41px
    }

    .service__partner-inner {
        flex-direction: column
    }

    .service__partner-logo {
        margin-right: 0;
        margin-bottom: 22px
    }

    .service__scheme-caption {
        margin-top: 41px;
        font-size: 18px;
        line-height: 22px
    }

    .service__scheme-slide-img {
        max-width: 100%;
    }

    .service__result-cards {
        row-gap: 20px;
        margin-bottom: 20px
    }

    .service__result-card {
        flex-direction: column;
        padding: 20px
    }

    .service__result-card-title {
        width: unset;
        margin-bottom: 20px
    }

    .service__result-description {
        font-size: 16px;
        line-height: 19px
    }

    .service__project-cards {
        row-gap: 20px
    }

    .service__project-card-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .service__video {
        margin-bottom: 20px
    }

    .accordion--gap-32 {
        padding: 20px
    }

    .accordion--gap-42 {
        padding: 40px 20px 20px
    }

    .accordion__top-text {
        width: 100%;
        text-align: center;
        left: 0;
        font-size: 18px;
        line-height: 22px
    }

    .search__page-publication {
        flex-direction: column;
        align-items: flex-start
    }

    .search__page-publication-title {
        margin-bottom: 20px
    }

    .conferences__info-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .conferences__info-bottom {
        margin-top: 60px
    }

    .conferences__info-bottom-text {
        font-size: 20px;
        line-height: 24px
    }

    .conference__materials-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .conference__materials-bottom-link {
        font-size: 16px
    }

    .conference__about-bottom-text {
        font-size: 20px;
        line-height: 24px
    }

    .conference__partners-navigation {
        top: 7%
    }

    .conference__partners-nav svg {
        width: 24px
    }

    .conference__program-table table {
        padding: 0
    }

    .conference__program-table thead {
        display: none
    }

    .conference__program-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 20px
    }

    .conference__program-table tbody tr td:nth-child(4),
    .conference__program-table tbody tr td:nth-child(6),
    .conference__program-table tbody tr td:nth-child(even) {
        padding: 0
    }

    .conference__program-table tbody tr td.table__cell-mobile-title {
        display: inline-block;
        margin-bottom: 16px
    }

    .conference__program-table tbody tr td.table__cell-mobile-title:not(:first-child) {
        margin-top: 30px
    }

    .conference__program-table tbody tr:nth-child(1) td:nth-child(even) {
        padding: 0
    }

    .conference__program-table tbody tr:not(:last-child) {
        border-bottom: 1px solid #e8e8e8
    }

    .conference__program-table tbody tr:not(:last-child) td:nth-child(even) {
        border: none
    }

    .knowledge-base {
        padding-bottom: 80px
    }

    .kb-detail__slider-caption {
        font-size: 18px;
        line-height: 22px;
        margin-top: 20px
    }

    .kb-detail__bottom-content .table {
        margin-bottom: 40px;
        padding: 0
    }

    .kb-detail__bottom-content .table thead {
        display: none
    }

    .kb-detail__bottom-content .table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 20px
    }

    .kb-detail__bottom-content .table tbody tr td:nth-child(even) {
        padding: 0
    }

    .kb-detail__bottom-content .table tbody tr td.table__cell-mobile-title {
        display: inline-block;
        margin-bottom: 10px
    }

    .kb-detail__bottom-content .table tbody tr td.table__cell-mobile-title:not(:first-child) {
        margin-top: 20px
    }

    .kb-detail__bottom-content .table tbody tr:nth-child(1) td:nth-child(even) {
        padding: 0
    }

    .kb-detail__bottom-content .table tbody tr:not(:last-child) {
        border-bottom: 1px solid #e8e8e8
    }

    .kb-detail__bottom-content .table tbody tr:not(:last-child) td:nth-child(even) {
        border: none
    }

    .kb-detail__bottom-content .review-card,
    .kb-detail__bottom-content .video-card {
        margin: 40px 0
    }

    .kb-detail__footer {
        flex-direction: column;
        justify-content: flex-start
    }

    .kb-detail__meta {
        margin-bottom: 30px
    }

    .kb-detail__related-col {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center
    }

    .kb-detail__related-card {
        max-width: 360px
    }

    .text-block__description {
        font-size: 26px
    }

    .text-block {
        padding: 50px 0
    }

    .en__how-inner,
    .en__what-text {
        font-size: 16px;
        line-height: 24px
    }

    .en__how-inner img {
        margin: 30px 0
    }

    .en__how::after {
        content: none
    }

    .en__features-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px)
    }

    .en__services-triangle {
        display: none
    }

    .footer-en .footer__copyright {
        position: static;
        margin-top: 20px
    }

    .en-page__footer-contacts {
        flex-direction: column;
        row-gap: 20px
    }

    .footer__inner {
        padding-bottom: 40px
    }

    .footer__logo {
        margin-right: 0;
        width: 30%
    }

    .footer__nav-list {
        flex-direction: column
    }

    .footer__nav-item:not(:last-child) {
        margin-bottom: 10px
    }

    .footer__right {
        display: flex;
        width: 70%;
        justify-content: space-between
    }

    .footer__right-bottom {
        margin-top: 0;
        flex-direction: column;
        justify-content: unset
    }

    .footer__social {
        margin-bottom: 30px
    }
}

@media (max-width: 768px) {
    .section--gap {
        padding: 40px 0
    }

    .section--gap-top {
        padding-top: 40px
    }

    .section__title:not(.section__title--small) {
        font-size: 24px;
        line-height: 26px;
        padding-top: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    .section__title:not(.section__title--small) h2 {
        font-size: 24px;
        line-height: 26px;
        padding-top: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    .main-page__intro-inner {
        padding-top: 183px;
        padding-bottom: 29px
    }

    .intro__title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 24px
    }

    .intro__subtitle {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 19px
    }

    .intro__link {
        font-size: 16px;
        width: 280px
    }

    .intro__actions {
        flex-direction: column
    }

    .intro__action {
        width: 100%
    }

    .intro__action:first-child {
        margin-right: 0;
        margin-bottom: 20px
    }

    .order-demo svg {
        margin-left: 6px
    }

    .conference-more {
        padding-top: 20px;
        padding-bottom: 30px
    }

    .conference-more__link {
        width: 100%
    }

    .statistics__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .principles__inner {
        row-gap: 30px
    }

    .principles__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .solutions-more__col {
        width: 280px
    }

    .solutions-more__col:first-child {
        margin-right: 0;
        margin-bottom: 30px
    }

    .solutions-more__item-subtitle {
        font-size: 21px;
        line-height: 24px
    }

    .tasks::before {
        width: 116px;
        height: 150px;
        right: 0
    }

    .tasks__list {
        padding: 0 10px;
        max-width: unset
    }

    .scalable__slide {
        height: 340px
    }

    .scalable__slider:not(.scalable__slider--no-scalable) .scalable__slide:hover .scalable__card {
        transform: translateY(-80px)
    }

    .scalable__card-icon {
        width: 160px;
        height: 160px;
        margin-top: 40px
    }

    .scalable__card-icon-inner {
        width: 100px;
        height: 100px
    }

    .scalable__card-info {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 20px
    }

    .scalable__card-description {
        margin-bottom: 22px
    }

    #publications-slider {
        max-width: 320px
    }

    .publications__nav {
        max-width: 450px
    }

    .partners__inner {
        row-gap: 35px
    }

    .partners__col {
        width: 50%
    }

    .partners__img {
        max-width: 130px
    }

    .page__intro {
        padding: 40px 0
    }

    .page__title {
        font-size: 36px;
        line-height: 40px
    }

    .static__heading {
        padding: 40px 0
    }

    .static__heading::before {
        width: 320px;
        height: 444px
    }

    .static__thumb {
        margin-top: 30px
    }

    .thumb__img {
        height: 300px
    }

    .thumb__caption {
        font-size: 18px;
        line-height: 22px;
        padding: 15px 20px
    }

    .static__content-inner {
        padding: 40px 0
    }

    .video-card__inner iframe {
        height: 280px
    }

    .video-card__caption {
        padding: 20px
    }

    .video-card__description {
        font-size: 16px
    }

    .about__statistics {
        margin-top: 40px
    }

    .about__statistics-inner {
        row-gap: 30px
    }

    .about__statistics-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .about__intro {
        padding-top: 30px;
        padding-bottom: 40px
    }

    .awards__block-list {
        padding-right: 20px;
        padding-bottom: 26px;
        padding-left: 20px
    }

    .awards__block-item:not(:last-child) {
        margin-bottom: 20px
    }


    .sertificates__nav svg {
        width: 24px
    }

    .sertificates__img {
        width: 260px
    }

    .team__item {
        height: 388px
    }

    .team__name {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .team__bottom {
        flex-direction: column
    }

    .team__bottom-logo {
        margin-top: 10px;
        margin-left: 0
    }

    .press-service__people {
        padding: 40px 0
    }

    .press-service__top-text {
        margin-bottom: 57px
    }

    .press-service__col {
        max-width: 400px
    }

    .person-card__title {
        font-size: 24px;
        line-height: 26px
    }

    .person-card__info {
        padding: 20px
    }

    .person-card__img-wrap {
        width: unset
    }

    .press-service__card {
        flex-direction: column-reverse
    }

    .person-card__contacts {
        margin-top: 21px
    }

    .company-info__materials-inner {
        row-gap: 20px
    }

    .company-info__material-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .jobs__vacancies {
        padding: 40px 0
    }

    .jobs__vacancy {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px
    }

    .jobs__vacancy-title {
        margin-bottom: 20px
    }

    .coverflow-slider__slide {
        opacity: 1
    }

    .single-register__item {
        padding: 20px
    }

    .single-register__item-link {
        width: 100%
    }

    .our-clients {
        padding-top: 61px;
        padding-bottom: 40px
    }

    .our-clients__title {
        font-size: 18px;
        line-height: 22px
    }

    .our-clients__departments-inner {
        padding: 25px
    }

    .our-clients__department {
        flex: 1 0 100%;
        row-gap: 20px
    }

    .page__title-contacts {
        max-width: 170px
    }

    .not-found {
        padding: 40px 0
    }

    .not-found__header {
        margin-bottom: 40px
    }

    .news__content {
        row-gap: 20px
    }

    .news__item {
        display: flex;
        flex-direction: column;
        padding: 20px
    }

    .news-card__title {
        margin-top: 20px
    }

    .article-card__info {
        padding-left: 20px;
        padding-right: 20px
    }

    .media {
        padding: 40px 0
    }

    .media__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .media__inner {
        row-gap: 20px
    }

    .services {
        padding: 40px 0
    }

    .services__text {
        margin-bottom: 40px
    }

    .services__inner {
        row-gap: 20px
    }

    .list-blocks {
        flex-direction: column
    }

    .service__list:first-child {
        margin-bottom: 40px
    }

    .features {
        row-gap: 20px
    }

    .service__intro {
        min-height: unset
    }

    .service__intro-inner {
        padding: 40px 0
    }

    .service__intro-subtitle {
        margin-bottom: 24px
    }

    .service-card__info {
        padding: 20px
    }

    .service-card__title {
        font-size: 24px;
        line-height: 24px
    }

    .service-card__description {
        margin-top: 26px;
        margin-bottom: 18px
    }

    .service__tasks-cards {
        row-gap: 20px;
    }

    .task-card__info {
        padding: 20px
    }

    .task-card__title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .task-card__description {
        font-size: 16px
    }

    .service__scheme-nav svg {
        width: 24px
    }

    .review-card {
        flex-direction: column-reverse
    }

    .review-card__info {
        padding: 20px
    }

    .review-card__title {
        font-size: 24px;
        line-height: 24px
    }

    .review-card__thumbnail {
        width: 100%;
        height: 320px;
        margin: 0
    }

    .service__publications {
        padding-bottom: 40px
    }

    .solutions {
        padding: 40px 0
    }

    .solutions__text {
        margin-bottom: 40px
    }

    .solution__intro {
        min-height: unset
    }

    .solution__intro-inner {
        padding: 32px 0
    }

    .solution__intro-title {
        max-width: 283px
    }

    .accordion__title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .solution__capabilities-features {
        margin-top: 20px
    }

    .accordion__content-text {
        font-size: 16px;
        line-height: 19px
    }

    .solution__capabilities {
        padding-bottom: 40px
    }

    .solution__section-thumb {
        margin: 40px 0
    }

    .solution__section-thumb--top {
        margin-top: 0
    }

    .search__page-header {
        padding-top: 20px;
        padding-bottom: 48px
    }

    .search__page-form {
        margin-bottom: 29px
    }

    .search__page-form-input {
        padding-left: 20px;
        padding-right: 20px
    }

    .search__page-form-btn {
        right: 20px
    }

    .search__page-result {
        padding-bottom: 40px
    }

    .search__page-result-text {
        font-size: 24px;
        line-height: 24px
    }

    .search__page-publication {
        padding: 20px
    }

    .search__page-publication-title {
        font-size: 16px;
        line-height: 19px
    }

    .conferences__intro {
        min-height: unset;
        padding: 40px 0
    }

    .conferences__info-inner {
        row-gap: 20px
    }

    .conferences__info-title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .conferences__info-bottom {
        margin-top: 40px
    }

    .conferences__info-bottom-text {
        font-size: 18px;
        line-height: 22px
    }

    .conference-card {
        flex-direction: column
    }

    .conference-card__thumb {
        width: 100%;
        height: 268px
    }

    .conference-card__info {
        padding: 20px
    }

    .conference-card__title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .conference-card__date {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 20px
    }

    .conference-card__description {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 19px
    }

    .conference__intro {
        padding: 40px 0;
        min-height: unset
    }

    .conference__materials-card {
        padding: 30px
    }

    .conference__materials-bottom-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .conference__about-table {
        margin-bottom: 40px;
        padding: 20px
    }

    .conference__about-table-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .conference__about-table-item-title {
        font-size: 24px;
        line-height: 24px
    }

    .conference__about-table-bottom {
        margin-top: 30px;
        text-align: left
    }

    .conference__about-text {
        margin-bottom: 40px;
        font-size: 16px
    }

    .conference__about-review {
        margin-bottom: 40px
    }

    .conference__about-bottom-text {
        font-size: 18px;
        line-height: 22px
    }

    .conference__gallery-bottom {
        margin-top: 30px
    }

    .conference__gallery-more {
        width: 280px
    }

    .knowledge-base {
        padding: 40px 0
    }

    .knowledge-base__filter-form-item {
        width: 100%
    }

    .knowledge-base__inner {
        row-gap: 20px
    }

    .knowledge-base__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .kb-detail__markers {
        margin-bottom: 40px
    }

    .kb-detail__bottom-content>p,
    .kb-detail__footer,
    .kb-detail__top-content {
        font-size: 16px;
        line-height: 19px
    }

    .subscribe__header {
        padding-top: 14px;
        padding-bottom: 14px
    }

    .subscribe__content {
        text-align: left
    }

    .subscribe__subtitle {
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 42px;
        font-size: 16px;
        line-height: 19px
    }

    .en-page__intro {
        align-items: flex-end;
        padding-bottom: 30px
    }

    .en-page__intro-title {
        margin-bottom: 8px
    }

    .intro__subtitle-big {
        font-size: 21px;
        line-height: 21px;
        margin-bottom: 17px
    }

    .en-page__intro-subtitle {
        margin-bottom: 94px
    }

    .text-block {
        padding: 40px 0
    }

    .text-block__description {
        font-size: 20px;
        line-height: 24px
    }

    .en__how {
        padding: 0
    }

    .en__features-inner {
        row-gap: 30px
    }

    .en__features-col {
        flex: 0 0 calc(100%);
        max-width: calc(100%)
    }

    .en__feature-icon {
        margin-right: 20px;
        width: 40px;
        height: 40px
    }

    .en__scalable .swiper-slide {
        height: 365px
    }

    .en__scalable .swiper-slide .scalable__card-icon {
        width: 160px;
        height: 160px;
        margin-top: 60px
    }

    .en__scalable .swiper-slide .scalable__card-info-hidden {
        display: block
    }

    .en__scalable .swiper-slide .scalable__card-description {
        color: var(--white);
        font-size: 18px;
        line-height: 24px;
        margin: 0
    }

    .en__scalable .scalable__nav svg {
        width: 16px
    }

    .en__about-download {
        margin-top: 20px
    }

    .en__about-download-item {
        font-size: 16px;
        line-height: 19px
    }

    .en__about-download-item::before {
        width: 35px;
        height: 35px
    }

    .request-demo {
        background-image: none
    }

    .request-demo .request-demo__title {
        max-width: unset
    }

    .request-demo__btn {
        width: 280px
    }

    .contactus__text:first-child {
        margin-right: 26px
    }

    .en__services-slide {
        height: 266px
    }

    .en__service-card-info {
        padding: 30px 20px 20px
    }

    .en__service-card-btn {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto
    }

    .en__service-card-thumb {
        height: 157px
    }

    .en__services-slider-navigation svg {
        width: 26px
    }

    .en__services::before {
        width: 116px;
        height: 150px
    }

    .footer-en .footer__right {
        row-gap: 40px
    }

    .footer-en .footer__contacts {
        margin-bottom: 0
    }

    .footer-en .footer__copyright {
        margin-top: 0
    }

    .footer__inner {
        flex-direction: column;
        justify-content: unset;
        padding-bottom: 0
    }

    .footer__logo {
        margin-bottom: 30px;
        width: unset
    }

    .footer:not(.footer-en) .footer__logo-img {
        margin-top: 20px;
    }

    .footer-en .footer__logo-img {
        margin-bottom: 20px
    }

    .footer__right {
        flex-direction: column;
        width: unset
    }

    .footer__nav-item:not(:last-child) {
        margin-bottom: 20px
    }

    .footer__social {
        margin: 30px 0
    }

    .footer__contacts {
        margin-bottom: 40px
    }

    .footer__copyright {
        display: flex;
        flex-direction: column;
        position: static
    }

    .footer__copyright-text {
        order: 1;
        margin-top: 20px
    }

    .footer__copyright-link {
        margin-left: 0
    }
}

@media (max-width: 576px) {
    .page__intro {
        min-height: 234px
    }

    .header {
        padding: 10px 0
    }

    .header__nav {
        top: 80px
    }

    .conference-more__description {
        font-size: 18px;
        line-height: 21px
    }

    .scalable__slide {
        height: 320px
    }

    .scalable__card,
    .scalable__card--gray {
        border: none
    }

    .scalable__navigation {
        top: 40%
    }

    .scalable__nav svg {
        width: 24px
    }

    .scalable__nav--prev {
        left: 20px
    }

    .scalable__nav--next {
        right: 20px
    }

    .scalable__slider:not(.scalable__slider--no-scalable):hover .scalable__navigation {
        top: 10%
    }

    .scalable__slider:not(.scalable__slider--no-scalable):hover .scalable__navigation svg path {
        stroke: #435156
    }

    .last-articles__more {
        margin-top: 20px
    }

    .last-articles__more-link {
        width: 260px
    }

    .article-card__title {
        position: static
    }

    .article-card__markers {
        margin-top: 48px
    }

    .partners__bottom {
        flex-direction: column;
        text-align: center
    }

    .partners__bottom-text {
        max-width: 238px
    }

    .partners__bottom-logo {
        margin-left: 0;
        margin-top: 10px
    }

    .video-card__title {
        font-size: 19px;
        line-height: 22px
    }

    .why-choose-us__container {
        padding-bottom: 400px;
        margin-bottom: -400px
    }

    .team__item {
        max-width: 280px
    }

    .team__col {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        display: flex
    }

    .jobs__vacancy-respond {
        width: 100%
    }

    .coverflow-slider__slide {
        height: 260px
    }

    .coverflow-slider__img {
        padding: 0 15px
    }

    .coverflow-slider__nav--prev {
        left: 0
    }

    .coverflow-slider__nav--next {
        right: 0
    }

    .our-clients__regions {
        padding: 20px
    }

    .our-clients__regions-list {
        row-gap: 20px
    }

    .our-clients__region-col {
        flex-basis: 100%
    }

    .our-clients__region-icon {
        display: none
    }

    .media__footer {
        margin-top: 30px
    }

    .load-more__button {
        width: 100%
    }

    .features--four-columns .features__col,
    .features--two-columns .features__col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .service__scheme-navigation {
        top: 33%
    }

    .service__people {
        flex-direction: column
    }

    .service__people-thumb {
        width: unset;
        height: 261px
    }

    .service__people-info {
        padding: 20px
    }

    .service__people-name {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 24px
    }

    .accordion--gap-32 svg {
        top: 28px
    }

    .accordion--gap-42 svg {
        top: 52px
    }

    .conference-card__more,
    .conference__gallery-more {
        width: 100%
    }

    .kb-detail__slider-navigation {
        top: 32%
    }

    .news__filter {
        margin-bottom: 20px
    }

    .news__filter-item {
        width: 100%;
        max-width: unset
    }

    .knowledge-base__filter-form-actions {
        flex-direction: column
    }

    .knowledge-base__filter-form-action--submit {
        width: 100%;
        margin-left: 0;
        margin-top: 20px
    }

    .intro__get-product {
        width: 100%
    }

    .en__services-slider-nav--prev {
        left: 0
    }

    .en__services-slider-nav--next {
        right: 0
    }

    .en__services-slider-navigation svg {
        width: 16px
    }
}

@media (max-width: 480px) {
    #publications-slider {
        max-width: 260px
    }

    /* .article-card__header {
        height: 160px
    } */

    .article-card__date {
        left: 20px;
        bottom: 15px
    }

    .article-card__marker {
        padding-left: 12px
    }

    .publications__nav--prev {
        left: 10px
    }

    .publications__nav--next {
        right: 10px
    }

    .video-card__inner iframe {
        height: 135px
    }

    .en__service-card {
        width: 260px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px
    }

    .service__order-demo-fixed.service__order-demo-fixed--active {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1310px
    }
}

.kb-detail__top-content a,
.solution__section-inner a,
.accordion__content a,
.about a,
.service-card__info a {
    color: #88BEAC;
}

.kb-detail__top-content a:hover,
.solution__section-inner a:hover,
.accordion__content a:hover,
.about a:hover,
.service-card__info a:hover {
    color: #0EA48D;
}

.bx-breadcrumb {
    color: #A8A8A8;
    position: absolute;
    top: 10px;
}

.bx-breadcrumb a span {
    color: #A8A8A8;

}

.bx-breadcrumb a span:hover {
    color: #0EA48D;

}

.bx-breadcrumb span {
    color: #88BEAC;

}

.scrollup {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    position: fixed;
    bottom: 50px;
    right: 35px;
    display: none;
    text-indent: -9999px;
    background: url(https://n3med.ru/local//templates/.default/img/arrow_up_circle_icon.svg) no-repeat;
    z-index: 999;
}


.modal__header.modal-order__header {
    background: none;
}

.modal-order__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: #4D585C;
    max-width: 425px;
    margin: 0 auto;
    padding: 0;
}

.order-form__field::-moz-placeholder {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #818181;
}

.order-form__field:-ms-input-placeholder {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #818181;
}

.order-form__field::placeholder {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #818181;
}

.order-form__field {
    margin: 4px 0;
    height: 58px;
}

.order-form__sep {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #4D585C;
    padding: 27px 19px 20px;
}

.order-form__radios {
    max-width: 340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 13px;
    grid-column-gap: 75px;
}

.order-form__sep {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #4D585C;
    padding: 15px 19px 10px;
}

.order-form__agreement-text a {
    border-bottom: 0.5px solid #c7c7c7;
}

.modal--active .modal__inner::-webkit-scrollbar {
    width: 10px;
}

.modal--active .modal__inner::-webkit-scrollbar-track {
    background: #dbdbdb;
    border: none;
    background-clip: content-box;
}

.modal--active .modal__inner::-webkit-scrollbar-thumb {
    background: #818181;
    border: none;
}

.dropdown__current-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #818181;
}

@media (max-width: 460px) {
    .order-form__radios {
        grid-column-gap: 40px;
    }
}

.scrollup {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    position: fixed;
    bottom: 50px;
    right: 35px;
    display: none;
    text-indent: -9999px;
    background: url(../img/arrow_up_circle_icon.svg) no-repeat;
    z-index: 999;
}

@media (max-width: 768px) {
    .page__title h1 {
        font-size: 36px;
        line-height: 40px;

    }
}

@media (max-width: 768px) {
    .page__title h1 {
        padding-top: 64px;

    }
}

@media (max-width: 430px) {
    .page__title h1 {
        padding-top: 94px;

    }
}

@media (max-width: 768px) {
    iframe {
        height: 300px !important;
    }

    iframe {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .service__intro-inner {
        padding: 80px 0 40px 0;
    }

    .intro__title,
    .intro__title h1 {
        margin: 0 0 32px;
        font-family: 'Sommet Rounded';
        font-size: 36px;
        line-height: 36px;
        font-weight: 700;
    }

    .intro__title {

        padding-top: 80px;
    }
}

@media (max-width: 567px) {
    .service__intro-inner {
        padding: 110px 0 40px 0;
    }

    .intro__title {

        padding-top: 110px;
    }
}


.contact__info-item-title {
    font-weight: 700;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #9A9A9A;
}

.contact__info-item-value {
    font-weight: 600;
}

.contact-item.contact-item--tel {
    font-weight: 600;
}

.contact-item.contact-item--email {
    font-weight: 600;
    text-decoration: none;
}

.contact-item:not(:last-child) {
    margin-bottom: 23px;
}

.contact__info-header {
    padding: 40px 60px;
    max-width: unset;

}

.contact__info-header.contact__press {
    padding: 22px;
}

.contact__press_inner {
    background: linear-gradient(107.2deg, #F4F5F7 4.05%, #FFFFFF 61.82%);
    border: 1px solid #EDEDED;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.contact__press_inner_l {
    padding: 45px;
}

.contact__heading h3 {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    /* identical to box height */
    margin: 26px 0 4px;
    color: #6C6E6C;
}

.contact__heading {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 20px;
    color: #6C6E6C;

}

.contact__feedback {
    padding: 10px 22px 50px 60px;
}

.contact__form-footer {
    background-color: #ffffff;
    padding: 0;
}

.contact__form-footer:before {

    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */
    display: block;

    color: #818181;

}

.contact__form-submit {

    padding: 12px 96px;
    width: 280px;
    height: 54px;
    background: #009881;
    border-radius: 30px;
    margin-top: 8px;
}

.contact__form-textarea {
    border: 1px solid #e6e6e6 !important;
    min-height: 118px;
}

.form__field:not(.form__field--no-border) {
    border: 1px solid #e6e6e6;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.form__field {
    border: 0;
    padding: 15px 28px;
    font-size: 16px;
    line-height: 19px;
    width: 100%;
    margin: 5px 0;
    outline: 0;
    transition: .4s;
}

.contact__map {
    padding: 40px 20px;
}

.review-card__footer>p,
.review-card__footer>.h3-new-color {
    margin-left: -2%;
}

.review-card__footer>p:empty {
    display: none;
}

.tasks__title {
    max-width: unset;
}

.tasks__title h2 {
    max-width: 455px;
}

.kb-detail__lead {
    display: flex;
    justify-content: space-between;
}

.kb-detail__lead-text {
    color: #009982;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    margin-bottom: 40px;
}

.kb-detail__lead-text_2 {
    color: #575757;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 28.8px */
}

.kb-detail__lead-inner_left {
    margin: auto 20px auto 0;
}

.kb-detail__lead-inner_right {
    display: contents;
}

.kb-detail__lead-inner_right img {
    height: 304px;
    width: 304px;
    display: block;
}

@media (max-width: 768px) {
    .kb-detail__lead {
        flex-direction: column;
    }

    .kb-detail__lead-text {
        color: #009982;
        font-family: "Proxima Nova";
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        line-height: 120%;
        margin-bottom: 30px;
    }

    .kb-detail__lead-text_2 {
        color: #575757;
        font-family: "Proxima Nova";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }

    .kb-detail__lead-inner_left {
        margin: 0 0 30px 0;
    }

    .kb-detail__lead-inner_right img {
        height: auto;
        width: 100%;
        display: block;
    }
}

.review-card-new {
    background-color: var(--white-lilac);
    display: flex;
    align-items: flex-start;
}

.review-card-new--white {
    background-color: #fff
}

.review-card-new__info {
    padding: 32px;
    display: flex;
    flex-direction: column
}

.review-card-new__title {
    margin: 0 0 20px;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 30px;
    line-height: 31px
}

.review-card-new__text {
    margin: 0 0 30px;
    padding-left: 33px;
    position: relative
}

.review-card-new__text::before {
    content: "“";
    position: absolute;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 64px;
    line-height: 65px;
    color: var(--green);
    left: -11px;
    top: -18px
}

.review-card-new__text::after {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 2px;
    height: 48px;
    background-color: var(--green)
}

.review-card-new__thumbnail {
    display: flex;
    width: 304px;
    flex-shrink: 0;
    margin-left: 50px
}

.review-card-new__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.review-card-new__footer {
    display: flex;
    flex-direction: column;
    margin-top: auto
}

.review-card-new__position {
    font-size: 16px;
    line-height: 19px
}

.kb-detail__bottom-content .review-card-new {
    margin-bottom: 10px
}

.review-card-new__footer>p,
.review-card-new__footer>.h3-new-color {
    margin-left: -2%;
}

.review-card-new__footer>p:empty {
    display: none;
}

@media (max-width: 992px) {

    .kb-detail__bottom-content .review-card-new,
    .kb-detail__bottom-content .video-card {
        margin: 40px 0
    }
}

@media (max-width: 768px) {
    .review-card-new {
        flex-direction: column-reverse
    }

    .review-card-new__info {
        padding: 20px
    }

    .review-card-new__title {
        font-size: 24px;
        line-height: 24px
    }

    .review-card-new__thumbnail {
        width: 100%;
        height: 320px;
        margin: 0
    }
}

.review-card-new {
    background-color: unset;
}

.review-card-new__footer {
    padding-left: 33px;
    padding-right: 33px;
}

.review-card-new__text {
    padding-left: 33px;
    padding-right: 33px;
}

.review-card-new__info {
    position: relative;
}

.review-card-new__info::before {
    content: "";
    position: absolute;
    left: 32px;
    top: unset;
    width: 2px;
    height: calc(100% - 80px);
    bottom: 32px;
    background-color: var(--green);

}

.review-card-new__info::after {
    content: "";
    position: absolute;
    right: 32px;
    top: unset;
    width: 2px;
    height: calc(100% - 80px);
    bottom: unset;
    background-color: var(--green);
}

.review-card-new__footer::before {
    content: "„";
    position: absolute;
    font-family: 'Sommet Rounded';
    font-weight: 700;
    font-size: 64px;
    line-height: 65px;
    color: var(--green);
    right: 21px;
    bottom: 19px;
}

.review-card-new__thumbnail {
    width: 300px;
    margin: auto 32px auto 50px;
}

@media (max-width: 768px) {
    .review-card-new__info::before {
        left: 20px;
    }

    .review-card-new__info::after {
        right: 20px;
    }

    .review-card-new__footer::before {
        right: 11px;
    }

    .review-card-new__thumbnail {
        width: 100%;
        margin: unset;
    }
}

.service__partner {
    background-color: #fff;
}

.sticky-content.fixed {
    width: 100%;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 10;
}

/* @media (max-width: 992px){
    .sticky-content.fixed {
    top: 78px;
  }
} */
@media (max-width: 768px) {
    .selects {
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .sticky-content.fixed {
        top: 80px;
    }

    #content {
        padding-top: 80px;
    }

    #order-demo .modal-order__title,
    #order-demo .order-form__sep {
        font-size: 16px;
        line-height: 20px;
    }

    #order-demo .order-form__field {
        height: 36px;
    }

    #order-demo .form__field {
        margin: 3px 0
    }

    #order-demo .dropdown__header {
        padding: 3px 19px;
    }

    #order-demo .order-form__radios {
        grid-row-gap: 5px;

    }

    .modal-order__inner {

        max-height: calc(100vh - 62px);
    }

    #order-demo {

        z-index: 999999;
    }

    #order-demo .order-form__sep {

        padding: 8px 19px 8px;
    }

    #order-demo .modal__header {

        padding: 40px 20px 8px;

    }
}



.advan {
    max-width: 660px;
    margin: 0 auto;
    padding: 35px 0;
}

.advan .item {
    display: flex;
    margin-bottom: 32px;
}

.advan-inner {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    padding-left: 55px;
    padding-top: 8px;
}

.advan .pic {
    position: absolute;
}

.advan-title {
    color: #009982;

    font-family: 'Sommet Rounded';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 33.6px */
}

.advan-descr {
    color: #575757;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
}