:root {
  --azat-team-white: #fff;
  --azat-team-red: #d70000;
  --azat-team-grey: #f5f5f5;
  --azat-team-black: #181818;
  --azat-team-gray-dark: #d6d6d6;
  --azat-team-dark-grey-1: #7d8387;
  --azat-team-black-2: #242424;
  --font-family: "Steppe", sans-serif;
}

@font-face {
  font-display: swap;
	font-family: 'Steppe';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/steppe/steppe.woff2') format('woff2'),
		url('../fonts/steppe/steppe.ttf') format('truetype');
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,strong {
  font-weight: bolder;
}

small {
  font-size: 87%;
}

sub,sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button,input,optgroup,select,textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,input {
  overflow: visible;
}

button,select {
  text-transform: none;
}

[type="button"],[type="reset"],[type="submit"],button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

* {
  box-sizing: border-box;
}

details,main {
  display: block;
}

code,kbd,pre,samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

[hidden],template {
  display: none;
}

a,button {
  -webkit-tap-highlight-color: transparent;
}

.link,a {
  color: #1b242e;
  text-decoration: none;
  transition: .2s linear;
}

.link:hover,a:hover {
}

.link:active,a:active {
  color: rgba(27, 36, 46, 0.6);
}

body {
  font-family: var(--font-family);
  color: #1b242e;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.h1,.h2,.h3,.h4,.h5,h1,h2,h3,h4,h5 {
  color: #1b242e;
  font-family: var(--font-family);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
}

.h1,h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.h2,h2 {
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 24px;
}

.h3,h3 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.h4,h4 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.text,p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 16px 0;
}

b,strong {
  font-weight: 600;
}

.text-uppercace {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-lg-center {
}

.page-title {
  margin-bottom: 16px;
}

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

.wrapper {
  overflow: hidden;
}

.page-container {
  flex: 1 1 auto;
}

.grid-container {
}

.grid-container__group {
}

.grid-container__aside {
  display: block;
  width: 100%;
  margin-bottom: 32px;
}

.grid-container__main {
  width: 100%;
}

.grid-nav {
}

.grid-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.grid-nav__item {
  position: relative;
  color: var(--azat-team-dark-grey-1);
  font-size: 20px;
  line-height: 1.4;
  transition: .2s linear;
  display: inline-flex;
  align-items: center;
}

.grid-nav__item:hover:not(.tabs__nav-item--active) {
}

.grid-nav__item:before {
  content: '';
  width: 100%;
  height: 4px;
  background: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: .2s linear;
}

.grid-nav__item.tabs__nav-item--active {
  color: var(--azat-team-red);
}

.grid-nav__item.tabs__nav-item--active:before {
  background: var(--azat-team-red);
}

.grid-nav__item:last-child {
  margin-bottom: 0;
}

.btn {
  font-family: var(--font-family);
  color: var(--azat-team-black);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: unset;
  position: relative;
  text-decoration: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  min-height: 46px;
  transition: .2s linear;
  border-radius: 40px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: 1px solid var(--azat-team-black);
}

.btn--reset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  min-height: 1px;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn--accent {
  color: var(--azat-team-white);
  background: var(--azat-team-red);
  border-color: var(--azat-team-red);
}

.btn--accent:hover {
  color: var(--azat-team-white);
  background: #af0000;
  border-color: #af0000;
}

.btn--stroke-accent {
  color: var(--azat-team-white);
  background: transparent;
  border-color: var(--azat-team-red);
}

.btn--stroke-accent:hover {
  color: var(--azat-team-white);
  background: var(--azat-team-red);
  border-color: var(--azat-team-red);
}

.btn--burger:before,.btn--cross:before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn--arrow-top-right:after {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 8px;
}

.btn--burger:before {
  background-image: url('../img/icons/burger.svg');
}

.btn--cross:before {
  background-image: url('../img/icons/cross.svg');
}

.btn--arrow-top-right {
  padding: 0 28px 0 36px;
}

.btn--arrow-top-right:after {
  background-image: url('../img/icons/arrow-top-right.svg');
  transition: .2s;
}

.btn--arrow-top-right:hover:after {
  transform: rotate(45deg);
}

.btns-spacer {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -12px;
}

.btns-spacer > * {
  margin-right: 12px;
  margin-bottom: 12px;
}

.form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.form__group > * {
  flex: 1 1 240px;
}

.form__agree {
  display: block;
}

.form__agree a:not([class]) {
  color: var(--azat-team-red);
}

.form__agree a:not([class]):hover {
}

.form__send {
}

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

.input {
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.input__label {
  color: #6C6C6C;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.8px;
  display: inline-block;
  margin: 0 0 6px;
}

.input__cell {
  position: relative;
  font-family: var(--font-family);
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 1px 0 0 var(--azat-team-dark-grey-1);
  background: var(--azat-team-black-2);
  border: var(--azat-team-black-2);
  border-radius: 32px;
  min-height: 60px;
  padding: 0 24px;
  width: 100%;
  outline: none;
  transition: .2s linear;
  resize: none;
}

textarea.input__cell {
  padding-top: 20px;
}

.input__cell:focus {
  box-shadow: 0 1px 0 0 transparent;
}

.input__cell:focus::placeholder {
  color: transparent;
}

.input__cell::placeholder {
  color: var(--azat-team-dark-grey-1);
}

.input__checkbox {
  display: none;
}

.input__checkbox:checked + .input__checkbox-label:before {
  background-image: url('../img/icons/checkbox-active.svg');
}

.input__checkbox-label {
  cursor: pointer;
  position: relative;
  color: var(--azat-team-dark-grey-1);
  font-size: 16px;
  padding-left: 36px;
}

.input__checkbox-label:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('../img/icons/checkbox-default.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: .2s;
}

.input__checkbox-label:hover:before {
}

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

.overflow-hidden {
  overflow: hidden;
}

.visibility-hidden {
  visibility: hidden;
}

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

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.img-cover--wrap {
  overflow: hidden;
  position: relative;
}

.hide-xl-down {
}

.hide-xl-only {
}

.hide-lg-down {
}

.hide-lg-up {
}

.hide-md-down {
}

.hide-md-up {
}

.hide-sm-down {
}

.hide-sm-only {
}

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

.social__link {
  background: var(--azat-team-black-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
}

.social__link:hover {
}

.social__link:last-child {
  margin: 0;
}

.social__link:before {
  content: '';
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social__link--vk:before {
  background-image: url('../img/icons/social/vk.svg');
}

.social__link--tg:before {
  background-image: url('../img/icons/social/tg.svg');
}

.social__link--tk:before {
  background-image: url('../img/icons/social/tk.svg');
}

.social__link--inst:before {
  background-image: url('../img/icons/social/inst.svg');
}

.social__link--fb:before {
  background-image: url('../img/icons/social/fb.svg');
}

.section {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  margin-bottom: 52px;
}

.section:last-child {
  margin-bottom: 0;
}

.section:first-child {
  margin-top: 0;
}

.section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section__title {
  margin-bottom: 0;
}

.section--bg-dark {
  color: var(--azat-team-white);
  background: var(--azat-team-black);
  padding: 52px 0;
}

.section--bg-dark::before {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azat-team-black);
  z-index: -1;
}

.section--bg-dark .section__title {
  color: var(--azat-team-white);
}

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

.tabs__nav-item {
  cursor: pointer;
}

.tabs__nav-item--active {
  cursor: default;
}

.tabs__section {
  display: none;
}

.tabs__section--show {
  display: block;
  animation: .2s;
  animation: fadeIn .2s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: #fff;
}

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

.header__logo {
  min-width: 91px;
  max-width: 91px;
}

.header__menu {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.header__nav {
  margin: 0 0 32px;
}

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

.header__nav-item {
  margin: 0 0 32px;
}

.header__nav-item:last-child {
  margin: 0;
}

.header__nav-link {
  color: var(--azat-team-black);
  font-size: 16px;
  line-height: 1.4;
}

.header__commun {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.header__commun-link {
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  display: block;
}

.header__commun-tg {
  display: inline-flex;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: url('../img/icons/header-tg.svg') no-repeat center / contain;
  margin-left: 12px;
}

.header__commun-tg:hover {
}

.header__social {
  margin-top: auto;
  order: 3;
}

.header__social .social__link:before {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.header__menu-close {
  position: absolute;
  top: 4px;
  right: 4px;
}

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

.header__panel > * {
  margin-left: 16px;
}

.header__panel > *:first-child {
  margin-left: 0;
}

.header__btn-feedback {
  font-size: 12px;
  padding: 0 16px;
  color: var(--azat-team-white);
}

.header__btn-feedback:hover:after {
}

.header__btn-feedback:after {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../img/icons/arrow-top-right-accent.svg');
  margin-left: 4px;
  transition: .2s;
}

.header__burger {
  background: #000;
  border-radius: 50%;
}

.header__burger:before {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-size: 24px;
}

.header__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(24, 24, 24, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: .2s linear;
}

.header-mobile-menu .header__menu {
}

.header-mobile-menu .header__overlay {
}

.home-banner {
}

.home-reviews__org {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.home-reviews__org-card {
  width: 100%;
  min-height: 80px;
  border-bottom: 2px solid var(--azat-team-gray-dark);
  border-radius: 10px;
  background: var(--azat-team-grey);
  padding: 12px 24px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-reviews__org-card:hover {
}

.home-reviews__org-img--wrap {
  margin-right: 20px;
}

.home-reviews__org-name {
  color: var(--azat-team-dark-grey-1);
  font-size: 14px;
  text-align: right;
}

.home-reviews__slider {
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--azat-team-grey);
  overflow: hidden;
}

.home-reviews__slide {
}

.home-reviews__slide-aside {
  margin-bottom: 40px;
  text-align: center;
}

.home-reviews__slide-main {
  margin: 0 -16px;
}

.home-reviews__slide-logo {
  max-height: 60px;
  margin: 0 auto 32px;
}

.home-reviews__slide-info {
  margin-bottom: 32px;
}

.home-reviews__slide-name {
  color: var(--azat-team-red);
  font-size: 16px;
  text-transform: uppercase;
}

.home-reviews__slide-post {
  color: var(--azat-team-dark-grey-1);
  font-size: 14px;
  margin-top: 4px;
}

.home-reviews__slide-doc {
  display: block;
  max-width: 132px;
  margin: 0 auto;
}

.home-reviews__slide-blockquote {
  position: relative;
  margin: 0;
  padding-left: 52px;
}

.home-reviews__slide-blockquote:before {
  content: '';
  width: 40px;
  height: 40px;
  background: url('../img/icons/quote.svg') no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}

.home-reviews__slide-blockquote p:not([class]) {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.home-reviews__pag.swiper-pagination-bullets {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: inline-flex;
  align-items: center;
  z-index: 12;
  border-bottom: 1px solid var(--azat-team-gray-dark);
  margin-top: 40px;
}

.home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  min-width: 40px;
  width: 40px;
  height: auto;
  padding-bottom: 16px;
  text-align: center;
  background: transparent;
  margin: 0;
  opacity: 1;
  border-radius: 0;
  font-size: 18px;
  line-height: 1;
  transition: .2s linear;
}

.home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: '';
  width: 100%;
  height: 2px;
  background: transparent;
  transition: .2s linear;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet:hover {
}

.home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet-active {
  color: var(--azat-team-red);
}

.home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet-active:before {
  background: var(--azat-team-red);
}

.home-stack {
  margin-top: 32px;
}

.home-stack__article {
  margin-bottom: 48px;
}

.home-stack__article:last-child {
  margin-bottom: 0;
}

.home-stack__headline {
  margin-bottom: 20px;
}

.home-stack__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-stack__card {
  width: calc(33.3% - 6px);
  text-align: center;
  background: var(--azat-team-grey);
  border-radius: 8px;
  border-bottom: 2px solid var(--azat-team-gray-dark);
  padding: 16px;
}

.home-stack__card-icon {
  margin: 0 auto;
}

.home-stack__card-icon--wrap {
  height: 64px;
  min-width: 64px;
  margin: 0 auto 10px;
}

.home-stack__card-name {
  color: var(--azat-team-dark-grey-1);
  font-size: 10px;
}

.home-stack__card-name:before {
  content: '[';
}

.home-stack__card-name:after {
  content: ']';
}

.home-approach {
  margin-top: 32px;
}

.home-approach__content {
}

.home-approach__img--wrap {
  width: 40%;
  margin-bottom: 32px;
}

.home-approach__info {
  width: 100%;
}

.home-approach__info > *:last-child {
  margin-bottom: 0;
}

.home-approach__info > *:first-child {
  margin-top: 0;
}

.home-approach__info h3 {
  color: var(--azat-team-white);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 20px;
}

.home-approach__info p {
  color: var(--azat-team-gray-dark);
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0;
}

.home-approach__info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.home-approach__info ul li {
  position: relative;
  padding-left: 44px;
  color: var(--azat-team-gray-dark);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.home-approach__info ul li:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../img/icons/home-approach-list.svg') no-repeat center / contain;
}

.home-approach__info ul li:last-child {
  margin: 0;
}

.home-coop {
  padding-top: 32px;
  border-top: 1px solid #D6D6D6;
}

.home-coop__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
  margin-bottom: -40px;
}

.home-coop__card {
  width: 100%;
  padding: 0 16px;
  margin-bottom: 40px;
}

.home-coop__card ul:not([class]) {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.home-coop__card ul:not([class]) li {
  position: relative;
  padding-left: 24px;
  color: var(--azat-team-dark-grey-1);
  font-size: 16px;
  margin-bottom: 12px;
}

.home-coop__card ul:not([class]) li::before {
  content: '';
  width: 3px;
  height: 3px;
  position: absolute;
  top: 9px;
  left: 11px;
  background: var(--azat-team-dark-grey-1);
  border-radius: 50%;
}

.home-coop__card ul:not([class]) li:last-child {
  margin: 0;
}

.home-coop__icon--wrap {
  min-width: 122px;
  max-width: 122px;
  margin-bottom: 40px;
}

.home-coop__name {
  font-size: 30px;
  line-height: 1.2;
}

.home-faq {
}

.home-faq .grid-container__aside {
}

.home-faq__caption {
  font-size: 16px;
  max-width: 290px;
}

.home-faq__logo {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.home-faq__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D6D6;
}

.home-faq__item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.home-faq__item-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  transition: .2s linear;
}

.home-faq__item-btn:hover {
}

.home-faq__item-btn[aria-expanded='true'] {
  color: var(--azat-team-red);
}

.home-faq__item-btn[aria-expanded='true'] + .home-faq__item-content {
  opacity: 1;
  margin-top: 10px;
}

.home-faq__item-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: .2s linear;
}

.home-faq__item-content p {
  margin: 0;
}

.feedback__row {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between;
}

.feedback__info {
  margin-top: 48px;
}

.feedback__content {
}

.feedback__blockquote {
  position: relative;
  margin: 0;
  padding-left: 52px;
}

.feedback__blockquote:before {
  content: '';
  width: 40px;
  height: 40px;
  background: url('../img/icons/quote.svg') no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}

.feedback__blockquote p:not([class]) {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.feedback__logo {
  min-width: 104px;
  max-width: 104px;
  margin-left: 52px;
  margin-top: 24px;
}

.feedback__title {
  color: var(--azat-team-white);
  margin-bottom: 0;
}

.feedback__form {
  margin-top: 32px;
}

.feedback__form .form__footer {
  display: block;
}

.feedback__form .form__agree {
  margin-bottom: 20px;
}

.footer {
  background: #000;
  padding: 48px 0;
  color: #fff;
}

.footer__top {
  margin-bottom: 48px;
}

.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.footer__bottom .footer__copy {
}

.footer__logo {
  display: block;
  min-width: 91px;
  max-width: 91px;
  order: 1;
  margin: 0 auto 48px;
}

.footer__nav {
  width: 100%;
  order: 3;
}

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 -20px;
}

.footer__nav ul li {
  text-align: center;
  margin: 0 0 20px;
}

.footer__nav ul li:last-child {
}

.footer__nav ul li a {
  color: var(--azat-team-white);
  font-size: 16px;
  line-height: 1.4;
}

.footer__nav ul li a:hover {
}

.footer__btn-presentation {
  order: 2;
}

.footer__col {
}

.footer__col:first-child {
}

.footer__col:nth-child(2) {
  text-align: center;
}

.footer__col:last-child {
  text-align: center;
}

.footer__copy {
}

.footer__copy p:not([class]) {
  color: var(--azat-team-white);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.footer__copy p:not([class]) small {
  color: var(--azat-team-dark-grey-1);
  font-size: 14px;
  line-height: 1.4;
}

.footer__copy a:not([class]) {
  color: var(--azat-team-dark-grey-1);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.footer__copy a:not([class]):hover {
}

.footer__copy > * {
  margin-bottom: 16px;
}

.footer__copy > *:last-child {
  margin: 0;
}

.footer__commun {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.footer__commun-link {
  color: var(--azat-team-white);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.footer__commun-link:hover {
}

.footer__commun-link:last-child {
  margin: 0;
}

.footer__commun-link.-accent- {
  color: var(--azat-team-red);
}

.footer__commun-link.-accent-:hover {
}

.footer__social {
  justify-content: center;
}

.footer__mobile {
  margin-top: 32px;
  margin-right: -8px;
  margin-bottom: -12px;
  margin-left: -8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer__mobile .footer__copy {
  padding: 0 8px;
  margin-bottom: 12px;
}

.footer__mobile .footer__copy:last-child {
  width: 100%;
}

@media (min-width: 580px) {
  .h1,h1 {
    font-size: 32px;
  }

  .h2,h2 {
    font-size: 36px;
  }

  .page-title {
    margin-bottom: 20px;
  }

  .container {
    padding: 0 24px;
  }

  .hide-sm-only {
    display: none;
  }

  .section {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .section--bg-dark {
    padding: 64px 0;
  }

  .header__panel > * {
    margin-left: 24px;
  }

  .header__btn-feedback {
    font-size: 14px;
    padding: 0 20px;
  }

  .header__btn-feedback:after {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-left: 8px;
  }

  .home-reviews__org {
    gap: 16px;
  }

  .home-reviews__org-card {
    width: calc(50% - 8px);
  }

  .home-reviews__slide-main {
    margin: 0;
  }

  .home-stack__card-name {
    font-size: 14px;
  }

  .home-approach__info h3 {
  }

  .home-approach__info ul {
    margin: 24px 0;
  }

  .home-coop {
    padding-top: 40px;
  }

  .home-coop__card {
    width: 50%;
  }

  .home-faq__item {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .home-faq__item-btn {
    font-size: 24px;
  }

  .footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
  }

  .footer__logo {
    margin: 0;
  }

  .footer__nav {
    margin: 32px 0 0;
  }

  .footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer__nav ul li {
    text-align: left;
    margin: 0 40px 20px 0;
  }

  .footer__nav ul li:last-child {
    margin-right: 0;
  }

  .footer__col:last-child {
    text-align: right;
  }

  .footer__commun {
    align-items: flex-end;
    margin-bottom: 0;
  }

  .footer__mobile {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .grid-container {
    border-top: 1px solid #D6D6D6;
  }

  .grid-container__group {
    display: flex;
  }

  .grid-container__aside {
    width: 30%;
    padding-top: 32px;
    padding-right: 32px;
    border-right: 1px solid #D6D6D6;
    margin-bottom: 0;
  }

  .grid-container__main {
    width: 70%;
    padding-top: 32px;
    padding-left: 32px;
  }

  .grid-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-nav__item {
    margin-bottom: 16px;
  }

  .grid-nav__item:before {
    width: 4px;
    height: 100%;
    top: 0;
    bottom: auto;
  }

  .grid-nav__item.tabs__nav-item--active {
    padding-left: 20px;
  }

  .hide-md-up {
    display: none;
  }

  .section__head {
    margin-bottom: 24px;
  }

  .home-reviews__slider {
    padding: 40px;
  }

  .home-reviews__slide {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .home-reviews__slide-aside {
    min-width: 200px;
    width: 25%;
    margin-bottom: 0;
    text-align: left;
  }

  .home-reviews__slide-main {
    width: 72%;
  }

  .home-reviews__slide-logo {
    margin: 0 0 32px;
  }

  .home-reviews__slide-doc {
    margin: 0;
  }

  .home-stack {
    margin-top: 0;
  }

  .home-stack__card {
    width: calc(50% - 4px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 8px 24px;
    min-height: 80px;
  }

  .home-stack__card-icon--wrap {
    margin: 0 20px 0 0;
  }

  .home-approach {
    margin-top: 0;
  }

  .feedback__form .form__footer {
    display: flex;
  }

  .feedback__form .form__agree {
    margin-right: 24px;
    margin-bottom: 0;
  }

  .footer__bottom {
    margin-top: 32px;
  }

  .footer__copy {
    max-width: 230px;
  }

  .footer__commun {
    margin-bottom: 16px;
  }

  .footer__social {
    margin-bottom: 20px;
  }

  .footer__mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .link:hover,a:hover {
    color: rgba(27, 36, 46, 0.6);
  }

  .h1,h1 {
    font-size: 36px;
  }

  .text-lg-center {
    text-align: center;
  }

  .page-title {
    margin-bottom: 24px;
  }

  .grid-container__aside {
    padding-top: 40px;
    padding-right: 40px;
  }

  .grid-container__main {
    padding-top: 40px;
    padding-left: 40px;
  }

  .grid-nav__item:hover:not(.tabs__nav-item--active) {
    color: var(--azat-team-red);
    padding-left: 10px;
  }

  .form__agree a:not([class]):hover {
    color: #af0000;
  }

  .input__checkbox-label:hover:before {
    background-image: url('../img/icons/checkbox-hover.svg');
  }

  .hide-lg-up {
    display: none;
  }

  .social__link:hover {
    opacity: .7;
  }

  .section {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section--bg-dark {
    padding: 100px 0;
  }

  .header__commun-tg:hover {
    opacity: .7;
  }

  .header__btn-feedback:hover:after {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
  }

  .home-reviews__org {
    gap: 20px;
  }

  .home-reviews__org-card {
    width: calc(33.3% - 14px);
  }

  .home-reviews__org-card:hover {
    border-color: transparent;
  }

  .home-reviews__pag.swiper-pagination-bullets {
    position: absolute;
    bottom: 40px;
    margin-top: 0;
  }

  .home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet:hover {
    color: var(--azat-team-red);
  }

  .home-approach__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .home-approach__img--wrap {
    margin-bottom: 0;
  }

  .home-approach__info {
    width: 55%;
  }

  .home-coop {
    padding-top: 60px;
  }

  .home-coop__card {
    width: 25%;
  }

  .home-coop__name {
    font-size: 24px;
  }

  .home-faq__caption {
    font-size: 20px;
  }

  .home-faq__logo {
    margin-top: 64px;
  }

  .home-faq__item {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .home-faq__item-btn {
    font-size: 31px;
  }

  .home-faq__item-btn:hover {
    color: var(--azat-team-red);
  }

  .feedback__row {
    flex-direction: row;
  }

  .feedback__info {
    width: 40%;
    margin-top: 0;
  }

  .feedback__content {
    width: 54%;
  }

  .feedback__form {
    margin-top: 24px;
  }

  .feedback__form .form__footer {
    display: block;
  }

  .feedback__form .form__agree {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer__nav ul li a:hover {
    color: rgba(255, 255, 255, .7);
  }

  .footer__copy {
    max-width: 280px;
  }

  .footer__copy a:not([class]):hover {
    color: var(--azat-team-white);
  }

  .footer__commun-link:hover {
    color: rgba(255, 255, 255, .7);
  }

  .footer__commun-link.-accent-:hover {
    color: #af0000;
  }
}

@media (min-width: 1260px) {
  .container {
    max-width: 1420px;
  }

  .h2,h2 {
    font-size: 49px;
  }

  .h3,h3 {
    font-size: 39px;
  }

  .grid-container__aside {
    padding-top: 60px;
    padding-right: 60px;
  }

  .grid-container__main {
    padding-top: 60px;
    padding-left: 60px;
  }

  .hide-xl-only {
    display: none;
  }

  .header {
    position: fixed;
    padding: 20px 0;
    background: transparent;
  }

  .header__logo {
    min-width: 41px;
    max-width: 41px;
  }

  .header__menu {
    flex-direction: row;
  }

  .header__nav {
    margin: 0 auto;
  }

  .header__nav-list {
    display: flex;
  }

  .header__nav-item {
    margin: 0 40px 0 0;
  }

  .header__commun {
    margin-right: 40px;
    margin-bottom: 0;
  }

  .header__commun-link {
    text-align: right;
  }

  .header__commun-tg {
    margin-left: 40px;
  }

  .header__social {
    display: none;
  }

  .header__menu-close {
    display: none;
  }

  .header__panel > * {
    margin-left: 40px;
  }

  .header__btn-feedback {
    font-size: 16px;
    padding: 0 28px 0 36px;
    color: var(--azat-team-red);
  }

  .header__btn-feedback:after {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .header__burger {
    display: none;
  }

  .home-reviews__org-card {
    width: auto;
    min-width: 377px;
  }

  .home-reviews__slider {
    padding: 60px;
  }

  .home-reviews__slide-main {
    width: 62%;
  }

  .home-reviews__slide-blockquote {
    padding-left: 72px;
  }

  .home-reviews__pag.swiper-pagination-bullets {
    bottom: 60px;
  }

  .home-reviews__pag.swiper-pagination-bullets .swiper-pagination-bullet {
    font-size: 20px;
  }

  .home-stack__card {
    width: calc(33.3% - 6px);
  }

  .home-approach__info h3 {
    font-size: 39px;
  }

  .home-coop__row {
    margin-right: -24px;
    margin-left: -24px;
  }

  .home-coop__card {
    padding: 0 24px;
  }

  .home-coop__name {
    font-size: 31px;
  }

  .feedback__blockquote {
    padding-left: 72px;
  }

  .feedback__logo {
    min-width: 164px;
    max-width: 164px;
    margin-left: 72px;
    margin-top: 32px;
  }

  .feedback__form .form__footer {
    display: flex;
  }

  .feedback__form .form__agree {
    margin-right: 24px;
    margin-bottom: 0;
  }

  .footer__top {
    flex-wrap: nowrap;
  }

  .footer__bottom {
    margin-top: 80px;
  }

  .footer__nav {
    width: auto;
    order: 2;
    margin-top: 0;
    margin-right: 7%;
    margin-left: auto;
  }

  .footer__btn-presentation {
    order: 3;
  }

  .footer__col {
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .grid-nav {
    max-height: 40px;
    overflow: hidden;
  }

  .grid-nav__list {
    padding-bottom: 120px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .grid-nav__item {
    white-space: nowrap;
    min-height: 40px;
    padding: 0 10px;
    margin-right: 4px;
    scroll-snap-align: start;
  }

  .grid-nav__item:last-child {
    margin-right: 4px;
  }

  .hide-md-down {
    display: none;
  }

  .home-approach__img--wrap {
    margin-right: auto;
    margin-left: auto;
  }

  .home-faq {
    padding-top: 16px;
    border-top: 1px solid #D6D6D6;
    margin-top: -8px;
  }

  .home-faq .grid-container__aside {
    display: none;
  }

  .footer__bottom .footer__copy {
    display: none;
  }

  .footer__col:first-child {
    display: none;
  }
}

@media (max-width: 579px) {
  .form__send {
    width: 100%;
  }

  .hide-sm-down {
    display: none;
  }

  .footer__nav ul li:last-child {
    margin-bottom: 0;
  }

  .footer__copy a:not([class]) {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .footer__commun-link.-accent- {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
}

@media (max-width: 1259px) {
  .hide-xl-down {
    display: none;
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    max-width: 224px;
    height: 100%;
    padding: 44px 24px 16px;
    overflow: auto;
    visibility: hidden;
    z-index: -1;
    transition: .2s linear;
    transform: translateX(100%);
  }

  .header__nav {
    order: 2;
  }

  .header__commun {
    width: 100%;
    order: 1;
  }

  .header__commun-link {
    color: var(--azat-team-red);
  }

  .header__btn-feedback {
    min-height: 40px;
    background: var(--azat-team-red);
    border-color: var(--azat-team-red);
  }

  .header__btn-feedback:after {
    filter: brightness(0) invert(1);
  }

  .header-mobile-menu .header__menu {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    z-index: 120;
  }

  .header-mobile-menu .header__overlay {
    opacity: 1;
    visibility: visible;
    z-index: 101;
  }
}

@media (max-width: 1023px) {
  .hide-lg-down {
    display: none;
  }

  .feedback__logo {
    display: none;
  }
}
