@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* latin-ext */
@font-face {
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../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;
}

:root {
  --primary-color: #000;
  --secondary-color: #555;
  --background-color: #fff;
  --background-color2: #F7F7F7;
  --text-color: #333;
  --border-color: #eaeaea;
  --main-color: #00796B;
  --main-colorh: #009688;
  --main-colora: #005F5A;
  --main-colorbg: #E6F4F1;
  --b-05: rgba(0,0,0,0.05);
  --b-10: rgba(0,0,0,0.1);
  --bg-grad: linear-gradient(180deg, rgba(246, 247, 249, .5), rgba(246, 247, 249, 0) 48.32%);
}

[data-theme="dark"] {
  --primary-color: #fff;
  --main-color: #00796B;
  --main-colorh: #009688;
  --main-colora: #005F5A;
  --main-colorbg: #222A33;
  --secondary-color: #aaa;
  --background-color: #1A202C;
  --background-color2: #0d121c;
  --text-color: #f0f0f0;
  --border-color: #444;
  --b-05: rgba(255,255,255,0.05);
  --b-10: rgba(255,255,255,0.1);
  --bg-grad: linear-gradient(180deg, rgba(44, 52, 55, .5), rgba(44, 52, 55, 0) 48.32%);
}

* {
  color: var(--primary-color);
}

.container {
  max-width: 1720px;
  margin: 0 auto;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  background: var(--b-10);
}

body::-webkit-scrollbar-track {
  background: var(--b-10);
}

body::-webkit-scrollbar-track-piece {
  background: var(--b-10);
}

body::-webkit-scrollbar-thumb {
  height: 5px;
  background: var(--main-color);
}

body::-webkit-scrollbar-corner {
  background: var(--main-color);
}

body::-webkit-resizer {
  background: var(--main-color);
}

::-moz-selection {
  color: #fff;
  background: var(--main-color);
}

::selection {
  color: #fff;
  background: var(--main-color);
}

::-moz-selection {
  color: #fff;
  background: var(--main-color);
}

.noscroll {
  overflow: hidden;
}

.overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--b-10);
  -webkit-animation: fade 0.5s;
  animation: fade 0.5s;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.overlay-active {
  opacity: 1;
  z-index: 99;
}

.onlydesk {
  display: none;
}

.mclink {
  background: var(--main-color);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease, color 0.2s ease;
  transition: all 0.2s ease, color 0.2s ease;
}

.mclink:hover {
  background: var(--main-colorh);
}

.mclinkbg {
  background: var(--main-colorbg);
  padding: 2px 6px;
  border-radius: 4px;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}

.mclinkbg:hover {
  color: var(--main-color);
}

.site-header {
  border-bottom: 1px solid var(--b-10);
  position: relative;
}

.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 8px;
  position: relative;
  z-index: 1;
}

.site-header .logo svg {
  height: 30px;
}

.site-header .logo svg .logo1color {
  fill: var(--primary-color);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.site-header .logo svg .logo2color {
  fill: var(--main-color);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.site-header .menu-button {
  background: none;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.site-header .header-actions .search-form {
  position: relative;
}

.site-header .header-actions .search-form .search-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.site-header .header-actions .search-form form {
  display: none;
}

.site-header .header-actions .search-form form input {
  padding: 5px 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--background-color);
  color: var(--text-color);
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Geologica", Arial, sans-serif;
}

#theme-icon {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.theme-switch-animation {
  -webkit-animation: themeSwitch 0.3s forwards;
          animation: themeSwitch 0.3s forwards;
}

@-webkit-keyframes themeSwitch {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes themeSwitch {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}

.site-header .logo:hover svg .logo1color {
  fill: var(--main-color);
}

.site-header .logo:hover svg .logo2color {
  fill: var(--primary-color);
}

.sph {
  height: 50px;
  width: 100%;
  border: 1px solid var(--b-10);
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sph span {
  width: 100%;
  height: 100%;
  display: block;
  cursor: text;
}

.sph div {
  min-width: 50px;
  height: 48px;
  background: var(--b-10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sph div svg {
  fill: var(--primary-color);
  width: 16px;
  height: auto;
}

.search-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 64px;
  margin-left: 32px;
}

.gsc-input-box {
  height: 50px;
  background: var(--background-color) !important;
  border-color: var(--b-10) !important;
  padding: 0 16px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 0;
}

button.gsc-search-button {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  background: var(--b-10);
  padding: 11px 10px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin: 0;
}

form.gsc-search-box, table.gsc-search-box {
  margin-bottom: 0 !important;
}

.gsc-search-box-tools .gsc-search-box .gsc-input {
  background: var(--background-color) !important;
  padding: 0;
}

.gsc-input-box table {
  height: 100%;
}

.gsc-search-button-v2 svg {
  fill: var(--primary-color) !important;
  height: auto;
  width: 16px;
}

.gsc-search-button-v2:hover {
  background: var(--main-color) !important;
  cursor: pointer;
}

[data-theme="dark"] .gsc-search-button-v2:hover svg {
  fill: #000 !important;
}

.gsst_a .gscb_a {
  line-height: 48px;
  color: #555;
}

.gsst_a:hover .gscb_a, .gsst_a:focus .gscb_a {
  color: var(--main-color);
}

.gssb_c {
  margin-top: -3px;
}

.gsc-completion-container {
  background: var(--background-color) !important;
  border-color: var(--b-10) !important;
}

.gsc-completion-selected {
  background: var(--b-10) !important;
}

.sidebar-left #___gcse_1, .sidebar-left #___gcse_0 {
  margin-bottom: 16px;
}

.sidebar-left .gsst_a .gscb_a {
  line-height: normal !important;
}

.fm-timezone svg {
  fill: var(--main-color);
  margin-right: 4px;
}

.fm-timezone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--main-colorbg);
  color: var(--text-color);
  text-align: center;
  line-height: 40px !important;
  padding: 0 !important;
  border-radius: 8px;
  font-family: "Geologica", Arial, sans-serif;
}

.fm-timezone:hover svg {
  fill: var(--main-colorh);
}

.site-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-main .content {
  padding: 16px 16px 0 16px;
}

.site-main .content .news-block {
  height: 1000px;
}

.site-main .content .news-block h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.site-main .content .news-block p {
  font-size: 1rem;
  color: var(--secondary-color);
}

.site-main .sidebar-right .ad-300x250 {
  margin: 0 -16px 16px -16px;
  background: var(--background-color2);
  padding: 16px 0;
}

.site-main .sidebar-right .ad-300x250 img {
  margin: auto;
  width: 300px;
  height: 250px;
}

.mainNews {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin-bottom: 32px;
}

.mainNews li {
  border: 1px solid var(--b-10);
  border-radius: 8px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mainNews li a {
  height: 100%;
  display: block;
}

.mainNews li a .imgCont {
  position: relative;
  padding-top: 56.25%;
  display: none;
}

.mainNews li a .imgCont img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

.mainNews li a span {
  font-weight: bold;
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-family: "Geologica", Arial, sans-serif;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.mainNews li a .moreData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: -10px;
  width: 100%;
  left: 0;
  padding: 0 8px;
}

.mainNews li a .moreData time {
  font-size: 12px;
  background: var(--background-color);
  padding: 0 8px;
  color: var(--secondary-color);
}

.mainNews li a .moreData mark {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--background-color);
  padding: 0 8px;
  font-size: 12px;
  color: var(--secondary-color);
  border-radius: 4px;
}

.mainNews li .dataCont {
  padding: 16px;
}

.mainNews li:first-child {
  padding: 0 0 8px 0;
}

.mainNews li:first-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mainNews li:first-child a .imgCont {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.mainNews li:first-child a .dataCont {
  padding: 16px 0;
}

.mainNews li:first-child a .imgCont img {
  border-radius: 8px 8px 0 0;
}

.mainNews li:first-child a span {
  font-size: 21px;
  text-transform: uppercase;
  line-height: 24px;
  padding: 0 16px;
  font-weight: 900;
}

.site-main .content {
  container-type: inline-size;
}

.mainNews li:hover {
  border-color: var(--main-color);
}

.mainNews li:hover .dataCont {
  background-image: var(--bg-grad);
}

.mainNews li:hover a .moreData mark {
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
}

.mainNews li:hover img {
  -webkit-filter: contrast(1.2);
          filter: contrast(1.2);
}

.typeA {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: "Geologica", Arial, sans-serif;
}

.typeA mark {
  color: var(--main-color);
  background: none;
  text-shadow: 0 0 #1A202C;
}

.lastlist {
  margin-bottom: 16px;
}

.lastlist ul {
  list-style: none;
}

.lastlist ul li {
  position: relative;
  margin-bottom: 16px;
}

.lastlist ul li:before {
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 50%;
  left: 0;
  top: 8px;
  z-index: 5;
  position: absolute;
  content: '';
}

.lastlist ul li:after {
  height: calc(100% - 8px);
  width: 1px;
  background: var(--b-10);
  left: 2px;
  top: 8px;
  z-index: 4;
  position: absolute;
  content: '';
}

.lastlist ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 16px;
}

.lastlist ul li a time {
  display: block;
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 8px;
}

.lastlist ul li a span {
  display: block;
  font-family: "Geologica", Arial, sans-serif;
  line-height: 19px;
}

.lastlist ul li:hover:after {
  background-color: var(--main-color);
}

.lastlist ul li:hover span {
  text-decoration: underline;
}

.allLink:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 0;
  top: calc(50% - 1px);
  background-color: var(--b-10);
}

.allLink:before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--main-color);
  border-radius: 50%;
  z-index: 1;
}

.allLink {
  font-family: "Geologica", Arial, sans-serif;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}

.allLink span {
  background-color: var(--background-color);
  padding-left: 8px;
  text-align: right;
  display: block;
  z-index: 1;
  font-weight: bold;
}

.allLink:hover:after {
  background-color: var(--main-color);
}

.allLink:hover span {
  text-decoration: underline;
}

.topNews {
  border-bottom: 1px solid var(--b-10);
  padding-bottom: 24px;
  margin-bottom: 16px;
}

.topNews h2 {
  position: relative;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: "Geologica", Arial, sans-serif;
  margin-bottom: 8px;
}

.topNews h2 b {
  background: var(--background-color);
  padding: 0 16px;
}

.topNews h2:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: calc(50% - 1px);
  background: var(--b-10);
  left: 0;
  z-index: -1;
}

.topNews .toplist {
  counter-reset: news-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.topNews .news-item {
  position: relative;
  background-color: var(--b-05);
  padding: 16px;
  border-radius: 8px;
  counter-increment: news-counter;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.topNews .news-item span {
  font-family: "Geologica", Arial, sans-serif;
  display: block;
  line-height: 22px;
  margin-bottom: 16px;
  font-size: 18px;
  z-index: 1;
}

.topNews .news-item:before {
  content: counter(news-counter);
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  font-size: 150px;
  line-height: 150px;
  color: var(--main-color);
  font-weight: 900;
  font-family: "Geologica", Arial, sans-serif;
  z-index: 0;
  opacity: 0.2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.topNews .toplist div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}

.topNews .date {
  font-size: 14px;
  color: var(--secondary-color);
}

.topNews .views {
  font-size: 14px;
  color: var(--secondary-color);
  font-style: normal;
}

.topNews .news-item:hover:before {
  opacity: 1;
  -webkit-transform: scale(2) translateX(25%);
          transform: scale(2) translateX(25%);
}

.topNews .news-item:hover {
  background: var(--background-color2);
}

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

.headerBlock h2 {
  margin-bottom: 0;
}

.headerBlock a span {
  font-size: 24px;
}

.listT1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 32px;
}

.listT1 li {
  border: 1px solid var(--b-10);
  border-radius: 8px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 220px;
          flex: 1 1 220px;
  min-width: 220px;
  max-width: 456px;
}

.listT1 li a {
  height: 100%;
  display: block;
}

.listT1 li a .imgCont {
  position: relative;
  padding-top: 56.25%;
}

.listT1 li a .imgCont img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px 8px 0 0;
}

.listT1 li a .dataCont {
  padding: 16px 16px 24px 16px;
}

.listT1 li a .dataCont span {
  font-size: 16px;
  line-height: 18px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Geologica", Arial, sans-serif;
}

.listT1 li a .moreData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: -10px;
  width: 100%;
  left: 0;
  padding: 0 8px;
}

.listT1 li a .moreData time {
  font-size: 12px;
  background: var(--background-color);
  padding: 0 8px;
  color: var(--secondary-color);
}

.listT1 li a .moreData mark {
  background: var(--background-color);
  padding: 0 8px;
  font-size: 12px;
  color: var(--secondary-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
}

.listT1 li:hover {
  border-color: var(--main-color);
}

.listT1 li:hover .dataCont {
  background-image: var(--bg-grad);
}

.listT1 li:hover a .moreData mark {
  background: var(--main-color);
  color: #fff;
}

.listT1 li:hover a img {
  -webkit-filter: contrast(1.2);
          filter: contrast(1.2);
}

.headerBlock .typeB {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-family: "Geologica", Arial, sans-serif;
  margin-bottom: 8px;
}

.headerBlock .typeB mark {
  background: none;
  color: var(--main-color);
  text-shadow: 0 0 #1A202C;
}

.layerX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.leftX {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--b-05);
  border-radius: 8px;
  padding: 16px;
}

.leftX ul {
  list-style: none;
}

.leftX ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.leftX ul li:last-child a {
  margin-bottom: 0px;
}

.leftX ul li a:before {
  content: '📰';
  font-size: 30px;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.leftX ul li a span {
  font-family: "Geologica", Arial, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.rightX {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--b-05);
  border-radius: 8px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.rightX .dayInfo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.rightX .dayInfo .dayImg {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  min-height: 250px;
}

.rightX .dayInfo img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.rightX .dayInfo .dayText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.rightX .dayInfo .dayText:before {
  content: '📅';
  font-size: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.rightX span {
  font-family: "Geologica", Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rightX .horo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-top: 4px dotted var(--b-10);
  padding-top: 16px;
}

.rightX .horo:before {
  content: '🔮';
  font-size: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.leftX ul li a:hover span {
  text-decoration: underline;
}

.leftX ul li a:hover:before {
  -webkit-transform: scale(1.1) translateY(-10%);
          transform: scale(1.1) translateY(-10%);
}

.rightX a:hover span {
  text-decoration: underline;
}

.rightX .horo:hover:before {
  -webkit-transform: scale(1.1) translateY(-10%);
          transform: scale(1.1) translateY(-10%);
}

.rightX .dayInfo:hover .dayText:before {
  -webkit-transform: scale(1.1) translateY(-10%);
          transform: scale(1.1) translateY(-10%);
}

.rightX .dayInfo:hover .dayImg {
  -webkit-filter: contrast(1.2);
          filter: contrast(1.2);
}

.site-main .sidebar-left {
  position: fixed;
  height: 100%;
  top: 0;
  width: 320px;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: -320px;
  z-index: 100;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 32px;
  background: var(--background-color);
}

.site-main .sidebar-left.sbactive {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
}

.site-main .sidebar-left::-webkit-scrollbar {
  opacity: 0;
  width: 5px;
  margin-left: 5px;
}

.site-main .sidebar-left::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.site-main .sidebar-left .bottom-content .blinks a {
  margin-top: 16px;
  padding-top: 16px;
  font-size: 16px;
  line-height: 19px;
  display: block;
  border-top: 1px solid var(--b-10);
}

.site-main .sidebar-left .sbclose {
  position: absolute;
  top: 0;
  left: 32px;
  width: 251px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--b-10);
  border-radius: 0 0 8px 8px;
  font-size: 18px;
  font-weight: bold;
}

.site-main .sidebar-left .side-nav {
  width: 100%;
  margin-top: 40px;
}

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

.slist li.paritem {
  position: relative;
}

.slist li.paritem span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 6px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 21px;
}

.slist .parlink {
  text-decoration: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  font-family: "Geologica", Arial, sans-serif;
}

.slist .parlink:hover {
  border-bottom: 3px solid var(--main-color);
}

.slist .toggle {
  cursor: pointer;
  margin-left: 5px;
  font-style: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slist .toggle:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
}

.slist ul {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  margin-bottom: 16px;
  list-style: none;
  padding-left: 8px;
}

.slist li.open > ul {
  max-height: 500px;
}

.slist ul li {
  padding: 5px 0;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slist ul li a {
  border-bottom: 2px solid transparent;
}

.slist ul li a:hover {
  border-bottom: 2px solid var(--main-color);
}

.slist ul li:before {
  content: "•";
  color: var(--main-color);
  padding-right: 16px;
  font-size: 20px;
  border-bottom: 4px solid transparent;
  font-family: "Geologica", Arial, sans-serif;
}

.changeLang {
  background: var(--main-color);
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 40px !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none !important;
  padding: 0 !important;
  border-radius: 8px;
  font-family: "Geologica", Arial, sans-serif;
}

.changeLang:hover {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

.site-main .sidebar-left .bottom-content .blinks a:hover {
  text-decoration: underline;
}

.fullstory h1 {
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}

.fullstory .intro {
  margin-bottom: 16px;
}

.fullstory .intro p {
  line-height: 20px;
}

.fullstory .intro a, .fullstory .text a {
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--main-color);
  color: #fff;
}

.fullstory .intro a:hover, .fullstory .text a:hover {
  -webkit-box-shadow: 0px 0px 20px var(--b-10);
          box-shadow: 0px 0px 20px var(--b-10);
  background: var(--main-colorh);
}

.fullstory picture {
  padding-top: 56.25%;
  margin-bottom: 8px;
  position: relative;
  display: block;
}

.fullstory .imgsrc {
  margin-bottom: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--secondary-color);
}

.fullstory .mainpic {
  background: var(--b-10);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.fullstory .text {
  font-size: 16px;
  line-height: 22px;
}

.fullstory .text p {
  margin-bottom: 16px;
}

.fullstory .text hr {
  margin-bottom: 16px;
  border: 0;
  border-top: 5px dotted var(--main-color);
}

.fullstory .text table {
  margin-bottom: 16px;
}

.fullstory .text div {
  margin: auto;
}

.fullstory .text h2 {
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  font-size: 20px;
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 900;
}

.fullstory .text h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-family: "Geologica", Arial, sans-serif;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fullstory .text .image {
  margin-bottom: 16px;
}

.fullstory .text img {
  max-width: 100%;
  height: auto;
}

.fullstory .text .image img {
  background: var(--b-10);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.fullstory .text .image figcaption {
  font-size: 14px;
  text-align: center;
  color: var(--secondary-color);
  margin-top: 5px;
}

.fullstory .text img:not(:where(p img, figure img)) {
  margin-bottom: 16px;
}

.fullstory .text .quote {
  margin: 0 -16px 16px -16px;
  padding: 32px;
  background: var(--b-05);
  border-left: none;
  border-right: none;
  position: relative;
  font-size: 18px;
  line-height: 25px;
}

.fullstory .text .quote:before {
  content: "\201C";
  font-family: "Geologica", Arial, sans-serif;
  font-style: normal;
  font-size: 6rem;
  position: absolute;
  left: 1rem;
  top: 10px;
}

.fullstory .text .quote:after {
  content: "\201D";
  font-family: "Geologica", Arial, sans-serif;
  font-style: normal;
  font-size: 6rem;
  position: absolute;
  right: 1rem;
  bottom: -2.1rem;
}

.fullstory .text .Bquote {
  margin: 0 -1rem 1rem -1rem;
  padding: 2rem;
  background: var(--b-05);
  border-left: none;
  border-right: none;
  position: relative;
  font-size: 18px;
  line-height: 25px;
}

.fullstory .text .Bquote:before {
  content: "\201C";
  font-family: "Geologica", Arial, sans-serif;
  font-style: normal;
  font-size: 6rem;
  position: absolute;
  left: 1rem;
  top: 10px;
}

.fullstory .text .Bquote:after {
  content: "\201D";
  font-family: "Geologica", Arial, sans-serif;
  font-style: normal;
  font-size: 6rem;
  position: absolute;
  right: 1rem;
  bottom: -2.1rem;
}

.fullstory .text .Bquote footer {
  color: var(--secondary-color);
  display: block;
  margin-top: 0.5rem;
}

.fullstory .text .Bquote p {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
}

.fullstory .text blockquote {
  font-style: italic;
}

.fullstory .text cite {
  color: var(--secondary-color);
  display: inline-block;
  margin-top: 0.5rem;
}

.fullstory .text ul {
  list-style-type: inherit;
}

.fullstory .text ul ul {
  margin-top: 1rem;
}

.fullstory .text ul li p, .fullstory .text ol li p {
  margin: 0;
}

.fullstory .text ol ul {
  margin-top: 1rem;
}

.fullstory ol {
  list-style-type: decimal;
}

.fullstory .text ul li, .fullstory ol li {
  list-style-type: inherit;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.fullstory .text ul, .fullstory .text ol {
  margin: 0 0 1rem 0;
  background: var(--b-05);
  padding: 1rem;
  border-radius: 1rem;
}

.fullstory .text ul li:last-child, .fullstory .text ol li:last-child {
  margin-bottom: 0;
}

.fullstory .text ul li:has(ul) {
  list-style-type: disclosure-open;
}

.fullstory .text ul li:last-child ul {
  margin-bottom: 0;
}

.fullstory .text ol li:last-child ul {
  margin-bottom: 0;
}

.fullstory .text table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.fullstory .text table td {
  border: 1px solid var(--secondary-color);
  border-collapse: collapse;
  padding: 5px 10px;
}

.fullstory .text table tr:nth-child(2n) {
  background: var(--b-05);
}

.fullstory .listB {
  background: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 !important;
  gap: 1rem;
}

.fullstory .listB li {
  list-style-type: none !important;
  background: var(--b-05);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  margin: 0 !important;
}

.fullstory .vc {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 1rem;
}

.fullstory .vc iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.fullstory iframe {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.fullstory iframe.instagram-media {
  width: 100%;
  margin: auto auto 1rem auto !important;
}

.extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  margin-bottom: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.extra time {
  color: var(--secondary-color);
}

.extra .views {
  border-left: 1px solid var(--b-10);
  color: var(--secondary-color);
  padding-left: 8px;
  margin-left: 5px;
  font-size: 14px;
}

.extra .author {
  position: relative;
}

.extra .author a {
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.extra .author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.extra .author a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.tags {
  margin-bottom: 0.5rem;
}

.tags a {
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 500;
  margin-right: 0.5rem;
  font-size: 14px;
  background: var(--main-colorbg);
  padding: 3px 10px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.tags a:before {
  content: '#';
  margin-right: 2px;
}

.tags a:hover {
  -webkit-box-shadow: 0px 0px 20px var(--b-10);
          box-shadow: 0px 0px 20px var(--b-10);
  color: #fff;
  background: var(--main-colorh);
}

.social_buttons {
  margin: 1rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.social_buttons a {
  width: 100%;
  text-align: center;
  background: var(--b-05);
  height: 50px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}

.social_buttons a svg {
  width: 1.5rem;
}

.social_buttons a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.attachment {
  display: block;
  background: var(--b-05);
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  border: 5px dotted var(--b-05);
}

.related_block {
  margin: 0 -16px;
}

.related_block .btitle, .comments .btitle {
  font-family: "Geologica", Arial, sans-serif;
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 26px;
  margin: 1.5rem 0 1rem 0;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 5px;
  padding-left: 1rem;
}

.comments iframe {
  margin-top: -1rem;
}

.related_block .listT1 {
  padding: 0 16px;
}

.speedbar {
  margin: 0 -16px;
  padding: 8px 16px 12px 16px;
}

.speedbar div {
  line-height: normal;
  color: var(--secondary-color);
}

.speedbar a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.co-author {
  font-style: italic;
  color: var(--secondary-color);
  text-align: right;
}

.co-author a {
  background: none !important;
  color: var(--main-color) !important;
}

.co-author a:hover {
  color: var(--main-colorh) !important;
  text-decoration: underline !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.listPage .ptitle {
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 900;
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.listPage .pdescr {
  margin-bottom: 16px;
  line-height: 1.2;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px auto 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation .page_next-prev {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}

.navigation .page_next-prev span span svg {
  fill: var(--secondaru-color);
  vertical-align: middle;
}

.navigation .page_next-prev span a svg {
  fill: var(--background-color);
  vertical-align: middle;
}

.navigation .page_next-prev span {
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation .page_next-prev a {
  display: block;
  border-radius: 5px;
  text-align: center;
}

.navigation .pages {
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 700;
  padding: 0 0.5rem;
  text-align: center;
}

.navigation .pages span, .navigation .pages a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
  border-radius: 5px;
}

.navigation .pages span {
  background: var(--b-10);
}

.navigation a:hover {
  background: var(--main-color);
}

@container (min-width: 575px) {
  /* Стили, которые будут применяться, если ширина контейнера находится в диапазоне от 520px до 1023px */
  .mainNews {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .mainNews li:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
  }
  .topNews .toplist {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .leftX, .rightX {
    padding: 32px;
  }
  .leftX ul li a:before {
    font-size: 40px;
    line-height: 40px;
  }
  .leftX ul li a span {
    font-size: 20px;
    line-height: 24px;
  }
  .fullstory h1 {
    font-size: 26px;
    line-height: 32px;
    margin-top: 16px;
  }
  .fullstory .text .Bquote {
    margin: 0 -2rem 1rem -2rem;
    padding: 2rem 2rem 2rem 3rem;
  }
  .related_block {
    margin: 0 -32px;
  }
  .related_block .btitle {
    padding: 0 32px;
  }
  .related_block .listT1 {
    padding: 0 32px;
  }
}

@container (min-width: 690px) and (max-width: 930px) {
  .listT1 li {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 calc(50% - 16px) !important;
            flex: 1 1 calc(50% - 16px) !important;
  }
  .leftX, .rightX {
    padding: 16px;
  }
  .layerX {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .rightX .dayInfo .dayImg {
    min-height: 180px;
  }
  .leftX ul li a:before {
    font-size: 30px;
    line-height: 30px;
  }
  .leftX ul li a span {
    font-size: 18px;
    line-height: 22px;
  }
  .fullstory h1, .listPage .ptitle {
    font-size: 36px;
    line-height: 1.2;
  }
  .fullstory .text h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 27px;
  }
  .fullstory .text h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 27px;
  }
  .fullstory .text h4 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 27px;
    display: block;
  }
  .fullstory .text, .fullstory .intro p, .listPage .pdescr {
    font-size: 18px;
    line-height: 1.5;
  }
  .fullstory .text p {
    margin-bottom: 27px;
  }
  .fullstory .text hr {
    margin-bottom: 27px;
  }
  .fullstory .text ul, .fullstory .text ol {
    margin-bottom: 27px;
    padding: 32px;
  }
  .fullstory .text .Bquote {
    margin-bottom: 27px;
  }
  .fullstory .text .image {
    margin-bottom: 27px;
  }
  .fullstory .text img:not(:where(p img, figure img)) {
    margin-bottom: 27px;
  }
}

@container (min-width: 920px) {
  .mainNews li:not(:first-child) a span {
    font-size: 16px;
    line-height: 18px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mainNews li:not(:first-child) a {
    min-height: 230px;
    padding-bottom: 6px;
  }
  .mainNews li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainNews li a .imgCont img {
    border-radius: 8px 8px 0 0;
  }
  .mainNews {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
  .mainNews li:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .mainNews li:first-child a .dataCont {
    padding: 24px 16px 16px 16px;
  }
  .mainNews li:first-child a .moreData {
    padding: 0 24px;
  }
  .mainNews li a .imgCont {
    display: block;
    margin-bottom: 0;
  }
  .mainNews li:first-child a span {
    font-size: 28px;
    line-height: 36px;
    padding: 0 16px;
  }
  .layerX {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .rightX .dayInfo .dayImg {
    min-height: 180px;
  }
  .fullstory, .listPage {
    padding: 0 32px;
  }
  .fullstory h1, .listPage .ptitle {
    font-size: 40px;
    line-height: 1.2;
  }
  .fullstory .text h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .fullstory .text h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .fullstory .text h4 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
    display: block;
  }
  .fullstory .text, .fullstory .intro p, .listPage .pdescr {
    font-size: 20px;
    line-height: 1.5;
  }
  .fullstory .text p {
    margin-bottom: 30px;
  }
  .fullstory .text hr {
    margin-bottom: 30px;
  }
  .fullstory .text ul, .fullstory .text ol {
    margin-bottom: 30px;
    padding: 32px;
  }
  .fullstory .text ul li, .fullstory ol li {
    margin-bottom: 30px;
  }
  .fullstory .text .Bquote {
    margin: 0 -64px 30px -64px;
    font-size: 22px;
    line-height: 1.5;
    padding: 48px 80px;
  }
  .fullstory .text .Bquote p {
    font-size: 22px;
    line-height: 1.5;
  }
  .fullstory .text .image {
    margin-bottom: 30px;
  }
  .fullstory .text img:not(:where(p img, figure img)) {
    margin-bottom: 30px;
  }
  .fullstory .text .Bquote:before {
    font-size: 8rem;
    left: 4rem;
    top: -4rem;
  }
  .fullstory .text .Bquote:after {
    font-size: 8rem;
    right: 4rem;
    bottom: -7.5rem;
  }
  .related_block {
    margin: 0 -64px;
  }
  .related_block .btitle {
    padding: 0 64px;
  }
  .related_block .listT1 {
    padding: 0 64px;
  }
  .fullstory .listT1 li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
            flex: 1 1 300px;
  }
  .listPage .listT1 li {
    min-width: 250px;
  }
}

@media (min-width: 520px) and (max-width: 1023px) {
  .container {
    max-width: 520px;
  }
  .site-main .content {
    border-left: 1px solid var(--b-10);
    border-right: 1px solid var(--b-10);
  }
}

@media (min-width: 1024px) {
  #theme-toggle {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 300px;
    height: 50px;
    margin-right: 8px;
    background: var(--primary-color);
    border-radius: 8px;
  }
  #theme-toggle #theme-text {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    margin-left: 8px;
    color: var(--background-color);
  }
  #theme-toggle:hover {
    -webkit-box-shadow: 0px 0px 40px var(--primary-color);
            box-shadow: 0px 0px 40px var(--primary-color);
  }
  .site-main .sidebar-right {
    display: block;
    width: 348px;
    padding: 16px 32px 16px 16px;
    border-left: 1px solid var(--b-10);
  }
  .site-main .sidebar-right .ad-300x250 {
    margin: 0 0 32px 0;
    background: none;
    padding: 0;
  }
  .site-main .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 16px 32px 16px 32px;
  }
  .site-main .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .site-header .container {
    padding: 16px 24px 16px 24px;
  }
  .site-header .logo svg {
    height: 39px;
    padding-left: 8px;
  }
  .onlymob {
    display: none;
  }
  .onlydesk {
    display: block;
  }
  .search-box {
    margin: 0 32px;
  }
  .menu-button, .sbclose {
    display: block;
  }
  .headerBlock h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .headerBlock a span {
    font-size: 30px;
  }
  .sidebar-right {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .speedbar {
    padding: 16px 16px 0 16px;
  }
}

@media (min-width: 1280px) {
  .site-main .container {
    padding: 0 16px;
  }
  .site-main .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 16px 32px 16px 32px;
  }
  .site-main .sidebar-right {
    padding-left: 32px;
    width: 348px;
    padding-top: 32px;
    padding-right: 16px;
    height: calc(100vh - 115px);
  }
  .site-main .sidebar-left {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: calc(100vh - 115px);
    width: 250px;
    border-right: 1px solid var(--b-10);
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-main .sidebar-left .side-nav {
    margin-top: 0px;
  }
  .site-header .container {
    padding: 32px 24px;
  }
  .search-box {
    margin-right: 32px;
    margin-left: 24px;
  }
  .menu-button, .sbclose {
    display: none;
  }
  .speedbar {
    margin: 16px -64px 0 -64px;
    padding: 16px 64px 0 64px;
  }
}

@media (min-width: 1530px) {
  .site-main .sidebar-left {
    padding-right: 32px;
    width: 274px;
  }
  .site-header .logo svg {
    height: 43px;
    margin-right: 16px;
  }
  .search-box {
    margin-left: 21px;
  }
}
