@charset "UTF-8";
:root {
  --bg-page-color: #08083B;
  --color: #FFFFFF;
  --color-header-title: #3A64F8;
  --color-footer-title-hover: #3A64F8;
  --color-action-button: #FFDE70;
  --color-action: #E23A8D;
  --color-bg-sector: #E9EFFF;
  --font-family-roboto: Roboto, sans-serif;
  --font-family-montserrat: Montserrat;
  --bp-mobile-sm: 320px;
  --bp-mobile-md: 800px;
  --bp-tablet: 1024px;
  --bp-desktop: 1440px;
}

body {
  background-color: #fefefe;
  margin: 0;
  font-family: var(--font-family-roboto);
  font-weight: 400;
  font-size: 1.25rem;
  min-width: var(--bp-mobile-sm);
}

a {
  color: inherit;
  text-decoration: none;
  z-index: 1;
}
a:hover {
  text-decoration: none;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a:link, a:visited {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-montserrat);
}

h1, .h1 {
  font-weight: 900;
  font-size: 3.75rem;
}

h2, .h2 {
  font-weight: 900;
  font-size: 2.875rem;
}

h3, .h3 {
  font-weight: 800;
  font-size: 2.125rem;
}

h4, .h4 {
  font-weight: 700;
  font-size: 1.875rem;
}

h5, .h5 {
  font-weight: 700;
  font-size: 1.625rem;
}

h6, .h6 {
  font-weight: 700;
  font-size: 1.25rem;
}

ul, ul li {
  list-style: none;
  z-index: 1;
}

img {
  vertical-align: top;
  z-index: 1;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
  font-family: var(--font-family-montserrat);
  font-weight: 700;
  font-size: 1.25rem;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

.content h2 {
  margin-block: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.content h3 {
  margin-block: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.content a {
  color: #1E40AF;
  text-decoration: underline;
}
.content p {
  margin-block: 1rem;
  font-size: 1rem;
  font-weight: 400;
}
.content li {
  font-size: 1rem;
  font-weight: 400;
  list-style: inside;
  list-style-position: outside;
  margin-left: 1.5rem;
}
.content img {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  margin-block: 2rem;
  display: block;
  border-radius: 1rem;
}
.content hr {
  border: none;
  height: 0.125rem;
  background: linear-gradient(to right, transparent, #666, transparent);
  margin: 1.875rem 0;
}
.content blockquote {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  background: var(--color);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 1px 4px 75px 0px rgba(8, 8, 59, 0.1019607843);
  text-align: center;
  font-size: 1.125rem;
}
.content blockquote p {
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-weight: 500;
}
.content blockquote footer {
  border-top: 1px solid var(--bg-page-color);
  padding-top: 1.5rem;
  font-weight: 300;
}

.background {
  width: 100%;
  z-index: 0;
  position: absolute;
  display: flex;
  justify-content: center;
}

#background {
  min-width: 62.5rem;
  width: 100rem;
  margin: 0 auto;
}
#background .hover-stroke:hover {
  stroke: url(#square-stroke-hover);
  transition: stroke 3s ease;
}

.container {
  max-width: 76rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.white-box {
  width: 100%;
  background: var(--color);
  border: 1px solid var(--color);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 1px 4px 75px 0px rgba(8, 8, 59, 0.1019607843);
  margin-top: 2.5rem;
}
@media (max-width: 800px) {
  .white-box {
    padding: 1rem;
  }
}

.hero {
  text-align: center;
}
.hero .container {
  padding-bottom: 6.25rem;
}
.hero .container nav {
  font-size: 1.125rem;
  font-weight: 400;
  position: relative;
  font-style: normal;
  margin-top: 3rem;
}
.hero .container nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.hero .container nav ol li {
  display: flex;
  align-items: center;
}
.hero .container nav ol li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #adb5bd;
}
.hero .container nav ol li:not(.active):hover {
  text-shadow: 0.5px 0 currentColor;
}
.hero .container h1 {
  margin-top: 6.25rem;
  position: relative;
  width: max-content;
  max-width: calc(100% - 40px);
  margin-inline: auto;
}
.hero .container p {
  margin-top: 2rem;
  position: relative;
  width: max-content;
  max-width: calc(100% - 40px);
  margin-inline: auto;
}
.hero .container h2 {
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-action);
  position: relative;
  width: max-content;
  max-width: calc(100% - 40px);
  margin-inline: auto;
}
.hero .container button {
  margin-top: 3.75rem;
  position: relative;
  width: max-content;
  margin-inline: auto;
}
.hero .container svg {
  margin-top: 3rem;
  stroke: var(--bg-page-color);
  cursor: pointer;
  position: relative;
  width: max-content;
  margin-inline: auto;
}
.hero .container svg:hover {
  stroke: var(--color-header-title);
}

.start {
  margin-top: 6.25rem;
}
.start .container {
  border-top: 1px solid var(--bg-page-color);
  padding-block: 6.25rem;
  text-align: center;
}
.start .container h4 {
  margin-bottom: 1rem;
}
.start .container p {
  font-weight: 400;
  margin-bottom: 2rem;
}

.main_button {
  background-color: var(--color-action-button);
  border-radius: 1rem;
  color: var(--bg-page-color);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-family-roboto);
  padding: 0.75rem 1.5rem;
}
.main_button:hover {
  background-color: var(--bg-page-color);
  color: var(--color);
}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 3.75rem;
  gap: 1.875rem;
  background-color: var(--bg-page-color);
  color: var(--color);
}
.footer__link {
  color: var(--color);
  white-space: nowrap;
  text-decoration: none;
  width: fit-content;
  align-self: flex-start;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__link:hover {
  font-weight: 600;
  text-decoration: none;
}
.footer__link--ghost {
  position: relative;
  display: inline-block;
}
.footer__link--ghost::before {
  content: attr(data-text);
  font-weight: 700;
  visibility: hidden;
  display: block;
  height: 0;
  overflow: hidden;
}
.footer__logo {
  width: clamp(80px, 8vw, 220px);
  height: auto;
}
.footer__main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 7rem;
  padding-right: 7rem;
}
.footer__description {
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
}
.footer__description-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer__description-title {
  gap: 0.625rem;
  font-weight: 900;
  font-size: 2.125rem;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__description-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  width: 16.5rem;
  word-wrap: normal;
  white-space: normal;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .footer__description-text {
    width: auto;
  }
}
.footer__icons {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  padding-left: 7rem;
}
.footer__icon {
  display: inline-flex; /* чтобы svg центрировался */
  transition: background-color 0.2s ease, color 0.2s ease;
  color: var(--color);
  background-color: var(--bg-page-color);
}
.footer__icon-svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: currentColor;
}
.footer__icon:hover {
  background-color: var(--color);
  color: var(--bg-page-color);
  border-radius: 0.1875rem;
}
.footer__client-links {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .footer__client-links {
    flex-direction: column;
  }
}
.footer__client-group {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
.footer__client-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__client-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 0;
  width: fit-content;
  align-self: flex-start;
}
.footer__client-title:hover {
  color: var(--color-footer-title-hover);
  text-decoration: none;
}
.footer__client-content {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__legal-wrapper {
  gap: 0.625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__legal-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  white-space: nowrap;
  margin-right: 2rem;
  display: flex;
}
.footer__copyright {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  font-size: 1.34rem;
  align-items: start;
}
.footer__policy-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  padding-left: 7rem;
  padding-right: 7rem;
  margin-top: auto;
}
@media (max-width: 1440px) {
  .footer__client-group {
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 2rem;
  }
  .footer__legal-text {
    flex-direction: column;
  }
  .footer__policy-links {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
  }
  .footer__main {
    flex-direction: column;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    gap: 1.875rem;
  }
  .footer__icons {
    justify-content: center;
    padding-left: 0;
  }
  .footer__bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 1rem;
    flex-direction: column;
  }
  .footer__policy-links {
    grid-template-columns: repeat(1, auto);
    row-gap: 1rem;
  }
}
@media (max-width: 800px) {
  .footer__bottom {
    display: flex;
    justify-content: start;
  }
}
@media (max-width: 320px) {
  .footer__bottom {
    gap: 1.25rem;
    font-size: 0.875rem;
  }
  .footer__policy-links {
    display: flex;
    flex-direction: column;
  }
  .footer__client-content {
    font-size: 0.9375rem;
  }
  .footer__client-title {
    font-size: 1rem;
  }
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 7rem;
  gap: 2rem;
  position: relative;
  background-color: var(--color);
  border-bottom: 1px solid var(--color-bg-sector);
}
.header__main {
  display: flex;
  flex-direction: row;
  gap: 6.5rem;
  align-items: center;
}
.header__logo {
  width: clamp(80px, 8vw, 220px);
  height: auto;
}
.header__menu {
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
  align-items: center;
}
.header__nav {
  display: flex;
  flex-direction: row;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  gap: 1.5rem;
}
@media (max-width: 1440px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0.3125rem 0.75rem;
  gap: 0.625rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--bg-page-color);
  cursor: pointer;
}
.header__nav-item.open {
  color: var(--color-header-title);
}
.header__button {
  width: 12.5rem;
  height: 3.0625rem;
  padding: 0.8125rem 1.875rem;
  gap: 0.625rem;
  border-radius: 0.9375rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: var(--color-action-button);
}
.header__lang {
  width: 4.5rem;
  height: 1.9375rem;
  padding: 0.3125rem 0.625rem;
  gap: 0.625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__lang-current {
  padding-right: 0.1875rem;
  padding-left: 0.1875rem;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.header__lang-arrow {
  padding-bottom: 0.1875rem;
  gap: 0.625rem;
}

.header__nav-item-icon {
  transition: transform 0.3s ease;
  fill: currentColor;
}

.header__nav-item.open .header__nav-item-icon {
  transform: rotate(180deg);
}

.tools-popup {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  background-color: #fff;
  color: var(--bg-page-color);
  padding: 1rem 1.5rem;
  gap: 2.5rem;
  border: 1px solid var(--bg-page-color);
  border-radius: 0.1875rem;
  white-space: nowrap;
}

.tools-popup__title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
}

.tools-popup__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
}

.tools-popup__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.tools-popup__icon {
  width: 0.5rem;
  height: 1rem;
  transform: rotate(-90deg);
  fill: currentColor;
  max-width: fit-content;
}

.tools-popup--open {
  display: flex;
}

.blog__list-search {
  width: 100%;
  display: flex;
  position: relative;
}
.blog__list-search input {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color);
  border-radius: 1rem;
  box-shadow: 1px 4px 75px 0px rgba(8, 8, 59, 0.1019607843);
  border: 1px solid var(--color-bg-sector);
  font-weight: 300;
}
.blog__list-search input:hover, .blog__list-search input:focus {
  border-color: var(--bg-page-color);
}
.blog__list-search button {
  margin-left: -3.625rem;
  padding-inline: 16px;
}
.blog__tags {
  margin-top: 6.25rem;
  display: block;
}
.blog__tags-list {
  margin-top: 3.75rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-start;
}
.blog__tags-list a {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color);
  font-weight: 300;
  text-align: center;
  box-shadow: 1px 4px 75px 0px rgba(8, 8, 59, 0.1019607843);
  white-space: nowrap;
  flex-shrink: 0;
}
.blog__tags-list a:hover {
  border-color: var(--color-header-title);
}
.blog__tags-list button {
  border: 2px solid var(--color-action-button);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: medium;
  font-family: var(--font-family-roboto);
  border-radius: 1rem;
}
.blog__tags-list button:hover {
  background-color: var(--color-action-button);
  color: var(--color);
}
.blog__pagination {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
  display: block;
}
.blog__pagination-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.blog__pagination-list a {
  font-family: var(--font-family-montserrat);
  line-height: 2rem;
  font-weight: 700;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.5rem;
  min-width: 2rem;
  text-align: center;
  border: 1px solid var(--color);
}
.blog__pagination-list a.active {
  background-color: var(--color-action-button);
  color: var(--color);
}
.blog__pagination-list a:hover {
  border-color: var(--color-action-button);
}
.blog__pagination-list a.disable {
  color: var(--color-bg-sector);
}
.blog__pagination-list a.disable:hover {
  border-color: var(--color);
}

.article {
  display: flex;
  position: relative;
  gap: 3rem;
  flex-direction: row-reverse;
}
.article__left {
  flex: 2;
  order: 1;
}
.article__right {
  flex: 3;
  order: 2;
}
.article__img {
  border: 1px solid var(--color-header-title);
  border-radius: 1rem;
  overflow: hidden;
}
.article__img img {
  width: 100%;
}
.article__title {
  color: var(--color-action);
}
.article__description {
  margin-top: 1rem;
  font-weight: 300;
}
.article__tags {
  margin-top: 1rem;
  color: var(--color-header-title);
  font-weight: 300;
  font-size: 1.125rem;
}
.article__tags a {
  margin-right: 1.5rem;
  line-height: 1.875rem;
}
.article__tags a:hover {
  text-decoration: underline;
}
.article__button {
  margin-top: 2rem;
}
.article__button a {
  background: var(--color-action);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--color);
  display: block;
  width: fit-content;
  margin-left: unset;
}
.article__button a:hover {
  background-color: var(--bg-page-color);
}
.article:nth-child(even) {
  flex-direction: row;
}
.article:nth-child(even) .article__button-read {
  margin-left: auto;
}
@media (max-width: 800px) {
  .article {
    gap: 1rem;
    flex-direction: column;
  }
  .article__button {
    margin-top: 1rem;
  }
  .article__button a {
    margin-left: auto;
  }
  .article:nth-child(even) {
    flex-direction: column;
  }
}

.topic .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.75rem;
  align-items: start;
  grid-template-areas: "article bar";
}
.topic .container main {
  grid-area: article;
}
.topic .container main header {
  padding-bottom: 2rem;
}
.topic .container main header img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .topic .container {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    grid-template-areas: "bar" "article";
  }
}
.topic__content-list {
  display: none;
}
@media (max-width: 800px) {
  .topic__content-list {
    display: block;
  }
}
.topic__content-list > h2 {
  width: 100%;
  text-align: center;
  margin-block: 2.5rem;
}
.topic__content-list .article {
  max-width: 15.625rem;
}
.topic__content-list .article__left {
  flex: unset;
}
.topic__content-scroll {
  width: calc(100vw - 3.4375rem);
  overflow: auto;
  display: flex;
  gap: 0.5rem;
  box-shadow: 1px 4px 75px 0px rgba(8, 8, 59, 0.1019607843);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.topic__content-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}
.topic__content-scroll .article {
  margin-top: 0;
  min-width: 16.25rem;
}
.topic__sidebar {
  height: 100%;
  grid-area: bar;
}
.topic__sidebar-sticky {
  top: 0.5rem;
  position: sticky;
}
.topic__sidebar-tags a {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-header-title);
  line-height: 1.875rem;
  margin-right: 0.5rem;
}
.topic__sidebar-tags a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  .topic__sidebar-tags {
    width: calc(100vw - 3.4375rem);
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .topic__sidebar-tags::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
}
@media (max-width: 800px) {
  .topic__sidebar-scroll {
    width: max-content;
  }
}
.topic__sidebar-toc h2 {
  position: relative;
  cursor: pointer;
}
.topic__sidebar-toc h2 svg {
  position: absolute;
  top: 0.3125rem;
  right: 0;
  transform: scaleY(1);
}
.topic__sidebar-toc ul {
  margin-top: 1.5rem;
}
.topic__sidebar-toc li {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.topic__sidebar-toc li.toc__level-2 {
  font-weight: 400;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  list-style: inside;
  list-style-position: outside;
}
.topic__sidebar-toc li:hover {
  text-shadow: 0.5px 0 currentColor;
}
.topic__sidebar-list {
  margin-top: 5rem;
}
.topic__sidebar-list .article {
  flex-direction: column;
  margin-top: 1.5rem;
  gap: 1rem;
}
.topic__sidebar-list .article__button {
  margin-top: 1rem;
}
@media (max-width: 800px) {
  .topic__sidebar-list {
    display: none;
  }
}

.next {
  margin-block: 100px;
}
.next .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 5rem;
}
@media (max-width: 800px) {
  .next .container {
    flex-direction: column-reverse;
  }
}
.next strong {
  font-family: var(--font-family-montserrat);
  font-weight: 700;
  font-size: 1.25rem;
}
.next svg {
  margin-top: 0.5rem;
}
.next h4 {
  font-family: var(--font-family-roboto);
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
.next__right {
  text-align: right;
}
.next__right-arrow {
  width: max-content;
  margin-left: auto;
  text-align: left;
}
.next__left {
  text-align: left;
}
.next__left-arrow {
  width: max-content;
  text-align: right;
}
.next a.disabled {
  color: var(--color-bg-sector);
}
.next a.disabled svg {
  fill: var(--color-bg-sector);
}
.next a:not(.disabled):hover {
  color: var(--color-footer-title-hover);
}
.next a:not(.disabled):hover svg {
  fill: var(--color-footer-title-hover);
}

.tools__tags {
  overflow-x: auto;
  width: 100%;
  z-index: 1;
  position: relative;
  font-size: 0.75rem;
  font-family: var(--font-family-montserrat);
  font-weight: 700;
  color: var(--color-header-title);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.tools__tags::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}
.tools__tags-scroll {
  width: max-content;
}
.tools__tags a {
  background-color: var(--color);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: inline-block;
  white-space: nowrap;
}
.tools__tags a:hover {
  background-color: var(--color-header-title);
  color: var(--color);
}
.tools__group {
  z-index: 1;
  position: relative;
}
.tools__group:nth-child(odd) h2 {
  text-align: right;
}
.tools__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колонки равной ширины */
  grid-auto-rows: auto; /* автоматическая высота строк */
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .tools__list {
    gap: 1rem;
  }
}
.tools__list-title {
  display: grid;
  margin-bottom: 1rem;
  color: var(--color-action);
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  align-items: end;
}
.tools__list-title h6 {
  border-bottom: 1px solid var(--color-action);
  padding-bottom: 0.25rem;
}
.tools__list-item {
  border: 1px solid var(--color);
  border-radius: 1rem;
  padding: 1rem 2.25rem;
}
.tools__list-item:hover {
  border-color: var(--color-action);
}
.tools__list-item p {
  font-weight: 300;
  font-size: 1rem;
}
@media (max-width: 800px) {
  .tools__list-item {
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .tools__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .tools__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tools__description {
  margin-top: 6.25rem;
  max-width: 50rem;
  margin-inline: auto;
}
.tools__description h2 {
  text-align: center;
}