@charset "UTF-8";

:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1440px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --bg: #F3F3F3;
  --light: #F7F8FA;
  --white: #ffffff;
  --dark: #1B1F22;
  --grey-dark: #3A4147;
  --grey: #768087;
  --link: #0085CA;
  --primary-bg: linear-gradient(135deg, #119ce5 0%, #0085ca 100%);
  --primary-light: #EBF8FF;
  --secondary: #59BE6F;
  --secondary-light: #e6f5ea;
  --secondary-accent: #1CBD40;
  --secondary-bg: linear-gradient(180deg, #68d27f 0%, #59be6f 100%);
  --light-bg-gradient: linear-gradient(180deg, #fbfeff 0%, #f5fbff 100%);
  --light-grey-gradient: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  --block-bg-gradient: linear-gradient(135deg, rgba(248, 220, 225, 0.15) 0%, rgba(105, 223, 253, 0.15) 100%);
  --block-accent-gradient: linear-gradient(180deg, rgba(248, 246, 233, 0.98) 0%, rgba(243, 251, 255, 0.85) 61.82%, #fff 100%);
  --info-block-bg: linear-gradient(135deg, #fdf5f7 0%, #fef9fd 100%);
  --border: #F0F1F2;
  --border-bg: #ECECEC;
  --divider: #dddddd;
  --mark-bg: #F1FFA3;
  --error: #FC3838;
  --shadow-xs: 0 8px 15px rgba(48,39,81,.04);
  --shadow-sm: 0 8px 16px rgba(48,39,81,.12);
  --shadow-m: 0 12px 24px rgba(48,39,81,.03);
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}

@keyframes grow {
  to {
    width: 14px;
    height: 14px;
  }
}

@keyframes fill-bar {
  to {
    width: var(--width);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--dark);
  scrollbar-gutter: stable;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: var(--link);
}

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

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

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

.main {
  display: flex;
  align-items: flex-start;
}

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

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

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

.top-img {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}

.top-img.fixed {
  z-index: 151;
}

.top-img a {
  display: block;
  height: 45px;
}

.top-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  background: transparent;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary-bg);
  color: var(--white);
  border: none;
}

.btn--primary:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.btn--primary:hover:before {
  opacity: 0.2;
}

.btn--secondary {
  background: var(--secondary-bg);
  color: var(--white);
  border: none;
}

.btn--secondary:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.btn--secondary:hover:before {
  opacity: 0.2;
}

.btn--show {
  background: var(--primary-light);
  color: rgba(0, 133, 202, 0.8);
  border: 1px solid transparent;
}

.btn--show:hover {
  color: var(--link);
  border-color: rgba(0, 133, 202, 0.25);
}

.btn--show:active {
  background-color: #dff4ff;
}

.btn--glass {
  background-color: rgba(102, 222, 255, 0.15);
  color: var(--white);
  font-weight: 400;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--glass svg {
  fill: currentColor;
}

.btn--glass:hover {
  background-color: rgba(102, 222, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--lg {
  height: 44px;
  padding: 8px 32px;
  font-size: 15px;
  border-radius: 6px;
}

.btn--lg.btn--go {
  padding: 8px 67px 8px 8px;
}

.btn--lg i {
  width: 29px;
  height: 29px;
  border-radius: 5px !important;
}

.btn--lg i svg {
  width: 15px !important;
  height: 15px !important;
}

.btn--m {
  height: 40px;
  padding: 8px 32px;
  font-size: 15px;
  border-radius: 6px;
}

.btn--sm {
  height: 35px;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 4px;
}

.btn--sm i {
  width: 24px;
  height: 24px;
}

.btn--xs {
  gap: 4px;
  height: 28px;
  padding: 4px 20px;
  font-size: 12px;
  border-radius: 4px;
}

.btn--xs.btn--go {
  padding: 4px 34px 4px 10px;
}

.btn--xs > svg {
  flex: none;
  width: 11px;
  height: 11px;
}

.btn--xs i {
  width: 20px;
  height: 20px;
}

.btn--xs i svg {
  width: 11px;
  height: 11px;
}

.btn--go {
  border: 1px solid var(--border);
  color: var(--secondary);
  padding-right: 50px;
}

.btn--go.btn--lg {
  padding-left: 20px;
}

.btn--go.btn--lg i {
  right: 8px;
}

.btn--go > svg {
  fill: currentColor;
  transition: fill 0.3s ease;
}

.btn--go span {
  flex: none;
}

.btn--go i {
  position: absolute;
  top: 50%;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transform: translateY(-50%);
}

.btn--go i svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.btn--bonus:hover {
  border-color: rgba(89, 190, 111, 0.25);
  background-color: rgba(89, 190, 111, 0.08);
}

.btn--bonus i {
  background-color: var(--secondary);
  color: var(--white);
}

.btn--more {
  background-color: var(--primary-light);
  color: var(--link);
}

.btn--more:hover span {
  opacity: 1;
}

.btn--more span {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.btn--more i {
  background-color: var(--white);
  color: var(--link);
}

.btn--mg {
  width: 300px;
  margin: 25px auto 0;
}

.btn--light {
  background-color: var(--light);
  color: var(--link);
  font-size: 14px;
}

.btn--light i {
  background-color: var(--white);
}

.btn--light:hover {
  background-color: var(--primary-light);
  border-color: rgba(0, 133, 202, 0.15);
}

.btn--white {
  background-color: var(--white);
  color: var(--link);
}

.btn--white i {
  background: var(--primary-bg);
}

.btn--white i svg {
  fill: var(--white);
}

.btn.loading {
  gap: 7px;
  opacity: 0.75;
}

.btn.loading:after {
  order: -1;
  content: "";
  position: relative;
  border-radius: 100%;
  width: 0px;
  height: 0px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: currentColor;
  border-top-color: currentColor;
  animation: spin 0.6s infinite linear, grow 0.3s forwards ease-out;
}

.field {
  background-color: var(--light);
  padding: 13px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.field--white {
  background-color: var(--white);
  border: none;
}

.field:hover {
  border-color: var(--divider);
}

.field:focus {
  border-color: rgba(0, 133, 202, 0.5);
}

.field.error {
  border-color: var(--error);
  color: var(--error);
}

.icon-star {
  fill: #f5a829;
}

.bold {
  font-weight: 700;
}

.forecast-short {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.forecast-short__item {
  flex: none;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.forecast-short__item:hover {
  color: var(--link);
}

.forecast-short__imgs {
  position: relative;
  flex: none;
  width: 47px;
}

.forecast-short__imgs .img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.forecast-short__imgs .img:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
}

.forecast-short__imgs img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.forecast-short__teams {
  flex: none;
}

.forecast-short__teams span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.wrapper {
  flex: 1 1 auto;
  min-width: 0;
}

.content-wrapper {
  position: relative;
  align-items: flex-start;
  display: flex;
  gap: 15px;
}

.page .block-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.page .block-head h2 {
  margin-bottom: 15px;
}

.main-nav__item {
  margin-bottom: 5px;
}

.main-nav__item:last-child {
  margin-bottom: 0;
}

.main-nav__item ul {
  max-height: 0;
  transition: max-height 0.4s ease;
  overflow: hidden;
}

.main-nav__item ul li {
  margin-bottom: 0;
}


.main-nav__item ul a, .main-nav__item ul .main-nav__link {
  background-color: transparent;
  min-height: 40px;
  padding: 8px 13px;
  font-weight: 500;
}

.main-nav__item ul a.show, .main-nav__item ul .main-nav__link.show {
  color: var(--link);
}

.main-nav__item ul a:not(:has(img)) span {
  padding-left: 28px;
}

.main-nav__item ul a.active {
  background-color: transparent;
}

.main-nav__item ul.open {
  max-height: 1500px;
  padding-top: 5px;
}

.main-nav__item ul ul.open {
  padding-top: 0;
}

.main-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-dark);
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.main-nav__link.active {
  background-color: var(--white);
  color: var(--link);
}

.main-nav__link.show svg.drop-icon {
  transform: translateY(-50%) rotate(180deg);
}

.main-nav__link img {
  flex: none;
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 5px;
}

.main-nav__link svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.9;
}

.main-nav__link svg.drop-icon {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 10px;
  height: 10px;
  opacity: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.block-head {
  margin-bottom: 25px;
}

.block-head h2 {
  margin-bottom: 10px;
}

.block-head p {
  margin: 0;
  font-size: 16px;
  line-height: 135%;
  color: var(--grey-dark);
}

.block-head p a {
  transition: opacity 0.2s ease;
}

.block-head p a:hover {
  opacity: 0.8;
}

.block-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
}

.block-title.center {
  text-align: center;
}

.block-title span {
  opacity: 0.3;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 55px;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination__list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--link);
}

.pagination__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: transparent;
  border-radius: 6px;
  color: currentColor;
  transition: background-color 0.3s ease;
}

.pagination__list li a:hover,
.pagination__list li a.active {
  background-color: var(--primary-light);
}

.pagination__list li a svg {
  width: 14px;
  height: 11px;
  fill: currentColor;
}

.pagination__list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.pagination__list li:first-child a svg {
  transform: rotate(180deg);
}

.pagination .btn--show {
  width: 220px;
}

.divider {
  margin: 55px 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.more-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.more-link span {
  transition: transform 0.3s ease;
}

.more-link svg {
  width: 12px;
  height: 6px;
  fill: currentColor;
  transform: rotate(-90deg);
  margin-top: 2px;
}

.more-link:hover {
  opacity: 0.8;
}

.more-link:hover span {
  transform: translateX(-3px);
}

.tags-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 7px 10px;
}

.tags-list li a {
  display: block;
  background-color: var(--white);
  padding: 7px 15px;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tags-list li a:hover {
  border-color: rgba(0, 132, 202, 0.5);
  box-shadow: var(--shadow-m);
}

.go-up {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 56px;
  right: 10px;
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border-radius: 100px;
  border: 1px solid rgba(0, 133, 202, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform-origin: center center;
  will-change: transform;
  transform: scale(0);
  z-index: 99;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.go-up svg {
  width: 17px;
  height: 17px;
  fill: var(--link);
  transform: rotate(-90deg);
}

.go-up.active {
  transform: scale(1);
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.overlay.blur {
  backdrop-filter: blur(10px);
}

.overlay.front {
  z-index: 999;
}

.content-list-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: var(--white);
  padding: 0 15px;
  color: var(--link);
  font-size: 15px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  z-index: 99;
}

.content-list-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transform: rotate(180deg);
}

.slide-card__trigger {
  display: none;
}

.slide-card {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

.slide-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  gap: 15px;
  padding: 10px 15px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide-card__cancel {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease;
}

.slide-card__cancel svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.slide-card__cancel:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.slide-card__content {
  background-color: var(--white);
  border-radius: 12px 12px 0 0;
  padding: 20px 15px;
  height: calc(100vh - 50px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.slide-card__content .article-single__content-list {
  margin: 0;
}

.slide-card__content .article-single__content-list ol {
  margin: 0;
  padding-left: 20px;
  border: none;
}

.slide-card__content .article-single__content-list ol li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--divider);
}

.slide-card__content .article-single__content-list ol li a {
  border: none;
  padding: 0;
}

.rating-big {
  flex: none;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.rating-big__result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}

.rating-big__result svg {
  width: 22px;
  height: 22px;
}

.rating-big__info {
  width: 68px;
  margin-left: 11px;
  padding-left: 11px;
  font-size: 12px;
  line-height: 120%;
  border-left: 1px solid var(--border);
}

.rating-big__place {
  margin-top: 15px;
  background-color: var(--light);
  padding: 4px 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.head-bonus {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--white);
  padding: 15px 25px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.head-bonus__info p {
  margin: 5px 0 0;
  font-size: 16px;
  line-height: 130%;
  opacity: 0.8;
}

.head-bonus__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

.head-bonus__title svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.head-bonus__get {
  justify-content: flex-start;
  padding: 8px 55px 8px 15px;
  background-color: #fff8e7;
  height: 38px;
  border-radius: 5px;
  border: 1px dashed #FED15C;
}

.head-bonus__get a {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D8C21B;
  border-radius: 3px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.head-bonus__get a:hover {
  opacity: 0.8;
}

.head-bonus__get a svg {
  fill: var(--white);
  width: 14px;
  height: 14px;
}

.head-bonus__get-text {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--dark);
  transition: color 0.2s ease;
}

.head-bonus__get-text:hover {
  color: #cc9c23;
}

.head-bonus__get-text svg {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  opacity: 0.75;
  fill: currentColor;
}

.carousel-3 {
  padding: 50px 0;
}

.carousel-wrapper {
  position: relative;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  width: calc(100% + 36px);
}

.carousel-nav div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--white);
  border-radius: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.carousel-nav div:hover svg {
  fill: var(--link);
}

.carousel-nav div svg {
  width: 13px;
  height: 13px;
  fill: var(--grey);
  transition: fill 0.2s ease;
}

.carousel-nav div.carousel-nav__prev svg {
  transform: rotate(90deg);
}

.carousel-nav div.carousel-nav__next svg {
  transform: rotate(-90deg);
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-pagination span {
  margin: 0 !important;
  background-color: var(--divider);
  opacity: 1;
  transition: background-color 0.2s ease;
}

.carousel-pagination span.swiper-pagination-bullet-active {
  background-color: var(--link);
}

.checkbox-wrapper.accept label {
  font-size: 12px;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  position: relative;
  display: block;
  padding-left: 23px;
  font-size: 14px;
  line-height: 120%;
  user-select: none;
  color: var(--dark);
  cursor: pointer;
}

.custom-checkbox + label a {
  color: var(--link);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.custom-checkbox + label a:hover {
  opacity: 0.75;
}

.custom-checkbox + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--divider);
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: var(--divider);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231B1F22' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox + label.error:before {
  border-color: var(--error);
}

.error-message {
  position: absolute;
  display: none;
  left: 30px;
  top: -11px;
  background-color: var(--error);
  padding: 4px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  padding: 15px 15px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-message img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 20px;
}

.success-message span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.success-message span:nth-child(3) {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 400;
  line-height: 135%;
  opacity: 0.75;
}

.tabs {
  display: flex;
  gap: 21px;
  width: max-content;
  max-width: 100%;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--divider);
  margin: 40px 0;
  overflow: hidden;
}

.tabs.center {
  margin: 40px auto;
}

.tab {
  flex: none;
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--grey);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  z-index: 0;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tab:first-child:before {
  display: none;
}

.tab:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -11px;
  width: 1px;
  height: 20px;
  background-color: var(--divider);
  transform: translateY(-50%);
}

.tab:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: var(--primary-bg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab:hover {
  background-color: var(--light);
}

.tab.active {
  color: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.tab.active:after {
  opacity: 1;
}

.info-block {
  background: var(--info-block-bg);
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 2px;
}

.info-block.hh {
  padding: 35px 50px;
}

.info-block.hh .btn {
  flex: none;
  width: 245px;
  gap: 10px;
  color: #D20A11;
  font-weight: 500;
  border-color: #D20A11;
  padding: 8px 15px;
}

.info-block.hh .btn:hover {
  background-color: rgba(210, 10, 17, 0.08);
}

.info-block.hh .btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: none;
}

.info-block.hh .btn svg {
  flex: none;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.info-block__title {
  font-size: 20px;
  font-weight: 600;
}

.info-block__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 135%;
  opacity: 0.6;
  max-width: 740px;
}

.soc {
  display: flex;
  gap: 10px;
}

.soc a {
  display: flex;
}

.soc a img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.soc a img:hover {
  opacity: 0.75;
}

.important-links {
  padding: 30px 25px 0;
  border-top: 1px solid var(--border);
}

.important-links .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.important-links__list {
  display: flex;
  gap: 10px;
}

.important-links__list a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--dark);
  border-radius: 5px;
  border: 1px solid rgba(0, 133, 202, 0.25);
  transition: border-color 0.2s ease;
}

.important-links__list a:hover {
  border-color: var(--link);
}

.important-links__list a:hover span {
  color: var(--link);
}

.important-links__list a svg {
  flex: none;
}

.important-links__list a svg:nth-child(1) {
  fill: var(--link);
  width: 14px;
  height: 14px;
}

.important-links__list a svg:nth-child(3) {
  width: 12px;
  height: 12px;
  fill: var(--link);
}

.important-links__list a span {
  flex: 1 1 auto;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  line-height: 105%;
  margin-top: 1px;
  transition: color 0.2s ease;
}

.soc-colors {
  display: flex;
  gap: 8px;
}

.soc-colors a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.soc-colors a.tg {
  background-color: #30acec;
}

.soc-colors a.tg svg {
  width: 16px;
  height: 14px;
}

.soc-colors a.vk {
  background-color: #087bff;
}

.soc-colors a svg {
  width: 20px;
  height: 12px;
  fill: var(--white);
}

.soc-colors a:hover {
  opacity: 0.75;
}

.voice-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 5px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 630px;
}

.voice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: white;
  width: 26px;
  height: 26px;
  margin-right: 5px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}

.voice-btn svg {
  fill: var(--white);
}

.voice-btn svg:nth-child(1) {
  width: 8px;
  height: 10px;
}

.voice-btn svg:nth-child(2) {
  display: none;
  width: 8px;
  height: 12px;
}

.voice-btn.play svg:nth-child(1) {
  display: none;
}

.voice-btn.play svg:nth-child(2) {
  display: block;
}

.voice-btn:active {
  transform: scale(0.95);
}

#waveCanvas {
  flex: 1;
  height: 28px;
}

.voice-time {
  min-width: 35px;
  flex: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.75;
  text-align: right;
}

.clip-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.clip-file span {
  gap: 9px;
  background-color: var(--white);
  font-weight: 500;
  color: var(--link);
  border-radius: 8px;
  border: 1px solid var(--link);
  transition: background-color 0.3s ease;
}

.clip-file span:hover {
  background-color: var(--primary-light);
}

.clip-file span svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}

.header {
  position: sticky;
  top: 0;
  background-color: var(--bg);
  width: 100%;
  padding: 18px 0;
  z-index: 999;
  transition: all .2s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header__logo {
  flex: none;
  width: 250px;
}

.header__logo a {
  display: block;
  width: 134px;
  height: 38px;
}

.header__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__forecast {
  flex: 1 1 auto;
}

.header__action {
  position: relative;
  flex: none;
  display: flex;
  width: 330px;
  margin-left: 40px;
  background-color: var(--white);
  border-radius: 6px;
}

.header__choice {
  width: 50%;
  height: 40px;
}

.header__choice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-right: 1px solid var(--border);
}

.header__choice-inner.active > span {
  opacity: 1;
}

.header__choice-inner.active > svg {
  transform: rotate(180deg);
  opacity: 1;
}

.header__choice-inner > span {
  color: var(--link);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__choice-inner > svg {
  flex: none;
  fill: var(--link);
  opacity: 0.8;
}

.header__choice-inner > svg:nth-child(1) {
  display: none;
  width: 15px;
  height: 15px;
  fill: var(--secondary-accent);
  transition: fill 0.2s ease;
}

.header__choice-inner > svg:nth-child(3) {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__choice-inner:hover span,
.header__choice-inner:hover svg {
  opacity: 1;
}

.header__choice-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  width: 360px;
  left: 50%;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(48, 39, 81, 0.12);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

.header__choice-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.header__choice-list > div .title {
  font-size: 14px;
  font-weight: 600;
}

.header__choice-list > div .title span {
  color: var(--grey);
}

.header__choice-list > div svg {
  width: 12px;
  height: 12px;
  fill: var(--dark);
  opacity: 0.75;
  cursor: pointer;
}

.header__choice-list > ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 5px;
}

.header__choice-list > ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--light);
  width: calc(50% - 2.5px);
  padding: 7px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.header__choice-list > ul li:hover div {
  color: var(--link);
}

.header__choice-list > ul li:hover div span {
  color: var(--link);
}

.header__choice-list > ul li:hover svg {
  fill: var(--link);
}

.header__choice-list > ul li img {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.header__choice-list > ul li div {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header__choice-list > ul li div span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--grey);
  line-height: 100%;
  transition: color 0.2s ease;
}

.header__choice-list > ul li svg {
  width: 10px;
  height: 10px;
  fill: var(--grey);
  transform: rotate(-90deg);
  transition: fill 0.2s ease;
}

.header__choice-result {
  position: absolute;
  display: none;
  top: calc(100% + 5px);
  width: 360px;
  left: 50%;
  background-color: var(--white);
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(48, 39, 81, 0.12);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.header__choice-result > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.header__choice-result > div .title {
  font-size: 14px;
  font-weight: 600;
}

.header__choice-result > div .title span {
  color: var(--grey);
}

.header__choice-result > div svg {
  width: 12px;
  height: 12px;
  fill: var(--dark);
  opacity: 0.75;
  cursor: pointer;
}

.header__choice-result > ul {
  margin: 0;
}

.header__choice-result > ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.header__choice-result > ul li a {
  font-size: 14px;
  color: var(--dark);
  transition: color 0.2s ease;
}

.header__choice-result > ul li a:hover {
  color: var(--link);
}

.header__choice-result > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--link);
  transition: opacity 0.2s ease;
}

.header__choice-result > a svg {
  flex: none;
  margin-top: 2px;
  width: 10px;
  height: 10px;
  fill: currentColor;
  transform: rotate(-90deg);
}

.header__choice-result > a:hover {
  opacity: 0.75;
}

.header__search {
  width: 50%;
}

.header__search-front {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  color: var(--dark);
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.header__search-front span {
  font-size: 13px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.header__search-front svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.header__search-front:hover span,
.header__search-front:hover svg {
  opacity: 0.7;
}

.header__search-content {
  position: absolute;
  display: none;
  width: 370px;
  align-items: center;
  gap: 8px;
  height: 100%;
  right: 0;
  background-color: transparent;
  transition: opacity 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.header__search-content form {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  padding: 4px 6px;
  border-radius: 6px;
}

.header__search-content form.result {
  border-radius: 6px 6px 0 0;
}

.header__search-content .cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 6px;
  background-color: var(--light);
  height: 28px;
  padding: 4px 10px;
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 5px;
  border: 1px solid var(--border);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header__search-content .cancel:hover {
  color: var(--dark);
  border-color: var(--divider);
}

.header__search-field {
  border: none;
  width: 100%;
  height: 100%;
  font-size: 15px;
  padding: 5px 110px 5px 10px;
  outline: none;
}

.header__search-go {
  position: absolute;
  top: 50%;
  right: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}

.header__search-go:hover svg {
  fill: var(--link);
}

.header__search-go svg {
  width: 14px;
  height: 14px;
  fill: var(--grey);
  transition: fill 0.2s ease;
}

.header__search-result {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  max-height: 350px;
  padding: 15px;
  border-radius: 0 0 6px 6px;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(48, 39, 81, 0.12);
  overflow-y: auto;
}

.header__search-result div:not(:last-child) {
  margin-bottom: 10px;
}

.header__search-result div > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.65;
}

.header__search-result div ul {
  margin: 7px 0 0;
  padding: 0;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.header__search-result div ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.header__search-result div ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  color: var(--dark);
  font-size: 14px;
  line-height: 130%;
  transition: color 0.2s ease;
}

.header__search-result div ul li a:hover {
  color: var(--link);
}

.header__search-result div ul li a:hover svg {
  fill: var(--link);
}

.header__search-result div ul li a img {
  flex: none;
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 3px;
}

.header__search-result div ul li a span {
  display: block;
  flex: 1 1 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header__search-result div ul li a svg {
  flex: none;
  width: 10px;
  height: 10px;
  fill: var(--grey);
  transform: rotate(-90deg);
  transition: fill 0.2s ease;
}

.header__bonus {
  position: relative;
  flex: none;
}

.header__bonus-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  background: linear-gradient(315deg, #74e68d, #68d780, #61ca78, #68d780);
  background-size: 400%;
  animation: gradient 5s ease infinite;
  transition: opacity 0.2s ease;
}

.header__bonus-icon svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

.header__bonus-icon .header__bonus-cancel {
  display: none;
}

.header__bonus-modal {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 225px;
  padding: 5px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.header__bonus-modal .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #f3f6da 0%, #e6f5e9 100%);
  padding: 15px 10px;
  border-radius: 6px;
}

.header__bonus-logo img {
  width: 120px;
  height: 30px;
  object-fit: contain;
}

.header__bonus-cancel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.header__bonus-cancel:hover svg {
  fill: var(--dark);
}

.header__bonus-cancel svg {
  width: 10px;
  height: 10px;
  fill: var(--grey);
  transition: fill 0.2s ease;
}

.header__bonus-title {
  font-size: 14px;
  font-weight: 600;
}

.header__bonus-btn {
  width: 100%;
  gap: 8px;
  padding: 5px 10px;
}

.header__bonus-btn svg {
  flex: none;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header__lc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 40px;
  padding: 5px 25px;
  font-size: 16px;
  color: var(--link);
  border-radius: 6px;
  border: 1px solid rgba(0, 133, 202, 0.5);
  opacity: 0.75;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.header__lc-link:hover {
  opacity: 1;
  background-color: var(--primary-light);
}

.header__switch {
  flex: none;
  position: relative;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65px;
  height: 32px;
  padding: 0 9px;
  border-radius: 100px;
  cursor: pointer;
  display: none;
}

.header__switch:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  background: var(--primary-bg);
  width: 26px;
  height: 26px;
  border-radius: 100px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

.header__switch span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  z-index: 1;
  transition: color 0.3s ease, opacity 0.3s ease;
  color: var(--white);
}

.header__switch span.header__switch-dark {
  color: var(--dark);
}

.header__switch svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header__switch.dark:before {
  transform: translate(30px, -50%);
}

.header__switch.dark .header__switch-dark {
  color: var(--white);
  opacity: 1;
}

.header__switch.dark .header__switch-light {
  color: var(--dark);
  opacity: 0.3;
}

.header__switch-dark {
  opacity: 0.3;
}

.header__burger {
  flex: none;
  position: relative;
  display: none;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--dark);
  transition: color 0.2s;
  cursor: pointer;
}

.header__burger span {
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header__burger span:first-child {
  top: 6px;
}

.header__burger span:nth-child(2) {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.header__burger span:last-child {
  top: auto;
  bottom: 5px;
}

.header__burger.active {
  color: var(--link);
}

.header__burger.active span:first-child {
  transform: rotate(45deg);
  top: 12px;
}

.header__burger.active span:nth-child(2) {
  transform: scale(0);
}

.header__burger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 15px;
}

.forecast-marquee {
  display: none;
  background-color: var(--white);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.forecast-marquee .marquee-wrapper__inner {
  display: flex;
  animation: scroll-left 40s linear infinite;
}

.forecast-marquee .forecast-short {
  display: inline-flex;
  gap: 30px;
}

.forecast-marquee .forecast-short__imgs {
  width: 37px;
}

.forecast-marquee .forecast-short__imgs .img {
  width: 25px;
  height: 25px;
}

.forecast-marquee .forecast-short__teams {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--link);
}

.forecast-marquee .forecast-short__teams span {
  font-size: 12px;
}

.forecast-marquee .forecast-short__teams span:nth-child(2):before {
  content: "-";
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.content {
  width: calc(100% - 305px);
}

.content.internal {
  width: 100%;
}

.content.internal .content__block-item {
  padding: 50px 25px;
}

.content.internal .content__block-item.sm {
  padding: 35px 25px;
}

.content.internal .content__block-item.important-links {
  padding: 25px;
}

.content.internal .content__head {
  background: url(../img/internal-page-bg.webp) 50% 50%/cover no-repeat;
  padding: 25px;
}

.content.internal .content__head .content__head-inner {
  max-width: none;
}

.content.internal .content__head .content__head-title {
  display: inline-block;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: var(--dark);
}

.content.internal .content__head .content__head-desc {
  text-align: center;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 135%;
}

.content.author .content__head {
  background: url(../img/internal-page-bg-sec.webp) 50% 50%/cover no-repeat;
  height: 300px;
  margin-bottom: 0;
}

.content.about .content__head {
  position: relative;
  padding-bottom: 150px;
  background: var(--white) url(../img/about-bg.webp) 50% 50%/cover no-repeat;
}

.content.about .content__head .content__head-inner {
  max-width: none;
  padding: 55px 0;
}

.content.about .content__head .content__head-title {
  display: inline-block;
  margin: 0 auto 15px;
  text-transform: uppercase;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(136deg, rgba(0, 133, 202, 0.6) 0%, #0085ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content.about .content__head .content__head-desc {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 135%;
}

.content__head {
  position: relative;
  padding: 25px 25px;
  background: var(--white) url(../img/head-bg.webp) 50% 50%/cover no-repeat;
  overflow: hidden;
}

.content__head--bk .content__head-inner {
  max-width: none;
}

.content__head-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  height: 100%;
  margin-top: 15px;
}

.content__head-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.content__head-col {
  flex: 1 1 auto;
}

.content__head-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.content__head-logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  flex: none;
}

.content__head-logo h1 {
  margin: 0;
}

.content__head-title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}

.content__head-desc {
  margin: 0;
  font-size: 16px;
  line-height: 130%;
}

.content__head-img {
  position: absolute;
  top: 12px;
  right: 0;
  width: 275px;
  height: 250px;
  object-fit: cover;
}

.content__block {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.content__block:first-child {
  margin-top: 0;
}

.content__block.bordered {
  padding: 5px;
  background-color: var(--white);
}

.content__block.bordered > div {
  border-radius: 4px;
  overflow: hidden;
}

.content__block-item {
  background-color: var(--white);
  padding: 25px;
  margin-top: 0px;
}

.content__block-item:not(.content__head) {
  margin-top: 2px;
}

.content__block-item:only-of-type {
  margin-top: 0;
}

.content__block-item.head {
  padding: 25px 25px 10px;
}

.content__block-item.head h2 {
  margin-bottom: 10px;
}

.content__block-item.head p {
  margin: 0;
  line-height: 135%;
}

.content__block-item.head p a {
  transition: opacity 0.2s ease;
}

.content__block-item.head p a:hover {
  opacity: 0.8;
}

.content__block-item.head + .content__block-item {
  margin-top: 0;
}

.content__block-item.bot {
  padding: 15px 25px;
}

.content__block-item.sm {
  padding: 20px 25px;
}

.content__body {
  padding: 0 25px;
}

.bc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bc::-webkit-scrollbar {
  display: none;
}

.bc li {
  flex: none;
  display: flex;
  align-items: center;
  color: var(--dark);
  font-size: 13px;
}

.bc li a {
  color: currentColor;
  transition: opacity 0.2s ease;
  opacity: 0.4;
}

.bc li a:hover {
  opacity: 1;
}

.bc li svg {
  width: 8px;
  height: 4px;
  fill: currentColor;
  margin-top: 2px;
  margin-right: 6px;
  opacity: 0.4;
  transform: rotate(-90deg);
}

.sidebar {
  position: sticky;
  top: 76px;
  flex: none;
  width: 290px;
  z-index: 98;
  overflow-y: auto;
  max-height: calc(100vh - 121px);
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: max-height 0.3s ease;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar.sticky {
  max-height: calc(100vh - 76px);
}

.sidebar--l {
  width: 265px;
  padding-bottom: 15px;
  padding-right: 15px;
  transition: right 0.4s ease;
}

.sidebar--l.open {
  right: 0;
}

.sidebar--l .nav-block__lc {
  display: none;
}

.sidebar--l .sidebar__promo {
  margin-top: 15px;
}

.sidebar__item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.sidebar__item:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar__item-title {
  margin-bottom: 17px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.sidebar__best li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar__best li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.sidebar__best li .btn {
  flex: none;
  width: 103px;
}

.sidebar__best li .btn span {
  width: 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar__best-company {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 42px;
  height: 34px;
}

.sidebar__best-company:hover span {
  color: var(--link);
}

.sidebar__best-company img {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 5px;
}

.sidebar__best-company span {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  color: var(--dark);
  transition: color 0.2s ease;
}

.sidebar__best-company span:nth-child(3) {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--grey-dark);
}

.sidebar__best-company span:nth-child(3) svg {
  width: 12px;
  height: 12px;
}

.sidebar__promo-item {
  position: relative;
  background-color: var(--white);
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sidebar__promo-item:last-child {
  margin-bottom: 0;
}

.sidebar__promo-item.bonus {
  border-color: rgba(89, 190, 11, 0.5);
}

.sidebar__promo-item.bonus .sidebar__promo-content {
  background: linear-gradient(315deg, #e7f5e9, #f3f6da, #E7F5F3, #D3FFC7);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

.sidebar__promo-item.bonus .sidebar__promo-content div {
  color: var(--secondary-accent);
}

.sidebar__promo-item.contest .sidebar__promo-content div {
  color: var(--dark);
}

.sidebar__promo-item.contest:hover .sidebar__promo-content div, .sidebar__promo-item.contest:hover .sidebar__promo-content p {
  color: var(--link);
}

.sidebar__promo-item .btn {
  width: 100%;
  gap: 10px;
}

.sidebar__promo-item .btn svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sidebar__promo-content {
  margin-bottom: 5px;
  padding: 6px 13px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.sidebar__promo-content div {
  margin-bottom: 1px;
  font-size: 16px;
  font-weight: 700;
  transition: color .3s ease;
}

.sidebar__promo-content p {
  color: var(--dark);
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
  transition: color .3s ease;
}

.sidebar__bonus {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0 15px;
  margin-bottom: 15px;
}

.sidebar__bonus .bonus-img {
  z-index: 1;
}

.sidebar__bonus .bonus-img img {
  width: 188px;
  height: 166px;
  object-fit: contain;
  z-index: 1;
}

.sidebar__bonus .bonus-img svg {
  display: none;
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.sidebar__bonus .btn {
  position: absolute;
  bottom: 0;
  z-index: 2;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(92, 206, 117);
  }

  70% {
    box-shadow: 0 0 0 45px rgba(92, 206, 117, 0);
  }

  100% {
    box-shadow: 0 0 0 90px rgba(92, 206, 117, 0);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-card--sm .article-card__cover {
  height: 120px;
}

.article-card--sm .article-card__title {
  font-size: 14px;
}

.article-card:hover .article-card__cover img {
  transform: scale(1.1);
}

.article-card:hover .article-card__title {
  color: var(--link);
}

.article-card__cover {
  display: block;
  width: 100%;
  height: 154px;
  border-radius: 6px;
  overflow: hidden;
}

.article-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.3s ease;
}

.article-card__info {
  display: flex;
  align-items: center;
  margin: 12px 0 5px;
  padding: 0;
}

.article-card__info li {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--grey);
}

.article-card__info li svg {
  width: 14px;
  height: 12px;
  fill: currentColor;
}

.article-card__info li:not(:first-child) {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.article-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--dark);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-orient: vertical;
  overflow: hidden;
}

.articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
}

.article-single__head {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 350px;
  z-index: 1;
}

.article-single__head:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.75;
  z-index: -1;
}

.article-single__head .bc li {
  color: var(--white);
}

.article-single__head-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.article-single__head-inner {
  max-width: none;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.article-single__head-title {
  color: var(--white);
  margin-bottom: 8px;
}

.article-single__head-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.article-single__head-info ul {
  display: flex;
  align-items: center;
  gap: 25px;
  opacity: 0.85;
}

.article-single__head-info ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.article-single__head-info ul li svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.article-single__head-bookmark {
  flex: none;
}

.article-single__head-bookmark svg {
  flex: none;
}

.article-single__content h2 {
  margin: 25px 0 15px;
  font-size: 22px;
  font-weight: 600;
}

.article-single__content h2:first-child {
  margin-top: 0;
}

.article-single__content h3 {
  margin: 25px 0 15px;
  font-size: 20px;
  font-weight: 600;
}

.article-single__content h4 {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.article-single__content p {
  margin: 0 0 15px;
  line-height: 135%;
}

.article-single__content p > a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.article-single__content p > a:hover {
  opacity: 0.75;
}

.article-single__content p:last-child {
  margin-bottom: 0;
}

.article-single__content > a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.article-single__content > a:not([data-fancybox]):hover {
  opacity: 0.75;
  text-decoration: underline;
}

.article-single__content .content__block-item > a {
  transition: opacity 0.2s ease;
}

.article-single__content .content__block-item > a[data-fancybox] {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 15px auto;
  border-radius: 10px;
  border: 1px solid var(--white);
  overflow: hidden;
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.08);
}

.article-single__content .content__block-item > a[data-fancybox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.article-single__content .content__block-item > a[data-fancybox]:after {
  content: "Увеличить";
  position: absolute;
  bottom: 15px;
  left: 50%;
  background-color: var(--white);
  background-image: url(../img/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  padding: 5px 20px 5px 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--link);
  border-radius: 5px;
  border: 1px solid rgba(0, 132, 202, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  transition: border-color 0.2s ease;
}

.article-single__content .content__block-item > a[data-fancybox] img {
  max-height: 480px;
  border-radius: 6px;
}

.article-single__content .content__block-item > a[data-fancybox]:hover {
  opacity: 0.85;
}

.article-single__content .content__block-item > a[data-fancybox]:hover:after {
  border-color: rgba(0, 132, 202, 0.5);
}

.article-single__content figure {
  margin: 15px 0;
}

.article-single__content figure a {
  transition: opacity 0.2s ease;
}

.article-single__content figure a[data-fancybox] {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--white);
  overflow: hidden;
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.08);
}

.article-single__content figure a[data-fancybox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.article-single__content figure a[data-fancybox]:after {
  content: "Увеличить";
  position: absolute;
  bottom: 15px;
  left: 50%;
  background-color: var(--white);
  background-image: url(../img/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  padding: 5px 20px 5px 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--link);
  border-radius: 5px;
  border: 1px solid rgba(0, 132, 202, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  transition: border-color 0.2s ease;
}

.article-single__content figure a[data-fancybox] img {
  max-height: 480px;
  border-radius: 6px;
}

.article-single__content figure a[data-fancybox]:hover {
  opacity: 0.85;
}

.article-single__content figure a[data-fancybox]:hover:after {
  border-color: rgba(0, 132, 202, 0.5);
}

.article-single__content figure > img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.08);
}

.article-single__content figure figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 130%;
  opacity: 0.65;
}

.article-single__content ol {
  padding-left: 25px;
}

.article-single__content ol li {
  line-height: 135%;
  margin-bottom: 10px;
}

.article-single__content ol li > a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.article-single__content ol li > a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.article-single__content ol li:last-child {
  margin-bottom: 0;
}

.article-single__content mark {
  position: relative;
  background-color: #F1FFA3;
  border-radius: 1px;
  box-shadow: 0 1px 0 2px #F1FFA3;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.article-single__content ul {
  margin: 0 0 15px;
  padding-left: 10px;
}

.article-single__content ul li {
  position: relative;
  line-height: 135%;
  padding-left: 18px;
  margin-bottom: 10px;
}

.article-single__content ul li > a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.article-single__content ul li > a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.article-single__content ul li:last-child {
  margin-bottom: 0;
}

.article-single__content ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid var(--secondary);
}

.article-single__content blockquote {
  position: relative;
  margin: 15px 0;
  background-color: #EBF8FF;
  padding: 25px;
  border-radius: 6px;
  overflow: hidden;
}

.article-single__content blockquote p {
  margin: 0 0 10px;
}

.article-single__content blockquote p:only-of-type {
  margin: 0;
}

.article-single__content blockquote:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--link);
}

.article-single__content blockquote a {
  text-decoration: underline;
  color: var(--link);
  transition: opacity 0.2s ease;
}

.article-single__content blockquote a:hover {
  opacity: 0.75;
}

.article-single__content blockquote.green {
  font-weight: 600;
  background: linear-gradient(135deg, #e5f6e9 0%, #f3fbff 100%);
}

.article-single__content blockquote.green:before {
  background-color: #A4F2B6;
}

.article-single__content blockquote.green:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background-color: #C7E7F2;
}

.article-single__content blockquote.bordered {
  padding: 25px 25px 25px 70px;
  background-color: transparent;
  border: 1px solid var(--link);
}

.article-single__content blockquote.bordered:before {
  flex: none;
  top: 22px;
  left: 19px;
  width: 36px;
  height: 36px;
  background-color: var(--link);
  -webkit-mask: url("../img/sprite.svg#info-big") no-repeat center/contain;
  mask: url("../img/sprite.svg#info-big") no-repeat center/contain;
}

.article-single__content > img {
  display: block;
  width: auto;
  height: auto;
  margin: 15px 0;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.08);
}

.article-single__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-single__content table th {
  text-align: center;
  padding: 15px 10px;
  border: 1px solid var(--border);
  border-top: none;
}

.article-single__content table th:first-child {
  border-left: none;
}

.article-single__content table th:last-child {
  border-right: none;
}

.article-single__content table td {
  text-align: center;
  padding: 8px 10px;
  border: 1px solid var(--border);
}

.article-single__content table td:first-child {
  border-left: none;
}

.article-single__content table td:last-child {
  border-right: none;
  width: 30%;
}

.article-single__content table td.high {
  background-color: #f5e0e3;
  color: #D0031C;
}

.article-single__content table td.low {
  background-color: #e8f1e5;
  color: var(--green);
}

.article-single__content table tbody tr:nth-child(odd) {
  background-color: #F8F8F8;
}

.article-single__content table tbody tr:last-child td {
  border-bottom: none;
}

.article-single__content table .left {
  text-align: left;
}

.article-single__content .table-wrapper {
  width: 100%;
  margin: 15px 0;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.article-single__content .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.article-single__content .cards p:only-of-type {
  margin: 0;
}

.article-single__content .cards__item {
  background-color: #F7F8FA;
  width: calc(50% - 7.5px);
  padding: 20px 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.article-single__content .cards__item p {
  line-height: 130%;
}

.article-single__content .cards__item-title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 115%;
}

.article-single__content .similar-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--light);
  margin: 15px 0;
  padding: 15px;
  color: var(--dark);
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: opacity 0.2s ease;
}

.article-single__content .similar-link:hover {
  text-decoration: none;
  opacity: 0.85;
}

.article-single__content .similar-link:hover .similar-link__title {
  color: var(--link);
}

.article-single__content .similar-link img {
  flex: none;
  width: 176px;
  height: 98px;
  border-radius: 5px;
  object-fit: cover;
  margin: 0;
}

.article-single__content .similar-link__text {
  flex: 1 1 auto;
}

.article-single__content .similar-link__text span {
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  opacity: 0.8;
}

.article-single__content .similar-link__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
  font-weight: 600;
  line-height: 120%;
  transition: color 0.2s ease;
}

.article-single__content .similar-link__title svg {
  width: 12px;
  height: 12px;
  fill: var(--link);
  transform: rotate(-90deg);
}

.article-single__content .step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--light-bg-gradient);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.article-single__content .step img {
  flex: none;
  width: 300px;
  height: 215px;
  margin: 0;
  object-fit: contain;
}

.article-single__content .step__text div {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
}

.article-single__content .step__text p {
  margin: 10px 0 0;
}

.article-single__content .best-bonus {
  margin: 40px 0;
}

.article-single__content .best-bonus__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.article-single__content .best-bonus__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--light-grey-gradient);
  padding: 20px;
  color: var(--dark);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.article-single__content .best-bonus__item:hover {
  text-decoration: none;
  border-color: rgba(89, 190, 111, 0.7254901961);
}

.article-single__content .best-bonus__item p {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

.article-single__content .best-bonus__item p span.bold {
  color: var(--secondary);
}

.article-single__content .best-bonus__item img {
  flex: none;
  width: 71px;
  height: 20px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}

.article-single__content .best-bonus__item > span {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--secondary);
  padding: 0;
  border-radius: 3px;
}

.article-single__content .best-bonus__item > span svg {
  width: 11px;
  height: 11px;
  fill: var(--white);
}

.article-single__content .tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 30px 0 25px;
}

.article-single__content .tabs h2 {
  margin: 0;
}

.article-single__content .tabs__list {
  flex: none;
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-width: 300px;
  background-color: var(--border);
  margin: 0;
  padding: 3px;
  border-radius: 8px;
}

.article-single__content .tabs__list.switch li {
  width: 50%;
}

.article-single__content .tabs__list li {
  padding: 0;
  margin: 0;
}

.article-single__content .tabs__list li:not(:first-child) {
  padding-left: 10px;
}

.article-single__content .tabs__list li:not(:first-child):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--divider);
  transform: translateY(-50%);
}

.article-single__content .tabs__list li:before {
  display: none;
}

.article-single__content .tabs__list li a {
  display: block;
  padding: 8px 10px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  opacity: 0.6;
  background-color: transparent;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.article-single__content .tabs__list li a:hover {
  background-color: var(--white);
  text-decoration: none;
}

.article-single__content .tabs__list li a.active {
  background-color: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.article-single__content .card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 15px;
}

.article-single__content .card img {
  width: 75px;
  height: 75px;
  flex: none;
  object-fit: contain;
  margin: 0;
}

.article-single__content .card__text div {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}

.article-single__content .card__text ul {
  margin: 0;
}

.article-single__content .action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.article-single__content .action .updated {
  font-size: 14px;
  line-height: 135%;
  opacity: 0.5;
}

.article-single__content .content-rate {
  background: var(--info-block-bg);
}

.article-single__content .content-rate .title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.article-single__content .content-rate .title.success {
  color: var(--secondary-accent);
}

.article-single__content .content-rate__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 15px;
}

.article-single__content .content-rate__inner .add-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  padding: 10px 15px;
  border-radius: 6px;
}

.article-single__content .content-rate__inner .add-rate > span {
  flex: none;
  font-size: 14px;
  font-weight: 500;
}

.article-single__content .content-rate__inner .add-rate .choice-rate {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-single__content .content-rate__inner .add-rate .choice-rate span {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.article-single__content .content-rate__inner .add-rate .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.article-single__content .content-rate__inner .add-rate .stars svg {
  flex: none;
  width: 17px;
  height: 17px;
  fill: var(--divider);
  cursor: pointer;
}

.article-single__content .content-rate__inner .add-rate .stars svg.active {
  fill: #f5a829;
}

.article-single__content .content-rate__inner .add-rate .stars svg.disabled {
  cursor: default;
  pointer-events: none;
}

.article-single__content .content-rate__inner .rate {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-single__content .content-rate__inner .rate span {
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.article-single__content .content-rate__inner .rate span:not(:nth-child(1)) {
  margin-top: 2px;
  opacity: 0.6;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid var(--divider);
}

.article-single__content .content-rate__inner .rate span:nth-child(1) {
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
}

.article-single__content .content-rate__inner .rate .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-single__content .content-rate__inner .rate .stars svg {
  width: 23px;
  height: 23px;
}

.article-single__content .safe-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--light-bg-gradient);
}

.article-single__content .safe-info svg {
  flex: none;
  width: 24px;
  height: 21px;
  fill: var(--link);
  opacity: 0.75;
}

.article-single__content .safe-info__inner .safe-info__title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--dark);
  transition: color 0.2s ease;
}

.article-single__content .safe-info__inner a:hover {
  color: var(--link);
}

.article-single__content .safe-info__inner p {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 130%;
  opacity: 0.75;
}

.article-single__content .tags-list {
  margin: 0;
  padding: 0;
}

.article-single__content .tags-list li {
  padding: 0;
  margin: 0;
}

.article-single__content .tags-list li:before {
  display: none;
}

.article-single__content .tags-list li a {
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.article-single__content .tags-list li a:hover {
  text-decoration: none;
  opacity: 1;
}

.article-single__content .share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.article-single__content .share span {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.article-single__content .share ul {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.article-single__content .share ul li {
  padding: 0;
  margin: 0;
}

.article-single__content .share ul li:before {
  display: none;
}

.article-single__content .share ul li a {
  display: block;
  width: 32px;
  height: 32px;
}

.article-single__content .share ul li a img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.article-single__content .author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.article-single__content .author .title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.article-single__content .author__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 45px;
  padding: 5px 25px 5px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-single__content .author__item:hover {
  border-color: rgba(0, 132, 202, 0.5);
  box-shadow: var(--shadow-m);
}

.article-single__content .author__item .name {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.article-single__content .author__item span {
  display: block;
  font-size: 12px;
  line-height: 100%;
  color: var(--grey);
}

.article-single__content .author__item.author__staff {
  padding-left: 46px;
}

.article-single__content .author__item.author__staff .photo {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background: var(--primary-bg);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border-radius: 4px;
}

.article-single__content .author__item.author__staff .name {
  color: var(--link);
}

.article-single__short {
  background: var(--light-bg-gradient);
  margin-bottom: 25px 0;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.article-single__short-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.article-single__short-title > svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.75;
}

.article-single__short-title div {
  flex: 1 1 auto;
}

.article-single__short-cancel {
  display: flex;
  flex: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.article-single__short-cancel.show {
  transform: rotate(180deg);
}

.article-single__short-cancel svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
  transition: fill 0.2s ease;
}

.article-single__short-text {
  max-height: 0;
  transition: max-height 0.4s ease;
  overflow: hidden;
  opacity: 0.8;
}

.article-single__short-text.open {
  max-height: 1500px;
}

.article-single__short-text p {
  line-height: 135%;
  margin: 10px 0 0;
}

.article-single__short-text ul {
  margin: 10px 0 0;
}

.article-single__content-list {
  margin: 25px 0;
}

.article-single__content-list div {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.article-single__content-list ol {
  padding-left: 35px;
  border-left: 1px solid rgba(0, 135, 202, 0.7019607843);
}

.article-single__content-list ol li {
  margin-bottom: 5px;
  color: var(--link);
  transition: color 0.2s ease;
}

.article-single__content-list ol li:hover {
  opacity: 0.75;
}

.article-single__content-list ol li a {
  display: inline-block;
  vertical-align: text-top;
  text-decoration: none;
  color: currentColor;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--divider);
}

.article-single__content-list ol li a:hover {
  text-decoration: none;
}

.popular-block__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
}

.popular-block__list .article-card:nth-child(1) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}

.popular-block__list .article-card:nth-child(1) .article-card__cover {
  flex: 1 1 auto;
}

.popular-block__list .article-card:nth-child(1) .article-card__title {
  font-size: 18px;
}

.links-block {
  margin-bottom: 25px;
}

.links-block.scroll {
  display: flex;
  align-items: center;
  background-color: rgba(248, 248, 248, 0.65);
  margin: 0;
  padding: 0 0 0 25px;
  gap: 10px;
  width: 100%;
}

.links-block.scroll .links-block__wrapper {
  flex: 1 1 auto;
  min-width: 0;
  padding: 15px 15px 15px 10px;
  overflow: auto;
}

.links-block.scroll .links-block__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 5px;
  min-width: 0;
  padding-right: 10px;
  width: max-content;
}

.links-block.scroll .links-block__list li {
  flex: 1 0 106px;
  min-width: 106px;
}

.links-block__title {
  flex: 0 0 130px;
  font-size: 18px;
  font-weight: 600;
}

.links-block__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.links-block__list li {
  flex: 0 0 98px;
  min-width: 98px;
}

.links-block__list li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background-color: var(--white);
  padding: 10px 12px;
  height: 90px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  outline: 1px solid var(--border);
  outline-offset: -1px;
  box-shadow: 0 10px 12px rgba(48, 39, 81, 0.03);
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

.links-block__list li a:hover {
  box-shadow: 0 8px 14px rgba(48, 39, 81, 0.1);
  color: var(--link);
}

.links-block__list li a img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 200px;
}

.selection .content__block-item:last-child {
  padding-bottom: 25px;
}

.selection__block:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.selection__block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 20px;
}

.selection__block-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.selection__block-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.subscribe-mail {
  position: relative;
  padding: 55px 35px;
  background: url(../img/subscribe-mail-bg.webp) 50% 50%/cover no-repeat;
}

.subscribe-mail:before {
  content: "";
  position: absolute;
  display: block;
  width: 270px;
  height: 280px;
  bottom: -36px;
  right: 47px;
  background: url(../img/subscribe-mail-img.webp) 50% 50%/100% no-repeat;
}

.subscribe-mail__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 450px;
}

.subscribe-mail__inner h2 {
  margin-bottom: 10px;
}

.subscribe-mail__inner p {
  margin: 0 0 20px;
  line-height: 135%;
}

.subscribe-mail__inner form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.subscribe-mail__inner form .field {
  flex: 1 1 auto;
}

.subscribe-mail__inner form .btn {
  width: 100%;
  max-width: 165px;
}

.faq__item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.faq__item-title {
  position: relative;
  font-weight: 600;
  padding-left: 28px;
}

.faq__item-title svg {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  fill: var(--link);
}

.faq__item-text {
  margin-top: 8px;
  padding-left: 28px;
}

.faq__item-text p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 135%;
  color: var(--grey-dark);
}

.faq__item-text p:last-child {
  margin: 0;
}

.subscribe-tg {
  position: relative;
  background: var(--block-bg-gradient);
  padding: 35px;
  overflow: hidden;
}

.subscribe-tg:before {
  content: "";
  position: absolute;
  display: block;
  top: 25px;
  right: 35px;
  width: 285px;
  height: 270px;
  background: url(../img/subscribe-tg-img.webp) 50% 50%/100% no-repeat;
}

.subscribe-tg__inner {
  width: 100%;
  max-width: 450px;
}

.subscribe-tg__inner h2 {
  margin-bottom: 10px;
  font-weight: 600;
}

.subscribe-tg__inner p {
  margin: 0 0 20px;
  line-height: 135%;
  opacity: 0.85;
}

.subscribe-tg__inner .btn {
  width: 165px;
}

.comments__form {
  width: 100%;
  margin-bottom: 20px;
}

.comments__form textarea {
  width: 100%;
  height: 90px;
  resize: none;
  margin-bottom: 10px;
}

.comments__form .btn {
  width: 250px;
  margin-left: auto;
}

.comments__item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.comments__item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.comments__item-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments__item-author a {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.comments__item-author a:hover {
  color: var(--link);
}

.comments__item-avatar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 16px;
  font-weight: 600;
  color: var(--link);
  text-transform: uppercase;
  border-radius: 5px;
  background-color: var(--primary-light);
}

.comments__item-date {
  flex: 1 1 auto;
  font-size: 14px;
  color: var(--grey);
  padding-left: 10px;
  text-align: left;
  border-left: 1px solid var(--border);
}

.comments__item-like {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comments__item-like span {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.comments__item-like span:hover {
  opacity: 1;
}

.comments__item-like span:nth-child(2):hover {
  opacity: 0.4;
}

.comments__item-like svg {
  width: 10px;
  height: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.comments__item-like svg:hover {
  opacity: 1;
}

.comments__item-text {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 135%;
  opacity: 0.85;
}

.comments__item-reply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--link);
  transition: opacity 0.2s ease;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.comments__item-reply:hover {
  opacity: 0.75;
}

.comments__item-reply svg {
  margin-top: 2px;
  width: 12px;
  height: 10px;
  fill: currentColor;
}

.about__stat {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  left: 50%;
  bottom: 25px;
  width: calc(100% - 50px);
  max-width: 980px;
  transform: translateX(-50%);
}

.about__stat-item {
  background-color: var(--white);
  width: calc(33.3% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(48, 39, 81, 0.03);
}

.about__stat-item span {
  display: block;
  font-size: 32px;
  font-weight: 700;
}

.about__stat-item p {
  margin: 0;
  font-size: 16px;
  color: var(--grey);
  text-align: center;
  line-height: 130%;
  max-width: 180px;
}

.about__story.content__block-item:not(.content__head) {
  margin-top: 0;
}

.about__story h2 {
  text-align: center;
}

.about__story ul li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.about__story ul li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.about__story ul li span {
  flex: none;
  width: 77px;
  display: block;
  font-size: 22px;
  font-weight: 600;
}

.about__story ul li p {
  margin: 0;
  line-height: 135%;
  font-size: 16px;
}

.about__story ul li p a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.about__story ul li p a:hover {
  opacity: 0.75;
}

.about__story-info {
  background: linear-gradient(135deg, rgba(250, 237, 250, 0.3) 0%, rgba(248, 220, 225, 0.3) 100%);
  margin-top: 40px;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 17px;
  line-height: 135%;
}

.about__reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.about__reviews-rate {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__reviews-rate div {
  flex: none;
}

.about__reviews-rate div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg-gradient);
  padding: 15px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.about__reviews-rate div:nth-child(1) svg {
  flex: none;
  width: 17px;
  height: 17px;
}

.about__reviews-rate div:nth-child(1) span {
  flex: none;
  font-size: 24px;
  font-weight: 700;
}

.about__reviews-rate div:nth-child(2) span {
  display: block;
  font-size: 12px;
  margin-bottom: 1px;
  line-height: 120%;
}

.about__reviews-rate div:nth-child(2) a {
  display: inline-block;
  padding-bottom: 1px;
  font-size: 14px;
  line-height: 120%;
  border-bottom: 1px dashed var(--divider);
  transition: opacity 0.2s ease;
}

.about__reviews-rate div:nth-child(2) a:hover {
  opacity: 0.75;
}

.about__says {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-team .tabs {
  margin-left: auto;
  margin-right: auto;
}

.media-block {
  padding: 50px 25px 25px;
}

.media-block.content.content__block-item {
  padding: 0;
}

.media-block .carousel-pagination {
  margin-top: 10px;
}

.media-block--reviews {
  background: var(--block-accent-gradient);
  padding: 50px 25px 25px;
}

.media-block--reviews .media-block__list {
  padding: 25px 25px;
  margin: 0 -25px;
}

.media-block--reviews .media-block__item {
  outline: none;
  box-shadow: var(--shadow-m);
}

.media-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-left: 25px;
  margin-bottom: 15px;
}

.media-block__head .block-title {
  max-width: 270px;
  margin: 0;
}

.media-block__rate {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  max-width: 506px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
}

.media-block__rate div {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-block__rate div svg {
  width: 21px;
  height: 21px;
  flex: none;
}

.media-block__rate div span {
  display: block;
  flex: none;
  font-size: 28px;
  font-weight: 700;
}

.media-block__rate p {
  margin: 0 0 0 15px;
  padding-left: 15px;
  border-left: 1px solid var(--border);
  font-size: 15px;
  line-height: 130%;
}

.media-block__list {
  padding: 0 5px 15px;
  margin: 0 -5px;
}

.media-block__item {
  position: relative;
  background-color: var(--white);
  padding: 25px;
  border-radius: 6px;
  outline: 1px solid var(--border);
  outline-offset: -1px;
  box-shadow: var(--shadow-xs);
}

.media-block__item .source {
  display: inline-flex;
}

.media-block__item .source img {
  width: 129px;
  height: 32px;
  object-fit: contain;
}

.media-block__item .rate {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff8ee;
  border-radius: 4px;
  border: 1px solid #feecd1;
  padding: 5px 13px;
}

.media-block__item .rate svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.media-block__item .rate span {
  flex: none;
  font-size: 15px;
  font-weight: 600;
}

.media-block__item .text {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 135%;
  opacity: 0.75;
}

.media-block__item .read {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 135%;
  transition: opacity 0.3s ease;
}

.media-block__item .read:hover {
  opacity: 0.75;
}

.line-run {
  overflow: hidden;
  width: 100%;
}

.line-run.reverse {
  margin-top: 15px;
}

.line-run.reverse .line-run__list {
  animation: scroll-right 20s linear infinite;
}

.line-run__list {
  display: flex;
  gap: 10px;
  animation: scroll-left 20s linear infinite;
}

.line-run__list li {
  flex: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  border: 1px solid var(--border);
}

.line-run__list li:nth-child(4n+1) {
  background: linear-gradient(0deg, #e5f6e9 0%, #f3fbff 100%);
}

.line-run__list li:nth-child(4n+2) {
  background: linear-gradient(180deg, #fbfeff 0%, #f5fbff 100%);
}

.line-run__list li:nth-child(4n+3) {
  background: linear-gradient(0deg, #e5f6e9 0%, #f3fbff 100%);
}

.line-run__list li:nth-child(4n+4) {
  background: linear-gradient(180deg, rgba(217, 242, 255, 0.15) 0%, #d9f2ff 100%);
}

.reviews__item {
  background-color: var(--white);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}

.reviews__item:last-child {
  margin-bottom: 0;
}

.reviews__item:nth-child(3n+1) .reviews__item-avatar {
  background-color: var(--primary-light);
  color: var(--link);
}

.reviews__item:nth-child(3n+2) .reviews__item-avatar {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.reviews__item:nth-child(3n+3) .reviews__item-avatar {
  background-color: var(--light);
  color: var(--grey);
}

.reviews__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.reviews__item-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__item-avatar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
}

.reviews__item-name {
  color: var(--dark);
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.reviews__item-name:hover {
  color: var(--link);
}

.reviews__item-date {
  padding-left: 10px;
  border-left: 1px solid var(--border);
  font-size: 14px;
  color: var(--grey);
}

.reviews__item-rate {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__item-rate svg {
  flex: none;
  width: 17px;
  height: 17px;
}

.reviews__item-rate span {
  flex: none;
  font-size: 16px;
  font-weight: 600;
}

.reviews__item-text p {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 135%;
}

.reviews__item-text p:last-child {
  margin: 0;
}

.reviews__item-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
}

.reviews__item-action .read-btn {
  font-size: 14px;
  line-height: 130%;
  color: var(--link);
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.reviews__item-action .read-btn:hover {
  opacity: 0.75;
}

.reviews__item-action .answers-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--grey);
  transition: color 0.2s ease;
}

.reviews__item-action .answers-btn:hover,
.reviews__item-action .answers-btn.active {
  color: var(--link);
  cursor: pointer;
}

.reviews__item-action .answers-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.reviews__item-answers {
  margin-top: 12px;
}

.reviews__item-answer {
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.reviews__item-answer.expert {
  background: var(--light-bg-gradient);
  border-color: rgba(0, 132, 202, 0.1);
}

.reviews__item-answer.expert .reviews__item-avatar {
  background-color: var(--primary-light);
  color: var(--link);
}

.reviews__item-answer.expert .reviews__item-name {
  color: var(--link);
}

.reviews__add {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
}

.reviews__add.success {
  overflow: hidden;
}

.reviews__add .title {
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.reviews__add input.field {
  width: calc(50% - 5px);
}

.reviews__add textarea {
  width: 100%;
  height: 90px;
  resize: none;
}

.reviews__add .checkbox-wrapper {
  width: calc(100% - 200px);
}

.reviews__add .checkbox-wrapper label {
  font-size: 12px;
}

.about-offer {
  padding: 50px 25px;
  background: var(--block-accent-gradient);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-offer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(50% - 10px);
}

.about-offer__col .block-head {
  padding: 25px 30px 20px;
  margin: 0;
}

.about-offer__col .block-title {
  margin-bottom: 15px;
}

.about-offer__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 217px;
  background-color: var(--white);
  padding: 25px 100px 25px 30px;
  border-radius: 6px;
  box-shadow: var(--shadow-m);
  overflow: hidden;
}

.about-offer__subtitle {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
}

.about-offer__text {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 135%;
}

.about-offer__btn {
  width: fit-content;
  font-weight: 500;
}

.about-offer__icon {
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: contain;
  transform: rotate(-15deg);
  right: -45px;
  bottom: -45px;
}

.about-important__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 15px 10px;
}

.about-important__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  width: calc(33.3% - 10px);
  padding: 25px;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: center;
}

.about-important__item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 12px;
}

.about-important__item div {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 600;
}

.about-important__item p {
  margin: 0;
  font-size: 16px;
  line-height: 135%;
}

.team__carousel-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  color: var(--dark);
  text-align: center;
  border-radius: 10px;
  outline: 1px solid var(--border);
  outline-offset: -2px;
}

.team__carousel-item a .photo {
  width: 110px;
  height: 110px;
  border-radius: 500px;
  object-fit: cover;
}

.team__carousel-item a .name {
  margin: 15px 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.team__carousel-item a .prof {
  display: block;
  font-size: 13px;
}

.team__carousel-item a .exp {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  opacity: 0.6;
}

.contact-us__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px 40px;
}

.contact-us__info {
  padding: 20px;
  max-width: 325px;
}

.contact-us__info .block-title {
  margin-bottom: 25px;
}

.contact-us__info ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us__info ul li span {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 600;
}

.contact-us__info ul li > a {
  font-size: 17px;
  transition: opacity 0.2s ease;
}

.contact-us__info ul li > a:hover {
  opacity: 0.75;
}

.contact-us__info ul li .soc {
  margin-top: 10px;
}

.contact-us__form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 552px;
  background: linear-gradient(135deg, #fdf9fd 0%, #fdf4f6 100%);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.contact-us__form .field {
  width: 100%;
  background-color: var(--white);
}

.contact-us__form textarea {
  resize: none;
  height: 90px;
}

.contact-us__form .checkbox-wrapper {
  width: calc(100% - 200px);
}

.staff .tabs {
  margin-top: 0;
}

.staff__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.staff__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}

.staff__item .photo {
  display: flex;
  width: 110px;
  height: 110px;
  margin-bottom: 15px;
}

.staff__item .photo img {
  width: 100%;
  height: 100%;
  border-radius: 250px;
  object-fit: cover;
}

.staff__item .prof {
  display: inline-block;
  background-color: var(--light);
  margin-bottom: 8px;
  padding: 3px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.staff__item .name {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.staff__item .name:hover {
  color: var(--link);
}

.staff__item .desc {
  margin: 0 0 8px;
  text-align: center;
  font-size: 17px;
  line-height: 135%;
  opacity: 0.6;
}

.staff__item .publish {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.staff__item .publish svg {
  width: 12px;
  height: 12px;
  margin-top: 1px;
}

.staff__item .more {
  font-size: 17px;
  line-height: 135%;
  transition: opacity 0.2s ease;
}

.staff__item .more:hover {
  opacity: 0.75;
}

.author__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 25px;
}

.author__top-info {
  position: relative;
  padding-left: 95px;
}

.author__top-info .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  border-radius: 200px;
  object-fit: cover;
}

.author__top-info .name {
  margin: 3px 0 5px;
  font-size: 32px;
  font-weight: 600;
}

.author__top-info .prof {
  display: inline-block;
  background-color: var(--white);
  padding: 3px 15px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.author__top-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author__top-action .btn {
  max-width: 160px;
}

.author__audio {
  margin-top: 30px;
}

.author__audio p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 135%;
  font-weight: 500;
}

.author__text p {
  font-size: 17px;
  line-height: 135%;
  margin: 0 0 15px;
}

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

.author h4,
.author__block-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 25px;
}

.author__skills {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.author__skills-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 50px;
}

.author__skills-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.author__skills-item .label {
  font-size: 17px;
}

.author__skills-item .count {
  font-size: 17px;
  font-weight: 600;
}

.author__skills-item .bar {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background-color: var(--border);
}

.author__skills-item .bar .fill {
  width: 0;
  height: 100%;
  background: linear-gradient(315deg, #36a40b 0%, #67c143 100%);
  border-radius: 100px;
  animation: fill-bar 1.5s forwards;
  animation-delay: 0.2s;
}

.author__career {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

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

.author__career-list li {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 17px;
  line-height: 135%;
}

.author__career-list li span {
  flex: none;
  display: block;
  font-size: 15px;
  width: 145px;
  color: var(--grey);
}

.author__questions-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.author__questions-author {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.author__questions-author.expert .name {
  padding-right: 93px;
}

.author__questions-author.expert .name:after {
  content: "Эксперт";
  position: absolute;
  display: inline-block;
  top: -1px;
  right: 0;
  background-color: var(--primary-light);
  padding: 4px 10px;
  color: var(--link);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.author__questions-author .avatar {
  flex: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--primary-light);
  font-size: 16px;
  font-weight: 600;
  color: var(--link);
  overflow: hidden;
}

.author__questions-author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author__questions-author .name {
  position: relative;
}

.author__questions-author .name a {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s ease;
}

.author__questions-author .name a:hover {
  color: var(--link);
}

.author__questions-author .name span {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-top: 2px;
}

.author__questions-text {
  margin-top: 12px;
}

.author__questions-text p {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 135%;
}

.author__questions-text p:last-child {
  margin: 0;
}

.author__questions-reply {
  margin: 15px 0 0 10px;
  padding: 2px 0 0 20px;
  border-left: 1px solid rgba(0, 132, 202, 0.5);
}

.author__articles-list li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.author__articles-list li a {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 17px;
  line-height: 135%;
  color: var(--dark);
  transition: color 0.2s ease;
}

.author__articles-list li a:hover {
  color: var(--link);
}

.author__articles-list li a:hover span {
  color: var(--grey);
}

.author__articles-list li a span {
  flex: none;
  width: 85px;
  font-size: 15px;
  color: var(--grey);
  line-height: 130%;
}

.vacancies__list-item {
  background-color: var(--white);
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}

.vacancies__list-item:last-child {
  margin-bottom: 0;
}

.vacancies__list-item .title {
  font-size: 22px;
  font-weight: 600;
}

.vacancies__list-item .desc {
  margin-top: 10px;
  opacity: 0.75;
}

.vacancies__list-item .desc p {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 135%;
}

.vacancies__list-item .desc p:last-child {
  margin-bottom: 0;
}

.vacancies__list-item .info {
  display: inline-flex;
  align-items: center;
  gap: 3px 20px;
  margin-top: 20px;
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.vacancies__list-item .info li {
  font-size: 17px;
  line-height: 135%;
}

.vacancies__list-item .info li span {
  font-weight: 600;
}

.vacancies__list-item .info li:not(:first-child) {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.vacancies__list-item .action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  margin-top: 20px;
}

.vacancies__list-item .action span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  line-height: 135%;
  color: var(--dark);
  opacity: 0.75;
}

.vacancies__list-item .action span svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-bottom: 1px;
}

.vacancies__respond .block-head {
  text-align: center;
  margin-bottom: 40px;
}

.vacancies__respond .block-head p {
  max-width: 645px;
  margin: 0 auto;
}

.vacancies__respond-content {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.vacancies__respond-content .contact-us__form {
  flex: 1 1 auto;
  max-width: none;
}

.vacancies__respond-content .contact-us__form input.field:nth-of-type(-n+2) {
  width: calc(50% - 5px);
}

.vacancies__respond-content .contact-us__form .btn,
.vacancies__respond-content .contact-us__form .clip-file {
  width: 100%;
}

.vacancies__respond-cb {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 270px;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.vacancies__respond-cb .title {
  font-size: 22px;
  font-weight: 600;
}

.vacancies__respond-cb .desc {
  margin-top: 5px;
  font-size: 15px;
  color: var(--grey);
}

.vacancies__respond-cb .photo {
  width: 150px;
  height: 150px;
  border-radius: 500px;
  margin: 20px 0;
}

.vacancies__respond-cb .name {
  font-size: 20px;
  font-weight: 600;
}

.vacancies__respond-cb .prof {
  margin-top: 2px;
  font-size: 15px;
  color: var(--grey);
}

.vacancies__respond-cb .mail {
  display: block;
  margin-top: 20px;
  font-size: 17px;
  transition: opacity 0.2s ease;
}

.vacancies__respond-cb .mail:hover {
  opacity: 0.75;
}

.footer {
  margin-top: 10px;
  padding: 40px 25px 0;
  color: var(--dark);
}

.footer a {
  color: var(--link);
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.75;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 55px;
}

.footer__nav-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-list a {
  font-size: 14px;
}

.footer__mid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px 30px;
  margin: 25px 0;
}

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

.footer__mid-social a {
  display: block;
  color: var(--dark);
  opacity: 0.3;
}

.footer__mid-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__mid-copyright {
  font-size: 12px;
  line-height: 115%;
  opacity: 0.5;
}

.footer__mid-age {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  opacity: 0.3;
}

.footer__mid-age svg {
  flex: none;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer__mid-age p {
  margin: 0;
  font-size: 12px;
  line-height: 115%;
}

.footer__mid-gamble {
  flex: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__mid-gamble a {
  display: flex;
}

.footer__mid-gamble a img {
  width: auto;
  height: auto;
}

.footer__bot {
  padding: 10px 0;
  border-top: 1px solid var(--divider);
}

.footer__bot-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px 15px;
  flex-wrap: wrap;
}

.footer__bot-list a {
  color: var(--dark);
  font-size: 12px;
  opacity: 0.5;
}

.modal {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 450px;
  background-color: var(--white);
  padding: 35px 25px;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1001;
}

.modal .cancel {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.modal .cancel:hover {
  opacity: 1;
}

.modal .cancel svg {
  width: 14px;
  height: 14px;
}

.modal__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

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

.modal__form#sing-up {
  display: none;
}

.modal__form .checkbox-wrapper {
  margin-top: 5px;
  font-size: 14px;
}

.modal__form .btn--primary {
  margin-top: 5px;
}

.modal__form .forgot-pass {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  opacity: 0.6;
  margin-top: 5px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.modal__form .forgot-pass:hover {
  color: var(--link);
  opacity: 1;
}

.sidebar--l .simplebar-track.simplebar-vertical {
  width: 8px;
  right: 4px;
}

.sidebar--l .simplebar-scrollbar.simplebar-visible:before, .simplebar-scrollbar.simplebar-visible:before {
  opacity: .1;
}

.simplebar-track.simplebar-horizontal {
  height: 7px;
}

.links-block__wrapper .simplebar-track.simplebar-horizontal {
  bottom: 3px;
  left: 10px;
  width: calc(100% - 20px);
}
@media (min-width: 1151px) {
  .header.sticky {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: 0 6px 12px rgba(48, 39, 81, 0.07);
  }

  .header.sticky .header__action {
    border: 1px solid var(--border);
  }

  .header.sticky .header__search-content form.result {
    outline: 1px solid var(--border);
  }
}

@media (min-width: 1300px) {
  .main-nav__item ul a:hover:not(.active), .main-nav__item ul .main-nav__link:hover {
    background-color: transparent;
  }

  .main-nav__link:hover:not(.active) {
    background-color: var(--light);
  }
}

@media (max-width: 1300px) {
  .main-nav__item {
    margin-bottom: 0;
  }

  .main-nav__item ul a:not(:has(img)) span {
    padding-left: 0;
  }

  .main-nav__item ul a {
    min-height: 51px;
    padding: 15px 0;
  }

  .main-nav__item ul.open {
    padding-top: 0;
  }

  .main-nav__link {
    background-color: transparent;
    padding: 15px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav__link svg.drop-icon {
    right: 0;
  }

  .header__logo {
    width: auto;
    margin-right: 20px;
  }

  .header__burger {
    display: flex;
  }

  .sidebar--l {
    position: fixed;
    top: 121px;
    width: 300px;
    right: -100%;
    height: calc(100vh - 121px);
    background-color: var(--white);
    max-height: none;
    padding: 0;
    border-radius: 0;
    z-index: 150;
  }

  .sidebar--l.long.open {
    top: 66px;
    height: calc(100vh - 66px);
  }

  .sidebar--l.sticky {
    top: 66px;
    height: calc(100vh - 66px);
    max-height: none;
  }

  .sidebar--l .nav-block {
    margin-bottom: 0;
    padding: 15px 25px;
    border-radius: 0;
    height: 100%;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 1175px) {
  .main {
    padding: 0;
  }

  .forecast-short {
    gap: 30px;
  }

  .forecast-short__imgs {
    width: 37px;
  }

  .forecast-short__imgs .img {
    width: 25px;
    height: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }

  .forecast-short__imgs img {
    width: 15px;
    height: 15px;
  }

  .forecast-short__teams span {
    font-size: 12px;
  }

  .content-wrapper {
    flex-direction: column;
    padding: 0;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-pagination {
    margin-top: 25px;
  }

  .header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .header__action {
    margin-left: 0;
    border: 1px solid var(--border);
    width: 145px;
    position: initial;
  }

  .header__choice {
    position: relative;
    flex: none;
    width: 35px;
    height: auto;
    padding: 0;
  }

  .header__choice-inner {
    position: relative;
    padding: 0;
    justify-content: center;
  }

  .header__choice-inner:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-bg);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
  }

  .header__choice-inner.active > svg {
    transform: none;
  }

  .header__choice-inner.active:before {
    opacity: 1;
  }

  .header__choice-inner.active svg {
    fill: var(--white);
    z-index: 1;
  }

  .header__choice-inner > span {
    display: none;
  }

  .header__choice-inner > svg:nth-child(1) {
    display: block;
  }

  .header__choice-inner > svg:nth-child(3) {
    display: none;
  }

  .header__search {
    flex: 1 1 auto;
    width: auto;
  }

  .header__search-content {
    width: 100%;
    left: 0;
    right: initial;
    top: 0;
    padding: 15px;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(48, 39, 81, 0.12);
  }

  .header__search-content form {
    border: 1px solid var(--border);
  }

  .header__search-content .cancel {
    height: 26px;
    padding: 4px 10px;
  }

  .header__bonus {
    position: absolute;
  }

  .header__bonus-icon {
    position: fixed;
    bottom: 58px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    overflow: initial;
    animation: pulse 2s infinite;
    z-index: 50;
    transition: transform .2s ease;
  }

  .header__bonus-icon.hide {
    transform: scale(0);
  }

  .header__bonus-icon:before {
    display: none;
  }

  .header__bonus-icon > svg {
    width: 18px;
    height: 18px;
  }

  .header__bonus-icon .header__bonus-cancel {
    display: flex;
    width: 17px;
    height: 17px;
    left: -4px;
    top: -7px;
    right: initial;
  }

  .header__bonus-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%);
  }

  .header__bonus-modal.fixed {
    z-index: 1001;
  }

  .header__bonus-modal .inner {
    padding: 20px 15px;
  }

  .header__switch {
    border: 1px solid var(--border);
    background-color: var(--light);
  }

  .content:not(:has(.sidebar--r)) {
    flex: initial;
    width: 100%;
  }

  .content {
    border-radius: 0;
  }

  .content__block {
    border-radius: 0;
  }

  .sidebar--l {
    top: 117px;
    height: calc(100vh - 117px);
    max-height: none;
  }

  .sidebar--l.long.open {
    top: 72px;
    height: calc(100vh - 72px);
  }

  .sidebar--l.sticky {
    top: 72px;
    height: calc(100vh - 72px);
    max-height: none;
  }

  .sidebar--r {
    width: 100%;
  }

  .sidebar__item {
    padding: 25px 25px;
    border-radius: 0;
  }

  .sidebar__promo-item {
    border-radius: 0;
  }

@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgb(92, 206, 117);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(92, 206, 117, 0);
    }

    100% {
      box-shadow: 0 0 0 30px rgba(92, 206, 117, 0);
    }
}

  .article-single__content .best-bonus__list {
    gap: 10px;
  }

  .article-single__content .best-bonus__item {
    padding: 12px 15px;
  }

  .article-single__content .best-bonus__item p {
    font-size: 14px;
  }

  .subscribe-mail {
    padding: 55px 25px;
  }

  .subscribe-tg {
    padding: 35px 25px;
  }

  .subscribe-tg:before {
    right: -8%;
  }

  .author__skills-list {
    gap: 25px 35px;
  }
}

@media (max-width: 992px) {
  .info-block.hh {
    padding: 20px 25px;
  }

  .info-block {
    padding: 20px 25px;
  }

  .important-links {
    padding: 30px 15px 0;
  }

  .header__search-front {
    height: 34px;
    padding: 5px 10px;
  }

  .header__lc {
    display: none;
  }

  .header__switch {
    display: none;
  }

  .content {
    flex: initial;
    width: 100%;
  }

  .content__body {
    padding: 0 15px;
  }

  .sidebar--l {
    top: 113px;
    height: calc(100vh - 113px);
  }

  .sidebar--l.long.open {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .sidebar--l.sticky {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .sidebar--l .nav-block__lc {
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .article-single__content .cards__item {
    padding: 15px;
  }

  .subscribe-mail {
    padding: 25px;
  }

  .subscribe-mail:before {
    right: 0;
    bottom: -90px;
  }

  .subscribe-tg {
    padding: 30px 25px;
  }

  .subscribe-tg:before {
    right: -3%;
  }

  .about__stat-item span {
    font-size: 26px;
  }

  .about__stat-item p {
    font-size: 14px;
  }

  .media-block__head {
    padding-left: 0;
  }

  .media-block__rate {
    max-width: 400px;
  }

  .media-block__item {
    padding: 20px 20px;
    border-radius: 8px;
  }

  .media-block__item .text {
    font-size: 14px;
    line-height: 130%;
  }

  .media-block__item .read {
    margin-top: 15px;
    font-size: 14px;
    line-height: 130%;
  }

  .about-offer__col .block-head {
    padding-left: 25px;
  }

  .about-offer__item {
    padding: 20px 100px 20px 25px;
    height: 280px;
  }

  .contact-us__form {
    max-width: 380px;
    padding: 20px;
    border-radius: 8px;
  }

  .contact-us__form .checkbox-wrapper {
    width: 100%;
    order: 10;
  }

  .contact-us__form .btn {
    width: 100%;
  }

  .staff__list {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  .author__top-info {
    padding-left: 77px;
  }

  .author__top-info .photo {
    width: 65px;
    height: 65px;
  }

  .author__top-info .name {
    font-size: 26px;
  }

  .author__top-info .prof {
    font-size: 12px;
  }

  .author__top-action .btn {
    max-width: 135px;
  }

  .author__skills-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding-top: 25px;
  }

  .footer__mid {
    flex-wrap: wrap;
  }

  .footer__mid-age {
    max-width: none;
  }
}

@media (max-width: 767px) {
  body.article footer {
    padding-bottom: 35px;
  }

  .top-img a {
    height: 35px;
  }

  .btn--mg {
    width: 100%;
    margin: 20px 0 auto;
  }

  .content-wrapper {
    gap: 10px;
  }

  .page .block-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page .block-head h2 {
    margin-bottom: 10px;
  }

  .main-nav__item ul {
    padding-left: 10px;
  }

  .block-head p {
    font-size: 14px;
  }

  .block-title {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .pagination {
    flex-wrap: wrap-reverse;
    justify-content: center;
    margin-top: 25px;
  }

  .pagination .btn {
    width: 100%;
  }

  .divider {
    margin: 35px 0;
  }

  .tags-list {
    gap: 5px;
  }

  .tags-list li a {
    padding: 6px 10px;
  }

  .slide-card__trigger {
    display: flex;
  }

  .rating-big {
    max-width: none;
    padding: 12px;
    border-radius: 8px;
  }

  .rating-big__result {
    gap: 5px;
    font-size: 24px;
  }

  .rating-big__result svg {
    width: 18px;
    height: 18px;
  }

  .rating-big__info {
    margin-right: auto;
  }

  .rating-big__place {
    width: auto;
    margin-top: 0;
    margin-left: 15px;
  }

  .head-bonus {
    flex-wrap: wrap;
    padding: 15px;
    gap: 10px;
    margin-top: 10px;
  }

  .head-bonus__info p {
    font-size: 14px;
  }

  .head-bonus__title {
    gap: 7px;
  }

  .head-bonus__title svg {
    width: 18px;
    height: 18px;
  }

  .head-bonus__get {
    width: 100%;
    justify-content: center;
  }

  .carousel-5 .swiper {
    overflow: initial;
  }

  .carousel-pagination {
    margin-top: 15px;
  }

  .error-message {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 30px);
  }

  .tabs {
    margin: 25px 0;
    overflow-x: auto;
  }

  .tab {
    padding: 10px;
    font-size: 14px;
  }

  .info-block.hh {
    text-align: center;
  }

  .info-block {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }

  .info-block__desc {
    max-width: none;
  }

  .important-links {
    padding: 20px 15px 0;
  }

  .important-links .title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .important-links__list {
    flex-direction: column;
    gap: 5px;
  }

  .important-links__list a {
    flex: initial;
    width: 100%;
  }

  .soc-colors a {
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }

  .voice-message {
    max-width: none;
    padding: 5px 12px;
  }

  .header {
    padding: 12px 0;
  }

  .header__logo {
    flex: 1 1 auto;
    width: auto;
    margin-right: 0;
  }

  .header__logo a {
    width: 102px;
    height: 26px;
  }

  .header__forecast {
    display: none;
  }

  .header__choice {
    position: initial;
  }

  .header__choice-list {
    left: 0;
    width: 100%;
    top: 100%;
    transform: none;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid var(--border);
    transition: none;
  }

  .header__choice-result {
    left: 0;
    width: 100%;
    top: 100%;
    transform: none;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid var(--border);
  }

  .header__search-front {
    height: 30px;
  }

  .header__search-content {
    padding: 9px 15px;
  }

  .header__search-content form.result {
    border-radius: 6px;
  }

  .header__search-result {
    display: none;
  }

  .forecast-marquee {
    display: block;
  }

  .content.internal .content__block-item {
    padding: 25px 15px;
  }

  .content.internal .content__block-item.sm {
    padding: 20px 15px;
  }

  .content.internal .content__block-item.important-links {
    padding: 15px;
  }

  .content.internal .content__head {
    padding: 20px 15px 0;
  }

  .content.internal .content__head:before {
    display: none;
  }

  .content.internal .content__head .content__head-inner {
    width: 100%;
    padding: 30px 0;
  }

  .content.internal .content__head .content__head-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .content.internal .content__head .content__head-desc {
    font-size: 15px;
    max-width: none;
  }

  .content.author .content__head {
    height: 280px;
  }

  .content.about .content__head {
    background: var(--white) url(../img/about-bg-mob.webp) 50% 0%/100% no-repeat;
    padding-bottom: 10px;
  }

  .content.about .content__head .content__head-inner {
    width: 100%;
    padding: 15px 0 20px;
  }

  .content.about .content__head .content__head-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .content.about .content__head .content__head-desc {
    font-size: 15px;
    max-width: none;
    padding: 0 20px;
  }

  .content {
    width: 100%;
    flex: initial;
  }

  .content__head {
    padding: 20px 15px;
  }

  .content__head {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .content__head--bk .content__head-inner {
    width: 100%;
  }

  .content__head-inner {
    max-width: none;
    width: 80%;
  }

  .content__head-top {
    flex-wrap: wrap;
    gap: 10px;
  }

  .content__head-logo {
    margin-bottom: 10px;
  }

  .content__head-logo img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
  }

  .content__head-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .content__head-desc {
    font-size: 14px;
  }

  .content__head-img {
    width: 145px;
    height: 132px;
    top: 32px;
    right: -60px;
  }

  .content__block.bordered {
    padding: 0;
  }

  .content__block.bordered > div {
    border-radius: 0;
  }

  .content__block.bordered > div:not(.links-block) {
    border-top: 1px solid var(--border-bg);
    border-bottom: 1px solid var(--border-bg);
  }

  .content__block-item {
    padding: 20px 15px;
  }

  .content__block-item.head {
    padding: 20px 15px 5px;
  }

  .content__block-item.head h2 {
    margin-bottom: 7px;
  }

  .content__block-item.head p {
    font-size: 14px;
    line-height: 130%;
  }

  .content__block-item.bot {
    padding: 15px;
  }

  .content__block-item.sm {
    padding: 15px;
  }

  .bc {
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .sidebar--l {
    top: -100%;
    width: 100%;
    right: initial;
    transition: top 0.4s ease;
  }

  .sidebar--l.sticky {
    top: -100%;
    height: calc(100vh - 56px);
    max-height: none;
  }

  .sidebar--l.sticky.open {
    top: 56px;
  }

  .sidebar--l.open {
    top: 91px;
    right: initial;
    max-height: none;
  }

  .sidebar--l.long.open {
    top: 56px;
    height: calc(100vh - 56px);
  }

  .sidebar--l .nav-block {
    padding: 15px;
  }

  .sidebar__item:not(:last-child) {
    margin-bottom: 2px;
  }

  .sidebar__item {
    padding: 20px 15px;
  }

  .article-card {
    position: relative;
    flex-direction: column-reverse;
    justify-content: center;
    padding-left: 127px;
    height: 75px;
  }

  .article-card--sm .article-card__cover {
    height: 75px;
  }

  .article-card--sm .article-card__title {
    font-size: 15px;
  }

  .article-card__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 75px;
  }

  .article-card__info {
    margin: 5px 0 0;
  }

  .article-card__info li svg {
    width: 12px;
    height: 10px;
  }

  .article-card__title {
    font-size: 15px;
    font-weight: 500;
  }

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

  .article-single__head {
    height: 260px;
  }

  .article-single__head:before {
    background: #000000;
  }

  .article-single__head-inner {
    width: 100%;
  }

  .article-single__head-info ul {
    gap: 7px;
  }

  .article-single__head-info ul li {
    gap: 5px;
    font-size: 12px;
  }

  .article-single__head-info ul li:not(:first-child) {
    padding-left: 7px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

  .article-single__head-info ul li svg {
    width: 13px;
    height: 13px;
  }

  .article-single__head-bookmark {
    padding: 4px 12px;
  }

  .article-single__content h2 {
    margin-top: 20px;
    font-size: 20px;
  }

  .article-single__content h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .article-single__content h4 {
    margin-top: 15px;
    font-size: 17px;
  }

  .article-single__content p {
    font-size: 14px;
    line-height: 130%;
  }

  .article-single__content ol li {
    font-size: 14px;
    line-height: 130%;
  }

  .article-single__content ul li {
    font-size: 14px;
    line-height: 130%;
  }

  .article-single__content blockquote {
    padding: 15px 20px;
  }

  .article-single__content blockquote.bordered {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 15px;
  }

  .article-single__content blockquote.bordered:before {
    position: relative;
    top: initial;
    left: initial;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .article-single__content table {
    width: max-content;
    min-width: 100%;
    max-width: 800px;
  }

  .article-single__content .table-wrapper {
    padding-bottom: 5px;
    overflow-x: scroll;
  }

  .article-single__content .table-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .article-single__content .table-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 20px;
  }

  .article-single__content .table-wrapper::-webkit-scrollbar-track {
    background: var(--border);
  }

  .article-single__content .cards {
    gap: 10px;
  }

  .article-single__content .cards__item {
    width: 100%;
  }

  .article-single__content .cards__item-title {
    font-size: 16px;
  }

  .article-single__content .similar-link {
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
  }

  .article-single__content .similar-link img {
    width: 100px;
    height: 57px;
    border-radius: 4px;
  }

  .article-single__content .similar-link__text span {
    font-size: 12px;
  }

  .article-single__content .similar-link__title {
    margin-top: 2px;
    font-size: 14px;
  }

  .article-single__content .step {
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
  }

  .article-single__content .step img {
    width: 100%;
  }

  .article-single__content .step__text div {
    font-size: 18px;
  }

  .article-single__content .step__text p {
    margin-top: 5px;
  }

  .article-single__content .best-bonus {
    margin: 0;
  }

  .article-single__content .best-bonus__list {
    grid-template-columns: 1fr 1fr;
  }

  .article-single__content .best-bonus__item p {
    font-size: 13px;
  }

  .article-single__content .tabs {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }

  .article-single__content .tabs__list {
    width: 100%;
    min-width: 1px;
  }

  .article-single__content .card {
    padding: 15px;
    margin-bottom: 10px;
  }

  .article-single__content .card img {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 15px;
    top: 15px;
  }

  .article-single__content .card__text div {
    padding-left: 45px;
    margin: 8px 0 16px;
    font-size: 18px;
  }

  .article-single__content .action {
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .article-single__content .action .share {
    padding-top: 15px;
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .article-single__content .content-rate .title {
    text-align: center;
    font-size: 16px;
  }

  .article-single__content .content-rate__inner {
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
  }

  .article-single__content .content-rate__inner .add-rate {
    width: 100%;
    justify-content: center;
  }

  .article-single__content .content-rate__inner .rate span {
    font-size: 12px;
  }

  .article-single__content .content-rate__inner .rate span:nth-child(1) {
    font-size: 20px;
  }

  .article-single__content .content-rate__inner .rate .stars svg {
    width: 20px;
    height: 20px;
  }

  .article-single__content .safe-info__inner a {
    font-size: 14px;
  }

  .article-single__content .safe-info__inner p {
    font-size: 12px;
  }

  .article-single__content .share span {
    font-size: 14px;
  }

  .article-single__content .share ul {
    gap: 5px;
  }

  .article-single__content .author {
    gap: 10px 5px;
  }

  .article-single__content .author .title {
    font-size: 16px;
  }

  .article-single__content .author__item {
    width: calc(50% - 2.5px);
    padding-right: 12px;
  }

  .article-single__short {
    margin: 20px 0;
    padding: 15px;
  }

  .article-single__short-text ul li {
    font-size: 14px;
  }

  .article-single__content-list {
    margin: 20px 0;
  }

  .popular-block__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .popular-block__list .article-card:nth-child(1) {
    grid-column: initial;
    grid-row: initial;
  }

  .popular-block__list .article-card:nth-child(1) .article-card__title {
    font-size: 14px;
  }

  .links-block {
    margin-bottom: 0;
  }

  .links-block.scroll {
    flex-wrap: wrap;
    padding: 10px 0 0;
    gap: 0;
    background-color: var(--bg);
  }

  .links-block.scroll .links-block__list li {
    flex: 1 0 108px;
    min-width: 108px;
  }

  .links-block.scroll .links-block__wrapper {
    padding: 10px 15px;
    width: auto;
    margin: 0;
  }

  .links-block .links-block__wrapper .links-block__list {
    padding-right: 15px;
    width: max-content;
  }

  .links-block.scroll .links-block__wrapper .simplebar-track.simplebar-horizontal {
    left: 15px;
    bottom: 0;
    width: calc(100% - 30px);
  }
  
  .links-block__wrapper {
    margin: 0 -15px;
    padding: 0 15px 20px;
  }

  .links-block__wrapper .simplebar-track.simplebar-horizontal {
    left: 15px;
    width: calc(100% - 30px);
    bottom: 6px;
  }
  
  .links-block__title {
    flex: initial;
    width: 100%;
    padding: 0 15px;
    font-size: 17px;
  }

  .links-block__title br {
    display: none;
  }

  .links-block__list {
    flex-wrap: nowrap;
  }

  .links-block__list li {
    flex: 0 0 94px;
    min-width: 94px;
  }

  .links-block__list li a {
    height: 85px;
    padding: 10px;
  }

  .selection .content__block-item:last-child {
    padding-bottom: 52px;
  }

  .selection .content__block-item:last-child .more-link {
    bottom: 20px;
  }

  .selection__block {
    position: relative;
  }

  .selection__block.sm {
    padding-bottom: 47px;
  }

  .selection__block .more-link {
    position: absolute;
    left: 15px;
    bottom: 15px;
  }

  .selection__block-head {
    margin-bottom: 15px;
  }

  .selection__block-title {
    font-size: 18px;
  }

  .selection__block-list {
    grid-template-columns: 1fr;
  }

  .subscribe-mail {
    padding: 25px 15px;
  }

  .subscribe-mail {
    background-position: 65% 50%;
  }

  .subscribe-mail:before {
    top: 18px;
    bottom: initial;
    right: -170px;
  }

  .subscribe-mail__inner {
    max-width: none;
    width: 70%;
  }

  .subscribe-mail__inner p {
    font-size: 14px;
    line-height: 130%;
  }

  .subscribe-mail__inner form {
    flex-wrap: wrap;
  }

  .subscribe-mail__inner form .field {
    width: 100%;
  }

  .subscribe-mail__inner form .btn {
    max-width: none;
  }

  .faq__item-title {
    padding-left: 28px;
  }

  .faq__item-text p {
    font-size: 14px;
  }

  .subscribe-tg {
    padding: 25px 15px;
  }

  .subscribe-tg:before {
    width: 211px;
    height: 270px;
    background: url(../img/subscribe-tg-img-mob.webp) 50% 50%/100% no-repeat;
    top: 20px;
    right: -27%;
  }

  .subscribe-tg__inner {
    width: 65%;
    max-width: none;
  }

  .subscribe-tg__inner h2 {
    font-size: 20px;
  }

  .subscribe-tg__inner p {
    font-size: 14px;
  }

  .subscribe-tg__inner .btn {
    width: 100%;
  }

  .comments__form .btn {
    width: 100%;
    margin: 0;
  }

  .comments__item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .comments__item-top {
    gap: 8px;
  }

  .comments__item-author {
    gap: 8px;
  }

  .comments__item-author a {
    font-size: 15px;
  }

  .comments__item-date {
    font-size: 12px;
    padding-left: 5px;
  }

  .comments__item-like span {
    font-size: 15px;
  }

  .comments__item-text {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 130%;
  }

  .comments__item-reply {
    font-size: 13px;
  }

  .about__stat {
    position: relative;
    left: initial;
    bottom: initial;
    transform: none;
    width: 100%;
  }

  .about__stat-item {
    width: 100%;
    gap: 1px;
    padding: 12px 15px;
  }

  .about__stat-item span {
    font-size: 20px;
  }

  .about__stat-item p {
    max-width: none;
  }

  .about__story ul li {
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }

  .about__story ul li:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .about__story ul li span {
    width: auto;
    font-size: 20px;
  }

  .about__story ul li p {
    text-align: center;
    font-size: 14px;
    line-height: 130%;
  }

  .about__story-info {
    margin-top: 25px;
    padding: 15px;
    font-size: 15px;
    line-height: 130%;
    text-align: center;
    border-radius: 8px;
  }

  .about__reviews-head {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
  }

  .about__reviews-head .block-title {
    margin-bottom: 0;
  }

  .about__reviews-rate div:nth-child(1) {
    padding: 10px;
    gap: 10px;
    border-radius: 6px;
    gap: 4px;
  }

  .about__reviews-rate div:nth-child(1) svg {
    width: 15px;
    height: 15px;
  }

  .about__reviews-rate div:nth-child(1) span {
    font-size: 20px;
  }

  .media-block .carousel-pagination {
    margin-top: 0;
  }

  .media-block {
    padding: 30px 15px 30px;
  }

  .media-block .block-title {
    margin-bottom: 0;
  }

  .media-block--reviews {
    padding: 30px 15px 30px;
  }

  .media-block--reviews .carousel-pagination {
    margin-top: 10px;
  }

  .media-block--reviews .media-block__list {
    padding: 15px;
    margin: 0 -15px;
  }

  .media-block__head .block-title {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .media-block__head {
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
  }

  .media-block__rate {
    max-width: none;
    padding: 10px 15px;
  }

  .media-block__rate div {
    gap: 4px;
  }

  .media-block__rate div svg {
    width: 18px;
    height: 18px;
  }

  .media-block__rate div span {
    font-size: 22px;
  }

  .media-block__rate p {
    margin-left: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .media-block__list {
    padding: 15px;
    margin: 0 -15px;
  }

  .media-block__item .rate {
    top: 20px;
    right: 20px;
  }

  .line-run.reverse {
    margin-top: 10px;
  }

  .line-run.reverse .line-run__list {
    animation: scroll-right 10s linear infinite;
  }

  .line-run__list {
    animation: scroll-left 10s linear infinite;
  }

  .line-run__list li {
    font-size: 14px;
    line-height: 130%;
  }

  .reviews__item {
    margin-bottom: 10px;
    padding: 15px;
  }

  .reviews__item-author {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 45px;
    gap: 2px;
  }

  .reviews__item-avatar {
    position: absolute;
    top: 1px;
    left: 0;
  }

  .reviews__item-name {
    font-size: 15px;
  }

  .reviews__item-date {
    padding-left: 0;
    border: none;
    font-size: 12px;
  }

  .reviews__item-text p {
    font-size: 15px;
    line-height: 130%;
  }

  .reviews__item-answer {
    padding: 15px;
    border-radius: 6px;
  }

  .reviews__add {
    display: flex;
    padding: 0;
  }

  .reviews__add .title {
    text-align: center;
    margin-bottom: 5px;
  }

  .reviews__add input.field {
    width: 100%;
  }

  .reviews__add .checkbox-wrapper {
    width: 100%;
    order: 10;
  }

  .reviews__add .btn {
    width: 100%;
  }

  .about-offer {
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px 15px;
  }

  .about-offer__col {
    width: 100%;
    gap: 10px;
  }

  .about-offer__col .block-head {
    margin-bottom: 5px;
    padding: 0;
    text-align: center;
  }

  .about-offer__col .block-title {
    margin-bottom: 10px;
  }

  .about-offer__item {
    height: auto;
    padding: 20px 15px;
  }

  .about-offer__subtitle {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 120%;
  }

  .about-offer__text {
    font-size: 14px;
    line-height: 130%;
  }

  .about-offer__icon {
    width: 104px;
    height: 104px;
    right: -30px;
    bottom: -42px;
  }

  .about-important__list {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .about-important__item {
    width: 100%;
    max-width: none;
    padding: 20px 15px;
  }

  .about-important__item div {
    margin-bottom: 7px;
    font-size: 18px;
  }

  .about-important__item p {
    font-size: 14px;
    line-height: 130%;
  }

  .team__carousel-item {
    width: 230px;
  }

  .contact-us__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-us__info .block-title {
    margin-bottom: 15px;
  }

  .contact-us__info {
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .contact-us__info ul li span {
    font-size: 15px;
  }

  .contact-us__info ul li > a {
    font-size: 15px;
  }

  .contact-us__info ul li .soc {
    justify-content: center;
  }

  .contact-us__form {
    padding: 20px 15px;
  }

  .staff .tabs {
    margin-bottom: 15px;
  }

  .staff__list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
  }

  .staff__item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
  }

  .staff__item .photo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    margin: 0;
  }

  .staff__item .prof {
    margin-bottom: 0;
    margin-left: 70px;
    font-size: 12px;
  }

  .staff__item .name {
    width: 100%;
    order: -1;
    margin-top: 3px;
    margin-bottom: 5px;
    margin-left: 70px;
    font-size: 18px;
  }

  .staff__item .desc {
    width: 100%;
    margin: 14px 0 12px;
    font-size: 15px;
    line-height: 130%;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .staff__item .publish {
    margin-bottom: 0;
    opacity: 0.6;
  }

  .staff__item .more {
    font-size: 14px;
    line-height: auto;
  }

  .author__top {
    flex-wrap: wrap;
  }

  .author__top-info .name {
    font-size: 24px;
  }

  .author__top-action .btn {
    height: 33px;
    font-size: 14px;
    max-width: 125px;
    border-radius: 5px;
  }

  .author__audio {
    margin-top: 20px;
  }

  .author__audio p {
    font-size: 15px;
    line-height: 130%;
  }

  .author__text p {
    font-size: 15px;
    line-height: 130%;
  }

  .author h4,
  .author__block-title {
    margin-bottom: 20px;
  }

  .author__skills {
    padding-top: 20px;
    margin-top: 20px;
  }

  .author__skills-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .author__skills-item {
    gap: 8px;
  }

  .author__skills-item .label {
    font-size: 15px;
  }

  .author__skills-item .count {
    font-size: 15px;
  }

  .author__career {
    padding-top: 20px;
    margin-top: 20px;
  }

  .author__career-list {
    gap: 15px;
  }

  .author__career-list li {
    flex-wrap: wrap-reverse;
    gap: 5px;
    font-size: 15px;
  }

  .author__career-list li span {
    width: 100%;
    font-size: 14px;
  }

  .author__questions-author {
    align-items: center;
  }

  .author__questions-author.expert .name {
    padding-right: 84px;
  }

  .author__questions-author.expert .name:after {
    top: 0;
    font-size: 12px;
  }

  .author__questions-author .name {
    flex: 1 1 auto;
  }

  .author__questions-author .name a {
    font-size: 15px;
  }

  .author__questions-author .name span {
    font-size: 12px;
  }

  .author__questions-text p {
    font-size: 15px;
    line-height: 130%;
  }

  .author__questions-reply {
    padding-left: 15px;
  }

  .author__articles-list li a {
    flex-wrap: wrap;
    gap: 5px;
    font-size: 15px;
    line-height: 130%;
  }

  .author__articles-list li a span {
    width: 100%;
  }

  .vacancies__list-item {
    margin-bottom: 10px;
    padding: 20px 15px;
    border-radius: 10px;
  }

  .vacancies__list-item .title {
    font-size: 18px;
  }

  .vacancies__list-item .desc p {
    font-size: 15px;
    line-height: 130%;
  }

  .vacancies__list-item .info {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .vacancies__list-item .info li {
    font-size: 15px;
    line-height: 130%;
  }

  .vacancies__list-item .info li:not(:first-child) {
    padding: 0;
    border: none;
  }

  .vacancies__list-item .action {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .vacancies__list-item .action .btn {
    width: 100%;
  }

  .vacancies__list-item .action span {
    font-size: 15px;
    line-height: 130%;
    gap: 7px;
  }

  .vacancies__list-item .action span svg {
    width: 15px;
    height: 15px;
    margin: 0;
  }

  .vacancies__respond .block-head p {
    max-width: none;
    margin: 0;
  }

  .vacancies__respond .block-head {
    margin-bottom: 25px;
  }

  .vacancies__respond-content {
    flex-wrap: wrap;
  }

  .vacancies__respond-content .contact-us__form {
    width: 100%;
    flex: initial;
  }

  .vacancies__respond-content .contact-us__form input.field:nth-of-type(-n+2) {
    width: 100%;
  }

  .vacancies__respond-cb {
    width: 100%;
    padding: 25px 15px;
  }

  .footer {
    padding: 20px 15px 0;
  }

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

  .footer__nav-list {
    gap: 5px;
  }

  .footer__mid {
    margin: 20px 0;
  }

  .footer__mid-age {
    align-items: flex-start;
  }

  .footer__bot-list li {
    width: 100%;
  }

  .modal {
    width: calc(100% - 30px);
    max-width: none;
    padding: 30px 15px;
  }

  .modal__form .checkbox-wrapper {
    font-size: 12px;
  }
  .sidebar--l .simplebar-track.simplebar-vertical {
    right: 2px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .sidebar--l {
    height: calc(100vh - 91px);
  }
}

@media (max-width: 360px) {
  .rating-big__result {
    font-size: 17px;
  }

  .rating-big__result svg {
    width: 15px;
    height: 15px;
  }

  .rating-big__info {
    margin-left: 7px;
    padding-left: 7px;
    width: 52px;
    font-size: 10px;
  }

  .rating-big__place {
    font-size: 10px;
  }

  .article-single__head-info {
    flex-wrap: wrap;
  }

  .article-single__head-bookmark {
    width: 100%;
  }

  .subscribe-tg:before {
    right: -50%;
  }

  .subscribe-tg__inner {
    width: 80%;
  }
}

@media (hover: hover) {
  .main-nav__link:hover {
    color: var(--link);
  }

  .article-single__short-cancel svg:hover {
    fill: var(--link);
  }
}
