@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Exo+2:100,300,400,500,700,900|Roboto:100,300,400,500,700&subset=cyrillic';
:root {
  color-scheme: dark light;
  --text-color: #000;
  --gray-color: #30343C;
  --description-color: #494949;
  --button-gray-bg: #31343b;
  --button-gray-color: #fff;
  --modal-background: #00000080;
  --modal-wrapper: #fff;
  --text-color-dark-bg: #fff;
  --text-gray-color: #d9dbe0;
  --head-color: #fdbb11;
  --head-subcolor: #ec9f19;
  --white-background: #fff;
  --link-color: #2b7bff;
  --link-color-border: rgba(43, 123, 255, .4);
  --link-color-gray: #d9dbe0;
  --link-color-gray-border: rgba(217, 219, 224, .4);
  --gray-border: rgba(217, 219, 224, 1);
  --technologies-bg: #f5f5f5;
}

HTML, BODY {
  margin: 0;
  padding: 0;
  background: var(--white-background);
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.8em;
  min-width: 240px;
}

BODY.no-scrolling {
  overflow: hidden;
  touch-action: none;
  position: relative; /* Для корректного позиционирования */
}

A {
  text-decoration: none;
  color: var(--link-color);
  border-bottom: 1px solid var(--link-color-border);
}

H1, H2, H3 {
  padding: 0;
}

H2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1em;
  font-family: "Exo 2", sans-serif;
}

H3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
}

.page-wrapper {
  width: 100%;
  min-width: 240px;
  max-width: 1440px;
  box-sizing: border-box;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
}

HEADER {
  padding: 0;
  margin: 0 0 70px;
  width: 100%;
  box-sizing: border-box;
  height: 80px;
}
HEADER > .page-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
HEADER .logo {
  color: var(--text-color);
  font-size: 0;
  line-height: 65px;
  white-space: nowrap;
  margin: 0 auto;
}
HEADER .logo svg, HEADER .logo img, HEADER .logo .logo-txt {
  display: inline-block;
  vertical-align: middle;
}
HEADER .logo .logo-txt {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-family: "Exo 2", sans-serif;
  margin-left: 24px;
}
HEADER .contacts-block {
  width: max-content;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  flex-direction: column;
  color: var(--head-color);
  font-size: 18px;
  font-weight: 400;
}
HEADER .contacts-block .tel, HEADER .contacts-block .email {
  text-align: right;
}
HEADER .contacts-block A {
  color: var(--link-color-gray);
  border-bottom-color: var(--link-color-gray-border);
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  border-radius: 10px;
  padding: 12px 24px 14px 24px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}
.button__gray {
  color: var(--button-gray-color);
  background-color: var(--button-gray-bg);
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  transition: 0.3s opacity ease, 0.3s visibility ease;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
}
.modal-checkbox {
  display: none;
}
.modal-checkbox:checked ~ .modal {
  opacity: 1;
  visibility: visible;
}
.modal__background {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 1;
  background-color: var(--modal-background);
}
.modal__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  outline: none;
  overflow-y: auto;
  border-radius: 30px;
  background-color: var(--modal-wrapper);
  max-height: calc(100% - 104px);
  max-width: calc(100% - 104px);
  min-height: 272px;
}
.modal__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  gap: 8px;
  padding: 48px 80px;
  background-color: var(--modal-wrapper);
}
.modal__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  margin: 0;
  padding: 0;
}
.modal__cross {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: inherit;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  flex-shrink: 0;
}

.pages .page {
  min-height: 100vh;
  padding: 50px 0 50px;
  box-sizing: border-box;
}
.pages .page H2 {
  margin: 0 0 2em;
}
.pages .intro {
  background: var(--white-background);
  color: var(--text-color-dark-bg);
  padding-bottom: 35px 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  min-height: 0;
}
.pages .intro > .page-wrapper {
  flex-grow: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.pages .intro .txt {
  text-align: center;
  font-size: calc((2vh + 2vw) / 1.5);
  line-height: 1.3em;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}
.pages .intro .txt STRONG {
  font-weight: 500;
}
.pages .intro .inner {
  display: inline-block;
  max-width: 70%;
}
.pages .what-we-do {
  min-height: 0;
  background: var(--white-background);
  padding-top: 0;
  padding-bottom: 63px;
}
.pages .what-we-do > .page-wrapper {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1460px;
}
.pages .what-we-do > .page-wrapper .about {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 60px 0;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8em;
  -webkit-font-smoothing: antialiased;
}
.pages .what-we-do > .page-wrapper .about__header-block {
  margin-right: 50px;
  min-width: 500px;
}
.pages .what-we-do > .page-wrapper .about__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 40px;
}
.pages .what-we-do > .page-wrapper .about__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 29px;
  max-width: 490px;
}
.pages .what-we-do > .page-wrapper .about__text-block {
  font-weight: 300;
  font-size: 28px;
  line-height: 42px;
  max-width: 690px;
  padding-top: 4px;
}
.pages .what-we-do > .page-wrapper .performance {
  position: relative;
  flex-grow: 4;
}
.pages .what-we-do > .page-wrapper .performance__list {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(250px, 326px);
  grid-template-rows: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 70px 35px;
}
.pages .what-we-do > .page-wrapper .performance__item {
  max-width: 326px;
}
.pages .what-we-do > .page-wrapper .performance__icon {
  margin-bottom: 18px;
}
.pages .what-we-do > .page-wrapper .performance__title {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 25.2px;
  line-height: 28px;
  margin: 0 0 16px 0;
}
.pages .what-we-do > .page-wrapper .performance__text {
  margin: 0;
}
.pages .technologies {
  min-height: 0;
}
.pages .technologies__wrapper {
  padding: 0;
  max-width: 1360px;
}
.pages .technologies__container {
  display: grid;
  grid-template: "a-1 a-3" "a-2 a-3";
  grid-template-columns: 400px 1fr;
  padding: 40px 64px 36px 40px;
  border-radius: 24px;
  background-color: var(--technologies-bg);
}
.pages .technologies__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-area: a-1;
  gap: 8px;
  flex-shrink: 0;
}
.pages .technologies__info--top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pages .technologies__title {
  margin: 0;
  font-weight: 900;
  font-size: 40px;
  line-height: 45px;
  color: var(--text-color);
  font-family: "Exo 2", sans-serif;
}
.pages .technologies__description {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: var(--description-color);
}
.pages .technologies .technologies-show {
  width: fit-content;
  height: fit-content;
  grid-area: a-2;
  margin: auto auto 0 0;
  min-width: 295px;
}
.pages .technologies .technologies-show .icon {
  margin-bottom: -3px;
}
.pages .technologies__aside {
  display: flex;
  grid-area: a-3;
  justify-content: flex-end;
}
.pages .technologies__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 44px 50px;
  margin: 0;
  list-style: none;
  max-width: 710px;
  padding: 0 0 12px 0;
}
.pages .we-have {
  display: flex;
  flex-direction: column;
  padding-top: 87px;
  min-height: 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 28px;
  line-height: 1.5em;
  font-weight: 100;
  padding-bottom: 0;
}
.pages .we-have .page-wrapper > SECTION {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
}
.pages .we-have .page-wrapper > SECTION > SECTION {
  max-width: 40%;
  min-width: 12em;
  margin: 0 10% 50px 0;
}
.pages .we-have .img {
  height: 150px;
  margin: 0 0 20px;
}
.pages .clients-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 240px;
  max-width: 1440px;
  margin: 0 auto;
}
.pages .clients-header {
  color: var(--text-color);
  font-weight: 700;
  font-size: 48px;
  margin: 42px 0 76px;
  padding: 0 40px;
  line-height: 53px;
}
.pages .clients-list {
  list-style: none;
  margin: 0 0 100px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pages .clients-list LI {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  text-align: center;
  min-width: 250px;
  max-height: 100px;
  transition: all 0.3s ease;
  margin-bottom: 90px;
  position: relative;
}
.pages .clients-list LI img, .pages .clients-list LI svg {
  width: 100%;
}
.pages .clients-list LI .grayscale-logo {
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 0.3s;
}
.pages .clients-list LI .grayscale-logo:hover {
  opacity: 0;
}
.pages .philosofy {
  font-size: 32px;
  font-weight: 100;
  line-height: 1.8em;
  text-align: center;
  min-height: calc(100vh - 150px);
  padding-top: 100px;
  padding-bottom: 140px;
}
.pages .philosofy SECTION {
  max-width: 60%;
  margin: 0 auto;
}
.pages .philosofy H2 {
  text-align: center;
  line-height: 0.8em;
  font-size: 60px;
}
.pages .philosofy H2 .img {
  height: 35px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0;
}
.pages .philosofy H2 .start {
  margin-bottom: 4em;
  font-size: 14px;
  line-height: 1em;
  font-weight: 300;
}
.pages .philosofy H2 .continuation {
  line-height: 1em;
  margin-top: 0.6em;
  font-size: 15px;
  font-weight: normal;
}
.pages .instagram {
  font-size: 0;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  height: 300px;
}
.pages .instagram .insta-photos {
  height: 300px;
  overflow: hidden;
}
.pages .instagram .insta-photos > DIV {
  width: 300px;
  height: 300px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.pages .instagram .insta-photos > DIV IMG {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
  min-width: 100%;
}
.pages .contacts {
  min-height: 0;
  padding-bottom: 0;
  padding-top: 90px;
}
.pages .contacts > .page-wrapper H2 {
  margin-bottom: 1em;
  font-size: 32px;
}
.pages .contacts > .page-wrapper .contacts-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.pages .contacts > .page-wrapper .city {
  position: relative;
  min-width: 400px;
  flex-grow: 1;
}
.pages .contacts > .page-wrapper .reqs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*font-size: 0; white-space: nowrap;
  .item { margin-right: 30%; font-size: $fontSize; display: inline-block; vertical-align: top; }*/
}
.pages .contacts > .page-wrapper .reqs .item {
  margin: 0 0 2em;
  flex-grow: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pages .contacts > .page-wrapper .reqs .item.adr {
  flex-grow: 1.5;
}
.pages .contacts > .page-wrapper .reqs .item .subitem {
  width: max-content;
  white-space: nowrap;
  margin-bottom: 40px;
}
.pages .contacts > .page-wrapper .reqs .item .subitem:not(:last-child) {
  margin-right: 65px;
}
.pages .contacts > .page-wrapper .reqs .item .subitem.inn {
  white-space: normal;
  width: auto;
  margin-bottom: 0;
}
.pages .contacts .contacts-map {
  height: 500px;
  margin-top: 140px;
}
.pages .contacts .inn {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.pages .page .accreditation {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--gray-color);
  border-radius: 24px;
  width: 100%;
  margin: 0 auto 68px;
  color: var(--text-color-dark-bg);
  box-sizing: border-box;
  background-position: calc(100% - 40px) 100%;
}
.pages .page .accreditation__title {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 48px;
  line-height: 53px;
  max-width: 754px;
  text-align: left;
  margin: 0 0 24px 0;
}
.pages .page .accreditation__title span {
  margin-right: 10px;
}
.pages .page .accreditation-contacts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}
.pages .page .accreditation-contacts span:not(:last-child) {
  margin-bottom: 4px;
}
.pages .page .accreditation__svg {
  position: absolute;
  bottom: 0;
  right: 40px;
}

.itemTechnologies {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.itemTechnologies__media {
  background-color: var(--white-background);
}
.itemTechnologies__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  padding: 0;
  margin: 0;
}
.itemTechnologies__media {
  position: relative;
  width: 102px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
}
.itemTechnologies__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.itemTechnologies.php .itemTechnologies__image {
  width: 61px;
  height: 42px;
}
.itemTechnologies.java .itemTechnologies__image {
  width: 46px;
  height: 62px;
}
.itemTechnologies.python .itemTechnologies__image {
  width: 49px;
  height: 50px;
}
.itemTechnologies.golang .itemTechnologies__image {
  width: 66px;
  height: 24px;
  left: calc(50% - 4px);
}
.itemTechnologies.javascript .itemTechnologies__media {
  background-color: #f7df1e;
}
.itemTechnologies.typescript .itemTechnologies__media {
  background-color: #3178c6;
}
.itemTechnologies.kotlin .itemTechnologies__image {
  width: 48px;
  height: 48px;
}
.itemTechnologies.dart .itemTechnologies__image {
  width: 43px;
  height: 53px;
  left: calc(50% - 4px);
}
.itemTechnologies.swift .itemTechnologies__media {
  background-color: #F05138;
}
.itemTechnologies.swift .itemTechnologies__image {
  width: 60px;
  height: 54px;
  left: calc(50% - 4px);
}
.itemTechnologies.objective-c .itemTechnologies__media {
  background-color: #197BE4;
}
.itemTechnologies.objective-c .itemTechnologies__image {
  width: 76px;
  height: 76px;
}

.technologiesModal .modal__wrapper {
  width: 1361px;
}
.technologiesModal__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow-y: auto;
  padding: 0 80px 80px 80px;
}
.technologiesModal__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  padding: 0 0 12px 0;
  margin: 0;
  gap: 24px;
  flex-wrap: wrap;
}
.technologiesModal__list .itemTechnologies__media {
  background-color: var(--technologies-bg);
}
.technologiesModal__names {
  display: grid;
  grid-template-columns: 256px 1fr 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 56px 115px;
}
.technologiesModal__name {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.technologiesModal__name--header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.technologiesModal__name--header::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
}
.technologiesModal__name--list {
  display: flex;
  flex-direction: row;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.technologiesModal__name--column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.technologiesModal__name--column.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.technologiesModal__name--item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  min-height: 28px;
  position: relative;
  width: fit-content;
}
.technologiesModal__name--item::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: #E8BE5B;
  border-radius: 4px;
}
.technologiesModal__name--annotation {
  position: absolute;
  right: -5px;
  transform: translate(100%, -13px);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  padding: 3px 10px;
  border-radius: 5px;
  color: #373737;
  background-color: #f1f1f1;
}

@media only screen and (min-width: 240px) and (max-width: 1460px) {
  .pages .technologies {
    max-width: calc(100% - 100px);
    margin: 0 auto;
  }
  .pages .technologies__list {
    max-width: unset;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .technologiesModal__list {
    justify-content: flex-start;
  }
  .technologiesModal__names {
    gap: 56px;
  }
}
@media only screen and (min-width: 240px) and (max-width: 1280px) {
  .technologiesModal__names {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 240px) and (max-width: 1160px) {
  .pages .technologies__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 240px) and (max-width: 1200px) {
  HEADER .contacts-block {
    font-weight: 100;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
  }
  .pages .what-we-do > .page-wrapper .about {
    flex-direction: column;
  }
  .pages .what-we-do > .page-wrapper .about__text-block {
    max-width: none;
  }
  .pages .clients-list LI {
    margin: 10px 0;
  }
  .pages .clients-list LI, .pages .clients-list LI:hover {
    min-width: 150px;
  }
  .pages .clients-list LI img, .pages .clients-list LI svg, .pages .clients-list LI:hover img, .pages .clients-list LI:hover svg {
    max-width: 290px;
    max-height: 60px;
  }
  .pages .clients-list LI.brusnika img, .pages .clients-list LI.brusnika svg, .pages .clients-list LI.brusnika:hover img, .pages .clients-list LI.brusnika:hover svg {
    max-height: 90px;
  }
}
@media only screen and (min-width: 240px) and (max-width: 1024px) {
  HTML, BODY {
    min-width: 0;
  }
  .page-wrapper {
    min-width: 0;
  }
  .pages .page {
    min-height: 400px;
  }
  .pages .intro .txt {
    font-size: calc(2vh + 2vw);
  }
  .pages .instagram {
    min-height: 0;
  }
  .pages .technologies {
    padding: 20px 0;
  }
  .pages .technologies__container {
    grid-template: "a-1" "a-3" "a-2";
    padding: 20px;
    gap: 36px;
  }
  .pages .technologies__info {
    max-width: unset;
  }
  .pages .technologies__info--top {
    gap: 16px;
  }
  .pages .technologies__title {
    font-size: 32px;
    line-height: 32px;
  }
  .pages .technologies__description {
    font-size: 14px;
    line-height: 16px;
  }
  .pages .technologies__list {
    display: flex;
    justify-content: flex-start;
    gap: 20px 41px;
    padding: 0;
  }
  .pages .technologies .technologies-show {
    width: fit-content;
    min-width: 276px;
  }
  .pages .technologies .technologies-show .icon {
    margin-bottom: -2px;
  }
  .pages .we-have .page-wrapper > SECTION > SECTION {
    max-width: none;
    min-width: 100%;
    margin-right: 0;
  }
  .pages .clients-header {
    margin: 42px 0 42px;
    padding: 0 40px;
    font-size: 42px;
    line-height: 48px;
  }
  .pages .clients-list LI, .pages .clients-list LI:hover {
    min-width: 150px;
  }
  .pages .clients-list LI img, .pages .clients-list LI svg, .pages .clients-list LI:hover img, .pages .clients-list LI:hover svg {
    max-width: 210px;
    max-height: 60px;
  }
  .pages .clients-list LI.brusnika img, .pages .clients-list LI.brusnika svg, .pages .clients-list LI.brusnika:hover img, .pages .clients-list LI.brusnika:hover svg {
    max-height: 90px;
  }
  .pages .philosofy SECTION {
    max-width: none;
  }
  .itemTechnologies {
    gap: 8px;
  }
  .itemTechnologies__title {
    font-size: 13px;
    line-height: 15px;
  }
  .itemTechnologies__media {
    width: 70px;
    height: 56px;
    border-radius: 10px;
  }
  .itemTechnologies.php .itemTechnologies__image {
    width: 43px;
    height: 30px;
  }
  .itemTechnologies.java .itemTechnologies__image {
    width: 32px;
    height: 43px;
  }
  .itemTechnologies.python .itemTechnologies__image {
    width: 34px;
    height: 35px;
  }
  .itemTechnologies.golang .itemTechnologies__image {
    width: 46px;
    height: 17px;
  }
  .itemTechnologies.kotlin .itemTechnologies__image {
    width: 34px;
    height: 34px;
  }
  .itemTechnologies.dart .itemTechnologies__image {
    width: 30px;
    height: 38px;
  }
  .itemTechnologies.swift .itemTechnologies__image {
    width: 42px;
    height: 38px;
  }
  .itemTechnologies.objective-c .itemTechnologies__image {
    width: 53px;
    height: 53px;
  }
  .button {
    padding: 9px 16px 11px 16px;
    font-size: 16px;
    line-height: 20px;
  }
  .modal__wrapper {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    max-width: unset;
    max-height: unset;
    border-radius: unset;
  }
  .modal__header {
    padding: 28px 36px 30px 36px;
  }
  .modal__title {
    font-size: 26px;
    line-height: 28px;
    max-width: calc(100% - 24px - 8px);
  }
  .modal__cross {
    width: fit-content;
    height: fit-content;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -8px;
    transform: translate(-50%, 50%);
  }
  .modal__cross .icon {
    width: 24px;
    height: 24px;
  }
  .technologiesModal .modal__wrapper {
    width: 100%;
  }
  .technologiesModal__body {
    gap: 30px;
    padding: 0 36px 20px 36px;
  }
  .technologiesModal__list {
    gap: 20px 26px;
    padding: 0;
  }
  .technologiesModal__names {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .technologiesModal__name {
    gap: 16px;
  }
  .technologiesModal__name--header {
    gap: 6px;
    font-size: 20px;
    line-height: 100%;
  }
  .technologiesModal__name--header br {
    display: none;
  }
  .technologiesModal__name--header::after {
    height: 1px;
  }
  .technologiesModal__name--column {
    gap: 10px;
  }
  .technologiesModal__name--column.double, .technologiesModal__name--column.single {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 10px 36px;
  }
  .technologiesModal__name--item {
    gap: 8px;
    font-size: 18px;
    line-height: 100%;
    min-height: 21px;
  }
  .technologiesModal__name--item::before {
    width: 10px;
    height: 10px;
    border-radius: 3px;
  }
  .technologiesModal__name--annotation {
    padding: 2px 8px;
    font-size: 12px;
    line-height: 100%;
    transform: translate(100%, -1px);
  }
}
@media only screen and (min-width: 240px) and (max-width: 398px) {
  .pages .contacts > .page-wrapper .reqs .item .subitem:nth-child(2) {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 960px) {
  .accreditation__svg {
    display: none;
    opacity: 0;
  }
}
@media only screen and (min-width: 240px) and (max-width: 960px) {
  .pages .contacts > .page-wrapper .reqs .item {
    justify-content: flex-start;
  }
  .pages .intro {
    padding: 25px 0 30px;
    min-height: 320px;
  }
  HEADER {
    margin: 0 0 35px;
  }
  HEADER .logo svg, HEADER .logo img {
    width: 40px;
    height: 70px;
  }
  HEADER .logo .logo-txt {
    font-size: 30px;
  }
  .accreditation {
    padding: 0 20px;
  }
  .pages .what-we-do > .page-wrapper .about__title {
    margin-bottom: 20px;
  }
  .pages .what-we-do > .page-wrapper .about__text {
    line-height: 22px;
  }
  .pages .what-we-do > .page-wrapper .performance__list {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media only screen and (min-width: 541px) and (max-width: 959px) {
  .pages .page .accreditation {
    padding: 32px 40px;
    margin-bottom: 40px;
  }
  .pages .page .accreditation__title {
    font-weight: 900;
    font-size: 32px;
    line-height: 36px;
    max-width: 503px;
    text-align: left;
    margin: 0 0 20px 0;
  }
  .pages .page .accreditation__title span {
    margin-right: 7px;
  }
  .pages .page .accreditation-contacts span:not(:last-child) {
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 240px) and (max-width: 540px) {
  .pages .what-we-do > .page-wrapper .performance__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pages .technologies {
    max-width: calc(100% - 40px);
  }
  .pages .technologies__container {
    gap: 20px;
  }
  .pages .technologies__info--top {
    gap: 12px;
  }
  .pages .technologies__title {
    font-size: 24px;
    line-height: 24px;
  }
  .pages .technologies__description {
    font-size: 12px;
    line-height: 14px;
  }
  .pages .technologies__list {
    padding: 0 0 8px;
  }
  .pages .technologies .technologies-show {
    width: 100%;
    min-width: unset;
  }
  .pages .what-we-do > .page-wrapper .about {
    margin-bottom: 40px;
  }
  .pages .what-we-do > .page-wrapper .about__header-block {
    min-width: auto;
  }
  .pages .what-we-do > .page-wrapper .about__text-block {
    font-size: 18px;
    line-height: 27px;
  }
  .pages .what-we-do > .page-wrapper .about__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .pages .what-we-do > .page-wrapper .about__text {
    margin-top: 0;
  }
  .pages .page .accreditation {
    background-image: none;
    margin-bottom: 31px;
  }
  .pages .page .accreditation__title {
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 16px 0;
  }
  .pages .page .accreditation__title span {
    margin-right: 0;
  }
  .pages .page .accreditation-contacts {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
  .modal__header {
    padding: 28px 20px;
  }
  .modal__cross {
    right: -12px;
    top: -8px;
  }
  .technologiesModal__body {
    padding: 0 20px 20px;
  }
  .technologiesModal__list {
    gap: 24px 17px;
    padding: 0 0 8px 0;
  }
  .technologiesModal__name {
    gap: 10px;
  }
  .technologiesModal__name--header {
    font-size: 16px;
  }
  .technologiesModal__name--column {
    gap: 6px;
  }
  .technologiesModal__name--column.double, .technologiesModal__name--column.single {
    gap: 6px 36px;
    grid-template-columns: 1fr 1fr;
  }
  .technologiesModal__name--column.double.withAnnotation, .technologiesModal__name--column.single.withAnnotation {
    gap: 6px 10px;
    grid-template-columns: min-content 1fr;
  }
  .technologiesModal__name--item {
    font-size: 16px;
    min-height: 19px;
  }
  .technologiesModal__name--annotation {
    position: unset;
    transform: unset;
  }
}
@media only screen and (min-width: 767px) and (max-width: 880px) {
  .pages .clients-list LI {
    margin: 20px 0;
  }
  .pages .clients-list LI, .pages .clients-list LI:hover {
    min-width: 100px;
    margin: 25px;
  }
  .pages .clients-list LI img, .pages .clients-list LI svg, .pages .clients-list LI:hover img, .pages .clients-list LI:hover svg {
    max-width: 140px;
    max-height: 60px;
  }
}
@media only screen and (min-width: 240px) and (max-width: 767px) {
  H2 {
    font-size: 32px;
  }
  .page-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  HEADER > .page-wrapper {
    display: block;
  }
  HEADER .logo {
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }
  HEADER .contacts-block {
    display: none;
  }
  .pages .page H2 {
    margin-bottom: 1em;
  }
  .pages .page .accreditation {
    padding: 20px 15px 20px 20px;
  }
  .pages .intro > .page-wrapper {
    padding: 0 20px;
  }
  .pages .we-have {
    padding-top: 70px;
    font-size: 18px;
    font-weight: 300;
  }
  .pages .we-have .page-wrapper > SECTION > SECTION {
    margin-bottom: 50px;
  }
  .pages .we-have .img {
    height: 100px;
    margin: 0 0 10px;
  }
  .pages .we-have .img svg, .pages .we-have .img img {
    height: 100px;
  }
  .pages .clients-header {
    padding: 0 20px;
  }
  .pages .clients-list {
    padding: 0 20px;
  }
  .pages .clients-list LI {
    margin: 25px 0;
  }
  .pages .clients-list LI, .pages .clients-list LI:hover {
    min-width: 100px;
    margin: 25px;
  }
  .pages .clients-list LI img, .pages .clients-list LI svg, .pages .clients-list LI:hover img, .pages .clients-list LI:hover svg {
    max-width: 160px;
    max-height: 60px;
  }
  .pages .clients-list LI.brusnika img, .pages .clients-list LI.brusnika svg, .pages .clients-list LI.brusnika:hover img, .pages .clients-list LI.brusnika:hover svg {
    max-height: 80px;
  }
  .pages .philosofy {
    font-size: 14px;
    font-weight: 300;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pages .philosofy SECTION {
    max-width: none;
  }
  .pages .instagram {
    height: 300px;
    width: 100%;
    line-height: 150px;
    overflow: hidden;
    white-space: normal;
  }
  .pages .instagram .insta-photos {
    margin-right: -150px;
    height: 300px;
  }
  .pages .instagram .insta-photos > DIV {
    width: 150px;
    height: 150px;
  }
  .pages .contacts {
    padding-top: 50px;
  }
  .pages .contacts .contacts-map {
    margin-top: 20px;
    height: 240px;
  }
  .pages .contacts > .page-wrapper .city {
    margin-right: 0;
    min-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .pages .clients-list {
    padding: 0;
  }
  .pages .clients-list LI {
    margin: 0;
  }
}
@media screen and (max-height: 352px) {
  .modal {
    overflow: hidden;
    overflow-y: auto;
  }
  .modal__wrapper {
    top: 0px;
    transform: translate(-50%, 0%);
    max-height: unset;
  }
}
@media only screen and (min-width: 240px) and (max-width: 1024px) and (max-height: 352px) {
  .modal__wrapper {
    height: unset;
    transform: translate(0%, 0%);
  }
}

/*# sourceMappingURL=default.css.map */
