/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* colors */
    --white-color: #fff;
    --black-color: #000;
    --black-2-color: #111111;
    --darkgrey-color: #313131;

    --deeppurple-color: #672E92;
    --deeppurple-2-color: #5245A1;

    --blue-color: #1889cd;
    --blue-2-color: #3963B4;
    --lightblue-color: #00b0f6;
    --lightblue-2-color: #1B85CA;
    --lightblue-3-color: #01A3DE;

    --lightgrey-color: #a5a5a5;
    --lightgrey-2-color: #D9D9D9;
    --lightgrey-3-color: #B1B1B1;
    --lightgrey-4-color: #565656;
    --lightgrey-5-color: #efefef;
    --lightgrey-6-color: #707070;
    --lightblack-color: #474f65;
    --lightblack-2-color: #0d0907;
    --darkblue-color: #0d173b;
    --darkblue-2-color: #0c1e49;
    --pink-color: #e6017f;
    --color-header-white: #fff;
    --color-footer-grey: #4B4B4B;

    /* gradients */
    --gradient-blue-purple: linear-gradient(135deg, #00A3DE, #662D91);
    --gradient-blue-brown: radial-gradient(#9fd8d9, #ead6a7);

    /* vars */
    --width-container-layout: 1200px;
    --space-size-l: 85px; /* large - default 1220px */
    --space-size-m: 65px; /* medium 992px<=1220px */
    --space-size-s: 50px; /* small <576px<=992px */

    --font-size-h2: 30px;

    --burger-menu-image: '☰';
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    margin: 0;
    /* default normal font styles */
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 400; /* regular */
    color: var(--black-color);
}
main {
    flex: 1;
    margin: 0;
    padding: 0;
}
ul, input {
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 30px 0 10px 0;
    font-family: "Montserrat", sans-serif;
}
p, ul, ol {
    font-size: 18px;
    line-height: 30px;
}
p, ul, ol {
    margin-top: 0; /* see Certifications */
    margin-bottom: 10px;
}
ul {
    /*margin-top: 10px;*/
}
a {
    color: var(--lightblue-2-color);
}
a:hover {
    /*color: var(--lightblue-color);*/
    text-decoration: underline;
}
img {
    /*width: 100%;*/
    width: auto;
    max-width: 100%;
}
textarea, input, select, option, button {
    font-family: inherit;
}
address {
    font-style: normal;
}
strong {
    font-weight: 700;
}
.container {
    max-width: var(--width-container-layout);
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.hidden {
    display: none;
}
/*section {*/
/*    padding-top: var(--space-size-l);*/
/*    padding-bottom: var(--space-size-l);*/
/*}*/

/* TITLE */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
}
h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 17px;
}
h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}
h4 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 140%;
}
.h1-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
}
.h2-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
}
.title {
    padding: 0;
}
.title--mt-20 {
    margin-top: 20px;
}
.title--upper {
    text-transform: uppercase;
}
.title--lower {
    text-transform: none;
}
.title--w-70 {
    width: 70%;
}
.title--fs-24 {
    font-size: 24px;
}
.title--fs-30 {
    font-size: 30px;
}
.title--fs-36 {
    font-size: 36px;
}
.title--fs-40 {
    font-size: 40px;
}
.title--mb-30 {
    margin-bottom: 30px;
}
.title--color-pink {
    color: var(--pink-color);
}
.h1-title--color-white,
.h2-title--color-white {
    color: var(--white-color);
}
.h1-title--color-lightblue {
    color: var(--lightblue-color);
}
.h1-title--marker-scale,
.h2-title--marker-scale {
    position: relative;
    left: -67px;
    padding-left: 67px;
    background-position: 28px 9px;
    background-repeat: no-repeat;
}
.h1-title--marker-white,
.h2-title--marker-white {
    background-image: url(../svg/decor_marker-paral_white.svg);
}
.h1-title--marker-yellow {
    background-image: url(../svg/decor_marker-paral_yellow.svg);
}
.h1-title--marker-white,
.h1-title--marker-yellow {
    background-position-y: 8px;
}
.h2-title--marker-blue {
    background-image: url(../svg/decor_marker-paral_blue.svg);
    background-position-y: 7px;
}
.h3-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.5px;
}
.h1-title--ll-fs-60 {
    font-size: 60px;
}
.h1-title--color-white,
.h3-title--color-white {
    color: var(--white-color);
}
.title--ll {
    font-size: 24px;
}
.clients__title {
    margin-bottom: 70px;
    /* h2 font-size: 30px;*/
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
}
.media__title {
    margin-bottom: 45px;
    /* h2 font-size: 30px;*/
    /*line-height: 40px;*/
}

/* ***** BLOCKS - LAYOUT ***** */

.start-section {
    padding-top: 68px;
}
.start-section__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.start-section__inner--f-end {
    flex-direction: row;
    align-items: flex-end;
}
/*.start-section__inner--h-320 {*/
/*    height: 320px;*/
/*}*/
/*.start-section__inner--h-270 {*/
/*    height: 270px;*/
/*}*/
.start-section__topic {
    width: 75%;
}
.start-section__topic--w-70 {
    width: 70%;
}
.start-section__topic--w-80 {
    width: 80%;
}
.start-section__topic--ll {
    width: 100%;
}
.start-section__title {
    margin-bottom: 28px;
    margin-top: 15px;
}
.start-section__description {
    width: 84%;
    color: var(--white-color);
}
.start-section__description--w-62 {
    width: 62%;
}
.start-section__description-ll-w-auto {
    width: auto;
}
.start-section__description--fs-24 p {
    font-size: 24px;
}
.start-section__description--ll-fs-30,
.start-section__description--ll-fs-30 p {
    font-size: 30px;
    line-height: 47px;
}

.start-section__img {
    padding-bottom: 20px;
    padding-top: 50px;
}
.start-section__button {
    margin-top: 45px;
}
.start-section__row {
    padding-top: 50px;
    padding-bottom: 90px;
}
.start-section__row--media {
    padding-top: 30px;
    padding-bottom: 10px;
}
.start-section__row--ll-pt-5 {
    padding-top: 5px;
}
.start-section__row--pb-0 {
    padding-bottom: 0;
}
.start-section-row {
    display: flex;
    gap: 30px;
    color: var(--white-color);
}
.start-section-row__img {
    width: 177px;
}
.start-section-row__img--max {
    width: max-content;
}
.start-section-row__text {

}
.start-section-row__text--w-60 {
    width: 60%;
}
.start-section-row__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.start-section-row__column--w-50 {
    width: 50%;
}
.main-content {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.main-content__subtitle {
    font-size: 24px;
}
/*.main-content__subtitle--fs-18 {*/
/*    font-size: 18px;*/
/*}*/
/*.main-content__subtitle--fs-20 {*/
/*    font-size: 20px;*/
/*}*/
.subtitle--blue {
    color: var(--blue-color);
}
.subtitle--lightblue {
    color: var(--blue-2-color);
}
.main-content__subtitle--w-55 {
    width: 55%;
}
.subtitle--fs-20 {
    font-size: 20px;
}
.subtitle--bold {
    font-weight: 700;
}
.subtitle--upper {
    text-transform: uppercase;
}
.subtitle--fs-32 {
    font-size: 32px;
    line-height: 48px;
}
.subtitle--centered {
    text-align: center;
}
.main-content--with-bg-color {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
}
.main-content--with-bg-color > .container > *:first-child {
    margin-top: 0;
}
.main-content--with-bg-color > .container > *:last-child {
    margin-bottom: 0;
}
.main-content--pb-300 {
    padding-bottom: 300px !important;
}
.main-content--bg-gradient-blue-brown {
    background-image: var(--gradient-blue-brown);
}
.main-content--bg-color-darkblue {
    background-color: var(--darkblue-color);
}
.main-content--bg-color-black {
    background-color: var(--black-color);
}
.main-content--color-white {
    color: var(--white-color);
}
.main-content-row {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}
.main-content-row--s-between {
    justify-content: space-between;
}
.main-content-row--gap-25 {
    gap: 25px;
}
.main-content-row--gap-50 {
    gap: 50px;
}
.main-content-block {
    margin-top: 45px;
    margin-bottom: 45px;
}
.main-content-block--mt-160 {
    margin-top: 150px;
}
.main-content-block--mb-0 {
    margin-bottom: 0;
}
.main-content-block--w-85 {
    width: 85%;
}
.main-content-block--w-75 {
    width: 75%;
}
.main-content-block--w-50 {
    width: 50%;
}
.main-content-block__column {
    display: flex;
    flex-direction: column;
}
.main-content-block__column--align-center {
    align-items: center;
}
.main-content-row--mt-40 {
    margin-top: 40px;
}
.main-content-row--mt-minus-140 {
    margin-top: -140px;
}
.main-content--mt-minus-1 {
    margin-top: -1px;
}
.main-content-row--mt-25 {
    margin-top: 25px;
}
.main-content-row--mb-40 {
    margin-bottom: 40px;
}
.main-content-row--with-margins {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.main-content-row__column {
    display: flex;
    flex-direction: column;
}
.main-content-row__column--gap-15 {
    gap: 15px;
}
.main-content-row__column--relative {
    position: relative;
}
.main-content-row__column--valign {
    justify-content: center;
}
.main-content-row__column--end {
    justify-content: flex-end;
}
.main-content-row__column--w-25,
.cards-item--w-25 {
    flex: 0 1 calc((100% - 25px * (4 - 1)) / 4); /*25%;*/
}
.media-cards-row__column--w-33 {
    flex: 0 0 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
}
.main-content-row__column--w-33,
.cards-item--w-33,
.case-item--w-33 {
    flex: 0 1 calc((100% - 50px * (3 - 1)) / 3); /*33.33%;*/
}
.main-content-row__column--w-50,
.cards-item--w-50 {
    flex: 0 1 calc((100% - 50px * (2 - 1)) / 2); /*50%;*/
}
.cards--w-810 {
    width: 810px;
}
.cards--w-810 > * {
    min-width: 250px;
}
.cards--w-783 {
    width: 783px;
}
.cards--w-783 > * {
    min-width: 177px;
}
.main-content-row__column--w-66 {
    flex: 0 1 calc(((100% - 50px * (3 - 1)) / 3) * 2); /*66.66%;*/
}
.icons-row__item--w-33 {
    flex: 0 1 calc((100% - 30px * (3 - 1)) / 3);
}
.main-content-row__column--w-40 {
    flex: 0 1 calc((100% - 50px * (2 - 1)) / 5 * 2); /*40%*/
}
.main-content-row__column--w-60 {
    flex: 0 1 calc((100% - 50px * (2 - 1)) / 5 * 3); /*40%*/
}
.main-content-row--right {
    justify-content: right;
    gap: 30px;
}
.main-content-row__column--right {
    flex-grow: 1;
    align-items: flex-end;
}
/*.main-content-row__row {*/
/*}*/

/*.main-content-row__row--w-33 {*/
/*    flex: 0 1 calc((100% - 50px * (3 - 1)) / 3);*/
/*}*/
.main-content-row__img {
    width: max-content;
}
.main-content-row__img-it--absolute {
    position: absolute;
    bottom: -60%;
}
/*.main-content-row__img--right {*/
/*    display: flex;*/
/*    margin-left: auto;*/
/*}*/
.main-content-column {
    display: flex;
    flex-direction: column;
}
.main-content-column--w-70 {
    width: 70%;
}
.main-content-part {
    padding: 0;
}
.main-content-part--w-50 {
    width: 50%;
}
.main-content-part--w-70 {
    width: 70%;
}
.list-row {
    display: flex;
    gap: 50px;
}
.icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.icons-row--nalign {
    align-items: normal;
}
.list-row--s-between,
.icons-row--s-between {
    justify-content: space-between;
}
.icons-row--s-around {
    justify-content: space-around;
}
.list-row--pt-55,
.icons-row--pt-55 {
    padding-top: 55px;
}
.list-row--pt-30,
.icons-row--pt-30 {
    padding-top: 30px;
}
.list-row--pb-30 {
    padding-bottom: 30px;
}
.list--with-paddings {
    padding-top: 10px;
    padding-bottom: 10px;
}
.list--w-75 {
    width: 75%;
}
.list-row--gap-50 {
    gap: 50px;
}
.icons-row__item {

}
.icons-row-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.icons-row-item__icon {
    min-width: 0;
}
.cards {
    padding: 0;
    position: relative;
}
.cards-item {
    padding: 0;
}
.cards--decor-top::before {
    content: '';
    background-image: url("../images/decor_picture_parallelograms-right-top--trans.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 665px;
    height: 341px;
    position: absolute;
    left: 36%;
    display: block;
}
.cards--decor-bottom::after {
    content: '';
    background-image: url("../images/decor_picture_parallelograms-left-bottom--trans.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 609px;
    height: 174px;
    position: absolute;
    left: 50%;
    top: 90%;
    display: block;
}
.cards-item--pt-110 {
    padding-top: 110px;
}
.cards-item--pt-210 {
    padding-top: 210px;
}
.cards-item--pt-80 {
    padding-top: 80px;
}
.cards-item-row {
    display: flex;
    align-items: center;
    gap: 25px;
}
.cards-item-row--mb-20 {
    margin-bottom: 20px;
}
.cards-item-row__img {
    width: 70px;
}
.cards-item__title {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    line-height: 110%;
    text-transform: uppercase;
    font-weight: 700;
}
.cards-item__link {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 130%;
    color: var(--blue-color);
}
.cards-item__heading {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 130%;
    color: var(--blue-color);
    display: block;
    padding-top: 15px;
}
.cards-item__link--mb-10 {
    display: block;
    margin-bottom: 10px;
}
.cards-item__link--fs-24-upper {
    font-size: 24px;
    text-transform: uppercase;
}
.cards-item__link--ff-lato-upper,
.cards-item__link--ff-lato-normal {
    font-family: Lato, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    text-transform: uppercase;
}
.cards-item__link--ff-lato-normal {
    text-transform: none;
}
.main-content-link {
    display: block;
}
.cards-item__img {
    width: max-content;
}
.cards-item__img--centered {
    display: block;
    margin: 0 auto;
}
.cards-item__img--pb-30 {
    padding-bottom: 30px;
}
.main-content-row__text {
    padding: 0;
}
.cards-item__title {
    font-size: 22px;
}
.cards-item__text {
    padding-top: 10px;
}
.cards-item__text--accent {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-color);
}
.main-content-row__text > p:last-of-type {
    margin-bottom: 0;
}
.main-content-row__text--w-85 {
    width: 85%;
}
.main-content-row__text--mb-45 {
    margin-bottom: 45px;
}
.cards-item__text > p:last-of-type {
    margin-bottom: 0;
}

/* ***** PAGES ***** */

.page,
.post {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-header {
    height: 92px;
    background-color: var(--color-header-white);
    box-shadow: 0 1px 5px grey;
}
.page__header {
    position: sticky;
    top: 0;
    z-index: 10;
}
.page__content,
.post__content,
.category__content {
    flex: 1;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
.page-header__navigation {
}
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.logo {
}
.logo__img--burger-show {
    display: none;
}
.dropdown-menu {
    display: none;
    width: 250px;
    padding: 15px 10px;
    list-style: none;
    position: absolute;
    top: 82px;
    left: 0;
    z-index: 10;
    background-color: var(--white-color);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--lightblue-color);
    margin-top: 10px;
}
.dropdown-menu__item {
    margin-bottom: 7px;
}
.dropdown-menu__item:last-of-type {
    margin-bottom: 0;
}
.site-navigation__item:hover > .dropdown-menu  {
    display: flex;
    flex-direction: column;
    /*gap: 10px;*/
}
.site-navigation {
    display: flex;
    gap: 30px;
    list-style-type: none;
    margin-top: 10px;
}
.site-navigation__item {
    position: relative;
    height: 92px;
    align-content: center;
    cursor: pointer;
}
.site-navigation__link,
.dropdown-menu__link{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--black-color);
}
.dropdown-menu__link {
    text-transform: none;
    font-size: 15px;
    line-height: 150%;
}
.site-navigation__link:hover,
.dropdown-menu__link:hover {
    text-decoration: underline;
    color: var(--lightblue-color);
}
.dropdown-menu__link:visited {

}
.site-navigation__item--active {
    border-bottom: 3px solid var(--lightblue-color);
    box-sizing: content-box;
}
.site-navigation__item--active > .site-navigation__link {
    color: var(--lightblue-color);
}

li.current_page_item,
.current-menu-ancestor {
    border-bottom: 3px solid var(--lightblue-color);
    box-sizing: content-box;
}
li.current_page_item > .site-navigation__link{
    color: var(--lightblue-color);
}
.dropdown-menu__item {
    border-bottom: none !important;
}
/*li.current_page_item.active-menu-item {*/
/*    border: none;*/
/*}*/

    /*.site-navigation__link--accent {*/
/*    color: var(--lightblue-color);*/
/*    text-decoration: underline;*/
/*}*/
.extra-navigation {
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}
.extra-navigation__item {
}
.extra-navigation-item {
}
.extra-navigation-item__img {
}
.lang-navigation {
    list-style-type: none;
    display: flex;
    gap: 26px;
    line-height: 0;
    padding-top: 10px;
}
.lang-navigation__item {
}
.lang-navigation-item__link {
}
.lang-navigation-item__img {
}
.burger-menu__btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    width: 30px;
}
.burger-menu__btn::before {
    /*content: url("../svg/icon_menu-burger_black.svg");*/
    content: var(--burger-menu-image);
    font-size: 30px;
}
.opener {
    padding: 0;
}
.opener__content {
}
.banner,
.start-section__bg-img,
.promo {
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: scroll;
    background-color: var(--blue-color);
    /*background-size: cover;*/
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
}
.start-section__bg-img {
    background-color: var(--blue-color);
}
.start-section__bg-img--gradient {
    background-image: var(--gradient-blue-purple) !important;
}
.start-section--m-pt {
    padding-top: var(--space-size-m);
}
.banner {
    background-color: #0e1b2f;
}
.banner__content {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 98px;
    color: var(--white-color);
}
.banner__logo {
    width: 110px;
}
.banner__cover {
}
.banner__topic {
    width: 920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
}
.banner__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    text-transform: none;
}
.banner__description {
    width: 569px;
    font-size: 18px;
    line-height: 130%;
}
/*.promo {*/
/*    padding-top: var(--space-size-l);*/
/*    padding-bottom: var(--space-size-l);*/
/*}*/
.promo__content {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}
.promo__topic {
    max-width: 658px;
}
.promo__description {
    color: var(--white-color);
}


/* BUTTONS */

.button {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.button:hover {
    cursor: pointer;
}
.buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.buttons-row--center {
    justify-content: center;
}
.buttons-row--s-around {
    justify-content: space-around;
}
.buttons-row--center {
    justify-content: center;
}
.buttons-row--s-between {
    justify-content: space-between;
}
.buttons-row__button {
    width: 150px;
}
.buttons-row--color-white {
    color: white;
}
.row-button {
    text-align: center;
    text-transform: capitalize;
}
.row-button__img {
    width: 65px;
}
.button--primary {
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    color: var(--deeppurple-color);
    background-color: var(--white-color);
}
.banner__button {
}
.button--primary:hover {
    text-decoration: underline;
}
.button--secondary {
    font-size: 18px;
    line-height: 16px;
    background-color: var(--lightblue-color);
    color: var(--white-color);
}
.button--secondary:hover {
    opacity: 0.80;
}
.button--tertiary {
    font-size: 18px;
    line-height: 140%;
    background-color: var(--deeppurple-2-color);
    color: var(--white-color);
}
.button--tertiary:hover {
    opacity: 0.80;
}
.button--quaternary {
    color: var(--lightblue-color);
    background-color: var(--white-color);
    border: 2px solid var(--lightblue-color);
}
.button--quaternary:hover {
    color: var(--white-color);
    background-color: var(--lightblue-color);
    text-decoration: none;
}
.button--size-m {
    width: auto;
    padding: 15px 15px; /* 70 */
}
.button--size-l {
    /*width: 210px;*/
    padding: 20px 45px; /* 70 */
}
.button--size-xl {
    width: 260px;
    padding: 20px 22px; /* 72 */
}
.button--size-xxl {
    width: 350px;
    padding: 23px 27px; /* 117 */
}
.contacts-form__button {
    width: 100%;
}

.clients {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.clients-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.clients-item {
}
.clients-item__link {
}
.clients-item__img {
    width: 80%;
}
.clients-card__img {
}
.services {
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
    background-image: var(--gradient-blue-purple);
}
.services__inner {
    display: flex;
    justify-content: space-between;
}
.services__topic {
    width: 40%;
    color: var(--white-color);
}
.services__title {
    margin-bottom: 50px;
    text-transform: none;
}
.services__description {
    margin-bottom: 84px;
    font-size: 18px;
    line-height: 30px;
}
.services__items {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 32px;
    color: var(--white-color);
}
.services-item {
    width: 177px;
    height: 177px;
    text-align: center;
}
.services-item__link {
    font-family: "Montserrat", sans-serif;
    line-height: 130%;
    text-decoration-line: underline;
    font-size: 18px;
}
.services-item__link--white {
    color: var(--white-color);
}
.services-item__link--black {
    color: var(--black-color);
    font-weight: 500;
}
.services-item__link:hover {
    color: var(--lightblue-color);
}
.services-item__img {
    width: 64px;
}
.services-content__item {
}
.industries {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.industries__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.industries__topic {
    margin-bottom: 35px;
}
.industries-card {
    position: relative;
    /*z-index: 10;*/
}
.industries__description {
    width: 66%;
}
.industries__grid {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}
.industries-card__img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.industries-card__caption {
    width: 100%;
    position: absolute;
    bottom: 5%;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    color: var(--white-color);
}

/****** LINKS ******/

.industries-card__link {
    padding-top: 13px;
    text-transform: initial;
}
.arrow-more-link {
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-decoration-line: underline;
}
.arrow-more-link::after {
    content: url("../svg/icon_arrow-more_black.svg");
    padding-left: 5px;
}
.arrow-more-link:hover {
    color: var(--lightblue-color);
}
.arrow-more-link--white {
    color: var(--white-color);
}
.arrow-more-link--white::after {
    content: url("../svg/icon_arrow-more_white.svg");
    padding-left: 5px;
}
.technologies {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.techno-list {
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
    background-image: linear-gradient(135deg, #00A3DE, #662D91);
    color: var(--white-color);
}
.techno-list__row:first-of-type {
    margin-bottom: 60px;
}
.techno-list__column {
    text-align: center;
    align-items: center;
}
.techno-list__img {
    width: 178px;
    height: 178px;
    display: block;
    margin-bottom: 25px;
}
.techno-list__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}
.techno-list__text {
    font-size: 20px;
    margin-bottom: 25px;
}
.techno-list__link {
    font-size: 20px;
}
.technologies__inner {
    display: flex;
    justify-content: space-between;
}
.technologies__topic {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.technologies__title {
    margin-bottom: 40px;
}
.technologies__description {
    margin-bottom: 110px;
}
.technologies__button {
    align-self: flex-start;
}
.technologies__items {
    width: 60%;
}
.technologies-items {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 60px;
}
.technologies__item {
    width: 250px;
}
.technologies-item {
    text-align: center;
}
.technologies-item__link {
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.5px;
    color: var(--blue-color);
}
.technologies-item__link:hover {
    opacity: 0.8;
}
.about {
    padding-top: var(--space-size-l);
    padding-bottom: 0;
    background-image: linear-gradient(135deg, #00A3DE, #662D91);
    color: var(--white-color);
}
.about__bg-img {
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: scroll;
    background-color: var(--blue-color);
    /*background-size: cover;*/
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
}
.about__inner {
    display: flex;
    justify-content: space-between;
}
.about__inner--gap-50 {
    gap: 50px;
}
.about__topic {
    width: 40%;
    padding-right: 1px;
}
.about__title {
    background-position: 28px 9px;
    text-transform: none;
}
.about__description {
    margin-bottom: 106px;
}
.about__img {
    width: 100%;
    max-width: 513px;
    margin-top: 95px;
    margin-left: -15px;
    display: block;
}
.about__features {
    width: 50%;
}
.features {
    padding: 0;
}
.features__title {
    margin-bottom: 20px;
}
.features__list {
    padding-right: 65px;
    line-height: 140%;
    /*font-family: 'Lato', sans-serif;*/
    /*font-style: normal;*/
    /*font-weight: 400;*/
    /*font-size: 18px;*/
}
.features__list li {
    padding-left: 15px;
}
.list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 140%;
}
.list--lh-160 {
    line-height: 160%;
}
.list--marker-white {
    list-style-image: url(../svg/decor_marker-circle-list_white.svg);
}
.list--marker-blue {
    list-style-image: url(../svg/decor_marker-circle-list_blue.svg);
}
.list--marker-white > li,
.list--marker-blue > li {
    padding-left: 5px;
}
/*.list--marker-black li::marker {*/
/*    color: black;*/
/*}*/
/*.list--marker-white > li::marker {*/
/*    content: url(../svg/decor_marker-circle-list_white.svg);*/
/*}*/
.chief {
    padding: 0;
}
.chief__banner,
.bg-decor-image {
    text-align: center;
    margin-bottom: -3px;
}
.main-content-row__column--relative {
    position: relative;
}
/*.leader__img,*/
/*.bg-image {*/
/*    height: auto;*/
/*}*/
.page-footer {
    background-color: var(--color-footer-grey);
}
.page-footer__row {
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
}
.copywrite {
    background-color: var(--darkgrey-color);
    /*height: 100vh;*/
}
/*.copywrite::after {*/
/*    content: '\0020';*/
/*    background-color: var(--darkgrey-color);*/
/*}*/
.copywrite__text {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    height: 50px;
    max-height: 50px;
    overflow: hidden;
    padding: 10px 0;
    font-size: 13px;
    color: var(--white-color);
}
.page-footer__column {
    width: 30%;
}
.page-footer__column--wide {
    width: 40%;
}
.page-footer__navigation {
}
.service-navigation {
}
.service-navigation__category {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--lightgrey-color);
}
.service-navigation-category__link {
    color: var(--lightgrey-color);
}
.service-navigation__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    font-size: 16px;
}
.service-navigation__item {
}
.service-navigation__link {
    color: var(--white-color);
    text-decoration: none;
}
.service-navigation__link:hover {
    text-decoration: underline;
}
.page-footer__contacts {
    margin-bottom: 60px;
}
.contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    color: var(--white-color);
}
.contacts__list-item {
    line-height: 30px;
}
.contacts__item {
    color: var(--white-color);
}
.contacts__link {
    color: var(--white-color);
}
.page-footer__social {
}
.social {
    display: flex;
    gap: 10px;
    list-style-type: none;
}
.social__item {
}
.social__link {
}
.social__img {
    width: 36px;
}
.page-footer__emblems {
}
.emblems {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.emblems__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
}

.media {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.media-cards-row,
.cases {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.cases {
    flex-wrap: wrap;
}
.media-card,
.case-item {
    /*position: relative;*/
    background-color: #EFEFEF;
    /*height: 464px;*/
    /*max-height: 464px;*/
}
.case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 316px;
}
.media-card:hover{
    opacity: 0.75;
}
.media-cards-row__column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.media-card__img,
.case-item__img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.case-item__img {
    width: 305px;
    height: 212px;
}
.media-card__caption {
    height: 144px;
    margin-top: 0;
    padding: 26px 34px 0;
    margin-bottom: 30px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
    overflow: hidden;
}
.media-card__link {
    padding-bottom: 25px;
    color: var(--black-color);
}
.case-item__controls {
    height: 90px;
    display: flex;
    justify-content: center;
}
.case-item__button {
    align-self: center;
}
.contact-us {
    margin-top: var(--space-size-l);
    margin-bottom: var(--space-size-l);
}
.contact-us-row {
    display: flex;
    gap: 50px;
}
.contact-us-row__text {
    width: 76%;
    font-size: 20px;
    line-height: 140%;
    text-align: left;
}
.contact-us-row__column {
    display: flex;
    flex-direction: column;
}
.contact-us-row__column--w-50 {
    width: 50%;
}
.contact-us__form {
    height: 100%;
    width: 68%;
}
.contacts-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 37px;
}
.contacts-form__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    /*align-items: flex-start;*/
}
.contacts-form__label {
    font-size: 14px;
    line-height: 140%;
    color: var(--lightgrey-4-color);

}
.contacts-form__input {
    font-size: 18px;
    width: 100%;
    padding: 17px;
    border: 1px solid var(--lightgrey-2-color);
    border-radius: 6px;
}
.contacts-form__input::placeholder {
    font-size: 18px;
}
.icons-row-item__caption {
    letter-spacing: 0.5px;
    text-align: center;
}
.icons-row-item__caption--bold {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
}
.icons-row-item__caption--light {
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}
.icons-row-item__caption--w-90 {
    width: 90%;
}
.main-content__text {
    line-height: 150%;
}
.main-content__text--w-50 {
    width: 50%;
}
.ll-contents__list {
    /*padding-top: 55px;*/
}
.ll-contents__title {
    color: var(--white-color);
    margin-bottom: 20px;
}
.ll-contents,
.ll-extra {
    background-image: var(--gradient-blue-purple);
    padding-top: 30px;
    padding-bottom: 30px;
}
.list--marker-white-small {
    list-style: none;
}
.list--marker-white-small li {
    background: url(../svg/decor_marker-circle-list_white.svg) no-repeat;
    background-size: 9px 33px;
    padding-left: 20px;
}
.list--color-white a {
    color: var(--white-color);
    /*text-decoration: none;*/
}
.list--color-white a:hover {
    text-decoration: underline;
    color: var(--lightblue-color);
}
.ll-extra {
    padding-top: var(--space-size-l);
    padding-bottom: var(--space-size-l);
}
.ll-extra__topic {
    color: var(--white-color);
    margin-bottom: 100px;
}
.ll-extra__description {
    color: var(--white-color);
}
.ll-extra-more {
    display: flex;
    gap: 60px;
}
.ll-extra-more__content {
    width: 39%;
    color: var(--white-color);
}
.ll-extra-more__list {
    padding-left: 0;
}
.promo-text {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 100%;
}
.promo-text--color-blue {
    color: var(--lightblue-3-color);
}
.promo-text--mb-100 {
    margin-bottom: 100px;
}
.block {
    padding: 0;
}
.block--w-75 {
    width: 75%;
}
.cards-item--wide {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.cards-item--normal {
    justify-content: normal;
}
.location {
    padding: 0;
    margin: 0;
}
.location__img,
.chief__img {
    width: max-content;
}
.location__desc {
    width: 61%;
    display: flex;
    flex-direction: column;
}
.location__heading {
    padding: 0;
}
.location-heading {
    display: flex;
    align-items: center;
    gap: 5px;
}
.location-heading__flag {
    width: 45px;
    height: 45px;
}
.location-heading__title {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    color: var(--black-color);
    text-transform: uppercase;
    margin-bottom: 0;
}
.location__text,
.location__link {
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: var(--black-color);
}
.line {
    padding: 0;
}
.line--with-margins {
    margin-top: 50px;
    margin-bottom: 50px;
}
.start-section--f-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.start-section--pb-40 {
    padding-bottom: 40px;
}
.posts {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 45px;
}
.posts__announce,
.single-post {
    width: 60%;
}
.posts-announce {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.posts-announce__list,
.single-post-content {
    margin-bottom: 45px;
}
.posts-announce-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}
.posts-announce__post {
}
.post-preview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.post-preview__title {
    font-size: 30px;
    text-transform: uppercase;
    line-height: 120%;
    letter-spacing: 0.5px;
}
.post-preview__link {
    text-decoration: none;
    color: var(--black-color);
}
.post-preview__link:hover {
    text-decoration: none;
}
.post-preview__time {
    position: relative;
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}
.post-preview__time::after {
    content: url("data:image/svg+xml,%3Csvg width='550' height='1' viewBox='0 0 617 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.257813' y1='0.507812' x2='617' y2='0.507866' stroke='%23878787' stroke-width='0.5'/%3E%3C/svg%3E");
    position: absolute;
    bottom: 25%;
    padding-left: 5px;
}
.post-preview__excerpt,
.post-preview__more {
    font-family: Lato, sans-serif;
    font-weight: 400;
    line-height: 140%;
}
.post-preview__more {
    line-height: 30px;
    color: var(--black-color);
    text-transform: capitalize;
}
.post-preview__more:hover {
    color: var(--lightblue-color);
}
.post-preview__more::after {
    content: url("../svg/icon_arrow-more_black.svg");
    padding-left: 5px;
}
.posts__aside {
    width: 40%;
}
.posts-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.posts-aside__title {
    margin-top: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
.posts-aside__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.posts-aside__item {
    width: 100%;
}
.post-aside {
    display: flex;
    align-items: center;
    gap: 38px;
}
.post-aside__img {
    /*width: max-content;*/
    border-radius: 50%;
    max-width: 150px;
    max-height: 150px;
}
.post-dummy-img {
    background-color: #f8f8f8;
    width: 139px;
    height: 139px;
    border-radius: 50%;
    display: block;
    aspect-ratio: 1 / 1;
}
.post-aside__link {
    font-family: Montserrat, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.5px;
    color: var(--black-color);
    text-decoration: none;
}
.post-aside__link:hover {
    color: var(--lightblue-color);
}
.posts-announce__pagination {
}
/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}
.pagination__arrow,
.pagination__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--lightgrey-2-color); /*#e2e8f0*/
    border-radius: 50%;
    text-decoration: none;
    color: var(--lightgrey-4-color);
    font-weight: 400;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}
.pagination__arrow {
    background: #f7fafc;
}
.pagination__arrow svg {
    width: 16px;
    height: 16px;
}
.pagination__numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pagination__number {
    font-size: 14px;
}
.pagination__number--active {
    background: #007cba;
    border-color: #007cba;
    color: white;
    transform: scale(1.05);
}
.pagination__ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #a0aec0;
    font-weight: 600;
}
.pagination__arrow:hover,
.pagination__number:hover {
    border-color: #007cba;
    color: #007cba;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15);
}
.pagination__arrow:active,
.pagination__number:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}
.pagination__arrow:focus,
.pagination__number:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.3);
}
.pagination__number--active:hover {
    background: #005a87;
    border-color: #005a87;
    color: white;
}
.pagination__arrow--disabled,
.pagination__arrow--disabled:hover {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #e2e8f0;
    color: #a0aec0;
    background: #f7fafc;
    transform: none;
    box-shadow: none;
}
.blockquote {
    padding: 40px;
    margin-left: 0;
    width: 75%;
}
.blockquote--p-20 {
    padding: 20px;
}
.blockquote--w-100 {
    width: 100%;
}
.blockquote--fs-20 {
    font-size: 20px;
}
.blockquote--bg-grey {
    background-color: var(--lightgrey-5-color);
}
.blockquote--bg-blue {
    background-color: var(--lightblue-3-color);
}
.blockquote--color-white {
    color: #fff;
}
.blockquote--border-lightblue {
    border-left: 8px solid var(--lightblue-3-color);
}
.blockquote--border-lightblue p {
    font-size: 32px;
    line-height: 1.5em;
}
.about__text {
    padding: 0;
}
.about__text--w-75 {
    width: 75%;
}
.text--mb-50 {
    margin-bottom: 50px;
}
.smart-lqa-decor--top-right {
    position: absolute;
    /*top: 0;*/
    right: 29.6%;
}
.ai-ecosystem-bg-decor--top-right-back {
    position: absolute;
    top: -4.3%;
    right: 0.3%;
}
.smart-lqa-decor--bottom-left {
    position: absolute;
    bottom: 0;
    left: 12%;
}
.ai-ecosystem-bg-decor--bottom-left-back {
    position: absolute;
    bottom: -8.5%;
    left: 8%;
}
.page__content--ai-ecosystem-de .ai-ecosystem-bg-decor--bottom-left-back {
    bottom: -6.7%;
}
.main-content-row__img--front {
    z-index: 10;
}
.main-content-row__column--h-center {
    align-items: center;
}
.divider {
    width: 100%;
}
.divider--h-1 {
    height: 1px;
}
.divider--h-3 {
    height: 3px;
}
.divider--h-12 {
    height: 12px;
}
.divider--blue {
    background-image: var(--gradient-blue-purple) !important;
}
.leadership-bg-decor--top-right {
    position: absolute;
    top: -85px;
    right: 29px;
}
.leadership-bg-decor--bottom-right {
    position: absolute;
    bottom: -85px;
    right: 0;
}
.leadership {
    gap: 80px;
}
.leader {
    width: 70%;
    gap: 40px;
    /*z-index: 10;*/
}
.leader__desc {
    align-content: center;
}
.leader__title {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
    color: var(--black-2-color);
    text-transform: uppercase;
    margin-bottom: 7px;
}
.leader__position {
    margin-bottom: 10px;
    line-height: 130%;
}
.leader__text {
    padding-top: 35px;
    padding-right: 7px;
    background-image: url("../svg/icon_quotes_gray.svg");
    background-repeat: no-repeat;
    background-position: 42% top;
}
.leader__img {
    max-width: none;
}
.start-section__description--ll {
    align-content: center;
    width: 80%;
}
.number {
    display: inline-block;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
}
.number--w-60 {
    width: 60px;
    height: 60px;
    font-size: 40px;
    line-height: 100%;
}
.number--w-40 {
    width: 40px;
    height: 40px;
    font-size: 27px;
    line-height: 60%;
}
.number--bg-blue {
    background-color: #1889cd;
}
.number--bg-white {
    background-color: #fff;
    border: 1px solid #1889cd;
}
.number--color-blue {
    color: #1889cd;;
}
.number--color-white {
    color: #ffffff;
}
.cards-item__number {
    margin-bottom: 5px;
}
.content-table {
    font-size: 18px;
    border-collapse: collapse;
}
.content-table th,
.content-table td {
    padding: 15px 20px;
}
.content-table--with-borders tr {
    border-bottom: 1px solid rgb(160 160 160);
}
.content-table--with-borders tbody > tr:last-of-type {
    border-bottom: none;
}
.content-table--even-gray tbody > tr:nth-of-type(even) {
    background-color: rgb(237 238 242);
}
.content-table--heading-mw-200 th,
.content-table--heading-mw-200 td {
    min-width: 200px;
}
/*** POSTS ***/
.post__content .start-section__topic h2 {
    margin-bottom: 10px;
    text-transform: none;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    color: var(--white-color);
    background-position-y: 8px;
    background-image: url(../svg/decor_marker-paral_white.svg);
    position: relative;
    left: -67px;
    padding-left: 67px;
    background-position: 28px 9px;
    background-repeat: no-repeat;
}
.single-post h1,
.single-post h2 {
    margin-top: 0;
}
.single-post h1 {
    font-size: 32px;
    line-height: 110%;
}
.single-post h2 {
    font-size: 25px;
}
.single-post-content__time {
    font-size: 15px;
}
.author-quote {
    display: flex;
    gap: 15px;
}
.author-quote__text blockquote {
    margin-right: 0;
    margin-top: 0;
}
.author-quote__avatar {
    min-width: 110px;
}
.author-quote__avatar p {
    color: var(--darkgrey-color);
    font-size: 17px;
    line-height: 110%;
}
.autor_meta {
    display: flex;
    justify-content: space-between;
    border: 1px solid rgb(227, 227, 227);
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-right: 15px;
}
.avatar_meta {
    min-width: 236px;
    padding: 30px 20px;
    color: var(--lightgrey-6-color);
}
.avatar_meta p strong {
    display: inline-block;
    padding: 5px 5px 5px 0;
    font-weight: 500;
    color: #313131;
}
.autor_text {
    color: var(--lightgrey-6-color);
}
.autor_text h3 {
    text-transform: none;
    color: #000;
}
.single-post blockquote {
    padding: 15px;
    margin-left: 0;
    /*background-color: var(--lightgrey-5-color);*/
    border-left: 8px solid var(--lightblue-3-color);
}
.single-post figure {
    margin: 15px 15px;
}
.single-post ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 140%;
    list-style-image: url(../svg/decor_marker-circle-list_blue.svg);
}
.single-post ul > li {
    padding-left: 5px;
}



/* MEDIA */

@media (max-width: 1400px) {
    .h2-title--marker-scale {
        left: -30px;
    }
    .cards--decor-top::before {
        left: 39%;
    }
    .ai-ecosystem-bg-decor--bottom-left-back {
        left: 0;
    }
}
@media (max-width: 1300px) {
    .iframe-gtp {
        width: 100%;
    }
}
@media (max-width: 1220px) {
    .start-section {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }

    .start-section__bg-img--mobile-default,
    .about__bg-img--mobile-default {
        background-image: var(--gradient-blue-purple) !important;
    }
    .start-section__bg-img--mobile-darkblue {
        background-color: var(--darkblue-2-color) !important;
        background-image: none !important;
    }
    .start-section__bg-img--mobile-black {
        background-color: var(--black-color) !important;
        background-image: none !important;
    }
    .about__bg-img--mobile-default {
        height: revert !important;
    }
    .start-section__bg-img {
        height: auto !important;
    }

    .start-section__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .start-section__topic {
        width: 90%;
    }
    .start-section__topic--w-80 {
        width: 80%;
    }
    .site-navigation {
        gap: 15px;
    }
    .about {
        padding-top: 80px;
    }
    .about__topic {
        width: 48%;
    }
    .list-row--pt-55,
    .icons-row--pt-55 {
        padding-top: 30px;
    }
    .start-section__row,
    .start-section__row--media {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .main-content-part--w-70 {
        width: 100%;
    }
    .list-row--s-between {
        justify-content: revert;
    }
    .cards--decor-top::before {
        left: 37%;
    }
    .cards--decor-bottom::after {
        width: 50%;
    }
    .ll-extra__topic {
        margin-bottom: 50px;
    }
    .h1-title--m-mb-0 {
        margin-bottom: 0;
    }
    .promo-text--mb-100 {
        margin-bottom: 50px;
    }
    .block--w-75 {
        width: 100%;
    }
    .post-preview__time::after {
        content: url("data:image/svg+xml,%3Csvg width='500' height='1' viewBox='0 0 617 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.257813' y1='0.507812' x2='617' y2='0.507866' stroke='%23878787' stroke-width='0.5'/%3E%3C/svg%3E");
    }
    .list-row--pt-30,
    .icons-row--pt-30 {
        padding-top: 15px;
    }
    .list-row--pb-30 {
        padding-bottom: 15px;
    }
    .about__text--w-75 {
        width: 100%;
    }
    .main-content-block--mt-160 {
        margin-top: unset !important;
    }
    .main-content-block--w-75 {
        width: 100%;
    }
    .smart-lqa-decor--top-right {
        right: 15%;
    }
    .ai-ecosystem-bg-decor--top-right-back,
    .ai-ecosystem-bg-decor--bottom-left-back {
        display: none;
    }
    .leadership-bg-decor--top-right {
        top: -85px;
        right: 0;
    }
    .leadership-bg-decor--bottom-right {
        bottom: -85px;
    }
    .leadership {
        gap: var(--space-size-m);
    }
    .iframe-gtp-wrapper {
        display: none;
    }
    .post__content .start-section__topic h2 {
        margin-bottom: 0;
    }
}
@media (max-width: 1100px) {
    .site-navigation {
        display: none;
    }
    .main-navigation__extra-navigation {
        margin-left: auto;
        margin-right: 40px;
    }
    .lang-navigation--m-mr-40 {
        margin-right: 40px;
    }
    .burger-menu__btn {
        display: block;
    }
    .burger-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 83px;
        max-width: 350px;
        height: 485px;
        padding: 20px 15px 30px;
        background-color: var(--white-color);
        box-shadow: 0 1px 5px grey;
    }
    .burger-menu--active {
        display: block;
        overflow-y: scroll;
    }
    .dropdown-menu {
        display: block;
        position: static;
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 15px;
        box-shadow: none;
        border-top: none;
    }
    .site-navigation__item {
        height: auto;
    }
    .site-navigation__item--active {
        border-bottom: none;
    }
    .site-navigation__item--active > .site-navigation__link {
        color: var(--black-color);
    }
    li.current_page_item, .current-menu-ancestor {
        border-bottom: none;
        box-sizing: border-box;
    }
    li.active-menu-item > .dropdown-menu__link {
        color: var(--lightblue-color);
    }
    /*.dropdown-menu__link:active {*/
    /*    line-height: 120%;*/
    /*}*/
    .services__items {
        justify-content: space-evenly;
        gap: 5px;
    }
    .cards--decor-top::before {
        height: 40%;
        width: 40%;
        left: 42%;
    }
    .start-section-row--ll {
        flex-direction: column;
    }
    .start-section__description--ll-order {
        order: 5;
    }
    .ll-extra-more__content {
        width: 53%;
    }
    .line--with-margins {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .post-preview__time::after {
        content: url("data:image/svg+xml,%3Csvg width='450' height='1' viewBox='0 0 617 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.257813' y1='0.507812' x2='617' y2='0.507866' stroke='%23878787' stroke-width='0.5'/%3E%3C/svg%3E");
    }
    .smart-lqa-decor--bottom-left {
        left: 0;
    }
    .cases {
        justify-content: center;
    }
    .blockquote {
        width: 90%;
        padding: 20px;
    }
    .list--w-75 {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner__topic {
        width: 100%;
        padding: 0 10px;
    }
    .banner__description {
        width: 100%;
    }
    .promo {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .clients {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .services {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .industries {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .technologies {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .techno-list {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .main-content {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .main-content--with-bg-color {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .media {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .industries__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .industries__description {
        width: auto;
        margin-bottom: 12px;
    }
    .technologies__topic {
        width: 66%;
    }
    .technologies-items {
        justify-content: center;
        gap: 30px;
    }
    .technologies__item {
        width: 33%;
    }
    .technologies-item__img {
        width: 100px;
    }
    .technologies-item__link {
        font-size: 23px;
    }
    .about {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .about__inner {
        flex-direction: column;
    }
    .about__inner--gap-50 {
        gap: 0;
    }
    .about__topic {
        width: auto;
        margin-bottom: -100px;
    }
    .about__description {
        margin-bottom: 30px;
    }
    .about__img {
        margin-top: 52px;
    }
    .about__features {
        width: auto;
    }
    .features__list {
        padding-right: 0;
        padding-left: 20px;
    }
    .start-section__description,
    .start-section__description--w-62 {
        width: 100%;
    }
    .main-content-block {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .main-content-row--with-margins {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .list-row {
        flex-direction: column;
        gap: 0;
    }
    .main-content-row__column--w-50 {
        width: 75%;
    }
    .main-content-row__column--m-img-last {
        width: 25%;
    }
    .contact-us {
        margin-top: var(--space-size-m);
        margin-bottom: var(--space-size-m);
    }
    .contact-us__form {
        width: 100%;
    }
    .contact-us-row__text {
        width: 100%;
    }
    /*.buttons-row {*/
    /*    margin-top: var(--space-size-m);*/
    /*    margin-bottom: var(--space-size-m);*/
    /*}*/
    .cards--decor-top::before {
        left: 45%;
    }
    .title--w-70 {
        width: 90%;
    }
    .main-content-row__img-it--absolute {
        display: none;
    }
    .main-content__subtitle--w-55 {
        width: 100%;
    }
    .main-content__text--w-50 {
        width: 100%;
    }
    .ll-extra {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .posts-announce {
        gap: 35px;
    }
    .posts-announce-list {
        gap: 30px;
    }
    .posts-announce__list,
    .single-post-content {
        margin-bottom: 35px;
    }
    .post-preview {
        gap: 5px;
    }
    .post-preview__title {
        font-size: 25px;
    }
    .post-preview__time::after {
        display: none;
    }
    .posts__aside {
        display: none;
    }
    .posts__announce,
    .single-post {
        width: 100%;
    }
    .main-content-block--w-85 {
        width: 100%;
    }
    .main-content-block--w-50 {
        width: 100%;
    }
    .main-content--mt-minus-1 {
        margin-top: -1px;
    }
    .smart-lqa-decor--top-right {
        right: 7%;
    }
    /*.ai-ecosystem-bg-decor--top-right-back {*/
    /*    right: 0;*/
    /*}*/
    /*.ai-ecosystem-bg-decor--bottom-left-back {*/
    /*    left: 0;*/
    /*}*/
    .leadership {
        gap: var(--space-size-s);
    }
    .leadership-bg-decor--top-right,
    .leadership-bg-decor--bottom-right {
        display: none;
    }
    .leader {
        width: 100%;
        gap: 30px;
    }
    .media-cards-row__column--w-33 {
        flex: 0 0 calc(50% - 32px);
        max-width: calc(50% - 32px);
    }
    .techno-list__column {
        width: 100%;
    }
}
@media (max-width: 910px) {
    .cards--decor-top::before {
        display: none;
    }
    .posts-announce__list,
    .single-post-content {
        margin-bottom: 15px;
    }
    .main-content-row--contacts {
        justify-content: space-around;
    }

}
@media (max-width: 810px) {
    .cards--decor-top::before {
        display: none;
    }
    .main-content-row {
        flex-direction: column;
    }
    .cards-100 {
        flex-direction: revert;
    }
    .cards--w-810 {
        flex-direction: row;
        width: 100%;
    }
    .cards--w-783 {
        flex-direction: row;
        width: 100%;
    }
    .cards-item--wide {
        justify-content: normal;
    }
    .main-content-row__column-m-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    .main-content-row__column--m-halign {
        justify-content: center;
    }
    .main-content-row__column--m-img-last {
        order: 5;
        width: 60%;
        margin: 0 auto;
    }
    .smart-lqa-decor--top-right,
    .smart-lqa-decor--bottom-left {
        display: none;
    }
    .divider {
        display: none;
    }
    .main-content--pb-300 {
        padding-bottom: 0 !important;
    }
    .main-content-row__column--m-last {
        order: 5;
    }
    .main-content-row--contacts {
        flex-direction: row;
        justify-content: space-around;
    }
}
@media (max-width: 768px) {
    .banner__title {
        font-size: 2.5em;
    }
    .services__topic {
        width: 100%;
    }
    .services__inner {
        flex-direction: column;
    }
    .services__button {
        margin-bottom: 84px;
    }
    .services__items {
        justify-content: space-between;
        flex-direction: row;
        width: auto;
    }
    .services-item {
        width: 150px;
        height: 150px;
    }
    .clients__title {
        margin-bottom: 45px;
    }
    .clients-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    .clients-item__img {
        width: 100%;
    }
    .industries-card__caption {
        font-size: 25px;
    }
    .technologies__inner {
        flex-direction: column;
    }
    .technologies__topic {
        width: 100%;
    }
    .technologies__description {
        margin-bottom: 50px;
    }
    .technologies__items {
        width: auto;
        padding-top: 50px;
    }
    .start-section-row,
    .start-section-row__column {
        display: revert;
    }
    .start-section-row__column--w-50 {
        width: 100%;
    }
    .start-section-row__img {
        width: 40px;
        float: left;
        margin-right: 10px;
        padding-top: 30px;
    }
    .main-content-row__column--w-50 {
        width: 100%;
    }
    .main-content-row__column--w-33,
    .cards-item--w-33{
        width: 100%;
    }
    /*.main-content-row__column--m-img-last {*/
    /*    order: 5;*/
    /*    width: 60%;*/
    /*    margin: 0 auto;*/
    /*}*/
    .media-cards-row {
        flex-direction: column;
    }
    .media-cards-row__column--w-33 {
        width: 66%;
    }
    .media-card__caption {
        height: 100px;
    }
    .contact-us-row__column--with-img {
        display: none;
    }
    .contact-us-row__column--w-50 {
        width: 100%;
    }
    .contact-us__form {
        width: 100%;
    }
    .contact-us-row__column {
        align-items: center;
    }
    .contacts-form__field {
        width: 95%;
        margin: 0 auto;
    }
    .cards-item--pt-110,
    .cards-item--pt-210,
    .cards-item--pt-80    {
        padding-top: revert;
    }
    .main-content-row--mt-minus-140,
    .main-content-row--mt--mt-25 {
        margin-top: revert;
    }
    .main-content-row--gap-50 {
        gap: 25px;
    }
    .buttons-row__button {
        width: 100px;
    }
    .main-content-row__column--right {
        align-items: revert;
    }
    .cards--decor-bottom::after {
        display: none;
    }
    .title--w-70 {
        width: 100%;
    }
    .main-content-row__img-it--absolute {
        width: 490px;
        position: static;
        padding-top: 45px;
    }
    .main-content-row__text--w-85 {
        width: 100%;
    }
    .main-content-row-m-gap-0 {
        gap: 0;
    }
    .start-section-row--ll {
        display: flex;
    }
    .start-section-row__img--max {
        width: 50%;
    }
    .ll-extra-more__img {
        width: 40px;
        float: left;
        margin-right: 10px;
        padding-top: 10px;
    }
    .ll-extra-more {
        display: revert;
    }
    .ll-extra-more__content {
        width: 70%;
    }
    .pagination {
        gap: 4px;
    }
    .pagination__arrow,
    .pagination__number,
    .pagination__ellipsis {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .pagination__arrow--first,
    .pagination__arrow--last {
        display: none;
    }
    .leader__img {
        width: 200px;
    }
    .avatar_meta {
        min-width: 180px;
    }
    .start-section-row__text--w-60 {
        width: 100%;
    }

}
@media (max-width: 576px) {
    p {
        font-size: 16px;
        line-height: 30px;
    }
    ul, ol {
        font-size: 16px;
    }
    h2 {
        font-size: 22px;
        margin: 20px 0 10px 0;
    }
    .title--fs-36 {
        font-size: 26px;
    }
    .h1-title {
        font-size: 30px;
        letter-spacing: 0.6px;
    }
    .h2-title {
        font-size: 27.5px;
        letter-spacing: 0.57px;
    }
    .h3-title {
        font-size: 27.5px;
    }
    .clients__title {
        margin-bottom: revert;
    }
    .industries__row {
        align-items: center;
    }
    .main-navigation__extra-navigation {
        margin: unset;
    }
    .lang-navigation {
        gap: 8px;
    }
    .logo__img {
        display: none;
    }
    .logo__img--burger-show {
        display: block;
        width: 60px;
        height: 60px;
    }
    .page-header {
        height: auto;
        padding: 10px 0;
    }
    .banner {
        height: auto !important;
        padding-bottom: 10px;
        background-position: left 50%;
    }
    .banner__title {
        font-size: 2em;
    }
    .banner__logo {
        width: 50px;
    }
    .banner__content {
        gap: 40px;
    }
    .button {
        width: 100%;
    }
    .banner__button {
        width: 95% !important;
    }
    .start-section__bg-img {
        height: auto !important;
        background-position: left;
    }
    .promo {
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .clients {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .services {
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .industries {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .technologies {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .techno-list {
        padding-top: var(--space-size-m);
        padding-bottom: var(--space-size-m);
    }
    .start-section {
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .start-section-row__img {
        padding-top: 10px;
    }
    .main-content {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .main-content__subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    .main-content--with-bg-color {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .media {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .media-cards-row__column--w-33 {
        width: 100%;
    }
    .h1-title--marker-scale {
        background-position: 38px 3px;
        background-size: 23px;
    }
    .h2-title--marker-scale {
        background-position-y: 23px;
    }
    .h2-title--marker-white {
        background-position-y: 0;
    }
    .h2-title--marker-blue {
        background-position-y: -1px;
    }
    .services {
        padding-top: 41px;
        padding-bottom: 0;
    }
    .services__title {
        margin-bottom: 30px;
    }
    .services__description {
        padding-left: 35px;
        padding-right: 10px;
        margin-bottom: 64px;
        font-size: 16px;
        line-height: 30px;
    }
    .services-item__link {
        font-size: 14px;
        line-height: 130%;
    }
    /*.services-item__link--black {*/
    /*    font-size: 16px;*/
    /*}*/
    .services__button {
        margin-bottom: 72px !important;
    }
    .services__items {
        justify-content: space-around;
    }
    .services-item {
        width: 177px;
        height: 177px;
    }
    .industries__row {
        padding-left: 35px;
        padding-right: 10px;
    }
    .industries__description {
        margin-bottom: 38px;
    }
    .industries-card__caption {
        font-size: 14px;
        line-height: 19.5px;
    }
    .arrow-more-link {
        font-size: 12.5px;
        line-height: 28.4px;
    }
    .industries__button {
        width: 100% !important;
    }
    .technologies__topic {
        width: auto;
    }
    .technologies__title {
        margin-bottom: 0;
    }
    .technologies__description {
        padding-left: 35px;
        padding-right: 10px;
        margin-bottom: 57px;
    }
    .technologies__items {
        padding-top: 66px;
    }
    .technologies-item__link {
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0.14px;
    }
    .about {
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .about__topic {
        margin-bottom: -110px;
    }
    .about__description {
        padding-left: 35px;
        padding-right: 10px;
    }
    .about__img {
        padding-left: 35px;
    }
    .about__button {
        background-color: var(--white-color);
        color: var(--blue-color);
    }
    .features__list {
        font-size: 16px;
        line-height: 140%;
    }
    .about__features {
        padding-left: 35px;
        padding-right: 10px;
    }
    .page-footer__column {
        width: 50%;
    }
    .page-footer__column--wide {
        width: auto;
    }
    .page-footer__contacts {
        margin-bottom: 30px;
    }
    .start-section__row {
        padding: 0;
    }
    .start-section__topic {
        width: 75%;
    }
    .start-section__topic--w-80 {
        width: 80%;
    }
    .start-section__description--fs-24 p {
        font-size: 16px;
    }
    /*.main-content-block {*/
    /*    margin-top: var(--space-size-s);*/
    /*    margin-bottom: var(--space-size-s);*/
    /*}*/
    .main-content-row--with-margins {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    .main-content-row__column--w-50 {
        width: 100%;
    }
    .main-content-row__column--m-img-last {
        width: 75%;
        margin: 0 auto;
    }
    .main-content-row--right {
        gap: 35px;
    }
    .icons-row {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 10px;
    }
    .cards-item__img {
        display: block;
        margin: 0 auto;
    }
    .cards-item__link {
        font-size: 16px;
    }
    .cards-item__heading {
        font-size: 20px;
    }
    .button--size-xxl {
        padding-left: 0;
        padding-right: 0;
    }
    .media-card__caption {
        height: 77px;
    }
    .contact-us {
        margin-top: var(--space-size-s);
        margin-bottom: var(--space-size-s);
    }
    /*.buttons-row {*/
    /*    margin-top: var(--space-size-s);*/
    /*    margin-bottom: var(--space-size-s);*/
    /*}*/
    .bg-decor-image {
        display: none;
    }
    .icons-row-item__caption--bold {
        font-size: 20px;
    }
    .icons-row-item__caption--light {
        font-size: 16px;
    }
    .list-row--m-pt-0 {
        padding-top: 0;
    }
    .main-content-row__text--mb-45 {
        margin-bottom: 30px;
    }
    .title--mb-30 {
        margin-bottom: 20px;
    }
    .start-section__description--ll-fs-30 p {
        font-size: 16px;
    }
    .h1-title--ll-fs-60 {
        font-size: 28px;
    }
    .start-section-row--ll {
        gap: 15px;
    }
    .h1-title--ll-fs-60 {
        margin-bottom: 15px;
    }
    .ll-extra {
        padding-top: var(--space-size-s);
        padding-bottom: var(--space-size-s);
    }
    .ll-extra-more__content {
        width: 100%;
    }
    .main-content-row__img--w-60 {
        width: 60%;
    }
    .promo-text--mb-100 {
        margin-bottom: 40px;
    }
    .posts-announce__list,
    .single-post-content {
        margin-bottom: 10px;
    }
    .icons-row__item {
        gap: 10px;
    }
    .cards-item__title {
        font-size: 20px;
    }
    .main-content--mt-minus-1 {
        margin-top: -1px;
    }
    .start-section__description--ll-fs-30,
    .start-section__description--ll-fs-30 p {
        line-height: 130%;
    }
    .title--ll {
        font-size: 20px;
    }
    .ll-contents-inner .main-content-row__img {
        width: 60%;
        align-self: center;
    }
    .main-content-block {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .cards--w-810 > * {
        min-width: 200px;
    }
    .cards--w-783 > * {
        min-width: 155px;
        width: 155px;
    }
    .cards--w-783 > * > .services-item{
        width: inherit;
        height: inherit;
    }
    .subtitle--fs-20 {
        font-size: 18px;
    }
    .number--w-60 {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .blockquote--border-lightblue p {
        font-size: 20px;
    }
    .burger-menu {
        top: 101px;
        height: 550px;
    }
    .promo-text {
        font-size: 32px;
    }
    .main-content-row--contacts {
        flex-direction: column;
    }
    .media-cards-row__column--w-33 {
        flex: 0 0 calc(100% - 10px);
        max-width: calc(100% - 10px);
    }
    .techno-list__text,
    .techno-list__link {
        font-size: 18px;
    }
    .techno-list__text {
        padding-bottom: 5px;
    }
    .techno-list__link {
        margin-bottom: 20px;
    }
    .techno-list__row:first-of-type {
        margin-bottom: 20px;
    }
    .techno-list__title {
        font-size: 22px;
    }
    .leader__img {
        width: 130px;
    }
    .post__content .start-section__topic h2 {
        font-size: 30px;
        letter-spacing: 0.6px;
        background-position: 38px 3px;
        background-size: 23px;
    }
    .single-post h1 {
        font-size: 30px;
        letter-spacing: 0.6px;
    }
    .single-post h2 {
        font-size: 22px;
        margin: 20px 0 10px 0;
    }
    .autor_meta {
        flex-direction: column;
    }
    .autor_text {
        padding: 0 20px 0;
    }
    .autor_text h3 {
        margin-top: 0;
        font-weight: 600;
    }
    .avatar_meta {
        padding-bottom: 0;
    }
}
@media (max-width: 480px) {
    .main-navigation__extra-navigation {
        padding-left: 10px;
    }
    .lang-navigation--m-mr-40 {
        margin-right: 10px;
        padding-left: 10px;
    }
    .banner__title {
        font-size: 1.3em;
    }
    .banner__description {
        font-size: 0.9em;
    }
    .about__img {
        margin-bottom: 60px;
    }
    .page-footer__row {
        flex-direction: column;
        align-items: center;
    }
    .page-footer__column {
        width: 100%;
    }
    .promo {
        height: auto !important;
        background-image: var(--gradient-blue-purple) !important;
    }
    .cards-item--wide {
        flex-direction: column;
    }
    .location__desc {
        width: 90%;
    }
    .icons-row {
        flex-direction: column;
    }
    .ll-contents-inner .main-content-row__img {
        width:75%;
        align-self: center;
    }
    .case-item {
        min-width: 100%;
    }
    .case-item__img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .cards--w-810 > * {
        min-width: fit-content;
        width: 100%;
    }
    .cards--w-783 {
        gap: 35px;
    }
    .leader__img {
        width: 200px;
    }
    .author-quote {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 25px;
    }
    .author-quote__avatar {
        display: flex;
        gap: 15px;
        align-items: center;
        line-height: 130%;
    }
}
/* end styles */
