html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

:root {
  --main-font: "Mulish";
  --sec-font: "Proxima Nova Rg";
  --main-color: #1A1A1A;
  --sec-color: #034EA2;
  --hover-color: #0083D4;
  --active-color: #00AAFF;
}

body {
  font-family: var(--main-font);
  color: var(--main-color);
}

img {
  max-width: 100%;
}

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

.overlay {
  background-color: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}

.sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  padding: 150px 0;
}

.sitemap a {
  font-size: 16px;
  color: var(--sec-color);
}

.btn {
  font-family: var(--sec-font);
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  padding: 14px 46px;
  display: inline-block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn--blue {
  background-color: #00a1f1;
}

.btn--blue:hover {
  background-color: var(--hover-color);
}

.btn--blue:focus {
  background-color: var(--active-color);
}

.btn--blue:active {
  background-color: var(--active-color);
}

.btn--disabled {
  background-color: #8bd8ff;
  cursor: default;
  pointer-events: none;
}

.h1 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: #034ea2;
}

.h2 {
  font-size: 48px;
  line-height: 1.25;
  color: #034ea2;
  font-weight: 600;
  text-transform: uppercase;
}

.h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sec-color);
  text-transform: uppercase;
}

.h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sec-color);
  text-transform: uppercase;
}

.h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #034ea2;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

p:not(:last-child) {
  margin-bottom: 16px;
}

.text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.subtitle {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1a1a;
}

.white {
  color: #fff;
}

.black {
  color: var(--main-color);
}

.section {
  padding: 120px 0;
}

.section-bg {
  padding: 64px 0;
  background-color: #f7fbff;
}

.section-item:not(:last-child) {
  margin-bottom: 80px;
}

.num-list {
  list-style-type: decimal;
  padding-left: 10px;
}

.num-list li {
  font-size: 16px;
  line-height: 1.2;
}

.num-list li:not(:last-child) {
  margin-bottom: 24px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.col-lg-3 {
  width: 100%;
}

.col-lg-4 {
  width: 100%;
}

.col-lg-6 {
  width: 100%;
}

.col-12 {
  width: 100%;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-24 {
  margin-bottom: 24px;
}

.center {
  text-align: center;
}

.animate.animated {
  -webkit-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
          transform: translate(0, 0px);
  opacity: 1;
}

.header {
  background-color: rgba(0,0,0,0);
  padding: 20px 0;
  z-index: 100;
}

.header--home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header--home .header__nav a {
  color: #fff;
}

.header--home .mobile-menu-btn svg {
  stroke: #fff;
}

.header.top {
  top: -200px;
}

.header.sticky {
  position: fixed;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 0 60px;
}

.header__nav li {
  max-width: 170px;
  text-align: center;
}

.header__nav a {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header__nav a:hover {
  color: var(--sec-color);
}

.mobile-menu-btn {
  display: none;
  width: 56px;
  height: 56px;
}

.mobile-menu-btn svg {
  width: 100%;
  height: 100%;
  stroke: #1a1a1a;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -390px;
  width: 375px;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 102;
  -webkit-box-shadow: -10px 0px 20px 0px rgba(0,0,0,.2);
          box-shadow: -10px 0px 20px 0px rgba(0,0,0,.2);
}

.mobile-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 10px;
}

.mobile-menu__logo {
  width: 120px;
}

.mobile-menu__logo img {
  display: block;
}

.mobile-menu__close {
  width: 30px;
  height: 30px;
  margin-left: auto;
}

.mobile-menu__close img {
  width: 100%;
  height: 100%;
}

.mobile-menu__body {
  padding: 36px 10px 30px 10px;
}

.mobile-menu__nav {
  margin-bottom: 56px;
}

.mobile-menu__nav li:not(:last-child) {
  margin-bottom: 32px;
}

.mobile-menu__nav li a {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.mobile-menu__btn {
  padding: 0 30px;
}

.mobile-menu__btn .btn {
  display: block;
}

.footer {
  margin-top: auto;
  background-color: #f7fbff;
}

.footer__inner {
  padding: 40px 0 56px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px auto 30px auto;
  grid-template-columns: repeat(3, auto);
  -ms-grid-rows: auto 45px auto;
  grid-template-rows: repeat(2, auto);
  gap: 45px 30px;
  border-bottom: 1px solid #e9f0f5;
      grid-template-areas: "footer_logo footer_navs footer_navs" "footer_contact footer_navs footer_navs";
}

.footer__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: footer_logo;
}

.footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: var(--main-color);
  text-decoration: none;
}

.footer__logo a img {
  width: 200px;
}

.footer__logo a span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: -20px;
}

.footer__contact {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer_contact;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__contact span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.footer__contact a {
  font-size: 14px;
  line-height: 1.3;
  color: var(--main-color);
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__navs {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: footer_navs;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  gap: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-grid-column-align: end;
      justify-self: end;
  padding-top: 30px;
}

.footer__nav li:not(:last-child) {
  margin-bottom: 24px;
}

.footer__nav a {
  font-size: 16px;
  line-height: 1.3;
  color: var(--main-color);
  font-weight: 400;
  text-decoration: none;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__bottom {
  padding: 55px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__link {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--main-color);
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.article h1 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: #034ea2;
  margin-bottom: 32px;
}

.article h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sec-color);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.article h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sec-color);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article h4 {
  font-size: 16px;
  line-height: 1.3;
  color: #034ea2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #034ea2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article h6 {
  font-size: 16px;
  line-height: 1.3;
  color: #034ea2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.article ol li {
  font-size: 16px;
  line-height: 1.2;
}

.article .wp-block-quote {
  border: 1px solid #034ea2;
  padding: 24px;
}

.article .wp-block-quote:not(:last-child) {
  margin-bottom: 24px;
}

.article .wp-block-quote p {
  font-size: 18px;
  font-weight: 600;
}

.article .wp-block-quote p:not(:last-child) {
  margin-bottom: 16px;
}

.article .wp-block-group:not(:last-child) {
  margin-bottom: 64px;
}

.article .taulab-h3-li {
  padding-left: 36px;
  position: relative;
}

.article .taulab-h3-li h3:not(:last-child) {
  margin-bottom: 8px;
}

.article .taulab-h3-li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sec-color);
  position: absolute;
  top: 6px;
  left: 6px;
}

.article .taulab-h3-li:not(:last-child) {
  margin-bottom: 24px;
}

.s-article {
  padding: 90px 0 0 0;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.hero__video:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(225.52deg, rgba(4, 19, 46, 0.6) 24.13%, rgba(7, 22, 66, 0) 46.57%, rgba(7, 22, 66, 0.8) 75.27%);
  background: linear-gradient(224.48deg, rgba(4, 19, 46, 0.6) 24.13%, rgba(7, 22, 66, 0) 46.57%, rgba(7, 22, 66, 0.8) 75.27%);
  opacity: .5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero__inner {
  min-height: 700px;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.hero__subtitle {
  max-width: 720px;
}

.our-offers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  position: relative;
}

.offer-card__img {
  aspect-ratio: 1;
  position: relative;
}

.offer-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.offer-card__main {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  padding: 24px 64px 24px 24px;
  z-index: 3;
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.offer-card__sec {
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  font-weight: 400;
  padding: 24px;
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.about__subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 40px;
}

.about-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
      grid-template-areas: "block1 block2  image" "block3 block3 image";
}

.about-grid__item {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #ebf4fc;
  margin: -1px;
}

.about-grid__item1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: block1;
}

.about-grid__item2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: block2;
  background-image: url("../img/about-circle.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
}

.about-grid__item3 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: block3;
}

.about-grid__item4 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: image;
  padding: 0;
}

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

.about-grid__age {
  font-size: 118px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--sec-color);
  margin-bottom: 20px;
}

.about-grid__age span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: -25px;
}

.useful-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.useful-articles a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 16px;
  color: var(--main-color);
  line-height: 1.2;
  border: 2px solid #ebf4fc;
  padding: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.useful-articles a:hover {
  background-color: #ebf4fc;
}

.useful-articles li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  margin-right: -56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.box {
  padding: 24px;
  background-color: #3e7cc0;
}

.box>* {
  color: #fff;
}

.box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}

.box__head>* {
  color: #fff;
  margin-bottom: 0;
}

.box__head img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.box__num {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--sec-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.work-tasks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative;
  margin-bottom: 16px;
}

.work-tasks__item {
  background-color: #ebf4fc;
  padding: 24px 48px;
  text-align: center;
}

.work-tasks__icon {
  display: inline-block;
  margin-bottom: 12px;
}

.work-tasks__brain {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.work-note {
  padding: 24px;
  border: 1px solid #ebf4fc;
  text-align: center;
  margin-bottom: 64px;
}

.work-note__text {
  max-width: 1060px;
  display: inline-block;
}

.work-process {
  padding: 32px;
  background-color: #ebf4fc;
  margin-bottom: 64px;
}

.work-process__subtitle {
  max-width: 800px;
}

.work-process__grid {
  margin-top: 40px;
}

.reporting-table {
  padding: 32px;
  background-color: #ebf4fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.reporting-table__img {
  position: relative;
}

.reporting-table__img--sec {
  position: absolute;
  bottom: -15px;
  right: 80%;
}

.reporting-table__subtitle {
  max-width: 500px;
}

.po {
  background-color: #f7fbff;
}

.po-head {
  background-color: #034ea2;
  padding: 32px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.po-item {
  padding: 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}

.po-item:not(:last-child) {
  border-bottom: 1px solid #e9f0f5;
}

.po-item__head {
  width: calc(33.3% - 15px);
}

.po-item__head>* {
  max-width: 300px;
}

.po-item__body {
  width: calc(76.7% - 15px);
}

.po-item__subtitle {
  margin-bottom: 32px;
}

.step-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  background-color: #ebf4fc;
  padding: 24px;
}

.step-list__item:not(:last-child) {
  margin-bottom: 24px;
}

.step-list__title {
  margin-bottom: 0 !important;
}

.step-list .w-140 {
  width: 140px;
}

.step-list .w-240 {
  width: 240px;
}

.step-list__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.inversion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}

.inversion__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -5px;
  text-align: center;
}

.po-imac {
  text-align: center;
  margin-top: 32px;
}

.note {
  padding: 24px;
  border: 1px solid #3e7cc0;
}

.creating-cabinet {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7fr 5fr;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

.creating-cabinet__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.creating-cabinet__list li img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.creating-cabinet__list li:not(:first-child) {
  padding-top: 24px;
}

.creating-cabinet__list li:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid #e9f0f5;
}

.creating-cabinet__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.methodical-complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.methodical-complex__item {
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  text-align: center;
  margin-right: -56px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.methodical-complex__circle {
  border: 2px solid #ebf4fc;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.methodical-complex__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.methodical-complex__name {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 22px;
}

.po-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 32px;
}

.po-circles img {
  margin-right: -30px;
}

.num-module {
  font-size: 14px;
  line-height: 1.3;
  color: var(--sec-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.po-profiles {
  padding: 24px 32px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}

.po-profiles__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.po-profiles__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.po-profiles__list {
  list-style-type: decimal;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  padding-left: 20px;
}

.po-profiles__list li {
  font-size: 14px;
  padding: 6px 0;
}

.toolkit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.toolkit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.toolkit__text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.toolkit__img {
  display: block;
  margin-top: auto;
}

.page-title {
  padding: 80px 0 125px 0;
}

.dopusk-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.dopusk-title__head {
  width: 70%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 30px;
  position: relative;
  margin-bottom: 24px;
}

.dopusk-title__head::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -45px;
  right: 0;
  width: 3000px;
  height: 30px;
  background-color: #f7fbff;
  height: 156px;
  z-index: -1;
}

.dopusk-title__img {
  margin-left: auto;
  position: relative;
}

.dopusk-title__img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: -15px;
  width: calc(100% - 42px);
  background-color: #f7fbff;
  height: calc(100% + 32px);
  z-index: -1;
  display: none;
}

.dopusk-title__img img:nth-child(1) {
  margin-bottom: -20px;
}

.po-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.po-title__head {
  width: 70%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 30px;
  position: relative;
  margin-bottom: 24px;
}

.po-title__head::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 3000px;
  background-color: #f7fbff;
  height: 165px;
  z-index: -1;
}

.po-title__img {
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.po-title__img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: -15px;
  width: calc(100% + 15px);
  height: calc(100% + 32px);
  background-color: #f7fbff;
  z-index: -1;
  display: none;
}

.po-title__img img:nth-child(2) {
  margin-left: -64px;
}

.psycholog-title {
  position: relative;
}

.psycholog-title__subtitle {
  max-width: 700px;
}

.psycholog-title__img {
  position: absolute;
  right: 0;
  top: -50px;
  overflow: hidden;
}

.psycholog-title__img img {
  display: block;
  position: relative;
}

.app-assistent {
  background-color: #f7fbff;
  padding: 24px;
}

.app-assistent__subtitle {
  max-width: 920px;
  margin-bottom: 64px;
}

.app-assistent-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.app-assistent-inner__l {
  width: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app-assistent-inner__r {
  width: calc(60% - 24px);
}

.app-assistent-inner__control {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.slider-btn--prev {
  background-image: url("../img/arrow-left.svg");
}

.slider-btn--next {
  background-image: url("../img/arrow-right.svg");
}

.slider-btn.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

.mob-slider-btn {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,.1019607843);
          box-shadow: 4px 4px 10px 0px rgba(0,0,0,.1019607843);
  position: absolute;
  top: 170px;
  display: none;
  z-index: 10;
}

.mob-slider-btn--prev {
  background-image: url("../img/slider-left.svg");
  left: 0;
}

.mob-slider-btn--next {
  background-image: url("../img/slider-right.svg");
  right: 0;
}

.assistent-slider {
  padding-bottom: 50px;
}

.assistent-slide {
  padding: 24px 24px 100px 24px;
  background-color: #3e7cc0;
  min-height: 300px;
  position: relative;
}

.assistent-slide__title {
  color: #fff;
  margin-bottom: 32px;
}

.assistent-slide__text {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  max-width: 380px;
}

.assistent-slide__num {
  font-size: 62px;
  font-weight: 600;
  color: #fff;
  opacity: .1;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.assistent-slide__img {
  position: absolute;
  top: 20px;
  right: 20px;
}

.app-spiro {
  background-image: url("../img/spiro-bg.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom right;
  background-color: #f7fbff;
  padding: 56px 24px;
  position: relative;
}

.app-spiro__title {
  max-width: 425px;
}

.app-spiro__text {
  max-width: 570px;
  margin-bottom: 48px;
}

.app-spiro__img {
  position: absolute;
  width: 708px;
  height: 708px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  overflow: hidden;
}

.app-spiro__img img {
  max-width: none;
  position: absolute;
  top: 0;
  right: -80px;
}

.console-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.console-card {
  border: 1px solid #ebf4fc;
}

.console-card__img {
  width: 100%;
  aspect-ratio: 1/.7;
}

.console-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: cover;
}

.console-card__name {
  color: var(--main-color);
  margin-bottom: 40px;
}

.console-card__body {
  padding: 24px;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: calc(50% - 12px);
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: calc(25% - 18px);
  }

  .col-lg-4 {
    width: calc(33.33% - 16px);
  }

  .col-lg-6 {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1171px) {
  .animate {
    -webkit-transform: translate(0, 100px);
        -ms-transform: translate(0, 100px);
            transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
  }

  .offer-card {
    aspect-ratio: 1;
    overflow: hidden;
  }

  .offer-card:hover::after {
    top: 0;
  }

  .offer-card:hover::before {
    top: 48px;
    opacity: 1;
  }

  .offer-card:hover .offer-card__main {
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .offer-card:hover .offer-card__sec {
    bottom: 0;
  }

  .offer-card:hover .offer-card__img img {
    opacity: .7;
  }

  .offer-card::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("../img/offer-card-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 100%;
    right: 24px;
    opacity: 0;
    z-index: 3;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .offer-card::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3e7cc0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .useful-articles li:first-child:hover {
    margin-right: -30px;
  }

  .useful-articles li:last-child:hover {
    margin-left: 30px;
  }

  .useful-articles li:not(:first-child):not(:last-child):hover {
    margin-right: -20px;
    margin-left: 20px;
  }

  .useful-articles li:hover {
    z-index: 10;
  }

  .methodical-complex__item:first-child:hover {
    margin-right: -30px;
  }

  .methodical-complex__item:last-child:hover {
    margin-left: 30px;
  }

  .methodical-complex__item:not(:first-child):not(:last-child):hover {
    margin-right: -20px;
    margin-left: 20px;
  }

  .methodical-complex__item:hover {
    z-index: 10;
  }
}

@media (max-width: 1330px) {
  .psycholog-title__subtitle {
    max-width: calc(100% - 350px);
  }

  .psycholog-title__img {
    width: 500px;
    height: 650px;
    top: 100px;
  }

  .psycholog-title__img img {
    right: -45px;
  }

  .app-assistent__title {
    max-width: 600px;
  }
}

@media (max-width: 1170px) {
  .header__inner {
    gap: 30px;
  }

  .header__nav {
    gap: 0 30px;
  }

  .footer__navs {
    gap: 30px;
  }

  .offer-card__img {
    margin-bottom: 24px;
  }

  .offer-card__img:before {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url("../img/offer-card-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 12px;
    right: 12px;
    z-index: 3;
  }

  .offer-card__main {
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    color: #1a1a1a;
    padding: 0;
    margin-bottom: 12px;
  }

  .offer-card__sec {
    position: static;
    color: #1a1a1a;
    padding: 0;
  }

  .about__subtitle {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .useful-articles a {
    padding: 60px;
  }

  .useful-articles li {
    width: 33.3%;
    margin: 0;
  }

  .reporting-table__img--sec {
    right: auto;
    left: -20px;
    bottom: -30px;
    width: 70%;
  }

  .inversion {
    gap: 24px;
  }

  .methodical-complex {
    gap: 24px;
  }

  .methodical-complex__item {
    width: calc(33.33% - 16px);
    margin: 0;
  }

  .dopusk-title__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .dopusk-title__head {
    width: 100%;
  }

  .dopusk-title__head::before {
    display: none;
  }

  .dopusk-title__img::before {
    display: block;
  }

  .dopusk-title__img {
    margin-left: 0;
  }

  .dopusk-title__img img:nth-child(1) {
    margin-bottom: 0;
    margin-right: -20px;
  }

  .po-title__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .po-title__head {
    width: calc(100% - 150px);
  }

  .po-title__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 130px;
  }

  .po-title__img img:nth-child(2) {
    margin-left: 0;
    margin-top: -30px;
  }

  .app-assistent__subtitle {
    max-width: 90%;
  }

  .assistent-slide__discr {
    max-width: calc(100% - 200px);
  }

  .app-spiro__text {
    max-width: 530px;
  }
}

@media (max-width: 991px) {
  .h1 {
    font-size: 48px;
  }

  .h4 {
    font-size: 18px;
  }

  .section {
    padding: 100px 0;
  }

  .section-bg {
    padding: 40px 0;
  }

  .mb-120 {
    margin-bottom: 100px;
  }

  .header__nav {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu.show {
    right: 0;
  }

  .footer__inner {
        grid-template-areas: "footer_logo footer_logo footer_logo" "footer_contact footer_navs footer_navs";
    gap: 40px 30px;
  }

  .footer__logo a span {
    font-size: 12px;
  }

  .footer__navs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .footer__nav li {
    margin-bottom: 20px;
  }

  .footer__bottom {
    padding: 40px 0 24px 0;
  }

  .article h1 {
    font-size: 48px;
  }

  .article h3 {
    font-size: 18px;
  }

  .hero__video video {
    -o-object-position: center right;
       object-position: center right;
  }

  .offer-card__main {
    font-size: 16px;
  }

  .offer-card__sec {
    font-size: 14px;
  }

  .about-grid {
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
        grid-template-areas: "block1 block1 image" "block2 block2 image" "block3 block3 block3";
  }

  .about-grid__item {
    padding: 24px;
  }

  .about-grid__item4 {
    padding: 0;
  }

  .about-grid__age {
    font-size: 100px;
  }

  .useful-articles a {
    padding: 40px;
  }

  .work-process__grid {
    margin-top: 32px;
  }

  .po-head {
    padding: 24px;
  }

  .po-item {
    padding: 24px;
  }

  .po-item__subtitle {
    margin-bottom: 24px;
  }

  .step-list__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .step-list__title {
    margin-bottom: 16px !important;
  }

  .step-list .w-140 {
    width: 100%;
  }

  .step-list .w-240 {
    width: 100%;
  }

  .inversion {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .inversion__img {
    width: 100%;
    margin-top: 0;
  }

  .creating-cabinet {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .po-circles img {
    width: 110px;
    margin-right: -45px;
  }

  .po-profiles__img {
    width: 190px;
  }

  .po-profiles__list {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }

  .toolkit {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .toolkit__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .toolkit__img {
    margin-top: 0;
  }

  .app-assistent-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .app-assistent-inner__l {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .app-assistent-inner__r {
    width: 100%;
  }

  .app-assistent-inner__control {
    margin-top: 0;
  }

  .assistent-slide {
    width: 600px;
  }

  .app-spiro__text {
    max-width: 410px;
  }

  .app-spiro__img {
    width: 460px;
    height: 460px;
    right: auto;
    left: 360px;
    -webkit-transform: translate(0, -50%) rotate(10deg);
        -ms-transform: translate(0, -50%) rotate(10deg);
            transform: translate(0, -50%) rotate(10deg);
  }

  .app-spiro__img img {
    width: 100%;
    right: 0;
  }

  .s-app-spiro {
    overflow: hidden;
  }

  .console-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .console-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .console-card__img {
    width: 350px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .console-card__name {
    margin-bottom: 16px;
  }

  .footer__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }

  .footer__contact {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .footer__navs {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }

  .about-grid__item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .about-grid__item2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .about-grid__item3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .about-grid__item4 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
}

@media (max-width: 782px) {
  .article .wp-block-image {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .h1 {
    font-size: 32px;
  }

  .h2 {
    font-size: 32px;
  }

  .h3 {
    font-size: 22px;
  }

  .section {
    padding: 70px 0;
  }

  .section-item:not(:last-child) {
    margin-bottom: 48px;
  }

  .row {
    gap: 16px;
  }

  .md-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    overflow-y: scroll;
    gap: 16px;
  }

  .md-scroll>div {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 280px;
    height: auto;
    margin-bottom: 0 !important;
  }

  .mb-120 {
    margin-bottom: 72px;
  }

  .mb-64 {
    margin-bottom: 40px;
  }

  .mb-40 {
    margin-bottom: 24px;
  }

  .mb-32 {
    margin-bottom: 24px;
  }

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

  .article h1 {
    font-size: 32px;
  }

  .article h2 {
    font-size: 22px;
  }

  .article .wp-block-group:not(:last-child) {
    margin-bottom: 48px;
  }

  .s-article {
    padding-top: 40px;
  }

  .about__subtitle {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .useful-articles a {
    padding: 24px;
    font-size: 14px;
  }

  .work-note {
    margin-bottom: 40px;
  }

  .reporting-table {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .reporting-table__img {
    width: 100%;
  }

  .reporting-table__img--main {
    display: block;
    width: 70%;
    margin-left: auto;
  }

  .reporting-table__img--sec {
    width: 50%;
    left: 0;
    bottom: -20px;
  }

  .po {
    margin: 0 -15px;
  }

  .po-head {
    font-size: 18px;
  }

  .po-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .po-item__head {
    width: 100%;
    margin-bottom: 24px;
  }

  .po-item__head>* {
    max-width: 100%;
  }

  .po-item__body {
    width: 100%;
  }

  .po-item__subtitle {
    margin-bottom: 16px;
  }

  .step-list__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .methodical-complex {
    padding-top: 8px;
  }

  .page-title {
    padding: 40px 0 90px 0;
  }

  .dopusk-title__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .dopusk-title__img img {
    width: calc(50% - 10px);
  }

  .po-title__inner {
    gap: 10px;
  }

  .po-title__head {
    width: 100%;
  }

  .po-title__img {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .po-title__img::before {
    display: block;
  }

  .po-title__img img:nth-child(2) {
    margin-top: 0;
    margin-left: -30px;
  }

  .psycholog-title__subtitle {
    max-width: none;
  }

  .psycholog-title__img {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: -20vw;
  }

  .psycholog-title__img img {
    right: 0;
    width: 100%;
  }

  .app-assistent__subtitle {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .assistent-slide {
    width: 500px;
  }

  .app-spiro {
    padding: 24px;
    margin-bottom: 80px;
    background-position: bottom -10% left -170px;
    background-size: contain;
  }

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

  .app-spiro__img {
    position: static;
    -webkit-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
            transform: translate(0, 0%);
    width: 100%;
    height: auto;
    margin-bottom: -40vw;
  }

  .app-spiro__img img {
    position: static;
  }

  .s-app-spiro {
    overflow: visible;
    margin-bottom: 20vw;
  }

  .console-card {
    display: block;
  }

  .console-card__img {
    width: 100%;
  }
}

@media (max-width: 577px) {
  .h1 {
    word-wrap: break-word;
  }

  .h2 {
    overflow-wrap: break-word;
  }

  .section-bg {
    padding: 24px 0;
  }

  .header__logo {
    width: 135px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .mobile-menu {
    width: 320px;
  }

  .footer__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
        grid-template-areas: "footer_logo" "footer_navs" "footer_contact";
    padding: 30px 0 40px 0;
  }

  .footer__logo a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__logo a img {
    width: 145px;
  }

  .footer__contact {
    gap: 5px;
  }

  .footer__contact li {
    text-align: center;
  }

  .footer__navs {
    -ms-grid-column-align: center;
        justify-self: center;
    margin-bottom: 40px;
  }

  .footer__nav li {
    text-align: center;
  }

  .footer__bottom {
    padding: 40px 0 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero {
    overflow: hidden;
  }

  .hero__video {
    width: 600px;
    left: 45%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }

  .our-offers {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offer-card__img {
    aspect-ratio: auto;
    margin-bottom: 12px;
  }

  .offer-card__main {
    margin-bottom: 8px;
  }

  .about-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
        grid-template-areas: "block1" "block2" "block3" "image";
  }

  .about-grid__item4 img {
    height: auto;
    aspect-ratio: 1;
    -o-object-position: center top;
       object-position: center top;
  }

  .about-grid__age {
    font-size: 80px;
    margin-bottom: 10px;
  }

  .useful-articles a {
    padding: 16px;
  }

  .useful-articles li {
    width: calc(50% + 20px);
  }

  .useful-articles li:nth-child(odd) {
    margin-right: -40px;
  }

  .useful-articles li:nth-child(odd) a {
    padding-right: 50px;
  }

  .box__head {
    margin-bottom: 24px;
  }

  .work-tasks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-tasks__item {
    padding: 24px;
  }

  .work-tasks__brain {
    width: 60px;
  }

  .work-process {
    padding: 24px;
  }

  .reporting-table {
    padding: 24px 24px 80px 24px;
  }

  .reporting-table__img--main {
    width: 100%;
  }

  .reporting-table__img--sec {
    width: 80%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    bottom: -70px;
  }

  .creating-cabinet__list li {
    gap: 16px;
  }

  .methodical-complex {
    gap: 32px 0;
  }

  .methodical-complex__item {
    width: calc(50% + 20px);
  }

  .methodical-complex__item:nth-child(odd) {
    margin-right: -40px;
  }

  .methodical-complex__name {
    margin-bottom: 12px;
  }

  .po-circles {
    margin-bottom: 57px;
  }

  .po-circles img {
    margin-right: 0;
    width: 32.7%;
    margin-bottom: -25px;
  }

  .po-profiles {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
  }

  .po-profiles__img {
    text-align: center;
    width: 100%;
  }

  .po-profiles__inner {
    width: 240px;
    margin: 0 auto;
  }

  .toolkit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }

  .toolkit__img {
    text-align: center;
  }

  .dopusk-title__img::before {
    width: calc(100% + 20px);
  }

  .dopusk-title__img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .dopusk-title__img img {
    width: 100%;
  }

  .po-title__img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .po-title__img img {
    width: 120px;
  }

  .app-assistent-inner__control {
    display: none;
  }

  .mob-slider-btn {
    display: block;
  }

  .assistent-slider {
    margin: 0 -15px;
    padding: 0 15px 100px;
  }

  .assistent-slide {
    min-height: 350px;
    padding-bottom: 140px;
  }

  .assistent-slide__discr {
    max-width: 100%;
  }

  .assistent-slide__title {
    margin-bottom: 16px;
  }

  .assistent-slide__img {
    top: auto;
    bottom: -100px;
    width: 110px;
  }

  .footer__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .footer__contact {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .footer__navs {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .about-grid__item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .about-grid__item2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .about-grid__item3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .about-grid__item4 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}

@media (min-width: 1171px)and (max-width: 1170px) {
  .useful-articles li:first-child:hover {
    margin: 0;
  }

  .methodical-complex__item:first-child:hover {
    margin: 0;
  }
}