@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

a,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

aside,
footer,
header,
legend,
main,
nav,
section {
  display: block;
}

h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: 0 0;
  cursor: pointer;
}

.form .form__group textarea:focus,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}

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

label {
  cursor: pointer;
}

:root {
  --container-width: 1310px;
  --container-padding: 15px;
  --page-bg: #fff;
  --black-bg: #121212;
  --black-bg-opacity: rgba(12, 12, 12, 0.9);
  --header-bg: #121212;
  --footer-bg: #121212;
  --text-color: #121212;
  --info-color: #a5a5a5;
  --light-grey: #d1d0d0;
  --grey: #737373;
  --dark-grey: #3b3b3b;
  --white: #fff;
  --black: #000;
  --link-hover: #dc0000;
  --sub-btn-bg: #dc0000;
  --accent: #dc0000;
  --copyright-color: #aaa;
  --border-color: #ebebeb;
  --blue-bg: #f5f6fa;
  --green: #27ae60;
  --spelling-bg: #f5f5f4;
  --adv-bg: #f6f7f8;
  --highlighted-bg: #d1d0d0;
}

.dark-theme {
  --page-bg: #0d0d0d;
  --header-bg: #121212;
  --footer-bg: #121212;
  --text-color: #ffffff;
  --info-color: #acacac;
  --light-grey: #2e2e2e;
  --grey: #737373;
  --dark-grey: #ebebeb;
  --white: #ffffff;
  --black: #000000;
  --link-hover: #dc0000;
  --sub-btn-bg: #dc0000;
  --accent: #dc0000;
  --copyright-color: #aaa;
  --border-color: #212121;
  --blue-bg: #141414;
  --green: #1d8348;
  --spelling-bg: #121212;
  --adv-bg: #3b3b3b;
  --highlighted-bg: #b6b4b4;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--page-bg);
  font-family: 'Merriweather', Arial, Helvetica, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  height: 100%;
}

main,
ul.pagination {
  margin-top: 30px;
}

section {
  margin-bottom: 70px;
}

h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
}

.page__title,
h2,
h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.page__title,
h3 {
  font-size: 18px;
  font-weight: 400;
}

.article__social li a svg path,
.socialLink__block a .socialLink__logo svg path,
a {
  transition: all 0.3s ease-in-out;
}

.page__title,
body {
  color: var(--text-color);
}

.page__title {
  font-size: 22px;
  line-height: 140%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 44px;
}

.blue__bg {
  background-color: var(--blue-bg);
  padding: 80px 0;
}

.extra__wrap {
  display: grid;
  grid-template-columns: 1fr 375px;
  gap: 40px;
  margin-left: 165px;
}

.extra__wrap .extra__main {
  padding-right: 40px;
  border-right: 1px solid var(--border-color);
}

.extra__wrap .extra__main h1 {
  margin-bottom: 40px;
}

.extra__wrap .extra__aside .sideNews {
  padding-left: 0;
  border-left: none;
}

ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.pagination li {
  margin-right: 8px;
}

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

.dark-theme ul.pagination li a {
  color: var(--grey-dark);
  background-color: transparent;
  border: 1px solid transparent;
}

.dark-theme ul.pagination li.current a {
  background-color: var(--spelling-bg);
  color: #fff;
  border: 1px solid var(--spelling-bg);
}

ul.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: background-color 0.3s;
  border-radius: 5px;
  min-width: 36px;
  height: 36px;
  background-color: var(--white);
  border: 1px solid var(--white);
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: 'lnum';
  -moz-font-feature-settings: 'lnum';
  font-feature-settings: 'lnum';
}

ul.pagination li.current a {
  background-color: var(--black-bg);
  color: #fff;
  border: 1px solid var(--black-bg);
}

ul.pagination li a:hover:not(.active) {
  opacity: 0.6;
}

ul.pagination li.disabled a {
  color: #777;
  cursor: not-allowed;
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials a {
  display: flex;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1310px) {
  main {
    margin-top: 20px;
  }

  section {
    margin-bottom: 50px;
  }

  .extra__wrap {
    gap: 40px;
    margin-left: 0;
  }
}

@media screen and (max-width: 959px) {
  .page__title {
    font-weight: 700;
    margin-bottom: 24px;
  }

  .blue__bg {
    padding: 60px 0;
  }

  h1 {
    font-size: 26px;
    line-height: 140%;
  }

  h2 {
    font-size: 18px;
  }

  .extra__wrap {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .extra__wrap .extra__main {
    padding-right: 0;
    border-right: none;
  }

  .extra__wrap .extra__main h1 {
    margin-bottom: 40px;
  }
}

.adv__section.container {
  margin: 30px auto;
}

.adv-placeholder,
.adv-placeholder::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-placeholder {
  min-height: 120px;
  position: relative;
}

.adv-placeholder::after {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--adv-bg);
  font-size: 13px;
  color: #bdbdbd;
  border-radius: 2px;
  z-index: 0;
}

.adv-placeholder--in-page {
  min-height: 180px;
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .adv-placeholder,
  .adv-placeholder--in-page {
    min-height: 100px;
  }

  .adv__section.container {
    margin: 20px auto;
  }
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Merriweather-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Cyrillic-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/static/fonts/Latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

.hidden {
  display: none;
}

.container,
.middle-container,
.small-container {
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

.container {
  max-width: var(--container-width);
}

.middle-container,
.small-container {
  max-width: 1027px;
}

.small-container {
  max-width: 982px;
}

body,
html {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  width: 100%;
  background-color: var(--footer-bg);
  padding: 50px 0;
}

.bannerAds,
.displayBlock {
  margin: 40px 0;
  padding-bottom: 50px;
  border-bottom: 1px dashed var(--accent);
}

.bannerAds h2,
.displayBlock h2,
.prMaterials h2 {
  margin-bottom: 30px;
}

.bannerAds__wrap,
.displayBlock__wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

.bannerAds__tarifs,
.displayBlock__tarifs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.article__body figure,
.tarif__block h3 {
  margin-bottom: 20px;
}

.tarif__block .tarif__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dark-theme .tarifCard {
  box-shadow: 0 26px 7px 0 transparent, 0 17px 7px 0 rgba(220, 1, 0, 0.01),
    0 9px 6px 0 rgba(220, 1, 0, 0.01), 0 4px 4px 0 rgba(220, 1, 0, 0.02),
    0 1px 2px 0 rgba(220, 1, 0, 0.03);
}

.tarifCard {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 2px 0 rgba(220, 1, 0, 0.03),
    0 4px 4px 0 rgba(220, 1, 0, 0.02), 0 9px 6px 0 rgba(220, 1, 0, 0.01),
    0 17px 7px 0 rgba(220, 1, 0, 0.01), 0 26px 7px 0 transparent;
}

.tarifCard .tarifCard__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.tarifCard .tarifCard__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prCard .prCard__item span,
.tarifCard .tarifCard__item span {
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  color: var(--info-color);
}

.tarifCard .tarifCard__item .tarifCard__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
}

.tarifCard .tarifCard__half {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% + 10px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.tarifCard .tarifCard__half .tarifCard__item {
  border-bottom: none;
  margin-bottom: 0;
}

.tarifCard .tarifCard__half .tarifCard__item:last-child {
  border-left: 1px solid var(--border-color);
  padding-left: 10px;
  margin-left: 10px;
}

.prCard .prCard__item .prCard__text.grey,
.tarifCard .tarifCard__half .tarifCard__item .tarifCard__text {
  color: var(--grey);
}

.example__changer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.example__changer .changer__btn {
  font-size: 17px;
  font-weight: 400;
  line-height: 145%;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
}

.example__changer .changer__btn.active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.example__images {
  width: 100%;
}

.content .menu-common li:after,
.content .menu-common li:before,
.example__images .example__img {
  display: none;
}

.example__images .example__img.active {
  display: block;
}

.example__images .example__img img {
  width: 100%;
  height: auto;
}

.example__images,
.prMaterials {
  display: flex;
  flex-direction: column;
}

.prMaterials .prMaterials__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.dark-theme .prCard {
  box-shadow: 0 26px 7px 0 transparent, 0 17px 7px 0 rgba(220, 1, 0, 0.01),
    0 9px 6px 0 rgba(220, 1, 0, 0.01), 0 4px 4px 0 rgba(220, 1, 0, 0.02),
    0 1px 2px 0 rgba(220, 1, 0, 0.03);
}

.prCard {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 2px 0 rgba(220, 1, 0, 0.03),
    0 4px 4px 0 rgba(220, 1, 0, 0.02), 0 9px 6px 0 rgba(220, 1, 0, 0.01),
    0 17px 7px 0 rgba(220, 1, 0, 0.01), 0 26px 7px 0 transparent;
}

.prCard .prCard__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.prCard .prCard__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prCard .prCard__item .prCard__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
}

@media screen and (max-width: 959px) {
  .bannerAds,
  .displayBlock {
    margin: 40px 0 50px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .bannerAds__wrap,
  .displayBlock__wrap {
    grid-template-columns: 1fr;
  }

  .prMaterials .prMaterials__list {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
  }

  .prMaterials .prMaterials__list .prCard:last-child {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .prMaterials .prMaterials__list,
  .tarif__block .tarif__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feed_item .container .article__wrapper {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--accent);
}

.feed_item:last-child .container .article__wrapper {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.article__wrapper {
  display: grid;
  grid-template-columns: 1fr 375px;
  gap: 40px;
  padding-left: 115px;
}

.article__wrapper .article__aside .sideNews {
  padding-left: 0;
  border-left: none;
  position: sticky;
  top: 100px;
}

.article__blog,
.article__main {
  display: grid;
  padding-right: 40px;
  border-right: 1px solid var(--border-color);
}

.article__main {
  grid-template-columns: 20px 1fr;
  gap: 30px;
}

.article__main.rating {
  padding-right: 0;
  border-right: none;
  overflow: hidden;
}

.article__blog {
  grid-template-columns: 1fr;
}

.dark-theme .article__social li a:hover svg path {
  fill: var(--accent);
}

.article__social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 210px;
}

.article__social li a {
  display: flex;
}

.article__social li a:hover svg path {
  fill: var(--black);
}

.article__body .article__social {
  display: none;
  flex-direction: row;
  gap: 25px;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article__body .article__social li a,
.article__body .article__social li a svg {
  width: 24px;
  height: 24px;
}

.article__body .article__preview {
  color: var(--accent);
  font-size: 32px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 40px;
  font-family: 'Roboto Flex';
}

.article__body .article__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.article__body .article__info .article__info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article__body .article__info .article__info-views {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article__body .article__info .article__info-views span {
  font-size: 14px;
  font-weight: 400;
  color: var(--info-color);
  font-family: 'Roboto Flex';
}

.article__body .article__info .article__category,
.article__body .article__info .article__date {
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  font-family: 'Roboto Flex';
}

.article__body .article__info .article__date {
  color: var(--info-color);
}

.article__body .article__title {
  color: var(--text-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.article__body .article__description {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.article__body .article__description a,
.article__body .blog__description a,
.content a {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--link-hover);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px dashed var(--link-hover);
  font-family: 'Roboto Flex';
}

.article__body .article__description a:hover,
.article__body .blog__description a:hover {
  opacity: 0.6;
}

.article__body .article__description,
.article__body .blog__description {
  font-size: 17px;
  font-weight: 400;
  line-height: 145%;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.article__body .article__blogAuthor {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.article__body .article__blogAuthor picture {
  display: inline-block;
  position: relative;
  padding: 6px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.article__body .article__blogAuthor picture img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.article__body
  .article__blogAuthor
  .article__blogAuthor-info
  .article__blogAuthor-name {
  color: var(--Black, #121212);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.article__body
  .article__blogAuthor
  .article__blogAuthor-info
  .article__blogAuthor-position {
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
  line-height: 140%;
  font-family: 'Roboto Flex';
  margin-bottom: 5px;
}

.article__body
  .article__blogAuthor
  .article__blogAuthor-info
  .article__blogAuthor-position:empty {
  display: none;
}

.article__body .article__authors {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.article__body .article__authors .article__authors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.article__body
  .article__authors
  .article__authors-list:has(.authorCard:only-child) {
  grid-template-columns: 1fr;
}

.article__body .article__authors .article__authors-more {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  margin-top: 10px;
}

.article__body .article__authors .article__authors-more .more__btn {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.article__body .article__authors .article__authors-more .more__btn span {
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  color: var(--info-color);
  white-space: nowrap;
}

.article__body .article__authors .article__authors-more::after,
.article__body .article__authors .article__authors-more::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}

.article__body figure img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 4px;
}

.article__body figure figure,
.card.redactor a picture,
.content .incut article h3,
.content .incut article p,
.content .incut_fw article h3,
.content blockquote p,
.content table td p {
  margin-bottom: 0;
}

.article__body figure figcaption {
  text-align: left;
  margin-top: 10px;
  font-size: 12px;
  line-height: 140%;
  color: var(--grey);
  font-family: 'Roboto Flex';
}

.article__body figure figcaption:nth-child(3) {
  color: var(--info-color);
}

.theme__news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border-color);
  border-top: 1px dashed var(--border-color);
  margin-bottom: 20px;
}

.theme__news .themeNews {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: none;
}

.theme__news .themeNews:hover .themeNews__title {
  color: var(--accent);
}

.theme__news .themeNews:first-child {
  padding-right: 10px;
  border-right: 1px dashed var(--border-color);
}

.theme__news .themeNews:last-child {
  padding-left: 10px;
}

.theme__news .themeNews .themeNews__type {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: var(--grey);
}

.theme__news .themeNews .themeNews__title {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.article__body.metka .article__description {
  position: relative;
  padding-bottom: 45px;
  border-bottom: 2px solid var(--accent);
}

.article__body.metka .article__description:before {
  content: 'PR';
  display: inline-flex;
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto Flex';
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  background: var(--accent);
  border-radius: 50%;
  height: 18px;
  width: 18px;
}

.article__body.metka .article__description:after {
  content: 'На правах рекламы';
  display: inline-flex;
  position: absolute;
  bottom: 12px;
  left: 23px;
  color: var(--grey);
  font-family: 'Roboto Flex';
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.article__body.wtmetka .article__description {
  border-bottom: 2px solid var(--accent);
}

.article__body.help .article__description {
  border-bottom: 2px solid var(--green);
}

.article__body.redaction .article__description {
  border-bottom: 2px solid var(--black-bg);
}

.dark-theme .content .object:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect width="20" height="20" rx="10" fill="%23737373"/><path d="M14 7.80884L13.5321 7.94096C13.1097 6.50038 12.4592 5.68387 11.2382 5.68387H9.66333C9.59487 6.60822 9.56052 8.14516 9.57205 9.74162L10.6333 9.70585C11.3408 9.68183 11.6264 9.12957 11.7974 8.32506H12.1967V11.7107H11.7974C11.6262 10.8942 11.3295 10.3419 10.6218 10.3179L9.57205 10.2819C9.58334 11.4945 9.61769 12.527 9.66333 13.1393C9.7318 14.0396 9.97154 14.4357 10.5762 14.5318L11.1128 14.5919V15H6V14.5924L6.42231 14.5323C7.02718 14.4362 7.26667 14.0401 7.33513 13.1398C7.44923 11.6512 7.47205 8.56581 7.33513 6.83696C7.26667 5.94864 7.02718 5.55226 6.42231 5.45643L6 5.39585V5H13.9544L14 7.80884Z" fill="white"/></svg>');
}

.dark-theme .content .fa-external-link::before {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M432 320H400a16 16 0 0 0 -16 16V448H64V128H208a16 16 0 0 0 16-16V80a16 16 0 0 0 -16-16H48A48 48 0 0 0 0 112V464a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V336A16 16 0 0 0 432 320zM488 0h-128c-21.4 0-32.1 25.9-17 41l35.7 35.7L135 320.4a24 24 0 0 0 0 34L157.7 377a24 24 0 0 0 34 0L435.3 133.3 471 169c15 15 41 4.5 41-17V24A24 24 0 0 0 488 0z" fill="white"/></svg>')
    no-repeat center center;
}

.dark-theme .content .highlighted,
.dark-theme .content .highlighted p {
  color: #000;
}

.content {
  word-break: break-word;
}

.content .fa-external-link {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.content hr {
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  display: block;
  width: 100%;
}

.content .watches__soc {
  vertical-align: middle;
  text-align: right;
}

.content .menu-common {
  margin: 0;
  list-style-type: none;
  font-size: 0;
}

.content .menu-common li {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 0;
  padding-left: 0;
  font-family: 'Roboto Flex';
  display: inline-block;
}

.content .menu-common li:last-child:after,
.content ul li:last-child:after {
  display: none;
}

.content .is-tcell {
  display: table-cell;
}

.content .watches__soc .soc-ico:not(:last-child) {
  margin-right: 55px;
}

.content .soc-ico {
  border-radius: 50%;
  background-color: var(--accent);
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.content .soc-ico svg:not(:root) {
  overflow: hidden;
}

.content .fa-external-link::before,
.content .soc-ico > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content .soc-ico > svg {
  -ms-transform: translate(-50%, -50%);
  fill: #fff;
  width: 12px;
  height: 12px;
}

.content svg use {
  background: #00f;
  width: 12px;
  height: 12px;
  display: block;
}

.content .watches__soc .soc-ico {
  background-color: var(--accent);
  margin-right: 24px;
  cursor: pointer;
}

.content .clear {
  clear: both;
  display: none;
}

.content .soc-count {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  height: 24px;
  font-size: 14px;
  margin-left: 25px;
  color: #4a4a4a;
  text-align: center;
  font-weight: 600;
}

.content .fa-external-link::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M432 320H400a16 16 0 0 0 -16 16V448H64V128H208a16 16 0 0 0 16-16V80a16 16 0 0 0 -16-16H48A48 48 0 0 0 0 112V464a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V336A16 16 0 0 0 432 320zM488 0h-128c-21.4 0-32.1 25.9-17 41l35.7 35.7L135 320.4a24 24 0 0 0 0 34L157.7 377a24 24 0 0 0 34 0L435.3 133.3 471 169c15 15 41 4.5 41-17V24A24 24 0 0 0 488 0z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

.content .object {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-top: 3px;
  cursor: pointer;
  border-bottom: none;
}

.content .object:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect width="20" height="20" rx="10" fill="%23121212"/><path d="M14 7.80884L13.5321 7.94096C13.1097 6.50038 12.4592 5.68387 11.2382 5.68387H9.66333C9.59487 6.60822 9.56052 8.14516 9.57205 9.74162L10.6333 9.70585C11.3408 9.68183 11.6264 9.12957 11.7974 8.32506H12.1967V11.7107H11.7974C11.6262 10.8942 11.3295 10.3419 10.6218 10.3179L9.57205 10.2819C9.58334 11.4945 9.61769 12.527 9.66333 13.1393C9.7318 14.0396 9.97154 14.4357 10.5762 14.5318L11.1128 14.5919V15H6V14.5924L6.42231 14.5323C7.02718 14.4362 7.26667 14.0401 7.33513 13.1398C7.44923 11.6512 7.47205 8.56581 7.33513 6.83696C7.26667 5.94864 7.02718 5.55226 6.42231 5.45643L6 5.39585V5H13.9544L14 7.80884Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.content .object .objectBlock {
  display: none;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}

.content .object .objectBlock .objectBlock__container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 260px;
  background: var(--white);
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.content .object .objectBlock .objectBlock__container:before {
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTAgOCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik01Ljg2NjAzIDcuNUM1LjQ4MTEzIDguMTY2NjcgNC41MTg4NyA4LjE2NjY3IDQuMTMzOTcgNy41TDAuNjY5ODczIDEuNUMwLjI4NDk3MiAwLjgzMzMzNSAwLjc2NjA5OCA4Ljk0Njc2ZS0wNyAxLjUzNTkgOC4yNzM3OGUtMDdMODQuNjQ0MSAyLjIxNjk1ZS0wN0M5LjIzMzkgMS41NDM5N2UtMDcgOS43MTUwMyAwLjgzMzMzMyA5LjMzMDEzIDEuNUw1Ljg2NjAzIDcuNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  display: inline-block;
  width: 10px;
  height: 8px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.content .object .objectBlock img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
}

.content .object .objectBlock .objectBlock__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.content .object .objectBlock .objectBlock__content .objectBlock__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 130%;
  color: var(--text-color);
}

.content .object .objectBlock .objectBlock__content .objectBlock__description {
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey);
  font-family: 'Roboto Flex';
}

.content .object:hover {
  opacity: 1;
}

.content .object:hover:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect width="20" height="20" rx="10" fill="%23DC0000"/><path d="M14 7.80884L13.5321 7.94096C13.1097 6.50038 12.4592 5.68387 11.2382 5.68387H9.66333C9.59487 6.60822 9.56052 8.14516 9.57205 9.74162L10.6333 9.70585C11.3408 9.68183 11.6264 9.12957 11.7974 8.32506H12.1967V11.7107H11.7974C11.6262 10.8942 11.3295 10.3419 10.6218 10.3179L9.57205 10.2819C9.58334 11.4945 9.61769 12.527 9.66333 13.1393C9.7318 14.0396 9.97154 14.4357 10.5762 14.5318L11.1128 14.5919V15H6V14.5924L6.42231 14.5323C7.02718 14.4362 7.26667 14.0401 7.33513 13.1398C7.44923 11.6512 7.47205 8.56581 7.33513 6.83696C7.26667 5.94864 7.02718 5.55226 6.42231 5.45643L6 5.39585V5H13.9544L14 7.80884Z" fill="white"/></svg>');
}

.content .object:hover .objectBlock {
  display: block;
}

.content .frame-block {
  display: table;
  margin: 0 auto 25px;
  width: 100%;
}

.content .frame-block iframe[src*="https://www.youtube.com"],.content .youtube-block iframe
{
  max-height: 420px;
  width: 100%;
}

.card.mainCard a picture,
.content .youtube-block {
  margin-bottom: 20px;
}

.content .bgLightGrey {
  background-color: var(--light-grey);
  padding: 20px;
  margin-bottom: 20px;
  height: 720px;
  overflow: scroll;
}

.content blockquote,
.content p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  font-family: 'Roboto Flex';
}

.content p iframe,
.content table tbody tr,
.footer__wrap .footer__nav .footer__navLink a:hover::after {
  width: 100%;
}

.content .new__icon,
.content .return__icon {
  width: 24px;
  height: 24px;
}

.content .new__icon::before,
.content .return__icon::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><g clip-path="url(%23clip0_2902_40208)"><path d="M11.0124 0L12.6508 5.9575L17.478 2.10081L15.3018 7.88356L21.474 7.60081L16.3144 11L21.474 14.3992L15.3018 14.1164L17.478 19.8992L12.6508 16.0425L11.0124 22L9.37399 16.0425L4.54676 19.8992L6.72299 14.1164L0.550781 14.3992L5.71041 11L0.550781 7.60081L6.72299 7.88356L4.54676 2.10081L9.37399 5.9575L11.0124 0Z" fill="%2300ACF0"/></g><defs><clipPath id="clip0_2902_40208"><rect width="22" height="22" fill="white"/></clipPath></defs></svg>');
  background-size: contain;
  margin-right: 2px;
  margin-bottom: -7px;
}

.content .return__icon::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M9 15L3 9M9 15V9M9 15L7.5 9M9 15L6 9M3 9L9 3M3 9H6M9 3V9M9 3L6 9M9 3L7.5 9M12 21H15C16.5913 21 18.1174 20.3679 19.2426 19.2426C20.3679 18.1174 21 16.5913 21 15C21 13.4087 20.3679 11.8826 19.2426 10.7574C18.1174 9.63214 16.5913 9 15 9H9M9 9H7.5M6 9H7.5" stroke="%23C1AE2E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.content .link-icon::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  margin-bottom: -1px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M432 320H400a16 16 0 0 0 -16 16V448H64V128H208a16 16 0 0 0 16-16V80a16 16 0 0 0 -16-16H48A48 48 0 0 0 0 112V464a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V336A16 16 0 0 0 432 320zM488 0h-128c-21.4 0-32.1 25.9-17 41l35.7 35.7L135 320.4a24 24 0 0 0 0 34L157.7 377a24 24 0 0 0 34 0L435.3 133.3 471 169c15 15 41 4.5 41-17V24A24 24 0 0 0 488 0z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

.content blockquote {
  position: relative;
  font-size: 15px;
  line-height: 160%;
  padding: 0 0 15px;
  margin-left: 70px;
  border-bottom: 1px solid var(--accent);
}

.content blockquote::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='42' viewBox='0 0 50 42' fill='none'%3E%3Cpath d='M12.6374 0L17.9945 3.62927C17.0788 4.75261 15.9799 6.48084 14.6978 8.81394C13.4157 11.0606 12.3168 13.5666 11.4011 16.3317C10.4853 19.0105 10.0733 21.6028 10.1648 24.1087C10.8059 23.9359 11.3095 23.8495 11.6758 23.8495C12.1337 23.7631 12.5916 23.7199 13.0494 23.7199C15.522 23.7199 17.7198 24.4111 19.6429 25.7937C21.5659 27.0899 22.5275 29.2502 22.5275 32.2746C22.5275 34.8669 21.6117 37.1568 19.7802 39.1442C18.0403 41.0453 15.6593 41.9958 12.6374 41.9958C8.42491 42.0822 5.26557 40.8293 3.15934 38.2369C1.05311 35.5582 0 32.2746 0 28.3861C0 25.6209 0.457875 22.6829 1.37363 19.5721C2.28938 16.4613 3.663 13.2641 5.49451 9.98049C7.41758 6.61045 9.79853 3.28362 12.6374 0ZM40.1099 0L45.467 3.62927C44.5513 4.75261 43.4524 6.48084 42.1703 8.81394C40.8883 11.0606 39.7894 13.5666 38.8736 16.3317C37.9579 19.0105 37.5458 21.6028 37.6374 24.1087C38.2784 23.9359 38.7821 23.8495 39.1484 23.8495C39.6062 23.7631 40.0641 23.7199 40.522 23.7199C42.9945 23.7199 45.1923 24.4111 47.1154 25.7937C49.0385 27.0899 50 29.2502 50 32.2746C50 34.8669 49.0842 37.1568 47.2527 39.1442C45.5128 41.0453 43.1319 41.9958 40.1099 41.9958C35.8974 42.0822 32.7381 40.8293 30.6319 38.2369C28.5256 35.5582 27.4725 32.2746 27.4725 28.3861C27.4725 25.6209 27.9304 22.6829 28.8462 19.5721C29.7619 16.4613 31.1355 13.2641 32.967 9.98049C34.8901 6.61045 37.2711 3.28362 40.1099 0Z' fill='%23DC0000'/%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  left: -70px;
  width: 50px;
  height: 42px;
}

.content a:has(.fa-external-link) {
  border: 0;
  margin-left: 10px;
}

.content a:hover {
  opacity: 0.6;
}

.content .highlighted {
  color: var(--text-color);
  font-family: 'Roboto Flex';
  font-size: 17px;
  line-height: 150%;
  padding: 15px 20px;
  margin-bottom: 20px;
  background: var(--highlighted-bg);
}

.content .highlighted p:last-child {
  margin-bottom: 0;
}

.content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 20px;
}

.content h2 .link-icon {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 0;
}

.content h3 {
  font-size: 18px;
  align-items: center;
}

.content h3 .link-icon {
  font-size: 18px;
  border-bottom: 0;
}

.content h3 img {
  display: inline-block;
  vertical-align: middle;
}

.content h3,
.content h4 {
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 20px;
}

.content ol li {
  font-size: 17px;
  margin-bottom: 15px;
  padding-left: 34px;
  position: relative;
  counter-increment: item;
}

.content ol li::before {
  content: counter(item);
  display: inline-block;
  font-family: 'Roboto Flex';
  font-size: 14px;
  line-height: 20px;
  min-width: 24px;
  min-height: 24px;
  padding: 2px;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  margin-right: 5px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 2px;
}

.content em,
.content h4 {
  font-size: 17px;
}

.content ol,
.content ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.content em,
.content ol li,
.content pre,
.content ul li {
  line-height: 150%;
  color: var(--text-color);
  font-family: 'Roboto Flex';
}

.content ul li {
  position: relative;
  font-size: 17px;
  margin-bottom: 15px;
  padding-left: 30px;
}

.content ul li:after,
.content ul li:before {
  content: '';
  display: block;
  background-color: var(--accent);
  position: absolute;
}

.content ul li:before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.content ul li:after {
  width: 1px;
  height: calc(100% + 15px);
  left: 5px;
  top: 20px;
}

.content .accordion {
  height: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.content .accordion .accordion__title {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  justify-content: space-between;
  padding-right: 44px;
  color: var(--dark-grey);
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
  display: block;
}

.content .accordion .accordion__title h2,
.content .accordion .accordion__title h3,
.content .accordion .accordion__title li,
.content .accordion .accordion__title p,
.content .accordion .accordion__title strong {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
}

.content .accordion .accordion__title.active span,
.content .accordion .accordion__title:hover,
.content .accordion .accordion__title:hover h2,
.content .accordion .accordion__title:hover h3,
.content .accordion .accordion__title:hover li,
.content .accordion .accordion__title:hover p,
.content .accordion .accordion__title:hover span,
.content .accordion .accordion__title:hover strong,
.content .incut article:hover h3 a,
.content .incut_fw article:hover h3 a {
  color: var(--accent);
}

.content .accordion .accordion__title.active::after,
.content .accordion .accordion__title:hover::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0006 13.1714L16.9504 8.22168L18.3646 9.63589L12.0006 15.9999L5.63672 9.63589L7.05093 8.22168L12.0006 13.1714Z' fill='%23DC0000'/%3E%3C/svg%3E");
}

.content .accordion .accordion__title::after {
  content: '';
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0006 13.1714L16.9504 8.22168L18.3646 9.63589L12.0006 15.9999L5.63672 9.63589L7.05093 8.22168L12.0006 13.1714Z' fill='%233B3B3B'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 0;
}

.content .accordion .accordion__title.active::after {
  transform: rotate(180deg);
}

.content .accordion .accordion__block {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: none;
  padding-top: 20px;
  color: var(--dark-grey);
  font-size: 15px;
  line-height: 140%;
}

.content .accordion .accordion__block.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: scaleY(1);
}

.content pre {
  width: 100%;
  white-space: pre-wrap;
  font-size: 15px;
  margin-bottom: 20px;
}

.content .image {
  position: relative;
}

.content .image img {
  border-radius: 4px;
}

.content .image .imageAuthor,
.content .image .imageDescription {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--info-color);
  margin-top: 10px;
}

.content .image.imageleft {
  float: left;
  margin: 8px 20px 4px 0;
}

.content .image.imageleft,
.content .image.imageright {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content figure.imageleft,
.content figure.imageright {
  display: flex;
  flex-direction: column;
  float: left;
  margin: 8px 20px 4px 0;
}

.content .image.imageright,
.content figure.imageright {
  float: right;
  margin: 8px 0 4px 20px;
}

.content figure.imagecenter {
  display: flex;
  flex-direction: column;
  margin: 0 auto 30px;
}

.content div.imagecenter {
  width: 100% !important;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.content table {
  max-width: 659px !important;
  display: block;
  overflow: auto;
  margin: 0 auto 20px;
  border: 1px solid var(--border-color);
  border-collapse: collapse;
  height: auto !important;
  scroll-behavior: smooth;
}

.content table tbody {
  overflow: auto;
}

.content table tbody tr td {
  text-align: left;
}

.content table::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.content table::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.content table::-webkit-scrollbar-thumb {
  background: #888;
}

.content table::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content table th {
  font-weight: 700;
  padding: 2px;
  border: 1px solid var(--border-color);
}

.content table td {
  border: 1px solid var(--border-color);
  padding: 5px;
  word-break: normal;
}

.addedNews,
.content .incut,
.content .incut_fw {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.addedNews a,
.content .incut article,
.content .incut_fw article {
  display: grid;
  grid-template-columns: 120px 1fr;
  color: var(--text-color);
  border-bottom: none;
}

.addedNews a,
.content .incut_fw article {
  gap: 15px;
  align-items: center;
}

.content .incut_fw article a {
  border-bottom: none;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}

.content .incut article:hover a img,
.content .incut_fw article:hover a img {
  transform: scale(1.1);
}

.addedNews a picture img,
.authorCard picture img,
.content .incut_fw article a img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.content .incut_fw article h3 a {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  border-bottom: none;
  margin-bottom: 0;
}

.content .incut article {
  column-gap: 15px;
}

.content .incut article a,
.content .incut article a img {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
}

.content .incut article a {
  border-bottom: none;
}

.content .incut article a img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.content .incut article p a {
  position: relative;
  color: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100px;
}

.content .incut article p a span {
  display: flex;
  color: var(--accent);
  left: 60px;
  position: absolute;
}

.content .incut article p a::before {
  content: 'Читать';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
}

.addedNews a .addedNews__content .addedNews__title,
.content .incut article h3 a {
  font-size: 17px;
  line-height: 150%;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.content .incut article h3 a {
  font-weight: 400;
  border-bottom: none;
  margin-bottom: 0;
}

.addedNews a:hover {
  opacity: 1;
}

.addedNews a:hover .addedNews__content .addedNews__title,
.authorCard:hover .authorCard__info .authorCard__name,
.socialLink__block a:hover .socialLink__content .socialLink__title {
  color: var(--accent);
}

.addedNews a:hover picture img,
.card a:hover picture img {
  transform: scale(1.1);
}

.addedNews a picture,
.content .incut article a {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.addedNews a .addedNews__content,
.authorCard .authorCard__info {
  display: flex;
  flex-direction: column;
}

.addedNews a .addedNews__content .addedNews__title {
  font-weight: 600;
  margin-bottom: 15px;
}

.addedNews a .addedNews__content .addedNews__link {
  display: flex;
  align-items: center;
  gap: 2px;
}

.addedNews a .addedNews__content .addedNews__link span {
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  color: var(--accent);
}

.addedNews a .addedNews__content .addedNews__link::after {
  content: '';
  display: block;
  width: 18px;
  height: 19px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' viewBox='0 0 18 19' fill='none'%3E%3Cpath d='M12.1287 8.74992L8.1057 4.72692L9.16635 3.66626L15 9.49992L9.16635 15.3335L8.1057 14.2729L12.1287 10.2499H3V8.74992H12.1287Z' fill='%23DC0000'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.authorCard {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.authorCard picture {
  display: inline-block;
  position: relative;
  padding: 3px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.authorCard picture img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.authorCard .authorCard__info {
  gap: 2px;
}

.authorCard .authorCard__info .authorCard__name {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
}

.authorCard .authorCard__info .authorCard__position {
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
  line-height: 140%;
  font-family: 'Roboto Flex';
}

.authorCard .authorCard__info .authorCard__position:empty {
  display: none;
}

.article__tags {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.article__tags a,
.socialLink__block a {
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.article__tags a {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  padding: 5px 10px;
  border: 1px solid var(--grey);
}

@media all and (min-width: 959px) {
  .dark-theme .article__tags a:hover {
    background-color: var(--light-grey);
    color: var(--white);
    border-color: var(--light-grey);
  }

  .article__tags a:hover {
    background-color: var(--black-bg);
    color: var(--white);
    border-color: var(--black-bg);
  }
}

.dark-theme .socialLink__block a {
  box-shadow: 0 26px 7px 0 transparent, 0 17px 7px 0 rgba(33, 33, 33, 0.01),
    0 9px 6px 0 rgba(33, 33, 33, 0.01), 0 4px 4px 0 rgba(33, 33, 33, 0.02),
    0 1px 2px 0 rgba(33, 33, 33, 0.03);
}

.dark-theme .socialLink__block a .socialLink__logo svg path {
  fill: var(--text-color);
}

.socialLink__block a {
  display: grid;
  grid-template-columns: 1fr 60px;
  justify-content: space-between;
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  align-items: center;
}

.socialLink__block a,
.socialLink__block a:hover {
  box-shadow: 0 1px 2px 0 rgba(220, 1, 0, 0.03),
    0 4px 4px 0 rgba(220, 1, 0, 0.02), 0 9px 6px 0 rgba(220, 1, 0, 0.01),
    0 17px 7px 0 rgba(220, 1, 0, 0.01), 0 26px 7px 0 transparent;
}

.dark-theme .profilePage__social a:hover svg path,
.footer__wrap
  .footer__nav
  .footer__navItem
  .footer__navItem-title.active
  .footer__navItem-icon
  svg
  path,
.footer__wrap
  .footer__nav
  .footer__navItem
  .footer__navItem-title:hover
  .footer__navItem-icon
  svg
  path,
.headerMenu__navItem
  .headerMenu__navItem-title.active
  .headerMenu__navItem-icon
  svg
  path,
.headerMenu__navItem
  .headerMenu__navItem-title:hover
  .headerMenu__navItem-icon
  svg
  path,
.socialLink__block a:hover .socialLink__logo svg path {
  fill: var(--accent);
}

.socialLink__block a .socialLink__content {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.socialLink__block a .socialLink__content .socialLink__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.socialLink__block a .socialLink__content .socialLink__description,
.spelling__notification {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  font-family: 'Roboto Flex';
}

.spelling__notification {
  padding: 20px 25px;
  background: var(--spelling-bg);
  color: var(--text-color);
  margin-top: 30px;
}

.moreNews {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.moreNews .moreNews__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.moreNews .moreNews__title span {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: var(--text-color);
  display: inline-flex;
  white-space: nowrap;
}

.moreNews .moreNews__title:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin-left: 15px;
}

.moreNews .moreNews__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.moreNews .moreNews__list .card {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

@media screen and (max-width: 1310px) {
  .article__wrapper {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 20px;
    padding-left: 0;
  }

  .article__wrapper .article__aside .sideNews {
    padding-left: 0;
    border-left: none;
    position: sticky;
    top: 74px;
  }

  .article__main {
    gap: 15px;
  }

  .article__blog,
  .article__main {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1120px) {
  .content table {
    max-width: 492px !important;
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .spelling__notification {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .article__wrapper {
    display: grid;
  }

  .article__wrapper .article__aside {
    display: none;
  }

  .article__main,
  .article__wrapper {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .article__blog,
  .article__main {
    padding-right: 0;
    border-right: none;
  }

  .article__social {
    display: none;
  }

  .article__body {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article__body .article__social,
  .content .image.imageleft img,
  .content .image.imageright img {
    display: flex;
  }

  .article__body .article__head {
    width: 100%;
    overflow: hidden;
  }

  .article__body .article__title {
    font-size: 22px;
    line-height: 145%;
    margin-bottom: 15px;
  }

  .article__body .article__description,
  .article__body .blog__description {
    font-size: 15px;
    line-height: 140%;
  }

  .article__body .article__authors {
    margin-bottom: 15px;
    width: 100%;
    overflow: auto;
  }

  .article__body .article__authors::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    display: none;
    grid-template-columns: 110px 1fr;
  }

  .article__body .article__authors .article__authors-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .article__body
    .article__authors
    .article__authors-list
    .authorCard
    .authorCard__info
    .authorCard__name {
    white-space: nowrap;
  }

  .article__body .article__authors .article__authors-more,
  .content .object .objectBlock .objectBlock__container:before {
    display: none;
  }

  .article__body .article__blogAuthor {
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 20px;
  }

  .article__body .article__blogAuthor picture {
    padding: 4px;
    width: 50px;
    height: 50px;
  }

  .article__body .article__blogAuthor picture img {
    width: 42px;
    height: 42px;
  }

  .article__body
    .article__blogAuthor
    .article__blogAuthor-info
    .article__blogAuthor-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .article__body figure {
    margin: 0 -15px 25px;
  }

  .article__body figure img {
    border-radius: 0;
  }

  .article__body figure figcaption {
    margin: 10px 15px 0;
  }

  .theme__news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .theme__news .themeNews:first-child {
    padding-right: 0;
    border-right: none;
  }

  .theme__news .themeNews:last-child {
    padding-left: 0;
  }

  .theme__news .themeNews:nth-child(even) {
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
  }

  .content ol,
  .content p,
  .content ul {
    margin-bottom: 20px;
  }

  .content table::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .content .image.imageleft {
    float: none;
    margin: 20px auto !important;
    display: flex;
    max-width: calc(vw - 30px);
    height: auto;
    text-align: center;
    overflow: hidden;
  }

  .content .image.imageleft figcaption:last-child,
  .content .image.imageright figcaption:last-child,
  .content figure.imageleft figcaption:last-child,
  .content figure.imageright figcaption:last-child {
    margin: 10px 15px 20px;
  }

  .content .image.imageright {
    float: none;
    margin: 20px auto !important;
    display: flex;
    max-width: calc(100vw - 30px);
    height: auto;
    text-align: center;
    overflow: hidden;
  }

  .content figure.imageleft,
  .content figure.imageright {
    float: none;
    margin: 20px auto !important;
    display: contents;
    max-width: 100%;
    height: auto;
    text-align: center;
  }

  .content figure.imageleft img,
  .content figure.imageright img {
    display: flex;
  }

  .content figure.imagecenter {
    width: auto !important;
    margin: 0 -15px 25px;
  }

  .content blockquote {
    padding: 38px 0 20px;
    margin-left: 0;
    border-bottom: 1px solid var(--accent);
  }

  .content blockquote::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='25' viewBox='0 0 50 42' fill='none'%3E%3Cpath d='M12.6374 0L17.9945 3.62927C17.0788 4.75261 15.9799 6.48084 14.6978 8.81394C13.4157 11.0606 12.3168 13.5666 11.4011 16.3317C10.4853 19.0105 10.0733 21.6028 10.1648 24.1087C10.8059 23.9359 11.3095 23.8495 11.6758 23.8495C12.1337 23.7631 12.5916 23.7199 13.0494 23.7199C15.522 23.7199 17.7198 24.4111 19.6429 25.7937C21.5659 27.0899 22.5275 29.2502 22.5275 32.2746C22.5275 34.8669 21.6117 37.1568 19.7802 39.1442C18.0403 41.0453 15.6593 41.9958 12.6374 41.9958C8.42491 42.0822 5.26557 40.8293 3.15934 38.2369C1.05311 35.5582 0 32.2746 0 28.3861C0 25.6209 0.457875 22.6829 1.37363 19.5721C2.28938 16.4613 3.663 13.2641 5.49451 9.98049C7.41758 6.61045 9.79853 3.28362 12.6374 0ZM40.1099 0L45.467 3.62927C44.5513 4.75261 43.4524 6.48084 42.1703 8.81394C40.8883 11.0606 39.7894 13.5666 38.8736 16.3317C37.9579 19.0105 37.5458 21.6028 37.6374 24.1087C38.2784 23.9359 38.7821 23.8495 39.1484 23.8495C39.6062 23.7631 40.0641 23.7199 40.522 23.7199C42.9945 23.7199 45.1923 24.4111 47.1154 25.7937C49.0385 27.0899 50 29.2502 50 32.2746C50 34.8669 49.0842 37.1568 47.2527 39.1442C45.5128 41.0453 43.1319 41.9958 40.1099 41.9958C35.8974 42.0822 32.7381 40.8293 30.6319 38.2369C28.5256 35.5582 27.4725 32.2746 27.4725 28.3861C27.4725 25.6209 27.9304 22.6829 28.8462 19.5721C29.7619 16.4613 31.1355 13.2641 32.967 9.98049C34.8901 6.61045 37.2711 3.28362 40.1099 0Z' fill='%23DC0000'/%3E%3C/svg%3E");
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    display: inline-flex;
  }

  .content .highlighted {
    padding: 20px;
    margin-bottom: 20px;
  }

  .content .bgLightGrey {
    height: 320px;
  }

  .content h2,
  .moreNews .moreNews__title span {
    font-size: 18px;
  }

  .content h3 {
    font-size: 17px;
  }

  .addedNews,
  .content .incut,
  .content .incut_fw {
    padding: 15px 0;
  }

  .content .incut article h3 a,
  .content .incut_fw article h3 a {
    font-size: 16px;
  }

  .content table {
    width: calc(100vw - 40px) !important;
    min-width: 100%;
  }

  .content .incut article h3 {
    margin-bottom: 0;
  }

  .content .object .objectBlock {
    left: auto;
    transform: none;
    bottom: calc(100% + 6px);
  }

  .addedNews a {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    align-items: flex-start;
  }

  .addedNews a picture img {
    height: 80px;
  }

  .addedNews a .addedNews__content,
  .moreNews {
    display: flex;
    flex-direction: column;
  }

  .addedNews a .addedNews__content .addedNews__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .socialLink__block a {
    grid-template-columns: 1fr 40px;
    gap: 15px;
    padding: 20px;
  }

  .socialLink__block a .socialLink__content {
    max-width: 245px;
  }

  .socialLink__block a .socialLink__content .socialLink__title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .socialLink__block a .socialLink__logo svg {
    width: 50px;
    height: 50px;
  }

  .moreNews .moreNews__title:after {
    margin-left: 10px;
  }

  .moreNews .moreNews__list .card a .card__content .card__title {
    order: 1;
    margin-bottom: 10px;
  }

  .moreNews .moreNews__list .card a .card__content .card__time {
    order: 2;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 500px) {
  .content .frame-block iframe[src*="https://www.youtube.com"]
  {
    max-height: 320px;
  }

  .content .youtube-block iframe {
    max-height: 320px;
    width: 100%;
  }
}

@media screen and (max-width: 391px) {
  .content div.imageleft,
  .content div.imageright,
  .content figure.imageleft,
  .content figure.imageright {
    float: none;
    display: block;
    max-width: 280px !important;
    height: auto;
  }
}

.authorPage__wrap {
  gap: 40px;
}

.authorPage__top,
.authorPage__wrap {
  display: flex;
  flex-direction: column;
}

.authorPage__top .authors__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--info-color);
}

.authorPage__top .authors__link:hover {
  color: var(--link-hover);
}

.dark-theme
  .authorPage__head
  .authorPage__info
  .authorPage__socials
  a
  svg
  path {
  fill: #bdbdbd;
}

.blogs__link a:hover svg path,
.dark-theme
  .authorPage__head
  .authorPage__info
  .authorPage__socials
  a:hover
  svg
  path,
.section__header:hover svg path {
  fill: var(--link-hover);
}

.authorPage__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  max-width: 952px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--border-color);
}

.authorPage__head picture {
  display: inline-block;
  position: relative;
  padding: 15px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.authorPage__head picture img {
  display: block;
  width: 170px;
  height: 170px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.authorPage__head .authorPage__info {
  display: flex;
  flex-direction: column;
  max-width: 550px;
}

.authorPage__head .authorPage__info .authorPage__name {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
}

.authorPage__head .authorPage__info .authorPage__position {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  margin-bottom: 30px;
}

.authorPage__head .authorPage__info .authorPage__description {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}

.authorPage__head .authorPage__info .authorPage__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.authorPage__head .authorPage__info .authorPage__socials a {
  display: flex;
  width: 24px;
  height: 24px;
}

.authorPage__head .authorPage__info .authorPage__socials a:hover svg path,
.profilePage__social a:hover svg path {
  fill: var(--black-bg);
}

.page__placeholder {
  font-size: 17px;
  display: flex;
  text-align: center;
  margin: auto;
  font-weight: 400;
  color: var(--grey);
  line-height: 145%;
}

.page__news,
.page__news-list .card a {
  display: flex;
  flex-direction: column;
}

.page__news-list {
  display: grid;
  grid-template-columns: 0.697fr 1fr 0.697fr;
  row-gap: 30px;
  margin-bottom: 30px;
}

.page__news-list .card {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.page__news-list .card:nth-child(3n-1) a {
  padding: 0 40px;
  margin: 0 40px;
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

@media screen and (max-width: 1310px) {
  .page__news-list {
    grid-template-columns: 0.83fr 1fr 0.83fr;
  }

  .page__news-list .card:nth-child(3n-1) a {
    padding: 0 15px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 959px) {
  .authorPage__wrap {
    gap: 30px;
  }

  .authorPage__top {
    gap: 10px;
  }

  .authorPage__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding-bottom: 30px;
  }

  .authorPage__head picture {
    padding: 10px;
    width: 150px;
    height: 150px;
    margin: auto;
  }

  .authorPage__head picture img {
    width: 130px;
    height: 130px;
  }

  .authorPage__head .authorPage__info {
    max-width: 100%;
  }

  .authorPage__head .authorPage__info .authorPage__name {
    font-size: 26px;
    margin-bottom: 8px;
    text-align: center;
  }

  .authorPage__head .authorPage__info .authorPage__position {
    margin-bottom: 15px;
    text-align: center;
  }

  .authorPage__head .authorPage__info .authorPage__description {
    margin-bottom: 25px;
    text-align: center;
  }

  .authorPage__head .authorPage__info .authorPage__socials {
    margin: 0 auto;
  }

  .page__news-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 20px;
  }

  .page__news-list .card {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
  }

  .page__news-list .card:nth-child(3n-1) a {
    padding: 0;
    margin: 0;
    border-right: none;
    border-left: none;
  }
}

.authorsPage__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 982px;
  padding: 0 15px;
  margin: 0 auto;
}

.authorsNav {
  margin: 30px 0 50px;
}

.authorsNav .authorsNav__title {
  color: var(--grey);
  font-family: 'Roboto Flex';
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 15px;
}

.authorsNav .authorsNav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.authorsNav .authorsNav__list a {
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--text-color);
}

.authorsNav .authorsNav__list a:hover,
.blogs__item
  .blogs__item-content
  .blogs__item-list
  .blogs__blog
  a:hover
  .blogs__blog-title,
.blogs__link a:hover span,
.card a:hover .card__title {
  color: var(--accent);
}

.authorsPage__list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.authorsPage__block {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.authorsPage__block:last-child {
  border-bottom: none;
}

.authorsPage__block .authorsPage__alphabet {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}

.authorsPage__block .authorsPage__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.authorsPage__block .authorsPage__items .authorCard picture img {
  object-fit: scale-down;
}

@media screen and (max-width: 959px) {
  .authorsPage__list {
    margin-top: 30px;
  }

  .authorsNav {
    margin: 25px 0 40px;
  }

  .authorsNav .authorsNav__title {
    margin-bottom: 30px;
  }

  .authorsNav .authorsNav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 15px;
  }

  .authorsNav .authorsNav__list a {
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
  }

  .authorsPage__block {
    padding-bottom: 20px;
  }

  .authorsPage__block .authorsPage__alphabet {
    font-size: 18px;
  }

  .authorsPage__block .authorsPage__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.blogs__wrap {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.blogs__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.blogs__item {
  display: grid;
  grid-template-columns: 134px 1fr;
  gap: 25px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--accent);
}

.blogs__item picture {
  display: inline-block;
  position: relative;
  padding: 10px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  width: 134px;
  height: 134px;
}

.blogs__item picture img {
  display: block;
  width: 114px;
  height: 114px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.blogs__item .blogs__item-content,
.blogs__item .blogs__item-content .blogs__item-list .blogs__blog a,
.card a .card__content,
.card.wtImg a {
  display: flex;
  flex-direction: column;
}

.blogs__item .blogs__item-content .blogs__item-name {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 5px;
}

.blogs__item .blogs__item-content .blogs__item-position {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  margin-bottom: 25px;
}

.blogs__item .blogs__item-content .blogs__item-list {
  display: grid;
  grid-template-columns: calc(50% - 25px) calc(50% + 25px);
  row-gap: 20px;
  margin-bottom: 25px;
}

.blogs__item .blogs__item-content .blogs__item-list .blogs__blog {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.blogs__item
  .blogs__item-content
  .blogs__item-list
  .blogs__blog:nth-child(even)
  a {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid var(--border-color);
}

.blogs__item
  .blogs__item-content
  .blogs__item-list
  .blogs__blog:nth-last-child(-n + 2) {
  padding-bottom: 0;
  border-bottom: 0;
}

.blogs__item
  .blogs__item-content
  .blogs__item-list
  .blogs__blog
  a
  .blogs__blog-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 10px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.blogs__item
  .blogs__item-content
  .blogs__item-list
  .blogs__blog
  a
  .blogs__blog-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
}

.blogs__link a {
  display: inline-flex;
  align-items: center;
}

.blogs__link a span {
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  color: var(--info-color);
}

.blogs__link a svg {
  width: 18px;
  height: 18px;
}

.blogs__link a span,
.blogs__link a svg path {
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .blogs__wrap {
    margin-top: 30px;
  }

  .blogs__list {
    gap: 25px;
    margin-bottom: 25px;
  }

  .blogs__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 25px;
  }

  .blogs__item picture {
    padding: 8px;
    width: 100px;
    height: 100px;
    justify-content: center;
    margin: 0 auto;
  }

  .blogs__item picture img {
    width: 84px;
    height: 84px;
  }

  .blogs__item .blogs__item-content .blogs__item-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 20px;
    text-align: center;
  }

  .blogs__item .blogs__item-content .blogs__item-position {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
  }

  .blogs__item .blogs__item-content .blogs__item-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-bottom: 25px;
  }

  .blogs__item .blogs__item-content .blogs__item-list .blogs__blog {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .blogs__item
    .blogs__item-content
    .blogs__item-list
    .blogs__blog:nth-child(even)
    a {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .blogs__item
    .blogs__item-content
    .blogs__item-list
    .blogs__blog:nth-last-child(-n + 2) {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .blogs__item
    .blogs__item-content
    .blogs__item-list
    .blogs__blog
    a
    .blogs__blog-title {
    font-size: 17px;
  }

  .blogs__item
    .blogs__item-content
    .blogs__item-list
    .blogs__blog
    a
    .blogs__blog-description {
    line-height: 150%;
  }
}

.card a picture {
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}

.card a picture img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

.card a .card__time {
  font-family: 'Roboto Flex';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 5px;
  color: var(--info-color);
}

.card a .card__title {
  font-family: Merriweather;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.card.wtImg a .card__title {
  font-size: 15px;
  line-height: 140%;
}

.card.redactor a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
}

.card.redactor a picture img {
  height: 80px;
}

.blogCard a,
.card.redactor a .card__content {
  display: flex;
  flex-direction: column;
}

.card.redactor a .card__title {
  font-size: 15px;
  line-height: 140%;
}

.card.rating a picture img {
  height: 230px;
  object-fit: fill;
}

.card.mainCard a .card__content,
.card.rating a .card__content {
  text-align: center;
}

.card.mainCard a picture img {
  height: 460px;
}

.card.mainCard a .card__time {
  margin-bottom: 10px;
}

.card.mainCard a .card__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 15px;
}

.blogCard a .blogCard__title,
.card.mainCard a .card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
}

.card.last a .card__content {
  text-align: center;
}

.card.last a picture img {
  height: 222px;
}

.blogCard a {
  height: 100%;
}

.blogCard a:hover picture img {
  transform: scale(1.1);
}

.blogCard a:hover .blogCard__title {
  color: var(--accent);
}

.blogCard a .blogCard__title {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.blogCard a .blogCard__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  margin-bottom: 15px;
  font-family: 'Roboto Flex';
}

.blogCard a .blogCard__author {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.blogCard a .blogCard__author picture {
  display: table;
  position: relative;
  border: 1px solid var(--accent);
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  padding: 5px;
}

.blogCard a .blogCard__author picture img,
.videoCard img {
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blogCard a .blogCard__author picture img {
  width: 50px;
  height: 50px;
  max-width: none;
  border-radius: 50%;
}

.blogCard a .blogCard__author .blogCard__author-right .blogCard__author-name {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
}

.blogCard
  a
  .blogCard__author
  .blogCard__author-right
  .blogCard__author-position {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  font-family: 'Roboto Flex';
}

.videoCard {
  display: flex;
  cursor: pointer;
}

.videoCard img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media screen and (max-width: 1310px) {
  .card.mainCard a picture img {
    height: 400px;
  }
}

@media screen and (max-width: 959px) {
  .card.standart a {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }

  .card.standart a picture {
    margin-bottom: 0;
  }

  .card.standart a picture img {
    width: 100%;
    height: 75px;
  }

  .card.standart a .card__title {
    font-size: 15px;
  }

  .card.mainCard {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .blogCard a,
  .card.mainCard a picture img {
    height: auto;
  }

  .card.mainCard a .card__time {
    margin-bottom: 8px;
  }

  .card.mainCard a .card__title {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 10px;
  }

  .card.rating a picture img {
    height: 230px;
  }

  .card.rating a .card__title {
    font-size: 17px;
  }

  .blogCard a .blogCard__author {
    margin-top: 0;
  }
}

.categoryPage__wrap {
  display: flex;
  flex-direction: column;
}

.categoryPage__wrap .categoryPage__block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  column-gap: 50px;
  display: grid;
  grid-template-areas: 'last wtImg1 wtImg5' 'last wtImg2 wtImg6' 'last wtImg3 wtImg7' 'last wtImg4 wtImg8';
  grid-template-columns: 1fr 1fr 1fr;
}

.card a picture,
.categoryPage__wrap .categoryPage__block .card.wtImg {
  margin-bottom: 15px;
  position: relative;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:before {
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--border-color);
  z-index: -1;
}

.categoryPage__wrap .categoryPage__block .card.wtImg a {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.categoryPage__wrap .categoryPage__block .card.last {
  grid-area: last;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(2) {
  grid-area: wtImg1;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(3) {
  grid-area: wtImg2;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(4) {
  grid-area: wtImg3;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(5) {
  grid-area: wtImg4;
  margin-bottom: 0;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(5) a,
.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(9) a,
.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(9) a {
  padding-bottom: 0;
  border-bottom: none;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(5):before,
.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(9):before,
.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(5):before,
.lastNews__wrap
  .lastNews__block:nth-child(odd)
  .card.wtImg:nth-child(9):before {
  height: 100%;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(6) {
  grid-area: wtImg5;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(7) {
  grid-area: wtImg6;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(8) {
  grid-area: wtImg7;
}

.categoryPage__wrap .categoryPage__block .card.wtImg:nth-child(9) {
  grid-area: wtImg8;
  margin-bottom: 0;
}

.exchange__wrap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.exchange__wrap .exchange_sponsor {
  display: flex;
  flex-direction: column;
}

.exchange__wrap img {
  max-height: auto;
  width: 100%;
  margin-bottom: 40px;
}

.categoryPage .page__title {
  margin-bottom: 30px;
}

.page__tools {
  justify-content: space-between;
  flex-wrap: wrap;
}

.page__tools .nav__wrap,
.page__tools .sort__wrap {
  margin-bottom: 0;
}

.page__tools,
.sort__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.sort__wrap .sort__item {
  color: var(--info-color);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-family: 'Roboto Flex';
  padding-bottom: 4px;
}

.sort__wrap .sort__item:hover {
  color: var(--text-color);
}

.sort__wrap .sort__item:last-child {
  margin-right: 0;
}

.sort__wrap .sort__item.active {
  color: var(--text-color);
  border-bottom: 1px solid var(--text-color);
}

.nav__wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.nav__wrap a {
  color: var(--dark-grey);
  font-size: 17px;
  font-weight: 400;
  line-height: 145%;
  margin-right: 30px;
}

.nav__wrap a:hover {
  color: var(--accent);
}

.copyright p:last-child,
.header__wrap .header__nav li:last-child,
.nav__wrap a:last-child {
  margin-right: 0;
}

.nav__wrap a.active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

@media screen and (max-width: 959px) {
  .exchange__wrap {
    grid-template-columns: 1fr;
  }

  .categoryPage .page__title {
    margin-bottom: 24px;
  }

  .categoryPage__wrap .categoryPage__block {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
    column-gap: 0;
    grid-template-areas: 'last' 'wtImg1' 'wtImg2' 'wtImg3' 'wtImg4' 'wtImg5' 'wtImg6' 'wtImg7' 'wtImg8';
    grid-template-columns: 1fr;
  }

  .categoryPage__wrap .categoryPage__block .card.wtImg {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
  }

  .categoryPage__wrap .categoryPage__block .card.wtImg:before {
    content: none;
  }

  .categoryPage__wrap .categoryPage__block .card.wtImg a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .categoryPage__wrap .categoryPage__block .card.last {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
  }

  .categoryPage__wrap .categoryPage__block .card.last a picture img {
    height: auto;
  }
}

.contacts__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 30px;
}

.contactCard {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.contactCard .contactCard__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contactCard .contactCard__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  font-family: 'Roboto Flex';
}

.contactCard .contactCard__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.contactCard .contactCard__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Roboto Flex';
}

.contactCard .contactCard__links a,
.contactCard .contactCard__links span {
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  color: var(--info-color);
  font-family: 'Roboto Flex';
}

.contactCard .contactCard__links a:hover,
.section__header:hover h2 {
  color: var(--link-hover);
}

.contacts__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contacts__block {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--accent);
}

.contacts__block h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 30px;
}

.contacts__block-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}

.contacts__block-list .contactCard:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .contacts__title {
    font-size: 26px;
    line-height: 140%;
  }

  .contactCard {
    padding-bottom: 20px;
  }

  .contactCard .contactCard__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contactCard .contactCard__title {
    font-size: 17px;
    line-height: 140%;
  }

  .contacts__wrap {
    gap: 20px;
  }

  .contacts__block {
    padding-bottom: 20px;
  }

  .contacts__block h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contacts__block .contacts__block-list .contactCard:nth-last-child(-n + 2) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .contacts__block .contacts__block-list .contactCard:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contacts__block-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .contacts__block-list .contactCard:nth-child(even) .contactCard__content {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

.error__block {
  text-align: center;
  margin-bottom: 60px;
}

.error__block h1,
.footer__wrap .footer__nav .footer__navBlock .footer__navItem,
.footer__wrap .footer__nav .footer__navBlock .footer__navLink {
  margin-bottom: 25px;
}

.error__block span {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  margin-bottom: 50px;
  display: block;
}

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

.footer__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__wrap .footer__logo {
  display: block;
}

.footer__wrap .footer__logo a,
.header__wrap .header__nav li .freedom__banner,
.header__wrap .header__nav li .nav__image {
  display: flex;
}

.footer__wrap .footer__nav {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-gap: 20px;
}

.footer__wrap .footer__nav .footer__navBlock {
  display: table;
}

.footer__wrap .footer__nav .footer__navBlock .footer__navItem:last-child,
.footer__wrap .footer__nav .footer__navBlock .footer__navLink:last-child,
.form .form__text p:last-child {
  margin-bottom: 0;
}

.footer__wrap .footer__nav .footer__navItem,
.footer__wrap .footer__nav .footer__navLink {
  height: 100%;
}

.footer__wrap .footer__nav .footer__navLink a {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-family: 'Roboto Flex';
}

.footer__wrap .footer__info a::after,
.footer__wrap .footer__nav .footer__navItem .footer__navItem-title::after,
.footer__wrap .footer__nav .footer__navLink a::after,
.headerMenu__extra li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease-in-out;
}

.footer__wrap .footer__info a:hover,
.footer__wrap .footer__nav .footer__navItem .footer__navItem-list li a:hover,
.footer__wrap .footer__nav .footer__navItem .footer__navItem-title:hover a,
.footer__wrap .footer__nav .footer__navLink a:hover {
  color: var(--accent);
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-title {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: 'Roboto Flex';
}

.footer__wrap .footer__info a:hover::after,
.footer__wrap
  .footer__nav
  .footer__navItem
  .footer__navItem-title.active::after,
.footer__wrap .footer__nav .footer__navItem .footer__navItem-title:hover::after,
.header__wrap .header__nav li a:hover::after {
  width: 100%;
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-title a {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  display: block;
}

.footer__wrap
  .footer__nav
  .footer__navItem
  .footer__navItem-title
  .footer__navItem-icon {
  width: 20px;
  height: 20px;
  display: flex;
  transition: 0.3s ease-in-out;
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-title.active a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.footer__wrap
  .footer__nav
  .footer__navItem
  .footer__navItem-title.active
  .footer__navItem-icon {
  transform: rotate(180deg);
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-list {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 15px;
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-list li a {
  font-size: 15px;
  line-height: 140%;
  color: var(--white);
}

.footer__wrap .footer__nav .footer__navItem .footer__navItem-list.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: scaleY(1);
}

.footer__wrap .footer__info {
  justify-content: space-between;
}

.copyright p,
.footer__wrap .footer__info a {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  font-family: 'Roboto Flex';
}

.footer__wrap .footer__info a {
  color: var(--grey);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.copyright,
.footer__wrap .footer__info {
  display: flex;
  align-items: center;
}

.copyright p {
  color: var(--copyright-color);
  font-style: normal;
  margin-right: 25px;
}

@media screen and (max-width: 1310px) {
  footer {
    background-color: var(--footer-bg);
    padding: 50px 0 30px;
  }

  .footer__wrap {
    gap: 30px;
  }

  .footer__wrap .footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer__wrap .footer__nav .footer__navBlock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer__wrap .footer__nav .footer__navBlock .footer__navItem,
  .footer__wrap .footer__nav .footer__navBlock .footer__navLink {
    margin-bottom: 0;
  }

  .footer__wrap .footer__nav .footer__navLink {
    display: block;
  }

  .footer__wrap .footer__nav .footer__navLink a {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    line-height: 140%;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-title::after,
  .footer__wrap .footer__nav .footer__navLink a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease-in-out;
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-list li a:hover,
  .footer__wrap .footer__nav .footer__navItem .footer__navItem-title:hover a,
  .footer__wrap .footer__nav .footer__navLink a:hover {
    color: var(--accent);
  }

  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title.active::after,
  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title:hover::after,
  .footer__wrap .footer__nav .footer__navLink a:hover::after,
  footer {
    width: 100%;
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-title {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title.active
    .footer__navItem-icon
    svg
    path,
  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title:hover
    .footer__navItem-icon
    svg
    path {
    fill: var(--accent);
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-title a {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    line-height: 140%;
    display: block;
  }

  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title
    .footer__navItem-icon {
    width: 20px;
    height: 20px;
    display: flex;
    transition: 0.3s ease-in-out;
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-title.active a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
  }

  .footer__wrap
    .footer__nav
    .footer__navItem
    .footer__navItem-title.active
    .footer__navItem-icon {
    transform: rotate(180deg);
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-list {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 15px;
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-list li a {
    font-size: 15px;
    line-height: 140%;
    color: var(--white);
  }

  .footer__wrap .footer__nav .footer__navItem .footer__navItem-list.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scaleY(1);
  }

  .footer__wrap .footer__info {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .footer__wrap .footer__info a {
    margin-right: 50px;
    white-space: wrap;
  }

  .copyright p:last-child,
  .footer__wrap .footer__info a:last-child {
    margin-right: 0;
  }

  .copyright {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .copyright p {
    margin-right: 25px;
  }
}

.form {
  margin-bottom: 40px;
  overflow: hidden;
}

.form h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 25px;
}

.form .form__group input,
.form h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
}

.form .form__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form .form__checkbox label,
.form .form__group label {
  font-family: 'Roboto Flex';
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
}

.form .form__group input {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey);
  font-family: 'Roboto Flex';
  font-size: 14px;
}

.form .form__group input::placeholder {
  color: var(--info-color);
}

.form .form__group input:focus {
  border-bottom: 1px solid var(--text-color);
}

.form .form__group textarea {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey);
  font-family: 'Roboto Flex';
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  min-height: 70px;
  max-width: 100%;
  resize: none;
}

.form .mb-20 {
  margin-bottom: 20px;
}

.form .form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.form .form__checkbox input {
  margin: 0;
  width: 20px;
  height: 20px;
}

.form .form__text {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}

.form .form__text p {
  font-family: 'Roboto Flex';
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 15px;
}

.form .form__group.list__item {
  margin-left: 25px;
}

.form .form__standart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--black);
}

.form .form__list:last-child,
.form .form__standart:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form .form__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--black);
}

.form .form__btn {
  display: table;
  transition: all 0.3s ease-in-out;
  margin-right: auto;
}

.form .form__btn:hover {
  opacity: 0.8;
}

.form .form__btn span,
.subscription__btn a {
  color: #fff;
  font-family: 'Roboto Flex';
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: inline-flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--Accent, #dc0000);
}

.formNotification {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--black-bg-opacity);
  display: none;
  flex-direction: column;
}

.formNotification__block {
  position: relative;
  margin: auto;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  width: 680px;
  padding: 45px;
  background-color: var(--white);
  border-radius: 10px;
}

.formNotification__block .formNotification__title,
.formNotification__block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.formNotification__block p {
  font-size: 17px;
  font-family: 'Roboto Flex';
}

.formNotification__block p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.formNotification__block .formNotification__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.formNotification__block .formNotification__list a {
  color: var(--info-color);
  font-family: 'Roboto Flex';
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
}

.formNotification__block .formNotification__list a:hover,
.header__wrap .header__nav li a:hover {
  color: var(--accent);
}

.formNotification__close {
  position: absolute;
  top: -25px;
  right: -25px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .formNotification__block {
    width: 340px;
    padding: 10px;
  }
}

@media screen and (max-width: 360px) {
  .formNotification__block {
    width: 280px;
  }
}

header {
  background-color: var(--header-bg);
  padding: 23px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: top 0.5s ease-out;
}

.header__wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__wrap .header__logo {
  margin-right: 45px;
}

.header__wrap .header__logo .header__logo-desc {
  display: flex;
  width: 138px;
  height: 35px;
}

.freedom__banner::after,
.header__wrap .header__logo .header__logo-mob,
.header__wrap .header__tools .theme__changer #darkIcon,
.header__wrap .header__tools .theme__changer.dark #lightIcon,
.nav__image::after {
  display: none;
}

.header__wrap .subscription__btn {
  margin: 0 22px 0 auto;
}

.header__wrap .header__nav {
  margin-right: 15px;
}

.header__wrap .header__nav li {
  margin-right: 24px;
}

.header__wrap .header__nav li a {
  display: inline-flex;
  align-items: center;
  color: var(--White, #fff);
  font-family: 'Roboto Flex';
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  position: relative;
  transition: all 0.3s ease-in-out;
  gap: 5px;
}

.header__wrap .header__nav li a img {
  height: 18px;
  object-fit: scale-down;
}

.header__wrap .header__nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease-in-out;
}

.header__wrap .header__nav,
.header__wrap .header__tools {
  display: flex;
  align-items: center;
}

.header__wrap .header__tools .theme__changer {
  width: 60px;
  height: 32px;
  background: #3b3b3b;
  border-radius: 500px;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}

.header__wrap .header__tools .theme__changer .theme__icon {
  position: absolute;
  top: 4px;
  left: 6px;
  transition: left 0.3s ease;
}

.header__wrap .header__tools .theme__changer.dark .theme__icon {
  left: 30px;
}

.header__wrap .header__tools .theme__changer.dark #darkIcon {
  display: block;
}

.header__wrap .header__tools .header__search {
  margin-right: 20px;
  display: flex;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.header__wrap .header__tools .header__menu {
  display: flex;
  cursor: pointer;
  align-items: center;
}

.header__wrap .header__tools .header__menu .header__menu-open {
  display: flex;
  width: 24px;
  height: 24px;
}

.header__wrap .header__tools .header__menu .header__menu-close {
  display: none;
  width: 24px;
  height: 24px;
}

.freedom__banner,
.nav__image {
  background-size: 120%;
  width: 128px;
  height: 34px;
  position: relative;
}

.subscription__btn {
  display: block;
  transition: all 0.3s ease-in-out;
}

.subscription__btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1310px) {
  .header__wrap .header__logo {
    margin-right: 30px;
  }

  .header__wrap .header__logo .header__logo-desc {
    display: none;
  }

  .header__wrap .header__logo .header__logo-mob {
    display: flex;
    height: 25px;
    width: 99px;
  }

  .header__wrap .header__nav li {
    margin-right: 15px;
  }

  .header__wrap .header__nav li .freedom__banner,
  .header__wrap .header__nav li .nav__image {
    width: 88px;
    height: 25px;
  }

  .header__wrap .header__nav li a {
    font-size: 15px;
  }

  .subscription__btn {
    display: block;
  }

  .subscription__btn a {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 1100px) {
  .header__wrap .header__logo {
    margin-right: 30px;
  }

  .header__wrap .header__logo .header__logo-desc {
    display: none;
  }

  .header__wrap .header__logo .header__logo-mob {
    display: flex;
    height: 25px;
    width: 99px;
  }

  .header__wrap .header__nav li {
    margin-right: 12px;
  }

  .header__wrap .header__nav li .freedom__banner,
  .header__wrap .header__nav li .nav__image {
    width: 88px;
    height: 25px;
  }

  .header__wrap .header__nav li a {
    font-size: 14px;
  }

  .subscription__btn {
    display: block;
  }

  .subscription__btn a {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 959px) {
  header {
    padding: 12px 0;
    position: sticky;
    top: 0;
  }

  .header__wrap {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .header__wrap .header__logo {
    margin-right: 0;
    order: 2;
  }

  .header__wrap nav {
    display: none;
  }

  .header__wrap .subscription__btn {
    order: 1;
    margin: 0;
  }

  .header__wrap .header__tools {
    margin-left: 5px;
    order: 3;
  }
}

.mainNews__wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
}

.sideNews {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  border-left: 1px solid var(--border-color);
}

.sideNews__choices {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
}

.sideNews__choices .choice {
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  padding-bottom: 8px;
  cursor: pointer;
}

.sideNews__choices .choice.active {
  color: var(--text-color);
  position: relative;
}

.sideNews__choices .choice.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
}

.sideNews__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sideNews__list.hidden {
  display: none;
}

.sideNews__list .card {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.mainNews__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  grid-column-start: 1;
  grid-column-end: 3;
}

.mainNews__list .card {
  flex: 1;
  padding-right: 40px;
  padding-left: 40px;
  border-right: 1px solid var(--border-color);
}

.mainNews__list .card:last-child {
  padding-right: 0;
  border-right: 0;
}

.mainNews__list .card:first-child {
  padding-left: 0;
}

.lastNews__wrap {
  display: flex;
  flex-direction: column;
}

.lastNews__wrap .lastNews__block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  display: grid;
  column-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
}

.lastNews__wrap .lastNews__block:nth-child(odd) {
  display: grid;
  grid-template-areas: 'last1 wtImg1 wtImg5' 'last1 wtImg2 wtImg6' 'last1 wtImg3 wtImg7' 'last1 wtImg4 last2';
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(2) {
  grid-area: wtImg1;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(3) {
  grid-area: wtImg2;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(4) {
  grid-area: wtImg3;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(5) {
  grid-area: wtImg4;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(6) {
  grid-area: wtImg5;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(7) {
  grid-area: wtImg6;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(8) {
  grid-area: wtImg7;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(9) {
  grid-area: wtImg8;
  margin-bottom: 0;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child {
  position: relative;
  grid-area: last2;
  margin-bottom: 15px;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child:before {
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--border-color);
  z-index: -1;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child a {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.lastNews__wrap
  .lastNews__block:nth-child(odd)
  .card.last:last-child
  a
  picture {
  display: none;
}

.lastNews__wrap
  .lastNews__block:nth-child(odd)
  .card.last:last-child
  a
  .card__content
  .card__time {
  text-align: left;
}

.lastNews__wrap
  .lastNews__block:nth-child(odd)
  .card.last:last-child
  a
  .card__content
  .card__title {
  font-size: 15px;
  line-height: 140%;
  text-align: left;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.last:first-child {
  grid-area: last1;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg,
.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg {
  margin-bottom: 15px;
  position: relative;
}

.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:before {
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--border-color);
  z-index: -1;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg a,
.lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg a {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.lastNews__wrap .lastNews__block:nth-child(even) {
  display: grid;
  grid-template-areas: 'last1 wtImg4 last2' 'wtImg1 wtImg5 last2' 'wtImg2 wtImg6 last2' 'wtImg3 wtImg7 last2';
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(2) {
  grid-area: wtImg1;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(3) {
  grid-area: wtImg2;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(4) {
  grid-area: wtImg3;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(5) {
  grid-area: wtImg4;
}

.lastNews__wrap
  .lastNews__block:nth-child(even)
  .card.wtImg:nth-child(5):before {
  height: 100%;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(6) {
  grid-area: wtImg5;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(7) {
  grid-area: wtImg6;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(8) {
  grid-area: wtImg7;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.last:first-child {
  position: relative;
  grid-area: last1;
  margin-bottom: 15px;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.last:first-child:before {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--border-color);
  z-index: -1;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.last:first-child a {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.lastNews__wrap
  .lastNews__block:nth-child(even)
  .card.last:first-child
  a
  picture {
  display: none;
}

.lastNews__wrap
  .lastNews__block:nth-child(even)
  .card.last:first-child
  a
  .card__content
  .card__time {
  text-align: left;
}

.lastNews__wrap
  .lastNews__block:nth-child(even)
  .card.last:first-child
  a
  .card__content
  .card__title {
  font-size: 15px;
  line-height: 140%;
  text-align: left;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.last:last-child {
  grid-area: last2;
}

.lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:before {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: calc(100% + 15px);
  background-color: var(--border-color);
  z-index: -1;
}

.section__header {
  padding-bottom: 10px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__header:hover {
  border-bottom: 1px solid var(--link-hover);
}

.section__header h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
}

.section__header h2,
.section__header svg path {
  transition: 0.3s ease-in-out;
}

.blogNews {
  background: var(--blue-bg);
  padding: 70px 0;
}

.blogNews__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.blogNews__wrap .blogCard {
  flex: 1;
  padding-right: 25px;
  padding-left: 25px;
  border-right: 1px solid var(--border-color);
}

.blogNews__wrap .blogCard:last-child {
  padding-right: 0;
  border-right: 0;
}

.blogNews__wrap .blogCard:first-child {
  padding-left: 0;
}

.forbesVideo__wrap .videoCard {
  position: relative;
  max-height: 250px;
}

.forbesVideo__wrap .videoCard::before {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="76" height="76" rx="38" stroke="white" stroke-width="4"/><path d="M58.44 41.0404L31.9434 58.7046C31.369 59.0876 30.5929 58.9324 30.2099 58.3581C30.0731 58.1526 30 57.9114 30 57.6646V22.3359C30 21.6456 30.5597 21.0859 31.25 21.0859C31.4968 21.0859 31.7381 21.159 31.9434 21.2959L58.44 38.9601C59.0142 39.3431 59.1695 40.1194 58.7865 40.6936C58.695 40.8309 58.5772 40.9489 58.44 41.0404Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.forbesVideo__wrap .videoCard img {
  height: 232px;
}

.subscriptionSection {
  margin: 120px 0;
}

.dark-theme .subscription__wrap {
  box-shadow: 0 41px 12px 0 transparent, 0 26px 11px 0 rgba(33, 33, 33, 0.01),
    0 15px 9px 0 rgba(33, 33, 33, 0.05), 0 7px 7px 0 rgba(33, 33, 33, 0.09),
    0 2px 4px 0 rgba(33, 33, 33, 0.1);
}

.subscription__wrap {
  margin: 50px 0;
  border-radius: 10px;
  background: var(--black-bg);
  box-shadow: 0 2px 4px 0 rgba(196, 196, 196, 0.1),
    0 7px 7px 0 rgba(196, 196, 196, 0.09),
    0 15px 9px 0 rgba(196, 196, 196, 0.05),
    0 26px 11px 0 rgba(196, 196, 196, 0.01), 0 41px 12px 0 transparent;
  backdrop-filter: blur(100px);
  display: flex;
  position: relative;
  height: 200px;
}

.subscription__wrap .subscription__img {
  display: flex;
  height: 300px;
  margin-top: -50px;
  margin-left: 70px;
}

.subscription__wrap .subscription__img img {
  width: 235px;
  height: 300px;
  object-fit: cover;
}

.subscription__wrap .subscription__content {
  display: flex;
  flex-direction: column;
  margin: auto 0 auto 50px;
}

.subscription__wrap .subscription__content .subscription__title {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.22px;
  margin-bottom: 12px;
}

.subscription__wrap .subscription__content .subscription__desc {
  color: var(--grey);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

@media screen and (max-width: 1310px) {
  .mainNews__wrap {
    grid-template-columns: 1fr 400px;
    gap: 20px;
  }

  .sideNews {
    padding-left: 20px;
  }

  .mainNews__list .card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .forbesVideo__wrap {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 959px) {
  .mainNews__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mainNews__wrap .card.mainCard {
    order: 1;
  }

  .sideNews {
    padding-left: 0;
    border-left: 0;
    order: 3;
  }

  .sideNews__choices {
    gap: 30px;
    margin-bottom: 20px;
  }

  .sideNews__choices .choice {
    font-size: 20px;
  }

  .sideNews__list {
    gap: 15px;
  }

  .sideNews__list .card {
    padding-bottom: 12px;
  }

  .mainNews__list {
    display: flex;
    flex-direction: column;
    border-top: 0;
    padding-top: 0;
    grid-column-start: 1;
    grid-column-end: 2;
    order: 2;
  }

  .mainNews__list .card {
    flex: 1;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .mainNews__list .card:last-child {
    margin-bottom: 0;
  }

  .lastNews__wrap .lastNews__block {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
    column-gap: 0;
    grid-template-columns: 1fr;
  }

  .lastNews__wrap .lastNews__block .card.wtImg {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
  }

  .lastNews__wrap .lastNews__block .card.wtImg:before {
    content: none;
  }

  .lastNews__wrap .lastNews__block .card.last {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
  }

  .lastNews__wrap .lastNews__block .card.last a picture img {
    height: auto;
  }

  .lastNews__wrap .lastNews__block:nth-child(even),
  .lastNews__wrap .lastNews__block:nth-child(odd) {
    display: grid;
    grid-template-areas: 'last1' 'wtImg1' 'wtImg2' 'wtImg3' 'wtImg4' 'wtImg5' 'wtImg6' 'wtImg7' 'last2';
  }

  .lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child {
    border: 0;
    padding-bottom: 0;
    position: relative;
    grid-area: last2;
    margin-bottom: 0;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(odd)
    .card.last:last-child
    a
    picture,
  .lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child:before {
    display: none;
  }

  .lastNews__wrap .lastNews__block:nth-child(odd) .card.last:last-child a {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
  }

  .lastNews__wrap
    .lastNews__block:nth-child(odd)
    .card.last:last-child
    a
    .card__content
    .card__time {
    text-align: left;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(odd)
    .card.last:last-child
    a
    .card__content
    .card__title {
    font-size: 15px;
    line-height: 140%;
    text-align: left;
  }

  .lastNews__wrap .lastNews__block:nth-child(odd) .card.last:first-child {
    grid-area: last1;
  }

  .lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:nth-child(5) {
    margin-bottom: 15px;
  }

  .lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg {
    margin-bottom: 15px;
    position: relative;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:before,
  .lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg:before {
    content: none;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg a,
  .lastNews__wrap .lastNews__block:nth-child(odd) .card.wtImg a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.last:first-child {
    margin-bottom: 15px;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:first-child:before {
    display: none;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.last:first-child a {
    padding-bottom: 0;
    border-bottom: none;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:first-child
    a
    picture {
    display: block;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:first-child
    a
    .card__content
    .card__time {
    text-align: center;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:first-child
    a
    .card__content
    .card__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.last:last-child {
    grid-area: last2;
    padding-bottom: 0;
    border: 0;
    margin-bottom: 0;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.last:last-child a {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:last-child
    a
    picture {
    display: none;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:last-child
    a
    .card__content
    .card__time {
    text-align: left;
  }

  .lastNews__wrap
    .lastNews__block:nth-child(even)
    .card.last:last-child
    a
    .card__content
    .card__title {
    font-size: 15px;
    line-height: 140%;
    text-align: left;
  }

  .lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg,
  .lastNews__wrap .lastNews__block:nth-child(even) .card.wtImg:nth-child(5) {
    margin-bottom: 15px;
  }

  .blogNews {
    background: var(--blue-bg);
    padding: 30px 0;
  }

  .blogNews__wrap {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: left;
  }

  .blogNews__wrap .blogCard {
    flex: 1;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
  }

  .blogNews__wrap .blogCard:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }

  .section__header {
    padding-bottom: 5px;
    margin-bottom: 25px;
  }

  .subscriptionSection,
  .subscription__wrap {
    margin: 170px 0 50px;
    background: var(--black-bg);
  }

  .subscription__wrap {
    margin: 100px 0 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .subscription__wrap .subscription__img {
    height: 400px;
    margin: -100px auto 30px;
  }

  .subscription__wrap .subscription__img img {
    width: 315px;
    height: 400px;
    object-fit: cover;
  }

  .subscription__wrap .subscription__content {
    max-width: 315px;
    text-align: center;
    margin: 0 auto 40px;
  }

  .subscription__wrap .subscription__content .subscription__title {
    font-size: 20px;
  }

  .subscription__wrap .subscription__content .subscription__desc {
    font-size: 16px;
  }
}

.magazine__wrap {
  display: grid;
  grid-template-columns: 1fr 350px;
  column-gap: 50px;
  row-gap: 30px;
}

.magazine__body .magazine__list {
  display: grid;
  grid-template-columns: calc(50% - 40px) calc(50% + 40px);
  padding: 15px 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 30px;
}

.magazine__body .magazine__list .magazineCard {
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 10px;
  align-items: center;
}

.magazine__body .magazine__list .magazineCard:last-child {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--border-color);
}

.magazine__body
  .magazine__list
  .magazineCard:hover
  .magazineCard__content
  .magazineCard__title {
  color: var(--link-hover);
}

.magazine__body .magazine__list .magazineCard img,
.magazine__img img {
  width: 100%;
  height: 69px;
  object-fit: cover;
  border-radius: 2px;
}

.magazine__body
  .magazine__list
  .magazineCard
  .magazineCard__content
  .magazineCard__type {
  color: var(--grey);
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 5px;
}

.magazine__body
  .magazine__list
  .magazineCard
  .magazineCard__content
  .magazineCard__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
}

.magazine__body .content h2,
.magazine__body .content h3,
.magazine__body .content p {
  margin-bottom: 10px;
}

.magazine__img {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
}

.magazine__img img {
  height: auto;
  border-radius: 5px;
}

@media screen and (max-width: 959px) {
  .magazine__wrap {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .magazine__body .magazine__list {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    gap: 15px;
  }

  .magazine__body .magazine__list .magazineCard:last-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .magazine__body .magazine__list .magazineCard:first-child {
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
  }

  .magazine__img {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    width: 40%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .magazine__img {
    width: 70%;
  }
}

.headerMenu {
  background: var(--black-bg);
  height: 100%;
  width: 290px;
  position: fixed;
  top: 83px;
  right: -290px;
  max-height: calc(100vh - 83px);
  overflow: auto;
  z-index: 1000;
  transition: all 0.5s ease-out;
}

.headerMenu::-webkit-scrollbar-track {
  border-radius: 50px;
}

.headerMenu::-webkit-scrollbar {
  width: 8px;
}

.headerMenu::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--dark-grey);
}

.headerMenu__block {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.headerMenu__block .socials {
  gap: 30px;
  margin-bottom: 50px;
}

.headerMenu__nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.headerMenu__nav .headerMenu__nav-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 15px;
  color: var(--grey);
}

.headerMenu__extra,
.headerMenu__nav .headerMenu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.headerMenu__extra {
  gap: 15px;
}

.headerMenu__extra li a {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  position: relative;
  font-family: 'Roboto Flex';
}

.headerMenu__extra li a:hover,
.headerMenu__navItem .headerMenu__navItem-list li a:hover,
.headerMenu__navItem .headerMenu__navItem-title:hover a {
  color: var(--accent);
}

.headerMenu__extra li a:hover::after,
.headerMenu__navItem .headerMenu__navItem-title.active::after,
.headerMenu__navItem .headerMenu__navItem-title:hover::after {
  width: 100%;
}

.headerMenu__navItem .headerMenu__navItem-title {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.headerMenu__navItem .headerMenu__navItem-title::after,
.headerMenu__navLink a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease-in-out;
}

.headerMenu__navItem .headerMenu__navItem-title a {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  display: block;
  font-family: 'Roboto Flex';
}

.headerMenu__navItem .headerMenu__navItem-title .headerMenu__navItem-icon {
  width: 20px;
  height: 20px;
  display: flex;
  transition: 0.3s ease-in-out;
}

.headerMenu__navItem .headerMenu__navItem-title.active a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.dark-theme .subscribeCard .subscribeCard__payment #dropdownIcon.rotate,
.headerMenu__navItem
  .headerMenu__navItem-title.active
  .headerMenu__navItem-icon {
  transform: rotate(180deg);
}

.headerMenu__navItem .headerMenu__navItem-list {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 15px;
}

.headerMenu__navItem .headerMenu__navItem-list li a,
.headerMenu__navLink a {
  font-size: 15px;
  line-height: 140%;
  color: var(--white);
  font-family: 'Roboto Flex';
}

.headerMenu__navItem .headerMenu__navItem-list.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: scaleY(1);
}

.headerMenu__navLink {
  display: block;
}

.headerMenu__navLink .freedom__banner,
.headerMenu__navLink .nav__image {
  margin-left: -15px;
}

.headerMenu__navLink a {
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.headerMenu__navLink a:hover,
.profilePage__main
  .profilePage__ratings
  .profilePage__ratings-list
  .rating__item
  .rating__name:hover {
  color: var(--accent);
}

.headerMenu__navLink a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1310px) {
  .headerMenu {
    top: 54px;
    max-height: calc(100vh - 54px);
  }
}

@media screen and (max-width: 959px) {
  .headerMenu {
    background: var(--black-bg);
    height: 100vh;
    width: 100vw;
    right: -110vw;
    max-height: 100%;
    border-top: 1px solid var(--border-color);
  }

  .headerMenu__block {
    padding: 30px 30px 180px;
  }
}

.profilePage__wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  column-gap: 40px;
}

.profilePage__wrap h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 25px;
}

.profilePage__aside {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-row-start: 1;
  grid-row-end: 3;
  gap: 20px;
}

.profilePage__social {
  gap: 15px;
}

.profilePage__social a {
  width: 24px;
  height: 24px;
  display: flex;
}

.profilePage__info,
.profilePage__info .profilePage__info-list,
.profilePage__social {
  display: flex;
  flex-direction: column;
}

.profilePage__info picture {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.profilePage__info picture img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.profilePage__info .profilePage__info-list .profilePage__info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 10px;
}

.dark-theme
  .subscribeCard
  .subscribeCard__payment
  .dropdown__menu
  li:last-child,
.profilePage__info .profilePage__info-list .profilePage__info-item:last-child {
  margin-bottom: 0;
}

.profilePage__info .profilePage__info-list .profilePage__info-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 145%;
  color: var(--text-color);
  display: inline-block;
}

.profilePage__info
  .profilePage__info-list
  .profilePage__info-item
  span:first-child {
  color: var(--info-color);
}

.profilePage__main {
  max-width: 625px;
}

.profilePage__main .profilePage__ratings .profilePage__ratings-title {
  font-size: 17px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
  margin-bottom: 16px;
  text-align: center;
  display: none;
}

.profilePage__main .profilePage__ratings .profilePage__ratings-list {
  display: grid;
  grid-template-columns: calc(50% - 40px) calc(50% + 40px);
  padding: 20px 0;
  border-bottom: 1px dashed var(--accent);
  border-top: 1px dashed var(--accent);
  row-gap: 20px;
  margin-bottom: 25px;
}

.profilePage__main
  .profilePage__ratings
  .profilePage__ratings-list
  .rating__item {
  display: flex;
  flex-direction: column;
}

.profilePage__main
  .profilePage__ratings
  .profilePage__ratings-list
  .rating__item:nth-child(even) {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--border-color);
}

.profilePage__main
  .profilePage__ratings
  .profilePage__ratings-list
  .rating__item
  .rating__position {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
  margin-bottom: 8px;
}

.profilePage__main
  .profilePage__ratings
  .profilePage__ratings-list
  .rating__item
  .rating__name {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  transition: all 0.3s ease;
}

@media screen and (max-width: 959px) {
  .profilePage__wrap {
    display: flex;
    flex-direction: column;
    column-gap: 0;
    position: relative;
    padding-top: 220px;
  }

  .profilePage__wrap h1 {
    font-size: 26px;
    text-align: center;
    order: 1;
    margin-bottom: 20px;
  }

  .profilePage__aside {
    order: 2;
    grid-template-columns: 1fr;
    grid-row-start: 1;
    grid-row-end: 2;
    margin-bottom: 20px;
  }

  .profilePage__aside .profilePage__social {
    display: none;
  }

  .profilePage__info picture {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .profilePage__info picture img {
    width: 200px;
    height: 200px;
    object-fit: scale-down;
    border-radius: 4px;
  }

  .profilePage__info .profilePage__info-list {
    display: flex;
    flex-direction: column;
  }

  .profilePage__info .profilePage__info-list .profilePage__info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 10px;
  }

  .profilePage__info
    .profilePage__info-list
    .profilePage__info-item:last-child {
    margin-bottom: 0;
  }

  .profilePage__info .profilePage__info-list .profilePage__info-item span {
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    color: var(--text-color);
    display: inline-block;
  }

  .profilePage__info
    .profilePage__info-list
    .profilePage__info-item
    span:first-child {
    color: var(--info-color);
  }

  .profilePage__main {
    max-width: 100%;
    order: 3;
  }

  .profilePage__main .profilePage__ratings .profilePage__ratings-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 140%;
    color: var(--text-color);
    margin-bottom: 16px;
    justify-content: center;
    display: flex;
  }

  .profilePage__main .profilePage__ratings .profilePage__ratings-list {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px 0;
    row-gap: 8px;
    margin-bottom: 30px;
  }

  .profilePage__main
    .profilePage__ratings
    .profilePage__ratings-list
    .rating__item {
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-color);
  }

  .profilePage__main
    .profilePage__ratings
    .profilePage__ratings-list
    .rating__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .profilePage__main
    .profilePage__ratings
    .profilePage__ratings-list
    .rating__item:nth-child(even) {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .profilePage__main
    .profilePage__ratings
    .profilePage__ratings-list
    .rating__item
    .rating__position {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 8px;
  }

  .profilePage__main
    .profilePage__ratings
    .profilePage__ratings-list
    .rating__item
    .rating__name {
    font-size: 14px;
    line-height: 145%;
  }
}

.rating__table {
  margin-bottom: 40px;
  max-width: 947px;
  overflow: auto;
}

.rating__table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.rating__table table tbody tr td,
.rating__table table thead tr th {
  border-bottom: 1px solid var(--border-color);
  line-height: 130%;
  text-align: left;
}

.rating__table table thead tr th {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  padding: 0 15px 10px 0;
  margin-bottom: 10px;
}

.rating__table table tbody tr td {
  padding: 10px 15px 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.rating__table table tbody tr td .td__head {
  font-size: 11px;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey);
  margin-bottom: 2px;
}

.rating__table table tbody tr td a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.rating__table table tbody tr td a:has(img) {
  grid-template-columns: 50px 1fr;
}

.rating__table table tbody tr td a:hover span {
  color: var(--accent);
  text-decoration: underline;
}

.rating__table table tbody tr td a img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: scale-down;
}

.rating__table table tbody tr td a span {
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  color: var(--text-color);
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}

.rating__table::-webkit-scrollbar-track {
  border-radius: 50px;
}

.rating__table::-webkit-scrollbar {
  width: 8px;
}

.rating__table::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--dark-grey);
}

@media screen and (max-width: 959px) {
  .rating__table {
    margin-bottom: 40px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    max-width: 100%;
  }

  .rating__table table thead {
    display: none;
  }

  .rating__table table tbody tr {
    display: grid;
    padding: 0 0 15px 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    position: relative;
  }

  .rating__table table tbody tr td {
    padding: 0 0 8px;
    margin-bottom: 8px;
    border-bottom: none;
    position: relative;
  }

  .rating__table table tbody tr td::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--border-color);
  }

  .rating__table table tbody tr td a img {
    position: absolute;
    left: -62px;
    top: 0;
    margin-right: 0;
    border-radius: 6px;
    border: 1px solid var(--border-color);
  }

  .rating__table table tbody tr:has(td a img) {
    padding: 0 0 15px 92px;
  }

  .rating__table table tbody tr td:has(a)::after {
    display: none;
  }

  .rating__table table tbody tr td:first-child {
    position: absolute;
    top: 3px;
    left: 0;
    padding: 0;
    margin-bottom: 0;
  }

  .rating__table table tbody tr td:first-child::after {
    display: none;
  }

  .rating__table table tbody tr td:last-child {
    padding: 0;
    margin-bottom: 0;
  }

  .rating__table table tbody tr td:last-child::after {
    display: none;
  }
}

.ratings__block,
.ratings__wrap {
  display: flex;
  flex-direction: column;
}

.ratings__wrap,
.ratings__wrap .showMore {
  margin-top: 40px;
}

.ratings__block {
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--accent);
  margin-bottom: 20px;
}

.ratings__block .ratings__year {
  color: var(--Black, #121212);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}

.ratings__block .ratings__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
}

.ratings__block .ratings__list .card {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.ratings__block .ratings__list .card:nth-child(odd) a {
  padding-right: 30px;
}

.ratings__block .ratings__list .card:nth-child(even) a {
  padding-left: 30px;
  border-left: 1px solid var(--border-color);
}

@media screen and (max-width: 767px) {
  .ratings__wrap {
    margin-top: 30px;
  }

  .ratings__wrap .showMore {
    margin-top: 20px;
  }

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

  .ratings__block .ratings__year {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .ratings__block .ratings__list {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }

  .ratings__block .ratings__list .card {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .ratings__block .ratings__list .card:nth-child(odd) a {
    padding-right: 0;
  }

  .ratings__block .ratings__list .card:nth-child(even) a {
    padding-left: 0;
    border-left: none;
  }
}

.forbesVideo__wrap .splide__pagination,
.ratingNews__wrap .splide__pagination {
  bottom: 0;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.forbesVideo__wrap .splide__pagination li .splide__pagination__page,
.ratingNews__wrap .splide__pagination li .splide__pagination__page {
  background: var(--white);
  border: 1px solid var(--grey);
  height: 6px;
  margin: 4px;
  opacity: 0.7;
  width: 6px;
}

.forbesVideo__wrap .splide__pagination li .splide__pagination__page.is-active,
.ratingNews__wrap .splide__pagination li .splide__pagination__page.is-active {
  background: var(--grey);
}

.ratingNews__wrap {
  padding-bottom: 40px;
}

.subscribe__head {
  max-width: 952px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto 30px;
  gap: 25px;
}

.subscribe__head span {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}

.subscribe__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.dark-theme .subscribeCard .subscribeCard__content {
  box-shadow: 0 26px 7px 0 transparent, 0 17px 7px 0 rgba(33, 33, 33, 0.01),
    0 9px 6px 0 rgba(33, 33, 33, 0.01), 0 4px 4px 0 rgba(33, 33, 33, 0.02),
    0 1px 2px 0 rgba(33, 33, 33, 0.03);
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown {
  position: relative;
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__btn {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  cursor: pointer;
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__btn span,
.subscribeCard .subscribeCard__payment .dropdown__btn span,
.subscribeCard .subscribeCard__price .subscribeCard__price-list li span {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--info-color);
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__menu {
  display: none;
  list-style-type: none;
  padding: 20px;
  margin: 0;
  position: absolute;
  background-color: var(--spelling-bg);
  border-radius: 4px;
  box-shadow: 0 33px 9px 0 transparent, 0 21px 8px 0 rgba(0, 0, 0, 0.01),
    0 12px 7px 0 rgba(0, 0, 0, 0.03), 0 5px 5px 0 rgba(0, 0, 0, 0.05),
    0 1px 3px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  width: 100%;
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__menu li {
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 15px;
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__menu li:hover,
.subscribeCard .subscribeCard__annotation a:hover {
  color: var(--link-hover);
}

.dark-theme .subscribeCard .subscribeCard__payment .dropdown__menu.active {
  display: block;
}

.dark-theme .subscribeCard .subscribeCard__payment #dropdownIcon,
.subscribeCard .subscribeCard__payment #dropdownIcon {
  transition: transform 0.3s;
}

.dark-theme .subscribeCard .subscribeCard__payment #purchase__submit,
.dark-theme .subscribeCard .subscribeCard__payment #purchase__text,
.subscribeCard .subscribeCard__payment #purchase__submit,
.subscribeCard .subscribeCard__payment #purchase__text {
  display: none;
}

.dark-theme .subscribeCard .subscribeCard__payment .subscribeCard__btn {
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--grey);
  text-align: center;
  cursor: pointer;
  color: var(--grey);
}

.dark-theme .subscribeCard .subscribeCard__payment .subscribeCard__btn.active,
.dark-theme .subscribeCard .subscribeCard__payment .subscribeCard__btn:hover {
  background-color: var(--sub-btn-bg);
  border-color: var(--sub-btn-bg);
  color: var(--white);
}

.dark-theme .subscribeCard .subscribeCard__payment .subscribeCard__btn span,
.subscribeCard .subscribeCard__payment .subscribeCard__btn span {
  font-size: 17px;
  font-weight: 700;
  line-height: 150%;
}

.dark-theme
  .subscribeCard
  .subscribeCard__payment
  .subscribeCard__btn.active:hover,
.subscribeCard .subscribeCard__payment .subscribeCard__btn.active:hover {
  opacity: 0.8;
}

.dark-theme
  .subscribeCard
  .subscribeCard__payment
  .subscribeCard__payment-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--info-color);
  margin-top: 15px;
}

.subscribeCard .subscribeCard__content {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 2px 0 rgba(220, 1, 0, 0.03),
    0 4px 4px 0 rgba(220, 1, 0, 0.02), 0 9px 6px 0 rgba(220, 1, 0, 0.01),
    0 17px 7px 0 rgba(220, 1, 0, 0.01), 0 26px 7px 0 transparent;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.subscribeCard h2 {
  text-align: center;
}

.subscribeCard .subscribeCard__advantages .subscribeCard__advantages-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  margin-bottom: 15px;
}

.subscribeCard .subscribeCard__advantages .subscribeCard__advantages-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.subscribeCard .subscribeCard__advantages .subscribeCard__advantages-list li {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  position: relative;
  padding-left: 25px;
}

.subscribeCard
  .subscribeCard__advantages
  .subscribeCard__advantages-list
  li:after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M8.33455 12.6424L15.9949 4.98212L17.1734 6.16063L8.33455 14.9994L3.03125 9.69618L4.20977 8.51768L8.33455 12.6424Z' fill='%23737373'/></svg>");
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}

.subscribeCard .subscribeCard__price {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribeCard .subscribeCard__price .subscribeCard__price-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

.subscribeCard .subscribeCard__price .subscribeCard__price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.subscribeCard .subscribeCard__price .subscribeCard__price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-color);
}

.subscribeCard
  .subscribeCard__price
  .subscribeCard__price-list
  li
  span:last-child {
  font-size: 14px;
  color: var(--dark-grey);
}

.subscribeCard .subscribeCard__annotation {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--info-color);
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.subscribeCard .subscribeCard__annotation a {
  color: var(--info-color);
}

.subscribeCard .subscribeCard__annotation a::before {
  content: '-';
  color: var(--info-color);
  margin-right: 5px;
}

.subscribeCard .subscribeCard__payment .dropdown {
  position: relative;
}

.subscribeCard .subscribeCard__payment .dropdown__btn {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  cursor: pointer;
}

.subscribeCard .subscribeCard__payment .dropdown__menu {
  display: none;
  list-style-type: none;
  padding: 20px;
  margin: 0;
  position: absolute;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 33px 9px 0 transparent, 0 21px 8px 0 rgba(0, 0, 0, 0.01),
    0 12px 7px 0 rgba(0, 0, 0, 0.03), 0 5px 5px 0 rgba(0, 0, 0, 0.05),
    0 1px 3px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  width: 100%;
}

.subscribeCard .subscribeCard__payment .dropdown__menu li {
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 15px;
}

.subscribeCard .subscribeCard__payment .dropdown__menu li:last-child {
  margin-bottom: 0;
}

.subscribeCard .subscribeCard__payment .dropdown__menu li:hover,
.subscribe__info .subscribe__info-links a:hover {
  color: var(--link-hover);
}

.subscribeCard .subscribeCard__payment .dropdown__menu.active {
  display: block;
}

.subscribeCard .subscribeCard__payment #dropdownIcon.rotate {
  transform: rotate(180deg);
}

.subscribeCard .subscribeCard__payment .subscribeCard__btn {
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--grey);
  text-align: center;
  cursor: pointer;
  color: var(--grey);
}

.subscribeCard .subscribeCard__payment .subscribeCard__btn.active,
.subscribeCard .subscribeCard__payment .subscribeCard__btn:hover {
  background-color: var(--sub-btn-bg);
  border-color: var(--sub-btn-bg);
  color: var(--white);
}

.subscribeCard .subscribeCard__payment .subscribeCard__payment-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--info-color);
  margin-top: 15px;
}

.subscribe__info {
  max-width: 952px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  gap: 20px;
}

.subscribe__info .subscribe__info-title {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
}

.subscribe__info .subscribe__info-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.showMore span,
.subscribe__info .subscribe__info-links a {
  font-size: 17px;
  font-weight: 400;
  line-height: 145%;
  color: var(--info-color);
}

@media screen and (max-width: 1310px) {
  .subscribe__wrap {
    display: grid;
    gap: 15px;
  }
}

@media screen and (max-width: 956px) {
  .subscribe__wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.showMore {
  border: 1px solid var(--grey);
  padding: 15px 100px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.showMore:hover {
  border: 1px solid var(--text-color);
}

.showMore:hover span {
  color: var(--text-color);
}

.showMore span {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--grey);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--black-bg-opacity);
}

.modal-block,
.modal-content {
  margin: auto;
  width: 70%;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 600px;
}

.modal-block {
  border-radius: 10px;
  background: var(--White, #fff);
  width: 800px;
  max-width: 800px;
  padding: 45px;
}

.modal-block .modal-text {
  overflow: auto;
  max-height: 480px;
}

.modal-block .modal__btn {
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--grey);
  text-align: center;
  cursor: pointer;
  background-color: var(--sub-btn-bg);
  border-color: var(--sub-btn-bg);
  color: var(--white);
  margin-top: 15px;
}

.modal-block .modal__btn:hover,
.spelling__block .spelling__form button:hover {
  opacity: 0.8;
}

.modal-block .modal-title,
.modal-block .modal__btn span {
  font-size: 17px;
  font-weight: 700;
  line-height: 150%;
}

.modal-block .modal-title {
  color: var(--Black, #121212);
  font-size: 20px;
  font-style: normal;
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: -25px;
  right: -25px;
}

.modal-close:focus,
.modal-close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.search {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--black-bg-opacity);
}

.search__block {
  margin: 100px auto auto;
  width: 630px;
  position: relative;
}

.search__block .search__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 220px;
}

.search__block,
.search__block .search__form {
  display: flex;
  flex-direction: column;
}

.search__block .search__form .search__title {
  color: var(--white);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 50px;
}

.search__block .search__form form {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  justify-content: space-between;
}

.search__block .search__form form input {
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey);
  width: 100%;
}

.searchPage .authors_filter .authors_filter-search .authors_filter-icon,
.searchPage .searchPage__form button,
.search__block .search__form form .search__btn {
  width: 24px;
  height: 24px;
  display: flex;
}

.search__block .search__close {
  position: absolute;
  right: -275px;
  top: 0;
  cursor: pointer;
}

.searchPage {
  width: 100%;
}

.searchPage .authors_filter .authors_filter-search,
.searchPage .searchPage__form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.searchPage .authors_filter .authors_filter-search input,
.searchPage .searchPage__form input {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  color: var(--text-color);
  width: 100%;
}

.searchPage .authors_filter .authors_filter-search input::placeholder,
.searchPage .searchPage__form input::placeholder {
  color: var(--info-color);
}

.searchPage .searchPage__wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.searchPage .authors_filter {
  position: relative;
}

.searchPage .authors_filter .authors_filter-list {
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  overflow: auto;
  height: 200px;
  position: absolute;
  z-index: 1;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.searchPage .authors_filter .authors_filter-list .authors_filter-item {
  color: var(--grey);
  font-family: 'Roboto Flex';
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  cursor: pointer;
}

.searchPage .authors_filter .authors_filter-list::-webkit-scrollbar-track {
  border-radius: 50px;
}

.searchPage .authors_filter .authors_filter-list::-webkit-scrollbar {
  width: 6px;
}

.searchPage .authors_filter .authors_filter-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--dark-grey);
}

.searchPage .searchPage__count {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin: 10px 0 40px;
  color: var(--grey);
}

.spelling,
.spelling__block {
  flex-direction: column;
  z-index: 1000;
}

.spelling {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--black-bg-opacity);
  display: none;
}

.spelling__block {
  position: relative;
  margin: auto;
  display: flex;
  gap: 20px;
  width: 800px;
  padding: 45px;
  background-color: var(--white);
  border-radius: 10px;
}

.spelling__block .spelling__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.spelling__block p {
  font-size: 17px;
  font-weight: 400;
  font-family: 'Roboto Flex';
  line-height: 150%;
}

.spelling__block .spelling__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.spelling__block .spelling__form label {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.spelling__block .spelling__form input {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.spelling__block .spelling__form button {
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: table;
  margin-right: auto;
}

.spelling__close {
  position: absolute;
  top: -25px;
  right: -25px;
  cursor: pointer;
}

@media screen and (max-width: 1310px) {
  .search__block .search__close {
    right: -75px;
  }
}

@media screen and (max-width: 959px) {
  .showMore {
    padding: 10px 20px;
    width: 100%;
  }

  .showMore span {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
  }

  .modal-block {
    width: 600px;
    max-width: 600px;
    padding: 20px;
  }

  .modal-block .modal-text {
    overflow: auto;
    max-height: 320px;
  }

  .modal-block .modal__btn {
    padding: 8px 12px;
  }

  .modal-block .modal__btn span {
    font-size: 15px;
  }

  .modal-block .modal-close {
    position: absolute;
    top: -30px;
    right: 0;
  }

  .modal-block .modal-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .search__block {
    margin: 190px auto auto;
    width: 315px;
    position: static;
  }

  .search__block .search__logo {
    margin: 0 auto 80px;
    width: 160px;
    height: 41px;
  }

  .search__block .search__logo svg {
    width: 160px;
    height: 41px;
  }

  .search__block .search__form .search__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .search__block .search__close {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
  }

  .search__block .search__close svg {
    width: 30px;
    height: 30px;
  }

  .modal-content {
    margin: auto;
    width: calc(100vw - 90px);
    position: relative;
  }

  .modal-content iframe {
    width: 100%;
    height: 320px;
  }

  .modal-close {
    position: absolute;
    top: -25px;
    right: -25px;
  }

  .modal-close:focus,
  .modal-close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
}

.content__title {
  font-family: Merriweather;
  font-weight: 700;
  color: #3b3b3b !important;
  font-size: 20px;
  line-height: 24.65px;
  padding-bottom: 20px;
}
.quote {
  display: flex;
  gap: 20px;
  align-items: start;
}
.quote p {
  padding-block: 12px;
  border-bottom: 1px solid var(--accent);
}
.accent {
  color: var(--accent);
  text-decoration: underline dotted;
}
.sub-btn {
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: table;
  margin: 0 auto 28px;
}
@media screen and (max-width: 767px) {
  .searchPage .searchPage__wrap {
    grid-template-columns: 1fr;
  }

  .modal-block {
    width: 350px;
    max-width: 350px;
    padding: 20px;
  }
}

.archive__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.archive__dates {
  margin-bottom: 40px;
}

.dark-theme .archive__date {
  color: #3b3b3b;
}

.archive__date,
.archive__date a {
  font-size: 17px;
  font-weight: 400;
  line-height: 145%;
  color: var(--dark-gray);
  cursor: pointer;
}

.archive__date.active,
.archive__date:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.archiveCard a {
  display: flex;
  flex-direction: column;
}

.archiveCard a:hover .archiveCard__title {
  color: var(--accent);
}

.archiveCard a picture {
  margin-bottom: 5px;
}

.archiveCard a picture,
.archiveCard a picture img {
  width: 100%;
  height: 375px;
  border-radius: 5px;
}

.archiveCard a .archiveCard__title {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
}

@media screen and (max-width: 959px) {
  .archive__wrap {
    gap: 30px;
  }

  .archiveCard a picture,
  .archiveCard a picture img {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .archive__wrap {
    gap: 20px;
  }

  .archiveCard a picture,
  .archiveCard a picture img {
    height: 280px;
  }
}

@media screen and (max-width: 680px) {
  .archive__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .archiveCard a picture,
  .archiveCard a picture img {
    height: 375px;
  }
}

@media screen and (max-width: 550px) {
  .archiveCard a picture,
  .archiveCard a picture img {
    height: 300px;
  }
}

@media screen and (max-width: 450px) {
  .archiveCard a picture,
  .archiveCard a picture img {
    height: 240px;
  }
}
