:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-family: "SF Pro", sans-serif;
  --content-width: 1488px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --siniy: #0039ff;
  --belyy: #fff;
  --chernyy: #1d1d1d;
  --svetlo-siniy: #436dff;
  --seryy: #989898;
  --hover: #000000;
  --zheltyy: #ffc750;
  --krasnyy: #ff5353;
  --zelenyy: #e1fec6;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro";
  src: url("../fonts/../fonts/SFProDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro";
  src: url("../fonts/../fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro";
  src: url("../fonts/../fonts/SFProDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
  font-family: var(--font-family);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-sec {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: calc(1328px + var(--container-offset) * 2);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.title1 {
  margin: 0;
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: var(--belyy);
}
.title1--dark {
  color: var(--chernyy);
}
@media (max-width: 1240px) {
  .title1 {
    font-size: 45px;
  }
}
@media (max-width: 850px) {
  .title1 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .title1 {
    font-size: 24px;
  }
}

.title2 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: var(--belyy);
}
@media (max-width: 1240px) {
  .title2 {
    font-size: 45px;
  }
}
@media (max-width: 850px) {
  .title2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .title2 {
    font-size: 24px;
  }
}
.title2--dark {
  color: var(--chernyy);
}

.desc {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--belyy);
}
@media (max-width: 850px) {
  .desc {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .desc {
    font-size: 14px;
  }
}
.desc--dark {
  color: var(--chernyy);
}
.desc--blue {
  color: var(--svetlo-siniy);
}

.text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--seryy);
}
.text--white {
  color: var(--belyy);
}
@media (max-width: 850px) {
  .text {
    font-size: 18px;
  }
}

.capture1 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: var(--belyy);
}
.capture1--dark {
  color: var(--chernyy);
}
@media (max-width: 1240px) {
  .capture1 {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .capture1 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .capture1 {
    font-size: 16px;
  }
}

.capture {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 1240px) {
  .capture {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .capture {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .capture {
    font-size: 16px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--belyy);
  padding: 18px 32px;
  border: 1px solid var(--belyy);
  border-radius: 24px;
  background-color: transparent;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn svg {
  fill: currentColor;
}
@media (max-width: 1240px) {
  .btn {
    font-size: 16px;
    padding: 12px 16px;
  }
}
@media (max-width: 850px) {
  .btn {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--belyy);
    color: var(--siniy);
  }
}
.btn--white {
  background-color: var(--belyy);
  color: var(--siniy);
}
@media (any-hover: hover) {
  .btn--white:hover {
    background-color: var(--siniy);
    color: var(--belyy);
  }
}
.btn--blue {
  background-color: var(--svetlo-siniy);
  border-color: transparent;
}
@media (any-hover: hover) {
  .btn--blue:hover {
    border-color: var(--svetlo-siniy);
  }
}
.btn--dark {
  border-color: transparent;
  background-color: var(--chernyy);
}
@media (any-hover: hover) {
  .btn--dark:hover {
    border-color: var(--svetlo-siniy);
  }
}
.btn--stroke {
  border-color: var(--siniy);
  color: var(--svetlo-siniy);
}
@media (any-hover: hover) {
  .btn--stroke:hover {
    background-color: var(--svetlo-siniy);
    color: var(--belyy);
  }
}

.breadcrumbs {
  margin-bottom: 20px;
  margin-top: 40px;
}
.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--seryy);
}
.breadcrumbs ul li a {
  color: inherit;
}
.breadcrumbs ul li span {
  text-decoration: underline;
  color: var(--siniy);
}

.lk-title {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #000;
}

.header {
  position: relative;
  z-index: 100;
  padding: 11px 0;
  background: var(--siniy);
}
.header__logo {
  display: block;
  width: 217px;
  height: 54px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}
.header__container {
  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;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1240px) {
  .header__right {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .header__right {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__btn {
  min-width: 97px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 176%;
  text-align: center;
  color: var(--belyy);
  border: 1px solid var(--belyy);
  border-radius: 20px;
  padding: 0;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
}
.dropdown-button__arrow {
  font-size: 50%;
}

.globe-icon {
  width: 22px;
  height: 22px;
  fill: var(--siniy);
  border-radius: 100%;
  background-color: var(--belyy);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  min-width: 120px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-top: 4px;
}

.dropdown-content.show {
  display: block;
}

.language-option {
  padding: 10px 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.language-option:hover {
  background-color: #f5f5f5;
}

.language-option.active {
  background-color: #e6f0ff;
  color: #0066cc;
}

.flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 3px;
  display: none;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 5px;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100vh;
  background: var(--siniy);
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  transform: translateY(-100vh);
  -webkit-transition: 0.15s ease-in;
  transition: 0.15s ease-in;
}
.menu.menu--active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  z-index: 10;
}
.menu__body {
  padding: 40px 0;
}
.menu__nav {
  margin-bottom: 24px;
}
.menu__nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 46px;
}
@media (max-width: 1240px) {
  .nav > ul {
    gap: 20px;
  }
}
.nav > ul > li a {
  position: relative;
  display: inline-block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 176%;
  color: var(--belyy);
}
.nav > ul > li a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 10%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media (any-hover: hover) {
  .nav > ul > li a:hover::after {
    opacity: 1;
    width: 100%;
  }
}

.hero {
  background-color: var(--siniy);
  background-image: url("./../img/hero.svg");
  background-repeat: no-repeat;
  background-position: 50% 45%;
  background-size: auto 705px;
  padding: 43px 0 60px;
}
@media (max-width: 850px) {
  .hero {
    background-size: auto 340px;
  }
}
.hero__header {
  max-width: 1224px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  position: relative;
  margin-bottom: 56px;
  line-height: 1.2;
}
@media (max-width: 1240px) {
  .hero__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 850px) {
  .hero__title {
    margin-bottom: 28px;
  }
}
.hero__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  -webkit-transform: rotateZ(12deg) translateX(28px);
  -ms-transform: rotate(12deg) translateX(28px);
  transform: rotateZ(12deg) translateX(28px);
  background-image: url("./../img/text-robot.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 850px) {
  .hero__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .hero__title::after {
    width: 40px;
    height: 40px;
  }
}
.hero__desc {
  max-width: 830px;
  margin: 0 auto;
  margin-bottom: 56px;
}
@media (max-width: 850px) {
  .hero__desc {
    display: none;
  }
}
.hero__buttons {
  margin-bottom: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1240px) {
  .hero__buttons {
    margin-bottom: 50px;
  }
}
@media (max-width: 850px) {
  .hero__buttons {
    margin-bottom: 28px;
  }
}
.hero__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (max-width: 850px) {
  .hero__img {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .hero__img {
    max-width: 280px;
  }
}
.hero__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__subtitle {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 28px;
  position: relative;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  color: var(--belyy);
}
@media (max-width: 1240px) {
  .hero__subtitle {
    font-size: 32px;
  }
}
@media (max-width: 850px) {
  .hero__subtitle {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 24px;
  }
}
.hero__subtitle::before {
  content: "";
  position: absolute;
  right: calc(100% + 45px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-image: url("./../img/stars.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .hero__subtitle::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .hero__subtitle::before {
    width: 40px;
    height: 40px;
    right: unset;
    left: -36px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.hero__subtitle::after {
  content: "";
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: rotateZ(30deg) translateY(-50%);
  -ms-transform: rotate(30deg) translateY(-50%);
  transform: rotateZ(30deg) translateY(-50%);
  background-image: url("./../img/confety.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .hero__subtitle::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .hero__subtitle::after {
    width: 40px;
    height: 40px;
    left: unset;
    right: -46px;
    -webkit-transform: rotateZ(30deg);
    -ms-transform: rotate(30deg);
    transform: rotateZ(30deg);
  }
}
.hero__text {
  max-width: 545px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 850px) {
  .hero__text {
    max-width: 60%;
  }
}
.hero__text span {
  display: block;
}
.hero__text span:not(:last-child) {
  margin-bottom: 5px;
}
.hero__text::before {
  content: "";
  position: absolute;
  left: -57px;
  bottom: -18px;
  width: 80px;
  height: 80px;
  background-image: url("./../img/confety2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .hero__text::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .hero__text::before {
    width: 40px;
    height: 40px;
    left: -10px;
  }
}
.hero__text::after {
  content: "";
  position: absolute;
  right: -53px;
  bottom: -18px;
  width: 80px;
  height: 80px;
  background-image: url("./../img/stars.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .hero__text::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .hero__text::after {
    width: 40px;
    height: 40px;
    right: -10px;
  }
}

.benefits {
  padding: 40px 0 48px;
}
@media (max-width: 850px) {
  .benefits {
    padding-bottom: 0;
  }
}
.benefits__header {
  margin-bottom: 100px;
}
@media (max-width: 1240px) {
  .benefits__header {
    margin-bottom: 50px;
  }
}
.benefits__title {
  margin-bottom: 25px;
}
.benefits__title::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  width: 80px;
  height: 80px;
  background-image: url("./../img/pin.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1240px) {
  .benefits__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .benefits__title::after {
    margin-left: 4px;
    width: 40px;
    height: 40px;
  }
}
.benefits__content {
  max-width: 1330px;
  margin: 0 auto;
}
.benefits__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.benefits__items:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1240px) {
  .benefits__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.benefits__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.benefits__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.benefits__item:nth-child(even) {
  max-width: 302px;
}
@media (max-width: 1240px) {
  .benefits__item:nth-child(even) {
    max-width: 100%;
  }
}
.benefits__robot {
  margin-bottom: 60px;
}

.ben {
  padding: 28.5px 20px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
  border-radius: 24px;
}
.ben__capture {
  padding: 0 4px;
  margin-bottom: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.ben__capture::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  aspect-ratio: 1/1;
  background-image: url("./../img/check.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ben__desc {
  font-weight: 300;
}

.robot {
  position: relative;
  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;
}
.robot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 1040px;
  height: 173px;
  background-image: url("./../img/arrows.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1240px) {
  .robot::before {
    display: none;
  }
}
.robot__img {
  width: 240px;
  height: 240px;
  background-color: var(--svetlo-siniy);
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 1240px) {
  .robot__img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 850px) {
  .robot__img {
    width: 160px;
    height: 160px;
  }
}
.robot__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.benefits--about .benefits__header {
  margin-bottom: 64px;
}
@media (max-width: 850px) {
  .benefits--about .benefits__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .benefits--about .benefits__header {
    margin-bottom: 20px;
  }
}
.benefits--about .robot {
  margin-bottom: 120px;
}
@media (max-width: 850px) {
  .benefits--about .robot {
    margin-bottom: 30px;
  }
}
.benefits--about .robot::before {
  background-image: url("./../img/arrows2.svg");
  height: 233px;
  width: 900px;
}
.benefits--about .robot__img {
  background-color: var(--siniy);
}
.benefits--about .benefits__item:nth-child(even) {
  max-width: unset;
}
.benefits--about .benefits__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1240px) {
  .benefits--about .benefits__items .benefits__item:last-child {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 850px) {
  .benefits--about .benefits__items .benefits__item:last-child {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
.benefits--about .ben {
  padding: 40px 20px;
}
@media (max-width: 850px) {
  .benefits--about .ben {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .benefits--about .ben {
    padding: 14px;
  }
}
.benefits--about .ben__capture {
  margin-bottom: 40px;
}
@media (max-width: 850px) {
  .benefits--about .ben__capture {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .benefits--about .ben__capture {
    margin-bottom: 12px;
  }
}
.benefits--about .ben:nth-child(3n+1) .ben__capture::before {
  background-image: url("./../img/moln.webp");
}
.benefits--about .ben:nth-child(3n+2) .ben__capture::before {
  background-image: url("./../img/earth.webp");
}
.benefits--about .ben:nth-child(3n+3) .ben__capture::before {
  background-image: url("./../img/star.webp");
}

.poss {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 850px) {
  .poss {
    padding: 45px 0;
  }
}
.poss__header {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 112px;
}
@media (max-width: 850px) {
  .poss__header {
    margin-bottom: 56px;
  }
}
.poss__title {
  margin-bottom: 20px;
}
.poss__title::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 70px;
  aspect-ratio: 1/1;
  background-image: url("./../img/moln.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (max-width: 1240px) {
  .poss__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .poss__title::after {
    width: 40px;
    margin-left: 4px;
    height: 40px;
  }
}
.poss__items {
  max-width: 1330px;
  margin: 0 auto;
}
.poss__subtitle {
  color: var(--belyy);
}
.poss::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: radial-gradient(circle at 0% 0%, #1a9988 0%, #156b7a 25%, #0d4c6e 50%, #043263 75%, #001b58 100%);
}
.poss::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
  -webkit-filter: contrast(0.7);
  filter: contrast(0.7);
  background-image: url("./../img/poss.webp");
  background-size: cover;
}
.poss__capture {
  margin-bottom: 28px;
}
@media (max-width: 1240px) {
  .poss__capture {
    margin-bottom: 18px;
  }
}
@media (max-width: 850px) {
  .poss__capture {
    margin-bottom: 12px;
  }
}
.poss__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
}
.poss__row:not(:last-child) {
  margin-bottom: 112px;
}
@media (max-width: 850px) {
  .poss__row:not(:last-child) {
    margin-bottom: 56px;
  }
}
.poss__row:nth-child(even) {
  text-align: right;
}
.poss__row:nth-child(even) .poss__list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #e1fec6;
  border-radius: 18px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: var(--chernyy);
  position: relative;
}
@media (max-width: 1240px) {
  .list-item {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .list-item {
    padding: 4px 8px;
    font-size: 14px;
  }
}
.list-item::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 9px;
  background-image: url("./../img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.list-item a {
  color: inherit;
}
.list-item a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.opt {
  padding: 40px 0;
}
.opt__header {
  max-width: 845px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.opt__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
}
.opt__title::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 70px;
  aspect-ratio: 1/1;
  background-image: url("./../img/key.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (max-width: 1240px) {
  .opt__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .opt__title::after {
    margin-left: 4px;
    width: 40px;
    height: 40px;
  }
}
.opt__content {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 850px) {
  .opt__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.opt__img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: var(--svetlo-siniy);
  margin: 0 auto;
  margin-bottom: 28px;
}
@media (max-width: 1240px) {
  .opt__img {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 850px) {
  .opt__img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 576px) {
  .opt__img {
    width: 100px;
    height: 100px;
  }
}
.opt__img img {
  width: 100%;
  height: 100%;
}
.opt__left {
  padding: 170px 20px;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 850px) {
  .opt__left {
    padding: 40px 10px;
  }
}
.opt__right {
  padding: 20px;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #6386ff;
  position: relative;
  background-image: url("./../img/opt-bg.svg");
  background-size: cover;
}
@media (max-width: 850px) {
  .opt__right {
    padding: 40px 30px;
  }
}
.opt__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(85.81% 77.46% at 29.71% 12.68%, rgb(231, 204, 251) 0%, rgb(231, 204, 251) 100%), radial-gradient(62.36% 85.69% at 0% 100%, rgb(165, 179, 249) 0%, rgb(165, 179, 249) 100%), radial-gradient(76.8% 87.87% at 100% 100%, rgb(221, 233, 206) 0%, rgb(221, 233, 206) 100%);
  mix-blend-mode: multiply;
}
@media (max-width: 850px) {
  .opt__desc {
    font-size: 16px;
    font-weight: 300;
  }
}
@media (max-width: 576px) {
  .opt__desc {
    font-size: 14px;
  }
}
.opt__btn {
  position: relative;
  z-index: 5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--svetlo-siniy);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.opt__btn svg {
  fill: currentColor;
}

.cta {
  padding-top: 250px;
  margin-bottom: -278px;
}
@media (max-width: 1000px) {
  .cta {
    margin-bottom: -200px;
    padding-top: 150px;
  }
}
@media (max-width: 1240px) {
  .cta--about {
    padding-top: 40px;
  }
}
.cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  max-width: 1310px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .cta__container {
    gap: 30px;
  }
}
@media (max-width: 1000px) {
  .cta__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 44px;
  }
}
.cta__img {
  width: 100%;
  max-width: 393px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.cta__img img {
  width: 100%;
  height: auto;
}
.cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media (max-width: 1000px) {
  .cta__buttons {
    display: none;
  }
}
.cta__buttons--mob {
  position: absolute;
  left: 43px;
  right: 43px;
  bottom: 35%;
  display: none;
}
@media (max-width: 1000px) {
  .cta__buttons--mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
}
.cta__title {
  margin-bottom: 56px;
  text-align: justify;
}
@media (max-width: 1000px) {
  .cta__title {
    margin: 0;
  }
}
.cta__title::after {
  content: "";
  display: inline-block;
  width: 56px;
  aspect-ratio: 1/1;
  background-image: url("./../img/lupa.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
}
@media (max-width: 850px) {
  .cta__title::after {
    width: 40px;
    height: 40px;
  }
}
.cta__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  font-size: 28px;
}
@media (max-width: 1240px) {
  .cta__btn {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .cta__btn {
    font-size: 12px;
    padding: 20px 5px;
  }
  .cta__btn svg {
    width: 24px;
    height: 24px;
  }
}
.cta__btn svg {
  fill: currentColor;
  margin-left: 4px;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 15px 0;
  padding-bottom: 90px;
  background-color: var(--belyy);
}
@media (max-width: 850px) {
  .footer {
    padding-bottom: 45px;
  }
}
.footer__top {
  padding: 24px 0;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-top: 2px solid #f1f2fa;
  border-bottom: 2px solid #f1f2fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 1240px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    border-bottom: 0;
    margin: 0;
    padding: 14px 0;
  }
}
.footer__left {
  width: 100%;
  max-width: 360px;
}
.footer__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1240px) {
  .footer__right {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 10px;
  }
}
.footer__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 160px;
}
@media (max-width: 1240px) {
  .footer__col {
    max-width: 100%;
  }
}
.footer__logo {
  display: block;
  width: 320px;
  height: 100px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f2fa;
}
@media (max-width: 1240px) {
  .footer__logo {
    padding: 0;
    margin: 0;
    border: none;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}
.footer__copy {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #757575;
}
@media (max-width: 1240px) {
  .footer__copy {
    display: none;
  }
}
.footer__copy--mob {
  display: none;
  text-align: center;
  margin-top: 25px;
}
@media (max-width: 1240px) {
  .footer__copy--mob {
    display: block;
  }
}
.footer__bottom small {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #bdbdbd;
}
.footer__bottom small a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #757575;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .footer__bottom small a:hover {
    color: var(--svetlo-siniy);
  }
}
.footer__capture {
  margin: 0;
  padding-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 136%;
  color: #455a64;
  position: relative;
  pointer-events: none;
}
@media (max-width: 1240px) {
  .footer__capture {
    pointer-events: all;
    color: #333436;
    cursor: pointer;
    border-bottom: 1px solid currentColor;
    font-size: 17px;
    font-weight: 400;
    line-height: 153%;
  }
  .footer__capture::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 8px;
    background-image: url("./../img/arr-dr.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 1240px) {
  .footer__nav {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    will-change: max-height;
  }
}
.footer__nav ul,
.footer__nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1240px) {
  .footer__nav ul,
  .footer__nav ol {
    padding: 10px 0;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    border-bottom: 1px solid currentColor;
  }
}
@media (max-width: 576px) {
  .footer__nav ul,
  .footer__nav ol {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
.footer__nav ul a,
.footer__nav ol a {
  display: inline-block;
  position: relative;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  color: #637aae;
}
@media (max-width: 1240px) {
  .footer__nav ul a,
  .footer__nav ol a {
    font-size: 15px;
    line-height: 140%;
    color: #404244;
  }
}
.footer__nav ul a::after,
.footer__nav ol a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 10%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media (any-hover: hover) {
  .footer__nav ul a:hover::after,
  .footer__nav ol a:hover::after {
    opacity: 1;
    width: 100%;
  }
}

.lk {
  padding: 40px 0;
}
.lk__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}
@media (max-width: 1240px) {
  .lk__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.lk__aside {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.lk__content {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1240px) {
  .lk__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.lk__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 850px) {
  .lk__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lk__block {
  border-radius: 32px;
  padding: 20px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
}
.lk__capture {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  color: var(--chernyy);
  text-align: left;
}
@media (max-width: 1300px) {
  .lk__capture {
    font-size: 24px;
  }
}
.lk__capture:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .lk__capture:not(:last-child) {
    margin-bottom: 8px;
  }
}
.lk__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--chernyy);
}
.lk__subtitle:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .lk__subtitle:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (max-width: 850px) {
  .lk__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .lk__subtitle {
    font-size: 14px;
  }
}
.lk__subtitle span {
  font-weight: 700;
  color: var(--siniy);
}
.lk__subtitle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  width: 36px;
  aspect-ratio: 1/1;
  background-image: url("./../img/group/people.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 850px) {
  .lk__subtitle::after {
    width: 28px;
    margin-left: 4px;
  }
}
@media (max-width: 576px) {
  .lk__subtitle::after {
    width: 24px;
  }
}
.lk__mess {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--siniy);
}
@media (max-width: 850px) {
  .lk__mess {
    font-size: 20px;
  }
  .lk__mess svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .lk__mess {
    font-size: 14px;
  }
}
.lk__mess:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .lk__mess:not(:last-child) {
    margin-bottom: 8px;
  }
}
.lk__desc {
  color: var(--chernyy);
  text-align: left;
  font-weight: 300;
}
.lk__desc:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .lk__desc:not(:last-child) {
    margin-bottom: 8px;
  }
}
.lk__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-height: 320px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  will-change: max-height;
}
.lk__items:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 850px) {
  .lk__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .lk__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lk__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.lk__showmore {
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lk__showmore:hover {
  background-color: var(--siniy);
  color: var(--belyy);
}
.lk__more {
  text-align: center;
}
.lk__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .lk__buttons button,
  .lk__buttons a {
    border-radius: 16px;
  }
}

.lk-aside__top {
  border-radius: 32px;
  padding: 20px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
}
.lk-aside__top:not(:last-child) {
  margin-bottom: 20px;
}
.lk-aside__achievements {
  border-radius: 32px;
  padding: 20px 16px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
}

.lk-achiv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .lk-achiv.expanded .achiv__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lk-achiv.expanded .achiv-block:nth-child(2) {
    display: block;
  }
  .lk-achiv.expanded .achiv-block__items {
    max-height: none;
    overflow: visible;
  }
}
@media (max-width: 576px) {
  .lk-achiv .achiv-block {
    display: block;
  }
  .lk-achiv .achiv-block__items {
    max-height: 120px;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
  .lk-achiv .achiv-block:first-child .achiv__item:nth-child(n+3) {
    display: none;
  }
}
.lk-achiv__header {
  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;
  font-family: var(--font-family);
}
.lk-achiv__header p {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #000;
}
@media (max-width: 850px) {
  .lk-achiv__header p {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .lk-achiv__header p {
    font-size: 16px;
  }
}
.lk-achiv__header a,
.lk-achiv__header button.lk-achiv__showfull {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--siniy);
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 850px) {
  .lk-achiv__header a,
  .lk-achiv__header button.lk-achiv__showfull {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .lk-achiv__header a,
  .lk-achiv__header button.lk-achiv__showfull {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .lk-achiv__header a:hover,
  .lk-achiv__header button.lk-achiv__showfull:hover {
    color: var(--svetlo-siniy);
  }
}
.lk-achiv .achiv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .lk-achiv .achiv__item .achivment__icon {
    background-color: #0039ff;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 12px;
  }
  .lk-achiv .achiv__item .achivment__icon img {
    -webkit-filter: brightness(10);
    filter: brightness(10);
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .lk-achiv__items {
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.lk-achiv-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 576px) {
  .lk-achiv-fullscreen {
    display: none !important;
  }
}
.lk-achiv-fullscreen.active {
  display: block;
  opacity: 1;
}
.lk-achiv-fullscreen__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.lk-achiv-fullscreen .achiv__item {
  max-height: unset;
}
.lk-achiv-fullscreen__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1328px;
  margin: 0 var(--container-offset);
  max-height: 80vh;
  overflow-y: auto;
  background-color: var(--belyy);
  border-radius: 32px;
  padding: 30px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 850px) {
  .lk-achiv-fullscreen__content {
    padding: 20px;
    width: 95%;
  }
}
.lk-achiv-fullscreen__header {
  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: 30px;
}
.lk-achiv-fullscreen__header p {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  color: var(--chernyy);
}
@media (max-width: 850px) {
  .lk-achiv-fullscreen__header p {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .lk-achiv-fullscreen__header p {
    font-size: 20px;
  }
}
.lk-achiv-fullscreen__header button {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: var(--siniy);
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 850px) {
  .lk-achiv-fullscreen__header button {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .lk-achiv-fullscreen__header button {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .lk-achiv-fullscreen__header button:hover {
    color: var(--svetlo-siniy);
  }
}
.lk-achiv-fullscreen__block:not(:last-child) {
  margin-bottom: 30px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .achivment__title {
  max-width: 100%;
  min-width: 0;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .achivment__title .percent {
  font-weight: 700;
  font-size: 14px;
  color: var(--siniy);
  margin-left: 8px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .achivment__hint {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #000;
  margin-bottom: 4px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .achivment__hint span {
  font-weight: 700;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .achivment__hint:last-of-type {
  color: var(--siniy);
  margin-bottom: 12px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .progress {
  margin-top: 8px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .progress__bar {
  height: 6px;
  background: #becdff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__info .progress__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width);
  background-color: var(--siniy);
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__icon {
  background-color: #0039ff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 12px;
}
.lk-achiv-fullscreen__block:nth-child(2) .lk-achiv-fullscreen__items .achiv__item .achivment__icon img {
  -webkit-filter: brightness(10);
  filter: brightness(10);
  width: 24px;
  height: 24px;
}
.lk-achiv-fullscreen .achiv-block__header {
  max-width: 272px;
}
.lk-achiv-fullscreen__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lk-achiv-fullscreen__items .achiv__item:not(:last-child) {
  margin-bottom: 0;
}
.lk-achiv-fullscreen__items .achiv__item:nth-last-child(1), .lk-achiv-fullscreen__items .achiv__item:nth-last-child(3) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
@media (max-width: 1240px) {
  .lk-achiv-fullscreen__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .lk-achiv-fullscreen__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .lk-achiv-fullscreen__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.lk-achiv-fullscreen__block:nth-child(3) .achiv__item:nth-last-child(1), .lk-achiv-fullscreen__block:nth-child(3) .achiv__item:nth-last-child(3) {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}
@media (max-width: 1240px) {
  .lk-achiv-fullscreen__block:nth-child(3) .achiv__item {
    grid-column: unset !important;
  }
}

.achiv-block {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.achiv-block:not(:last-child) {
  margin-bottom: 20px;
}
.achiv-block__title {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 850px) {
  .achiv-block__title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .achiv-block__title {
    font-size: 14px;
  }
}
.achiv-block__header:not(:last-child) {
  margin-bottom: 12px;
}
.achiv-block__items {
  -webkit-transition: max-height 0.3s ease, opacity 0.2s ease;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
@media (min-width: 577px) {
  .achiv-block__items {
    max-height: 240px;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .achiv-block__items {
    max-height: 120px;
    overflow: hidden;
  }
}

.progress__top {
  margin-bottom: 8px;
  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;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #000;
}
@media (max-width: 850px) {
  .progress__top {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .progress__top {
    font-size: 14px;
  }
}
.progress__bar {
  background: #becdff;
  height: 8px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.progress__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width);
  background-color: var(--siniy);
}

.profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.profile__row:not(:last-child) {
  margin-bottom: 10px;
}
.profile__status {
  gap: 10px;
  font-weight: 300;
}
.profile__status img {
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (any-hover: hover) {
  .profile__status:hover {
    background-color: var(--svetlo-siniy);
    color: var(--belyy);
  }
}
.profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1300px) {
  .profile__avatar {
    width: 80px;
    height: 80px;
  }
}
.profile__avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.profile__nickname {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #000;
}
.profile__id {
  cursor: pointer;
  margin: 0;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--seryy);
}
.profile__id span {
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.profile__id span svg {
  display: block;
  width: 100%;
  height: 100%;
}
.profile__coins {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--zheltyy);
}
.profile__coins img {
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.achivment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  max-height: unset;
  overflow: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.achivment:not(:last-child) {
  margin-bottom: 8px;
}
.achivment__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.achivment__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--siniy);
}
@media (max-width: 850px) {
  .achivment__icon {
    width: 40px;
  }
}
.achivment__icon img {
  display: block;
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
@media (max-width: 850px) {
  .achivment__icon img {
    width: 25px;
    height: 25px;
  }
}
.achivment__title {
  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;
  max-width: 100%;
  min-width: 0;
  gap: 5px 0px;
  margin: 0;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #000;
}
.achivment__title span:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  max-width: 60%;
}
.achivment__title .percent {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30%;
  text-align: right;
}
@media (max-width: 850px) {
  .achivment__title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .achivment__title {
    font-size: 14px;
  }
}
.achivment__desc {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  margin-bottom: 8px;
}
@media (max-width: 850px) {
  .achivment__desc {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .achivment__desc {
    font-size: 10px;
  }
}
.achivment__hint {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #000;
  margin-bottom: 4px;
}
.achivment__hint span {
  font-weight: 700;
}
.achivment__hint:last-of-type {
  color: var(--siniy);
  margin-bottom: 12px;
}
.achivment .progress {
  margin-top: 8px;
}
.achivment .progress__bar {
  height: 6px;
  background: #becdff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.achivment .progress__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width);
  background-color: var(--siniy);
}

.group {
  border: 1px solid var(--chernyy);
  border-radius: 32px;
  padding: 20px;
  background: var(--belyy);
}
.group__header {
  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;
  gap: 5px;
  margin-bottom: 2px;
}
@media (max-width: 576px) {
  .group__header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.group__title {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.group__avatar {
  width: 82px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 576px) {
  .group__avatar {
    width: 54px;
  }
}
.group__avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.group__content {
  margin-bottom: 2px;
}
@media (max-width: 850px) {
  .group__content {
    margin-bottom: 10px;
  }
}
.group__content p {
  margin: 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--chernyy);
}
@media (max-width: 576px) {
  .group__content p {
    font-size: 14px;
  }
}
.group__content p span {
  font-weight: 700;
}
.group__content p span.blue {
  color: var(--siniy);
}
.group__content p:not(:last-child) {
  margin-bottom: 2px;
}
@media (max-width: 850px) {
  .group__content p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.group__content p:first-child {
  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;
  gap: 4px;
}
@media (max-width: 576px) {
  .group__content p:first-child {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .group__btn {
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 16px;
  }
}

.settings {
  margin-bottom: 40px;
}

.setting {
  padding: 20px;
  border-radius: 32px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
}
.setting:not(:last-child) {
  margin-bottom: 20px;
}
.setting__header {
  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;
  gap: 24px;
  overflow: hidden;
}
.setting__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.setting__name {
  margin: 0;
  font-weight: 700;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.setting__avatar {
  width: 54px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  overflow: hidden;
}
.setting__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.setting__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17.5px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--siniy);
}
.setting__button span {
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.setting__button span svg {
  display: block;
  width: 100%;
  height: 100%;
}
.setting__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  will-change: max-height;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.setting__list {
  padding-top: 20px;
}
.setting.active .setting__button span {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.setting-item {
  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;
  gap: 12px;
}
@media (max-width: 850px) {
  .setting-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.setting-item:not(:last-child) {
  margin-bottom: 20px;
}
.setting-item__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--chernyy);
}
@media (max-width: 850px) {
  .setting-item__name {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .setting-item__name {
    font-size: 14px;
  }
}
.setting-item__info {
  cursor: pointer;
  width: 24px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.setting-item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 576px) {
  .setting-item__right {
    width: 100%;
  }
}
.setting-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.setting-item__row img {
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.setting-item__link {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--siniy);
}
@media (max-width: 850px) {
  .setting-item__link {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .setting-item__link {
    font-size: 14px;
  }
}
.setting-item__checkbox span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  padding: 9px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--siniy);
  background-color: var(--belyy);
  border: 1px solid var(--siniy);
  border-radius: 24px;
  -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
}
.setting-item__checkbox span:hover {
  background-color: var(--svetlo-siniy);
  color: var(--belyy);
}
@media (max-width: 850px) {
  .setting-item__checkbox span {
    font-size: 18px;
    padding: 10px 20px;
    width: auto;
    min-width: 100px;
  }
}
@media (max-width: 576px) {
  .setting-item__checkbox span {
    font-size: 14px;
    min-width: 80px;
  }
}
.setting-item__checkbox input:checked ~ span {
  background-color: var(--svetlo-siniy);
  color: var(--belyy);
}
.setting-item__dropdown {
  position: relative;
  padding: 10px;
  border-radius: 24px;
  background: var(--svetlo-siniy);
}
@media (max-width: 576px) {
  .setting-item__dropdown {
    padding: 0;
    width: 100%;
    background: none;
    border-radius: 0;
  }
}
.setting-item__dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: var(--belyy);
  cursor: pointer;
}
.setting-item__dropdown-btn img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.setting-item__dropdown-btn svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.setting-item__dropdown-btn.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.setting-item__dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--belyy);
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.setting-item__dropdown-content.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.setting-item__dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 140%;
  color: var(--chernyy);
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  cursor: pointer;
}
.setting-item__dropdown-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.setting-item__dropdown-item:hover {
  background-color: rgba(0, 57, 255, 0.1);
}
.setting-item__dropdown-item.active {
  background-color: rgba(0, 57, 255, 0.1);
}
.setting-item__radio-group {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.setting-item__radio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.setting-item__radio input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
.setting-item__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  width: 100%;
  border-radius: 12px;
  background-color: var(--belyy);
  border: 1px solid var(--svetlo-siniy);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--chernyy);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.setting-item__radio-label img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
input[type=radio]:checked + .setting-item__radio-label {
  background-color: var(--svetlo-siniy);
  color: var(--belyy);
  border-color: var(--siniy);
}
.setting-item__radio:hover .setting-item__radio-label {
  border-color: var(--siniy);
}
input[type=radio]:focus + .setting-item__radio-label {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 57, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(0, 57, 255, 0.3);
}

.hello {
  padding: 40px 0;
  min-height: 650px;
}
.hello__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.hello__top:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 850px) {
  .hello__top:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
  .hello__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.hello__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.hello__avatar {
  width: 54px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  overflow: hidden;
}
.hello__avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.hello__setting {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
}
@media (max-width: 1240px) {
  .hello__setting {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .hello__setting {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hello__setting {
    font-size: 14px;
  }
}
.hello__setting span {
  color: var(--seryy);
}
@media (max-width: 850px) {
  .hello__setting span {
    display: block;
  }
}
.hello__setting span::after {
  content: "/";
}
@media (max-width: 850px) {
  .hello__setting span::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .hello__create {
    border-radius: 16px;
    width: 100%;
  }
}
.hello__items {
  position: relative;
}
.hello__wrapper {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  max-width: 1228px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.hello__wrapper.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.hello__message {
  padding: 20px;
  background: var(--belyy);
  border-radius: 32px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 27px;
}
.hello__message-content {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 576px) {
  .hello__message-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hello__message-content.hidden {
  display: none;
}
.hello__message-content.sent {
  pointer-events: none;
  opacity: 0.7;
}
.hello__message-content.sent .hello__message-input {
  background-color: #f4f4f4;
  cursor: not-allowed;
}
.hello__message-content.sent .hello__message-save,
.hello__message-content.sent .hello__message-delete {
  opacity: 0.5;
  cursor: not-allowed;
}
.hello__message-preview {
  display: none;
  margin-bottom: 20px;
}
.hello__message-preview.active {
  display: block;
}
.hello__message-input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 132px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  resize: vertical;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 140%;
  color: var(--chernyy);
  background: #f4f4f4;
  resize: none;
}
.hello__message-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.hello__message-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.hello__message-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.hello__message-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.hello__message-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.hello__message-input:focus {
  outline: none;
  border-color: var(--siniy);
}
.hello__message-input.disabled {
  background-color: var(--svetlo-siniy);
  border-color: transparent;
  color: var(--belyy);
  pointer-events: none;
}
.hello__message-text {
  margin: 0;
  padding: 16px;
  background-color: var(--svetlo-siniy);
  border-radius: 24px;
  font-size: 16px;
  line-height: 140%;
  color: var(--chernyy);
}
.hello__message-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  max-width: 164px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hello__message-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
  }
}
.hello__message-save {
  white-space: nowrap;
  color: var(--belyy);
  padding: 6px;
  border: 1px solid var(--svetlo-siniy);
  background-color: var(--svetlo-siniy);
}
@media (max-width: 576px) {
  .hello__message-save {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
  }
}
.hello__message-delete {
  white-space: nowrap;
  color: var(--belyy);
  padding: 6px;
  border-color: var(--krasnyy);
  background-color: var(--krasnyy);
}
@media (max-width: 576px) {
  .hello__message-delete {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
  }
}
@media (any-hover: hover) {
  .hello__message-delete:hover {
    background-color: #ff7a7a;
  }
}
.hello__message-send:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.denied__items {
  position: relative;
}
.denied__add {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .denied__add {
    border-radius: 16px;
    width: 100%;
  }
}
.denied__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, z-index 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, z-index 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, z-index 0.3s;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, z-index 0.3s, -webkit-transform 0.3s ease-in-out;
  max-width: 440px;
  width: 100%;
}
.denied__wrapper.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.denied__message {
  margin-bottom: 20px;
}
.denied__message-content {
  padding: 20px;
  background-color: var(--belyy);
  border-radius: 32px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.denied__message-input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 88px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  resize: none;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 140%;
  color: var(--chernyy);
  background: #f4f4f4;
}
.denied__message-input:focus {
  outline: none;
}
.denied__message-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  max-width: 164px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.denied__message-save {
  white-space: nowrap;
  color: var(--belyy);
  padding: 6px;
  background-color: var(--svetlo-siniy);
  border-color: var(--svetlo-siniy);
  line-height: 1;
}
.denied__message-cancel {
  white-space: nowrap;
  color: var(--belyy);
  padding: 6px;
  background-color: var(--seryy);
  border-color: var(--seryy);
  line-height: 1;
}
@media (any-hover: hover) {
  .denied__message-cancel:hover {
    background-color: #777777;
  }
}
.denied__words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 80px;
}
.denied__word {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #1e1e1e;
  border-radius: 100px;
  color: var(--belyy);
  font-size: 16px;
  line-height: 140%;
}
.denied__word-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.denied__word-remove:hover {
  opacity: 0.7;
}
.denied__word-remove svg {
  width: 100%;
  height: 100%;
}
.denied__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .denied__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
  }
}
.denied__capture {
  margin: 0;
  line-height: 1;
}
@media (max-width: 850px) {
  .denied__capture {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .denied__capture {
    font-size: 14px;
  }
}
.denied__dropdown {
  position: relative;
  display: inline-block;
}
.denied__dropdown-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 20px;
  line-height: 1;
  color: var(--belyy);
  border-radius: 16px;
  background-color: var(--svetlo-siniy);
}
@media (max-width: 850px) {
  .denied__dropdown-btn {
    font-size: 16px;
    padding: 4px 12px;
  }
}
@media (max-width: 576px) {
  .denied__dropdown-btn {
    font-size: 14px;
  }
}
.denied__dropdown-btn svg {
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .denied__dropdown-btn:hover {
    background-color: var(--svetlo-siniy);
    color: var(--belyy);
  }
}
.denied__dropdown-btn.active {
  border-radius: 16px 16px 0 0;
}
.denied__dropdown-btn.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.denied__dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding: 8px 0;
  background: var(--svetlo-siniy);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.denied__dropdown-content.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.denied__dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  line-height: 1;
  color: var(--belyy);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.denied__dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 850px) {
  .denied__dropdown-item {
    font-size: 16px;
    padding: 4px 12px;
  }
}

.about-hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .about-hero {
    padding-bottom: 0;
  }
}
.about-hero::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 2300px;
  height: 705px;
  background-image: url("./../img/about-hero.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: right;
  -webkit-transform: rotate(-16deg) translate(50%, 0%);
  -ms-transform: rotate(-16deg) translate(50%, 0%);
  transform: rotate(-16deg) translate(50%, 0%);
}
@media (max-width: 1240px) {
  .about-hero::before {
    width: 1400px;
    height: 400px;
  }
}
.about-hero__title {
  margin-bottom: 40px;
  position: relative;
  z-index: 4;
}
.about-hero__title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  width: 70px;
  height: 70px;
  background-image: url("./../img/book.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .about-hero__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .about-hero__title::after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .about-hero__title::after {
    width: 40px;
    height: 40px;
  }
}
.about-hero__container {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 850px) {
  .about-hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.about-hero__phone {
  width: 100%;
  max-width: 488px;
}
@media (max-width: 1240px) {
  .about-hero__phone {
    max-width: 360px;
  }
}
@media (max-width: 850px) {
  .about-hero__phone {
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .about-hero__phone {
    max-width: 250px;
  }
}
.about-hero__phone img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.about-hero__right {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1240px) {
  .about-hero__right {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .about-hero__right {
    gap: 14px;
  }
}
.about-hero__message {
  padding: 12px 18px;
  border-radius: 32px;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  color: var(--belyy);
  background: var(--siniy);
  position: relative;
}
@media (max-width: 1240px) {
  .about-hero__message {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .about-hero__message {
    font-size: 16px;
    border-radius: 24px;
    font-weight: 300;
  }
}
@media (max-width: 576px) {
  .about-hero__message {
    font-size: 14px;
  }
}
.about-hero__message::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -3px;
  width: 44px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("./../img/angle.svg");
  mask-image: url("./../img/angle.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--siniy);
}
.about-hero__message:nth-child(odd)::before {
  right: unset;
  left: -6px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-hero__message span {
  position: relative;
  z-index: 4;
}

.history {
  padding: 40px 0;
}
@media (max-width: 850px) {
  .history {
    padding-bottom: 0;
  }
}
.history__title::after {
  background-image: url("./../img/calendar.webp");
}
@media (max-width: 850px) {
  .history__title {
    margin-bottom: 20px;
  }
}
.history__items {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 60px;
}
@media (max-width: 850px) {
  .history__items {
    padding: 0;
  }
}
.history__item::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 222px;
  height: 100px;
  background-image: url("./../img/arrow-curved.svg");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .history__item::after {
    height: 80px;
    width: 20px;
    background-image: url("./../img/arr-down.svg");
    top: 100%;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
}
.history__item:nth-child(even) {
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .history__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.history__item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .history__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.history__item:not(:last-child):nth-child(even)::after {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: unset;
  right: 100%;
}
.history__item:last-child {
  margin-bottom: 40px;
}
@media (max-width: 850px) {
  .history__item:last-child {
    margin-bottom: 32px;
  }
}
.history__item:last-child::after {
  background-image: url("./../img/last-arrow.svg");
  width: 30px;
  height: 120px;
}
@media (max-width: 1000px) {
  .history__item:last-child::after {
    height: 25px;
    width: 15px;
    background-image: url("./../img/arr-down-last.svg");
    background-size: 100% auto;
    background-position: center bottom;
    top: 100%;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
}
.history__btn {
  width: 100%;
  background-color: var(--siniy);
}
@media (max-width: 576px) {
  .history__btn {
    padding: 18px 12px;
  }
}

.history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  position: relative;
}
@media (max-width: 1000px) {
  .history-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2px;
  }
  .history-item:nth-child(even) .history-item__fig {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
.history-item__fig {
  font-weight: 700;
  font-size: 96px;
  color: var(--chernyy);
}
@media (max-width: 1240px) {
  .history-item__fig {
    font-size: 70px;
  }
}
@media (max-width: 850px) {
  .history-item__fig {
    font-size: 60px;
  }
}
.history-item__title {
  margin-bottom: 18px;
}
.history-item__title::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("./../img/calendar.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
  vertical-align: middle;
}
@media (max-width: 1240px) {
  .history-item__title::before {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 850px) {
  .history-item__title::before {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 576px) {
  .history-item__title {
    font-size: 16px;
  }
}
.history-item__desc {
  font-weight: 300;
  text-align: left;
}
@media (max-width: 576px) {
  .history-item__desc {
    font-size: 14px;
  }
}
.history-item__wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 420px;
  flex-basis: 420px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--siniy);
  border-radius: 24px;
  padding: 40px 20px;
}
@media (max-width: 1240px) {
  .history-item__wrap {
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
  }
}
@media (max-width: 1000px) {
  .history-item__wrap {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (max-width: 850px) {
  .history-item__wrap {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .history-item__wrap {
    padding: 20px 14px;
  }
}

.team {
  padding: 60px 0 0;
}
.team__title {
  margin-bottom: 80px;
}
@media (max-width: 850px) {
  .team__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .team__title {
    margin-bottom: 20px;
  }
}
.team__title::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  width: 70px;
  height: 70px;
  background-image: url("./../img/team.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1240px) {
  .team__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .team__title::after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .team__title::after {
    width: 40px;
    height: 40px;
  }
}
.team__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1240px) {
  .team__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.team__slider {
  overflow: visible;
}
.team__capture {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 1240px) {
  .team__capture {
    font-size: 28px;
  }
}
@media (max-width: 850px) {
  .team__capture {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .team__capture {
    font-size: 16px;
  }
}
.team__block:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 850px) {
  .team__block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.team__block:last-child {
  margin-bottom: 80px;
}
@media (max-width: 850px) {
  .team__block:last-child {
    margin-bottom: 40px;
  }
}

.team-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 24px;
  border-radius: 32px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
}
@media (max-width: 1240px) {
  .team-item {
    max-width: 324px;
  }
}
.team-item__img {
  margin-bottom: 12px;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .team-item__img {
    margin-bottom: 8px;
  }
}
.team-item__img img {
  display: block;
  width: 100%;
  height: 100%;
}
.team-item__info {
  text-align: center;
}
.team-item__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 1240px) {
  .team-item__name {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .team-item__name {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .team-item__name {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.team-item__desc {
  font-weight: 300;
}

.plug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  padding: 0 74px;
}
@media (max-width: 1240px) {
  .plug {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.plug__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .plug__item {
    gap: 8px;
  }
}
.plug__item:nth-child(odd) {
  max-width: 574px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.plug__icon {
  width: 48px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .plug__icon {
    width: 32px;
  }
}
@media (max-width: 576px) {
  .plug__icon {
    width: 24px;
  }
}
.plug__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.plug__text {
  text-align: center;
}
@media (max-width: 576px) {
  .plug__text {
    font-size: 14px;
  }
}
.plug__text a {
  color: var(--siniy);
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
@media (any-hover: hover) {
  .plug__text a:hover {
    color: var(--svetlo-siniy);
  }
}

.tooltip {
  position: absolute;
  background: rgb(0, 0, 0);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 1000;
  top: 50%;
  left: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 300px;
  word-wrap: break-word;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(20px, -30%);
  -ms-transform: translate(20px, -30%);
  transform: translate(20px, -30%);
  -webkit-transition: 0.15s ease-in;
  transition: 0.15s ease-in;
}
.tooltip::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 4px 4px 4px 0;
  border-style: solid;
  border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}
.tooltip[data-placement^=top] {
  margin-bottom: 8px;
}
.tooltip[data-placement^=top]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.tooltip[data-placement^=bottom] {
  margin-top: 8px;
}
.tooltip[data-placement^=bottom]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}
.tooltip[data-placement=right] {
  margin-left: 8px;
  left: -4px;
  right: auto;
}
.tooltip[data-placement=right]::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 4px 4px 4px 0;
  border-style: solid;
  border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}
.tooltip[data-placement=left] {
  margin-right: 8px;
  left: auto;
  right: -4px;
}
.tooltip[data-placement=left]::before {
  content: "";
  position: absolute;
  right: -4px;
  left: unset;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

[data-info] {
  position: relative;
  z-index: 6;
  cursor: pointer;
}

.command {
  padding: 40px 0 100px;
}
@media (max-width: 850px) {
  .command {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .command {
    padding: 20px 0;
  }
}
.command__title {
  margin-bottom: 40px;
}
@media (max-width: 850px) {
  .command__title {
    margin-bottom: 20px;
  }
}
.command__title::after {
  content: "";
  display: inline-block;
  width: 70px;
  aspect-ratio: 1/1;
  background-image: url("./../img/hand.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 12px;
  vertical-align: middle;
}
@media (max-width: 1240px) {
  .command__title::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .command__title::after {
    width: 50px;
    height: 50px;
    margin-left: 4px;
  }
}
@media (max-width: 576px) {
  .command__title::after {
    width: 40px;
    height: 40px;
  }
}
.command__container {
  max-width: calc(1000px + var(--container-offset) * 2);
  margin: 0 auto;
  padding: 0 var(--container-offset);
}
.command__items {
  margin-bottom: 40px;
}
.command__row {
  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;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
  border-radius: 18px;
  padding: 4px 16px;
  padding-right: 8px;
  font-weight: 300;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.command__row:hover {
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}
.command__row:not(:last-child) {
  margin-bottom: 12px;
}
.command__drop {
  position: relative;
}
.command__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.command__header.active {
  background-color: rgba(0, 57, 255, 0.1);
}
.command__header.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.command__header span {
  color: var(--siniy);
  font-weight: 700;
}
.command__header svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.command__bottom {
  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;
  padding: 4px 16px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: var(--belyy);
  border-radius: 18px;
}
@media (max-width: 576px) {
  .command__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 13px;
    padding: 13px;
  }
}
@media (max-width: 850px) {
  .command__text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .command__text {
    font-size: 14px;
  }
}
.command__bottom-text {
  font-weight: 700;
}
@media (max-width: 850px) {
  .command__bottom-text {
    font-size: 16px;
  }
}
.command__item {
  color: var(--siniy);
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.command__item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.command__item.active {
  background-color: var(--siniy);
  color: var(--belyy);
}
.command__item:not(:last-child) {
  margin-bottom: 4px;
}
.command__content {
  background-color: var(--belyy);
  border-radius: 8px;
  padding: 8px;
  -webkit-box-shadow: 0 15px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 24px 0 rgba(0, 0, 0, 0.15);
}
.command__body {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
  z-index: 10;
  margin-top: 4px;
}/*# sourceMappingURL=main.css.map */
