:root {
  --main-bg: #F0F6F6;
  --light-bg: #fff;
  --accent-color: #0b6366;
  --headeline-color: rgba(11, 99, 102, 0.8);
  --dark-text: #1c1c1c;
  --main-text-color: rgba(28, 28, 28, 0.7);
  --accent-text-color: #0b6366;
  --accent-light-text-color: rgba(11, 99, 102, 0.8);
  --light-text-color: #fff;
  --btn-lang-hover: rgba(11, 99, 102, 0.16);
  --btn-lang-active: #0b6366;
  --table-border: rgba(28, 28, 28, 0.06)
}

.header {
  width: calc(100% - 32px);
  max-width: 1618px;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: var(--main-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 24px 16px;
  border-radius: 0 0 16px 16px
}

.header:after {
  content: "";
  width: 100%;
  height: calc(100% - 20px);
  display: block;
  border-radius: 16px;
  background-color: var(--light-bg);
  box-shadow: 0 0 50px 0 rgba(11, 99, 102, .1);
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1
}

@media screen and (max-width: 768px) {
  .header {
    width: calc(100% - 16px);
    padding: 36px 8px 16px
  }
}

.header__left {
  display: flex;
  align-items: center;
  gap: 0 16px
}

@media screen and (max-width: 768px) {
  .header__left {
    gap: 0 8px
  }
}

.header__left-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0
}

@media screen and (max-width: 768px) {
  .header__left-logo {
    width: 32px;
    height: 32px
  }
}

.header__left-logo .image {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.header__left-title {
  font-weight: 600;
  font-size: 20px;
  padding-left: 8px;
  color: var(--headeline-color)
}

@media screen and (max-width: 768px) {
  .header__left-title {
    max-width: 200px;
    font-size: 14px;
    padding-left: 0
  }
}

@media screen and (max-width: 375px) {
  .header__left-title {
    display: none
  }
}

.header__right-lang-btn {
  position: relative
}

.header__right-lang-btn .current-lang {
  width: 88px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(11, 99, 102, .08);
  border: none;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-text-color);
  transition: .3s all
}

.header__right-lang-btn .current-lang svg path {
  stroke: currentColor
}

.header__right-lang-btn .current-lang:hover {
  background-color: var(--btn-lang-hover);
  color: var(--accent-text-color)
}

.header__right-lang-btn .current-lang:active {
  background-color: var(--btn-lang-active);
  color: var(--light-text-color)
}

.header__right-lang-btn .lang-list {
  max-height: 0;
  padding: 0 12px;
  overflow: hidden;
  transition: .3s opacity;
  border-radius: 8px;
  background-color: var(--light-bg);
  z-index: -1;
  opacity: 0;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  box-shadow: 0 1px 25px 0 rgba(17, 17, 17, .12)
}

.header__right-lang-btn .lang-list__item {
  margin-bottom: 4px
}

.header__right-lang-btn .lang-list__item svg {
  visibility: hidden
}

.header__right-lang-btn .lang-list__item.active svg {
  visibility: visible
}

.header__right-lang-btn .lang-list__item:last-child {
  margin-bottom: 0
}

.header__right-lang-btn .lang-list__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  color: var(--main-text-color);
  transition: .3s all;
  border-radius: 6px;
  padding: 10px 12px
}

.header__right-lang-btn .lang-list__item-link svg path {
  stroke: currentColor
}

.header__right-lang-btn .lang-list__item-link:hover {
  background-color: var(--btn-lang-hover);
  color: var(--accent-text-color)
}

.header__right-lang-btn .lang-list__item-link:active {
  background-color: var(--btn-lang-active);
  color: var(--light-text-color)
}

.header__right-lang-btn.active .lang-list {
  max-height: 200px;
  padding: 12px;
  opacity: 1;
  z-index: 10
}

.footer {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media screen and (max-width: 1024px) {
  .footer {
    flex-direction: column
  }
}

.footer__left {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-light-text-color)
}

@media screen and (max-width: 1024px) {
  .footer__right {
    order: -1;
    margin-bottom: 16px
  }
}

.footer__right-list {
  display: flex;
  align-items: center;
  gap: 10px 32px
}

@media screen and (max-width: 768px) {
  .footer__right-list {
    flex-direction: column
  }
}

.footer__right-list .item {
  position: relative
}

.footer__right-list .item:after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: var(--accent-light-text-color);
  position: absolute;
  top: 0;
  right: -16px
}

@media screen and (max-width: 768px) {
  .footer__right-list .item:after {
    display: none
  }
}

.footer__right-list .item__link {
  color: var(--accent-light-text-color);
  font-weight: 600;
  font-size: 14px;
  opacity: .7;
  transition: .3s all
}

.footer__right-list .item__link:hover {
  opacity: 1
}

.footer__right-list .item:last-child:after {
  display: none
}

.main {
  padding: 32px 0
}

@media screen and (max-width: 768px) {
  .main {
    padding: 24px 0
  }
}

.main__headline-back {
  display: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  border: none;
  align-items: center;
  justify-content: center;
  opacity: .7;
  transition: .3s all;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.main__headline-back:hover {
  opacity: 1
}

.main__headline-back img {
  display: flex
}

@media screen and (max-width: 768px) {
  .main__headline-back {
    display: block
  }
}

@media screen and (max-width: 768px) {
  .main__headline-title {
    display: block;
    padding: 0 48px
  }
}

.main__cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

@media screen and (max-width: 768px) {
  .main__cards {
    justify-content: center;
    gap: 16px
  }
}

.main__cards-item {
  width: calc((100% - 64px) / 3);
  min-width: 360px;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 50px 0 rgba(11, 99, 102, .1);
  background-color: var(--light-bg);
  cursor: pointer;
  border: 2px solid var(--light-bg)
}

@media screen and (max-width: 768px) {
  .main__cards-item {
    width: 100%;
    max-width: 420px;
    min-width: auto
  }
}

.main__cards-item.active {
  box-shadow: 0 0 50px 0 rgba(11, 99, 102, .25);
  border: 2px solid var(--accent-color)
}

.main__cards-item .icon {
  width: 160px;
  height: 160px;
  display: block;
  object-fit: contain;
  margin: 0 auto 16px
}

@media screen and (max-width: 768px) {
  .main__cards-item .icon {
    width: 120px;
    height: 120px
  }
}

.main__cards-item .title {
  font-weight: 600;
  font-size: 18px;
  color: var(--headeline-color);
  margin-bottom: 4px
}

.main__cards-item .description {
  font-weight: 500;
  font-size: 13px;
  color: var(--main-text-color)
}

.main .tab-headline {
  display: none
}

.main .tab-body {
  display: none
}

.categories__search {
  width: 100%;
  max-width: 700px;
  height: 48px;
  display: block;
  position: relative;
  margin: 0 auto 32px
}

.categories__search-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%)
}

.categories__search-input {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 15px 0 rgba(11, 99, 102, .08);
  background-color: var(--light-bg);
  padding-left: 48px;
  color: var(--accent-color)
}

.categories__search-input::placeholder {
  color: var(--accent-color);
  opacity: .5
}

.categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px
}

@media screen and (max-width: 768px) {
  .categories__list {
    gap: 8px
  }
}

.categories__list-link {
  width: calc((100% - 96px) / 4);
  border-radius: 16px;
  padding: 24px;
  background-color: var(--light-bg);
  color: var(--accent-color);
  opacity: .8;
  font-weight: 500;
  font-size: 16px
}

@media screen and (max-width: 1024px) {
  .categories__list-link {
    width: calc((100% - 64px) / 3)
  }
}

@media screen and (max-width: 768px) {
  .categories__list-link {
    width: calc((100% - 8px) / 2)
  }
}

@media screen and (max-width: 525px) {
  .categories__list-link {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    gap: 8px
  }
}

.status__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px
}

@media screen and (max-width: 768px) {
  .status__list {
    gap: 16px
  }
}

.status__list:has(:nth-child(1):last-child), .status__list:has(:nth-child(2):last-child) {
  justify-content: center
}

.status__list-link {
  width: calc((100% - 80px) / 3);
  padding: 24px;
  background-color: var(--light-bg);
  border-radius: 16px
}

@media screen and (max-width: 1024px) {
  .status__list-link {
    width: calc((100% - 40px) / 2)
  }
}

@media screen and (max-width: 768px) {
  .status__list-link {
    width: calc((100% - 16px) / 2)
  }
}

@media screen and (max-width: 525px) {
  .status__list-link {
    width: 100%
  }
}

.status__list-link .icon {
  width: 160px;
  height: 160px;
  display: block;
  object-fit: contain;
  margin: 0 auto 16px
}

@media screen and (max-width: 768px) {
  .status__list-link .icon {
    width: 90px;
    height: 90px
  }
}

.status__list-link .title {
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-text-color)
}

.status__list-link .description {
  font-weight: 500;
  font-size: 13px;
  color: var(--main-text-color)
}

.result .container__left {
  height: 100%;
  display: flex;
  flex-direction: column
}

.result .container__left .navigate__list {
  list-style: none;
  counter-reset: nav;
  padding-left: 0
}

@media screen and (max-width: 1200px) {
  .result .container__left .navigate__list {
    margin: 0
  }
}

.result .container__left .navigate__list-item, .result .container__left .navigate__headline {
  position: relative;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(11, 99, 102, .08);
  background-color: var(--light-bg);
  font-weight: 500;
  font-size: 14px;
  color: var(--headeline-color);
  cursor: pointer
}

@media screen and (max-width: 1200px) {
  .result .container__left .navigate__list-item, .result .container__left .navigate__headline {
    font-size: 12px;
    margin-bottom: 8px;
    padding: 12px
  }
}

.result .container__left .navigate__list-item.active, .result .container__left .navigate__headline.active {
  background-color: var(--accent-color);
  color: var(--light-bg)
}

.result .container__left .navigate__list-item.active:before, .result .container__left .navigate__headline.active:before {
  color: var(--light-bg)
}

.result .container__left .navigate__list-item {
  line-height: 115%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0
}

.result .container__left .navigate__list-item:before {
  counter-increment: nav;
  content: counter(nav) ".";
  font-weight: 600;
  color: var(--headeline-color);
  margin-right: 4px
}

.result .container__left .navigate__list-item:last-child {
  margin-bottom: 0
}

.result .container__left-search {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--light-bg);
  margin-bottom: 8px
}

@media screen and (max-width: 1200px) {
  .result .container__left-search {
    margin-bottom: 0;
    padding: 8px 8px 8px 8px;
    border-radius: 16px 16px 0 0
  }
}

.result .container__left-body {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--light-bg);
  margin-bottom: 8px;
  flex: 1;
  overflow: hidden;
  overflow-y: auto
}

@media screen and (max-width: 1200px) {
  .result .container__left-body {
    margin-bottom: 0;
    padding: 4px 8px 8px 8px;
    border-radius: 0
  }
}

.result .container__left-help {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--light-bg);
  margin-bottom: 8px
}

@media screen and (max-width: 1200px) {
  .result .container__left-help {
    margin-bottom: 0;
    padding: 8px;
    border-radius: 0 0 8px 8px
  }
}

.result .container__right-body .picture {
  width: 100%;
  max-width: 675px;
  margin: 0 auto 32px
}

.result .container__right-body .picture__bottom, .result .container__right-body .picture__top {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block
}

.result .container__right-body .picture__name {
  margin: 16px 0;
  text-align: center;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: var(--accent-text-color)
}

@media screen and (max-width: 1200px) {
  .result .container__right-body .picture__name {
    font-size: 32px
  }
}

@media screen and (max-width: 525px) {
  .result .container__right-body .picture__name {
    font-size: 24px
  }
}

.result .container__right-body .title {
  font-weight: 600;
  font-size: 28px;
  color: var(--accent-text-color);
  margin-bottom: 8px
}

@media screen and (max-width: 768px) {
  .result .container__right-body .title {
    font-size: 20px
  }
}

.result .container__right-body .description {
  color: var(--accent-light-text-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 32px;
  white-space: pre-wrap
}

@media screen and (max-width: 768px) {
  .result .container__right-body .description {
    font-size: 14px
  }
}

.result .container__right-body .btn {
  margin: 0 auto
}

.result .container__right-body .tab-block {
  display: none;
  margin-bottom: 32px
}

.result .container__right-body .tab-block__title {
  font-weight: 600;
  font-size: 28px;
  color: var(--accent-text-color);
  margin-bottom: 40px
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__title {
    font-size: 20px;
    margin-bottom: 24px
  }
}

.result .container__right-body .tab-block__description {
  color: var(--main-text-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
  white-space: pre-wrap
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__description {
    font-size: 14px
  }
}

.result .container__right-body .tab-block__description a {
  color: var(--accent-light-text-color)
}

.result .container__right-body .tab-block__list {
  padding: 0;
  counter-reset: nav
}

.result .container__right-body .tab-block__list-item {
  padding: 16px;
  border-radius: 16px;
  background-color: var(--light-bg);
  margin-bottom: 12px;
  color: var(--accent-light-text-color);
  font-weight: 500;
  font-size: 16px;
  /*white-space: pre-wrap*/
  white-space: normal;
}

.result .container__right-body.tab-block__list-item .name {
  white-space: pre-wrap;     /* сохраняем переносы только внутри текста */
  word-break: break-word;
}

.result .container__right-body .tab-block__list-item.number {
  display: flex;
  align-items: center
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__list-item.number {
    flex-direction: column;
    width: 100%;
    align-items: flex-start
  }
}

.result .container__right-body .tab-block__list-item.number:before {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(11, 99, 102, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: nav;
  content: counter(nav) "";
  font-weight: 600;
  color: var(--headeline-color);
  margin-right: 12px
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__list-item.number:before {
    margin: 0 auto 8px
  }
}

.result .container__right-body .tab-block__list-item.link-type {
  display: flex;
  gap: 0 8px
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__list-item.link-type {
    flex-direction: column
  }
}

.result .container__right-body .tab-block__list-item.link-type .name {
  white-space: pre-wrap
}

@media screen and (max-width: 768px) {
  .result .container__right-body .tab-block__list-item.link-type .name {
    width: 100%;
    margin-bottom: 8px
  }
}

.result .container__right-body .tab-block__list-item.link-type .link {
  width: max-content;
  max-width: 280px;
  flex-shrink: 0;
  text-align: right;
  margin-left: auto;
  color: var(--accent-light-text-color);
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: normal;
}

.result .container__right-body .tab-block__list-item.link-type .link:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  background-image: url(../img/link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 4px
}

.result .container__right-body .tab-block__table {
  margin-bottom: 24px
}

.result .container__right-body .tab-block__table.active .tab-block__table-title:after {
  transform: translateY(-50%) rotate(90deg)
}

.result .container__right-body .tab-block__table.active .tab-block__table-body {
  max-height: none
}

.result .container__right-body .tab-block__table-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-text-color);
  padding: 16px 40px 16px 16px;
  background-color: var(--light-bg);
  border-radius: 16px;
  position: relative
}

.result .container__right-body .tab-block__table-title:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%)
}

.result .container__right-body .tab-block__table-body {
  max-height: 0;
  overflow: hidden
}

.result .container__right-body .tab-block__table-body a {
  color: var(--accent-light-text-color);
  display: flex;
  align-items: center;
  margin: 12px 0
}

.result .container__right-body .tab-block__table-body a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 12px;
  flex-shrink: 0
}

.result .container__right-body .tab-block__table-body .scroll-table {
  width: 100%;
  overflow: hidden;
  overflow-x: auto
}

.result .container__right-body .tab-block__table-body table {
  border-radius: 16px;
  background-color: var(--light-bg);
  border-collapse: collapse;
  width: 100%;
  min-width: 1200px;
  line-height: 140%
}

.result .container__right-body .tab-block__table-body table th {
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: var(--dark-text);
  padding: 20px 16px;
  border: 1px solid var(--table-border);
  border-top: none;
  border-bottom: none
}

.result .container__right-body .tab-block__table-body table th:first-child {
  border-left: none
}

.result .container__right-body .tab-block__table-body table th:last-child {
  border-right: none
}

.result .container__right-body .tab-block__table-body table td {
  border: 1px solid var(--table-border);
  border-bottom: none;
  padding: 20px 16px;
  font-weight: 400;
  font-size: 14px;
  color: var(--main-text-color)
}

.result .container__right-body .tab-block__table-body table td:first-child {
  border-left: none
}

.result .container__right-body .tab-block__table-body table td:last-child {
  border-right: none
}

.result .container__right-body .tab-block__table-body table ol li {
  list-style: decimal
}

.result .search {
  width: 100%;
  max-width: 700px;
  height: 48px;
  display: block;
  position: relative;
  margin: 0 auto
}

@media screen and (max-width: 1200px) {
  .result .search {
    height: 48px
  }
}

.result .search__icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%)
}

.result .search__input {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 15px 0 rgba(11, 99, 102, .08);
  background-color: var(--light-bg);
  padding-left: 48px;
  color: var(--accent-color)
}

@media screen and (max-width: 1200px) {
  .result .search__input {
    font-size: 13px
  }
}

.result .search__input::placeholder {
  color: var(--accent-color);
  opacity: .5
}

.result .light-btn {
  display: none;
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 10px;
  right: -54px
}

.result .light-btn.active {
  transform: rotate(180deg)
}

@media screen and (max-width: 1200px) {
  .result .light-btn {
    display: flex
  }
}

.plug {
  width: calc(100vw - 40px);
  max-width: 360px;
  background-color: var(--light-bg);
  border-radius: 16px;
  padding: 24px 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.plug__logo {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  margin: 0 auto 24px
}

.plug__title {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-color)
}

html {
  text-rendering: optimizeLegibility;
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: var(--main-bg)
}

p, li, a, h1, h2, h3, h4, h5, h6 {
  line-height: 140%;
  margin: 0;
  padding: 0
}

* {
  box-sizing: border-box;
  outline: none
}

*:after, *:before {
  box-sizing: inherit;
  transition: inherit
}

a {
  text-decoration: none
}

button {
  cursor: pointer
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none
}

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

@media screen and (max-width: 768px) {
  .container {
    padding: 0 8px
  }
}

.container__left {
  width: 0;
  overflow: hidden
}

.container__right {
  min-width: 0;
  flex: 1
}

.container.sidebar {
  display: flex
}

.container.sidebar .container__left {
  width: 390px;
  height: calc(100vh - 130px);
  padding-right: 32px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
  transition: .3s all
}

@media screen and (max-width: 1200px) {
  .container.sidebar .container__left {
    width: 270px;
    height: calc(100vh - 110px);
    padding-right: 0;
    position: fixed;
    top: auto;
    bottom: 0;
    left: -270px;
    z-index: 1000;
    overflow: visible
  }

  .container.sidebar .container__left.active {
    left: 16px
  }
}

@media screen and (max-width: 768px) {
  .container.sidebar .container__left {
    height: calc(100vh - 98px)
  }
}

@media screen and (max-width: 1200px) {
  .container.sidebar .container__left.active {
    left: 8px
  }
}

.main {
  padding-top: 130px;
  min-height: calc(100dvh - 64px)
}

@media screen and (max-width: 1024px) {
  .main {
    min-height: calc(100dvh - 93px)
  }
}

@media screen and (max-width: 768px) {
  .main {
    min-height: calc(100dvh - 153px)
  }
}

@media screen and (max-width: 365px) {
  .main {
    min-height: calc(100dvh - 181px)
  }
}

.main .container {
  max-width: 1420px
}

.main .container.sidebar {
  max-width: 1648px
}

h2.headline {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: var(--headeline-color);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

@media screen and (max-width: 768px) {
  h2.headline {
    font-size: 20px;
    margin-bottom: 16px;
    position: relative
  }
}

.breadcrumbs {
  margin-bottom: 40px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none
}

.breadcrumbs span {
  display: flex;
  align-items: center;
  gap: 0 32px;
  color: var(--accent-color)
}

@media screen and (max-width: 768px) {
  .breadcrumbs span {
    gap: 0 8px
  }
}

.breadcrumbs span a {
  color: var(--accent-color);
  opacity: .7;
  font-size: 16px;
  white-space: nowrap
}

@media screen and (max-width: 768px) {
  .breadcrumbs span a {
    font-size: 12px
  }
}

.breadcrumbs span a:hover {
  opacity: 1
}

.breadcrumbs .breadcrumb_last {
  font-size: 16px;
  white-space: nowrap
}

@media screen and (max-width: 768px) {
  .breadcrumbs .breadcrumb_last {
    font-size: 12px
  }
}

.breadcrumbs::-webkit-scrollbar {
  display: none
}

.btn {
  border: none;
  background-color: rgba(0, 0, 0, 0)
}

.btn.btn-accent {
  background-color: var(--accent-color);
  opacity: .9;
  transition: .3s all
}

.btn.btn-accent:hover {
  opacity: 1
}

.btn.light-btn {
  background-color: var(--light-bg)
}

.btn.btn-icon {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 0 10px;
  padding: 8px 24px
}

@media screen and (max-width: 1200px) {
  .btn.btn-icon {
    height: auto;
    padding: 8px 16px
  }
}

.btn.btn-icon__image {
  width: 40px
}

.btn.btn-icon__name {
  font-weight: 600;
  font-size: 16px
}

.btn .btn-icon__image {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain
}

.btn .btn-icon__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--light-bg)
}

@media screen and (max-width: 1200px) {
  .btn .btn-icon__name {
    font-size: 14px
  }
}

.w100 {
  width: 100%
}

.wp-block-table thead {
  border-bottom: none !important;
}
