@charset "UTF-8";
/* ОБНУЛЕНИЕ */
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
    Упрощаем работу с изображениями
   */
img {
  display: block;
  max-width: 100%;
}

/**
    Наследуем свойства шрифт для полей ввода
   */
input,
textarea,
select,
button {
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0px;
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

div {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

svg,
svg path,
svg rect,
svg circle,
svg line {
  transition: 0.3s;
}

.icon {
  display: flex;
}

.vichy_banner {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .vichy_banner {
    margin-top: 24px;
  }
}

.botom_ban {
  width: 100%;
  position: relative;
}
.botom_ban-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .botom_ban-close {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .botom_ban-close {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .botom_ban-close {
    top: 10px;
    bottom: auto;
    right: 10px;
    transform: unset;
  }
}
.botom_ban-close svg {
  width: 100%;
  height: 100%;
}
.botom_ban-link {
  width: 100%;
  height: auto;
}
.botom_ban-link img {
  width: 100%;
  height: auto;
}

.header_ban {
  display: flex;
  align-items: center;
  width: 100%;
}
.header_ban-close {
  display: flex;
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  .header_ban-close {
    right: 16px;
  }
}
.header_ban-close svg {
  width: 100%;
  height: 100%;
}
.header_ban-ban {
  display: block;
  width: 100%;
  height: auto;
}
.header_ban-ban img {
  width: 100%;
  height: auto;
}

.card {
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  position: relative;
  width: 100%;
}
.card .adult_icon {
  display: none;
}
.card .image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
}
.card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .card.big {
    margin: 0 -16px;
    width: auto;
    border-radius: 24px;
  }
}
.card.big .image {
  width: 100%;
  height: auto;
  aspect-ratio: 87/49;
}
@media screen and (max-width: 767px) {
  .card.big .image {
    border-radius: 0px !important;
  }
}
.card.big .content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .card.big .content {
    row-gap: 16px;
    padding: 16px;
  }
}
.card.big .content .title {
  margin-top: -10px;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1199px) {
  .card.big .content .title {
    margin-top: -8px;
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
  }
}
.card.big .content .text {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card.small .image {
  width: 100%;
  height: auto;
  aspect-ratio: 87/49;
}
.card.small .content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.card.small .content .title {
  margin-top: -5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card.small .content .text {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card.small .content .card__bottom .avatar {
  display: none !important;
}
.card.wide {
  aspect-ratio: 43/20;
}
@media screen and (min-width: 1024px) and (hover: hover) {
  .card.wide:hover .image {
    filter: brightness(0.7);
  }
}
@media screen and (min-width: 1024px) and (hover: none) {
  .card.wide:active .image {
    filter: brightness(0.7);
  }
}
@media screen and (max-width: 1199px) {
  .card.wide {
    aspect-ratio: unset;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    height: 100%;
  }
}
.card.wide .image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .card.wide .image {
    width: 100%;
    height: auto;
    aspect-ratio: 87/49;
    border-radius: 16px;
  }
}
.card.wide .image img {
  filter: brightness(0.7);
}
@media screen and (max-width: 1199px) {
  .card.wide .image img {
    filter: brightness(1);
  }
}
.card.wide .content {
  padding: 30px;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  flex-direction: column;
  row-gap: 10px;
  z-index: 2;
  position: absolute;
  z-index: 40;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .card.wide .content {
    position: relative;
    padding: 15px 0 0 0;
    row-gap: 15px;
    flex: 1 1 auto;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .card.wide .content .title,
  .card.wide .content .text,
  .card.wide .content .tag,
  .card.wide .content .card__meta-date,
  .card.wide .content .name {
    color: #000 !important;
  }
}
@media screen and (max-width: 1199px) {
  .card.wide .content a:has(.title) {
    flex: 1 1 auto;
  }
}
.card.wide .content .title {
  margin-top: -5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .card.wide .content .title {
    margin-top: -8px;
  }
}
@media (hover: hover) {
  .card.wide .content .title:hover {
    color: #fff !important;
  }
}
@media (hover: none) {
  .card.wide .content .title:active {
    color: #fff !important;
  }
}
.card.wide .content .text {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card.wide .content .tag {
  color: #FFF;
}
@media (hover: hover) {
  .card.wide .content .tag:hover span::after {
    background: #fff;
  }
}
@media (hover: none) {
  .card.wide .content .tag:active span::after {
    background: #fff;
  }
}
.card.wide .content .card__meta-date {
  color: #fff;
}
.card.wide .content .card__bottom-author .name {
  color: #fff;
  opacity: 0.6;
  transition: 0.4s;
}
@media (hover: hover) {
  .card.wide .content .card__bottom-author:hover .name {
    opacity: 1;
  }
}
@media (hover: none) {
  .card.wide .content .card__bottom-author:active .name {
    opacity: 1;
  }
}
.card.wide .content .card__bottom-rating .count {
  color: #fff;
  opacity: 0.6;
}
.card.wide .content .card__bottom .avatar {
  display: none !important;
}
.card.wide .time_read {
  color: #fff;
}
.card.wide .time_read svg circle,
.card.wide .time_read svg path {
  stroke: #fff;
}
.card.adult .image {
  position: relative;
}
.card.adult .image img {
  filter: brightness(0.7) blur(12px);
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  max-width: calc(100% + 30px);
  max-height: calc(100% + 30px);
  top: -15px;
  left: -15px;
  position: absolute;
  object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .card.adult .image img {
    filter: brightness(1) blur(12px);
  }
}
.card.adult .adult_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px 8px 1px 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}
.card.black .content {
  background: #000;
}
.card.black .title,
.card.black .text,
.card.black .tag,
.card.black .card__meta-date {
  color: #fff !important;
}
@media (hover: hover) {
  .card.black .title:hover {
    color: #fff !important;
  }
}
@media (hover: none) {
  .card.black .title:active {
    color: #fff !important;
  }
}
@media (hover: hover) {
  .card.black .tag:hover span::after {
    background: #fff;
  }
}
@media (hover: none) {
  .card.black .tag:active span::after {
    background: #fff;
  }
}
@media (hover: hover) {
  .card.black .card__bottom-author:hover .name {
    color: #fff;
  }
}
@media (hover: none) {
  .card.black .card__bottom-author:active .name {
    color: #fff;
  }
}
.card.black .time_read {
  color: #fff;
}
.card.black .time_read svg circle,
.card.black .time_read svg path {
  stroke: #fff;
}
.card.radius_image {
  border-radius: 0px;
}
.card.radius_image .image {
  border-radius: 16px;
}
.card.content_no_padding {
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  height: 100%;
}
.card.content_no_padding .image {
  border-radius: 16px;
  overflow: hidden;
}
.card.content_no_padding .content {
  padding: 15px 0 0 0;
  row-gap: 15px;
  flex: 1 1 auto;
}
@media screen and (max-width: 1199px) {
  .card.content_no_padding .content {
    padding: 16px 0 0 0;
    row-gap: 16px;
  }
}
.card.content_no_padding .content a:has(.title) {
  flex: 1 1 auto;
}
.card.content_no_padding .content .title {
  margin-top: -10px;
}
@media screen and (max-width: 1199px) {
  .card.content_no_padding .content .title {
    margin-top: -8px;
  }
}
.card.other {
  display: flex;
  column-gap: 30px;
  border-radius: 0px;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media screen and (max-width: 1199px) {
  .card.other {
    row-gap: 16px;
  }
}
.card.other .image {
  width: 100%;
  max-width: 308px;
  overflow: hidden;
  aspect-ratio: 308/173;
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .card.other .image {
    max-width: 100%;
  }
}
.card.other .content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 100%;
  max-width: calc(100% - 308px - 30px);
}
@media screen and (max-width: 1199px) {
  .card.other .content {
    max-width: 100%;
  }
}
.card.other .content .title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-top: -5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .card.other .content .title {
    margin-top: -8px;
    font-size: 16px;
    line-height: 140%;
  }
}
.card.other .content .other_meta {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 1199px) {
  .card.other .content .other_meta {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
.card.other .content .other_meta .author {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.4s;
}
@media (hover: hover) {
  .card.other .content .other_meta .author:hover {
    color: #000;
  }
}
@media (hover: none) {
  .card.other .content .other_meta .author:active {
    color: #000;
  }
}
.card.other .content .other_meta .time_read {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.28px;
}
.card .title {
  transition: 0.4s;
}
@media (hover: hover) {
  .card .title:hover {
    opacity: 0.7;
    color: #323232 !important;
  }
}
@media (hover: none) {
  .card .title:active {
    opacity: 0.7;
    color: #323232 !important;
  }
}
.card.shadow {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
@media (hover: hover) {
  .card.shadow:hover {
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  }
}
@media (hover: none) {
  .card.shadow:active {
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  }
}

.card__meta {
  display: flex;
  align-items: center;
  column-gap: 5px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.card__meta-tags {
  display: flex;
  align-items: center;
  column-gap: 12px;
  flex-wrap: wrap;
  height: 20px;
  overflow: hidden;
}
.card__meta .tag {
  display: flex;
  column-gap: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  flex: unset;
}
.card__meta .tag .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  min-height: 16px;
  max-height: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(2px);
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.card__meta .tag span {
  position: relative;
  transition: 0.4s;
}
.card__meta .tag span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media (hover: hover) {
  .card__meta .tag:hover span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
@media (hover: none) {
  .card__meta .tag:active span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
.card__meta-date {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.card__meta-date::after {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background: #999999;
  border-radius: 50%;
}

.card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
}
.card__bottom-author {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (hover: hover) {
  .card__bottom-author:hover .name {
    color: #000;
  }
}
@media (hover: none) {
  .card__bottom-author:active .name {
    color: #000;
  }
}
.card__bottom-author .avatar {
  width: 100%;
  max-width: 30px;
  min-width: 30px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 100%;
}
.card__bottom-author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__bottom-author .name {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
.card__bottom-rating {
  display: flex;
  align-items: center;
  column-gap: 8px;
  display: none !important;
}
.card__bottom-rating .emoji {
  width: 100%;
  max-width: 52px;
  height: 20px;
}
.card__bottom-rating .emoji img {
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.card__bottom-rating .count {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card__bottom .time_read {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.28px;
}

.single_page {
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page {
    margin-top: 30px;
  }
}
.single_page .single_wrap__head {
  display: flex;
  row-gap: 40px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head {
    row-gap: 16px;
  }
}
.single_page .single_wrap__head_top {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top {
    row-gap: 16px;
  }
}
.single_page .single_wrap__head_top_meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta {
    align-items: flex-end;
    flex-wrap: wrap;
    row-gap: 16px;
  }
}
.single_page .single_wrap__head_top_meta_top {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_top {
    display: flex;
  }
}
.single_page .single_wrap__head_top_meta_top .tag {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_top .tag {
    width: auto;
    column-gap: 5px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__head_top_meta_top .tag {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
  }
}
.single_page .single_wrap__head_top_meta_top .tag .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_top .tag .icon {
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
  }
}
.single_page .single_wrap__head_top_meta_top .tag span {
  position: relative;
  transition: 0.4s;
}
.single_page .single_wrap__head_top_meta_top .tag span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 2px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__head_top_meta_top .tag:hover span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
@media (hover: none) {
  .single_page .single_wrap__head_top_meta_top .tag:active span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
.single_page .single_wrap__head_top_meta_left {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left {
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 16px;
  }
}
.single_page .single_wrap__head_top_meta_left_tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left_tags {
    display: none;
  }
}
.single_page .single_wrap__head_top_meta_left .tag {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left .tag {
    width: auto;
    column-gap: 5px;
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__head_top_meta_left .tag .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left .tag .icon {
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
  }
}
.single_page .single_wrap__head_top_meta_left .tag span {
  position: relative;
  transition: 0.4s;
}
.single_page .single_wrap__head_top_meta_left .tag span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 2px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__head_top_meta_left .tag:hover span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
@media (hover: none) {
  .single_page .single_wrap__head_top_meta_left .tag:active span::after {
    opacity: 0.5;
    visibility: visible;
  }
}
.single_page .single_wrap__head_top_meta_left_info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left_info {
    row-gap: 16px;
    column-gap: 16px;
  }
}
.single_page .single_wrap__head_top_meta_left .date {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left .date {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__head_top_meta_left .views {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left .views {
    font-size: 14px;
    line-height: 20px;
    column-gap: 5px;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_left .views .icon {
    width: 20px;
    max-width: 20px;
  }
  .single_page .single_wrap__head_top_meta_left .views .icon svg {
    width: 100%;
    height: auto;
  }
}
.single_page .single_wrap__head_top_meta_right {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right {
    column-gap: 16px;
  }
}
.single_page .single_wrap__head_top_meta_right-comments {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__head_top_meta_right-comments:hover {
    color: #000;
  }
  .single_page .single_wrap__head_top_meta_right-comments:hover svg path {
    fill: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__head_top_meta_right-comments:active {
    color: #000;
  }
  .single_page .single_wrap__head_top_meta_right-comments:active svg path {
    fill: #000;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-comments {
    column-gap: 5px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-comments .icon {
    width: 20px;
    max-width: 20px;
  }
  .single_page .single_wrap__head_top_meta_right-comments .icon svg {
    width: 100%;
    height: auto;
  }
}
.single_page .single_wrap__head_top_meta_right-share {
  position: relative;
  z-index: 7;
}
.single_page .single_wrap__head_top_meta_right-share .share_btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__head_top_meta_right-share .share_btn:hover {
    color: #000;
  }
  .single_page .single_wrap__head_top_meta_right-share .share_btn:hover svg path {
    fill: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__head_top_meta_right-share .share_btn:active {
    color: #000;
  }
  .single_page .single_wrap__head_top_meta_right-share .share_btn:active svg path {
    fill: #000;
  }
}
.single_page .single_wrap__head_top_meta_right-share .share_btn svg {
  transition: 0.4s;
}
.single_page .single_wrap__head_top_meta_right-share .share_btn svg path {
  transition: 0.4s;
}
.single_page .single_wrap__head_top_meta_right-share .share_btn .icon {
  width: 24px;
  max-width: 24px;
  height: 24px;
  transform: translateY(-2px);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-share .share_btn .icon {
    width: 20px;
    max-width: 20px;
    height: 20px;
    transform: translateY(-1px);
  }
  .single_page .single_wrap__head_top_meta_right-share .share_btn .icon svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-share .share_btn span {
    display: none;
  }
}
.single_page .single_wrap__head_top_meta_right-share .share_btn.active {
  color: #000;
}
.single_page .single_wrap__head_top_meta_right-share .share_btn.active svg path {
  fill: #000;
}
.single_page .single_wrap__head_top_meta_right-share .share_list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  padding: 10px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.single_page .single_wrap__head_top_meta_right-share .share_list.active {
  opacity: 1;
  visibility: visible;
}
.single_page .single_wrap__head_top_meta_right-share .share_list-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 16px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-share .share_list-item {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (hover: hover) {
  .single_page .single_wrap__head_top_meta_right-share .share_list-item:hover {
    color: #000;
    background: #f0f0f0;
  }
}
@media (hover: none) {
  .single_page .single_wrap__head_top_meta_right-share .share_list-item:active {
    color: #000;
    background: #f0f0f0;
  }
}
.single_page .single_wrap__head_top_meta_right-share .share_list-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
}
.single_page .single_wrap__head_top_meta_right-share .share_list-item .icon svg {
  width: 100%;
  height: 100%;
}
.single_page .single_wrap__head_top_meta_right-share .share_message {
  display: inline-flex;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(100%) translateZ(0);
  bottom: 0;
  column-gap: 8px;
  padding: 8px 14px 8px 14px;
  background: #0921FF;
  border-radius: 20px;
  z-index: 10;
  width: max-content;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  will-change: transform;
  transition: transform 0.4s;
}
.single_page .single_wrap__head_top_meta_right-share .share_message.active {
  transform: translateX(-50%) translateY(-20px) translateZ(0);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top_meta_right-share .share_message.active {
    transform: translateX(-50%) translateY(-10px) translateZ(0);
  }
}
.single_page .single_wrap__head_top_meta_right-share .share_message .icon {
  display: flex;
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}
.single_page .single_wrap__head_top_meta_right-share .share_message .icon svg {
  width: 100%;
  height: 100%;
}
.single_page .single_wrap__head_top-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  /*aspect-ratio: 165/92; */
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__head_top-image {
    width: calc(100% + 72px);
    margin-left: -36px;
    border-radius: 0px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__head_top-image {
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
}
.single_page .single_wrap__head_top-image img {
  height: auto;
}
.single_page .single_wrap__body {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body {
    margin-top: 24px;
  }
}
.single_page .single_wrap__body_top .adv_plate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  background: #f5f5f5;
  padding: 4px 9px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_top .adv_plate {
    margin-bottom: 24px;
  }
}
.single_page .single_wrap__body_top p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
.single_page .single_wrap__body_top p:last-of-type {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_top .article_author {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_top .article_author {
    margin-top: 24px;
    padding-top: 24px;
    row-gap: 20px;
  }
}
.single_page .single_wrap__body_top .article_author__top {
  display: flex;
  align-items: center;
  column-gap: 15px;
  max-width: fit-content;
}
@media (hover: hover) {
  .single_page .single_wrap__body_top .article_author__top:hover .article_author__top-avatar {
    opacity: 0.7;
  }
  .single_page .single_wrap__body_top .article_author__top:hover .article_author__top_meta-job {
    color: #000;
  }
  .single_page .single_wrap__body_top .article_author__top:hover .article_author__top_meta-name::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_top .article_author__top:active .article_author__top-avatar {
    opacity: 0.7;
  }
  .single_page .single_wrap__body_top .article_author__top:active .article_author__top_meta-job {
    color: #000;
  }
  .single_page .single_wrap__body_top .article_author__top:active .article_author__top_meta-name::after {
    opacity: 1;
  }
}
.single_page .single_wrap__body_top .article_author__top-avatar {
  width: 100%;
  max-width: 70px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  transition: 0.4s;
}
.single_page .single_wrap__body_top .article_author__top-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_top .article_author__top_meta {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
  max-width: calc(100% - 85px);
}
.single_page .single_wrap__body_top .article_author__top_meta-name {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  position: relative;
  max-width: fit-content;
}
.single_page .single_wrap__body_top .article_author__top_meta-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.4s;
}
.single_page .single_wrap__body_top .article_author__top_meta-job {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
.single_page .single_wrap__body_top .article_author__descr {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.single_page .single_wrap__body_top .article_author__descr p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 30px;
}
.single_page .single_wrap__body_top .article_author__descr p:last-of-type {
  margin-bottom: 0px;
}
.single_page .single_wrap__body .page_contain {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 0 24px;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body .page_contain {
    margin-top: 40px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    row-gap: 16px;
    position: unset;
  }
}
.single_page .single_wrap__body .page_contain-title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.single_page .single_wrap__body .page_contain__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
}
.single_page .single_wrap__body .page_contain__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}
.single_page .single_wrap__body .page_contain__list.hidden::after {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body .page_contain__list {
    row-gap: 16px;
  }
}
.single_page .single_wrap__body .page_contain__list li {
  display: flex;
}
.single_page .single_wrap__body .page_contain__list li a {
  color: #176de5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body .page_contain__list li a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body .page_contain__list li a:active {
    text-decoration-color: inherit;
  }
}
.single_page .single_wrap__body .page_contain-more {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body .page_contain-more:hover {
    color: #000;
  }
  .single_page .single_wrap__body .page_contain-more:hover svg path {
    fill: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body .page_contain-more:active {
    color: #000;
  }
  .single_page .single_wrap__body .page_contain-more:active svg path {
    fill: #000;
  }
}
.single_page .single_wrap__body .page_contain-more .icon {
  transition: 0.4s;
}
.single_page .single_wrap__body .page_contain-more.active .icon {
  transform: rotate(180deg) translateY(-2px);
}
.single_page .single_wrap__body_content {
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content {
    margin-top: 40px;
  }
}
.single_page .single_wrap__body_content > *:first-child {
  margin-top: 0px !important;
}
.single_page .single_wrap__body_content > *:last-child {
  margin-bottom: 0px !important;
}
.single_page .single_wrap__body_content h2 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin: 60px 0 30px;
  scroll-margin-top: 82px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
    margin: 48px 0 24px 0;
    scroll-margin-top: 136px;
  }
}
.single_page .single_wrap__body_content h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin: 60px 0 20px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 48px 0 16px 0;
  }
}
.single_page .single_wrap__body_content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 30px;
}
.single_page .single_wrap__body_content p img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content p {
    margin-bottom: 24px;
  }
}
.single_page .single_wrap__body_content p a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content p a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content p a:active {
    text-decoration-color: inherit;
  }
}
.single_page .single_wrap__body_content span a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content span a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content span a:active {
    text-decoration-color: inherit;
  }
}
.single_page .single_wrap__body_content aside {
  color: #176de5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: absolute;
  right: 0;
  max-width: 307px;
  padding: 0 30px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content aside {
    position: unset;
    max-width: 100%;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    margin: 40px 0;
  }
}
.single_page .single_wrap__body_content aside a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content aside a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content aside a:active {
    text-decoration-color: inherit;
  }
}
.single_page .single_wrap__body_content aside a,
.single_page .single_wrap__body_content aside p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content ol {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  list-style-type: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content ol {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.single_page .single_wrap__body_content ol li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.single_page .single_wrap__body_content ul {
  margin-top: 20px;
  margin-bottom: 30px;
  list-style-type: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content ul {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.single_page .single_wrap__body_content ul li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.single_page .single_wrap__body_content .cloud_link {
  border-radius: 4px;
  border: 1px solid rgba(9, 33, 255, 0.1);
  background: rgba(9, 33, 255, 0.05);
  position: relative;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .cloud_link__content {
  display: flex;
  column-gap: 10px;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 9px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.single_page .single_wrap__body_content .cloud_link__content-image {
  width: 100%;
  max-width: 72px;
  max-height: 72px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  height: 100%;
}
.single_page .single_wrap__body_content .cloud_link__content_meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 82px);
}
.single_page .single_wrap__body_content .cloud_link__content_meta-title {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .cloud_link__content_meta-descr {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .cloud_link__content_meta-descr p {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .cloud_link__content_meta-cost {
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin-top: 4px;
}
.single_page .single_wrap__body_content .cloud_link__content_meta-cost .sale_cost {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.single_page .single_wrap__body_content .cloud_link__content_meta-cost .ussual_cost {
  color: #999;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .cloud_link:hover .cloud_link__content {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .cloud_link:active .cloud_link__content {
    opacity: 1;
    visibility: visible;
  }
}
.single_page .single_wrap__body_content .full_ban_block {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 320px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
    min-height: 300px;
    border-radius: 24px;
  }
}
.single_page .single_wrap__body_content .full_ban_block_wrap {
  display: flex;
  column-gap: 75px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block_wrap {
    flex-direction: column;
    row-gap: 24px;
  }
}
.single_page .single_wrap__body_content .full_ban_block_wrap-avatar {
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  border-radius: 50%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block_wrap-avatar {
    max-width: 88px;
  }
}
.single_page .single_wrap__body_content .full_ban_block_wrap-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .full_ban_block_wrap_meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 150px - 75px);
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block_wrap_meta {
    max-width: calc(100% - 240px);
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .full_ban_block_wrap_meta {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .full_ban_block_wrap_meta-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block_wrap_meta-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.single_page .single_wrap__body_content .full_ban_block-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 50px));
  width: 100vw;
  height: 100%;
  user-select: none;
  pointer-events: none;
  filter: brightness(0.6);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .full_ban_block-bg {
    transform: unset;
    width: calc(100% + 72px);
    left: -36px;
    border-radius: 24px;
    overflow: hidden;
    filter: brightness(0.5);
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .full_ban_block-bg {
    width: calc(100% + 32px);
    left: -16px;
  }
}
.single_page .single_wrap__body_content .full_ban_block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content strong {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.single_page .single_wrap__body_content b {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.single_page .single_wrap__body_content figure {
  margin: 30px 0 60px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content figure {
    row-gap: 24px;
    margin: 30px 0 48px 0;
  }
}
.single_page .single_wrap__body_content figure img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.single_page .single_wrap__body_content figure figcaption {
  position: unset;
  width: 100%;
  max-width: 57%;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content figure figcaption {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .wp-caption {
  margin: 30px 0 60px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .wp-caption {
    row-gap: 24px;
    margin: 30px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .wp-caption img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.single_page .single_wrap__body_content .wp-caption .wp-caption-text {
  position: unset;
  width: 100%;
  max-width: 57%;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .wp-caption .wp-caption-text {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .article_product_slider {
  position: relative;
  margin: 30px 0 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_product_slider {
    margin: 24px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product {
  position: unset;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  width: auto;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_product_slider .sw_article_product {
    width: 100%;
    border: none;
    padding: 0px;
    overflow: visible;
    border-radius: 0px;
  }
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .swiper-slide {
  max-width: 268px;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .swiper-slide:last-child {
  margin-right: 0px !important;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item {
  display: flex;
  column-gap: 10px;
  background: #fff;
  border-radius: 16px;
  background: #fff;
  width: 100%;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .article_product_slider .sw_article_product .item:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .article_product_slider .sw_article_product .item:active {
    opacity: 0.6;
  }
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item-image {
  width: 100%;
  max-width: 72px;
  max-height: 72px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item-image .sale_percent {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 4px;
  margin: 0 4px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #fff;
  color: #e0119d;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item.adult .item-image {
  position: relative;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item.adult .item-image img {
  filter: blur(15px);
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item.adult .item-image .adult_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.44);
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 82px);
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-title {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-descr {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-descr p {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-cost {
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin-top: 4px;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-cost .sale_cost {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.single_page .single_wrap__body_content .article_product_slider .sw_article_product .item_meta-cost .ussual_cost {
  color: #999;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_product_slider .sw_article_product .sw_article_controls {
    display: none;
  }
}
.single_page .single_wrap__body_content .article_slider_gallery {
  position: relative;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_gallery {
    margin: 48px 0;
  }
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery {
  position: unset;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery {
    overflow: visible;
  }
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 308px;
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item-image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item__info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item__info-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item__info-title {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .item__info-text p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .sw_article_controls {
    display: none;
  }
}
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .sw_article_controls .swiper-button-prev,
.single_page .single_wrap__body_content .article_slider_gallery .sw_article_gallery .sw_article_controls .swiper-button-next {
  top: 138px;
  transform: unset;
}
.single_page .single_wrap__body_content .article_slider_prod_big {
  position: relative;
  margin: 30px 0 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big {
    margin: 24px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big {
  position: unset;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .swiper-wrapper {
    flex-wrap: wrap;
    margin: 0 -8px;
    width: auto;
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .swiper-slide {
  max-width: 195px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .swiper-slide {
    max-width: 25%;
    padding: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .swiper-slide {
    max-width: 50%;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 100%;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item {
    row-gap: 12px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item.adult .item-image {
  position: relative;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item.adult .item-image img {
  filter: blur(15px);
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item.adult .item-image .adult_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.44);
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item.adult .item-image .adult_icon svg {
  width: 50px;
  height: auto;
  max-width: 50px;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item-image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  position: relative;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item-image .like_btn {
  display: none;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item-image .like_btn {
    display: flex;
    position: absolute;
    top: 5px;
    right: 5px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info {
  display: flex;
  flex-direction: column;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost-main {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost-main {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost-second {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost-second {
    font-size: 11px;
    line-height: 16px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info_cost-percent {
  color: #e0119d;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info-title {
  margin-top: 3px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info-title {
    margin-top: 6px;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.44px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info-text p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .item__info-text p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .sw_article_controls {
    display: none;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .sw_article_controls .swiper-button-prev,
.single_page .single_wrap__body_content .article_slider_prod_big .sw_article_prod_big .sw_article_controls .swiper-button-next {
  top: 82px;
  transform: unset;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card {
  position: relative;
  margin: 30px 0 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card {
    margin: 24px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card {
  position: unset;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card {
    overflow: visible;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .swiper-wrapper {
    flex-direction: row;
    margin: unset;
    row-gap: unset;
    flex-wrap: nowrap;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .swiper-slide {
  max-width: 170px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .swiper-slide {
    max-width: 130px;
    padding: 0px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 100%;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item {
    row-gap: 12px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item .sale_percent {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 6px;
  margin: 0 2px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #fff;
  color: #e0119d;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item-image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  position: relative;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item-image .like_btn {
  display: none;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item-image .like_btn {
    display: flex;
    position: absolute;
    top: 5px;
    right: 5px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info {
  display: flex;
  flex-direction: column;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost-main {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost-main {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost-second {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost-second {
    font-size: 11px;
    line-height: 16px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info_cost-percent {
  color: #e0119d;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info-title {
  margin-top: 3px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info-title {
    margin-top: 6px;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.44px;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info-text p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .item__info-text p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .sw_article_controls {
    display: none;
  }
}
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .sw_article_controls .swiper-button-prev,
.single_page .single_wrap__body_content .article_slider_prod_big_card .sw_article_prod_big_card .sw_article_controls .swiper-button-next {
  top: 82px;
  transform: unset;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .sw_article_controls {
    display: none;
  }
}
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-prev::after,
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-next::after {
  display: none;
}
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-prev,
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  margin: 0px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-prev {
  left: -16px;
}
.single_page .single_wrap__body_content .sw_article_controls .swiper-button-next {
  right: -16px;
}
.single_page .single_wrap__body_content .blockquote_author_bot {
  display: flex;
  column-gap: 30px;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot {
    margin: 48px 0 48px 0;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot {
    column-gap: 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .icon {
  width: 100%;
  max-width: 40px;
  transform: translateY(5px);
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot .icon {
    max-width: 30px;
  }
  .single_page .single_wrap__body_content .blockquote_author_bot .icon svg {
    width: 100%;
    height: auto;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content {
  width: 100%;
  max-width: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content {
    max-width: calc(100% - 46px);
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text {
  color: #000;
  font-family: Lora;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .text {
    font-size: 18px;
    line-height: 140%;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 10px;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text p:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ol {
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 20px;
  list-style-type: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .text ol {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ol:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ol li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ul {
  margin-top: 0;
  margin-bottom: 10px;
  list-style-type: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .text ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ul:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text ul li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .text a {
  color: #176de5;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author {
  display: flex;
  column-gap: 20px;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50px;
  aspect-ratio: 1/1;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: calc(100% - 70px);
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-name {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  display: flex;
  max-width: fit-content;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-name:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-name:active::after {
    opacity: 1;
  }
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.4s;
}
.single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-job {
  display: flex;
  align-items: center;
  column-gap: 10px;
  transition: 0.4s;
  max-width: fit-content;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-job:hover {
    color: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_bot .content .blockquote_author_meta-job:active {
    color: #000;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top {
    margin: 48px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author {
  display: flex;
  column-gap: 20px;
  padding: 30px;
  background: #f0f0f0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author {
    padding: 16px 16px 30px 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1/1;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author-avatar {
    max-width: 50px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: calc(100% - 110px);
  row-gap: 5px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta {
    row-gap: 6px;
    max-width: calc(100% - 70px);
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-name {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  display: flex;
  max-width: fit-content;
  position: relative;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-name:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-name:active::after {
    opacity: 1;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-name {
    font-size: 18px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-job {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: inline-block;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-job .content {
  display: inline;
  margin-right: 10px;
  display: flex;
  max-width: fit-content;
  color: #999;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-job .content:hover {
    color: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-job .content:active {
    color: #000;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_meta-job .expert_cloud {
  display: inline-block;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap {
  display: flex;
  column-gap: 30px;
  padding: 40px 30px;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap {
    flex-direction: column;
    row-gap: 22px;
    padding: 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .icon {
  width: 100%;
  max-width: 40px;
  transform: translateY(5px);
  height: 100%;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content {
  width: 100%;
  max-width: calc(100% - 140px);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text {
  color: #000;
  font-family: Lora;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text {
    font-size: 18px;
    line-height: 140%;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 10px;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text p:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ol {
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 20px;
  list-style-type: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ol {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ol:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ol li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ul {
  margin-bottom: 10px;
  margin-top: 0;
  list-style-type: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ul:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text ul li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_top .blockquote_author_top_wrap .content .text a {
  color: #176de5;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_center {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #e8e8e8;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center {
    margin: 48px 0 48px 0;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px;
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center .avatar {
    max-width: 100px;
    margin-right: 0px;
    order: 1;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .blockquote_author_center .content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
  max-width: calc(100% - 40px - 160px - 30px - 40px);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center .content {
    max-width: 100%;
    order: 3;
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text {
  color: #000;
  font-family: Lora;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text h3 {
  margin: 0px;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 10px;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text p:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ol {
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 20px;
  list-style-type: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .text ol {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ol:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ol li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ul {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-top: 0;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .text ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ul:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text ul li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .text a {
  color: #176de5;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .name {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  position: relative;
  display: flex;
  max-width: fit-content;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .name:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .name:active::after {
    opacity: 1;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.4s;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .blockquote_author_meta-job {
  display: inline-block;
  align-items: center;
  column-gap: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .blockquote_author_meta-job .content {
  display: inline;
  margin-right: 10px;
  color: #999;
  max-width: fit-content;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .blockquote_author_meta-job .content:hover {
    color: #000;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .blockquote_author_meta-job .content:active {
    color: #000;
  }
}
.single_page .single_wrap__body_content .blockquote_author_center .content .meta_author .blockquote_author_meta-job .expert_cloud {
  display: inline-block;
}
.single_page .single_wrap__body_content .blockquote_author_center .icon {
  width: 100%;
  max-width: 40px;
  margin-left: 30px;
  transform: translateY(5px);
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_author_center .icon {
    order: 2;
  }
}
.single_page .single_wrap__body_content .blockquote_default {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin: 60px 0;
  padding: 29px;
  border-radius: 16px;
  border: 1px solid rgba(9, 33, 255, 0.1);
  background: rgba(9, 33, 255, 0.05);
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_default {
    row-gap: 16px;
    padding: 15px;
  }
}
.single_page .single_wrap__body_content .blockquote_default .text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.single_page .single_wrap__body_content .blockquote_default .text p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 10px;
}
.single_page .single_wrap__body_content .blockquote_default .text p:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_default .text ol {
  margin-bottom: 10px;
  padding-left: 20px;
  list-style-type: auto;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_default .text ol {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_default .text ol:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_default .text ol li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_default .text ul {
  margin-bottom: 10px;
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_default .text ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.single_page .single_wrap__body_content .blockquote_default .text ul:last-child {
  margin-bottom: 0;
}
.single_page .single_wrap__body_content .blockquote_default .text ul li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_default .text a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .blockquote_default .text_gray {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.5;
}
.single_page .single_wrap__body_content .blockquote_default .text_gray p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .blockquote_default .text_gray a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .blockquote_default {
    margin: 48px 0;
  }
}
.single_page .single_wrap__body_content .small_table {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}
.single_page .single_wrap__body_content .small_table .big_table__list {
  min-width: 100%;
  transform: unset;
}
.single_page .single_wrap__body_content .small_table .big_table__list_head .big_table__list_col {
  background: #f0f0f0;
}
.single_page .single_wrap__body_content .small_table .swiper-slide {
  width: auto;
  min-width: 100%;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.single_page .single_wrap__body_content .small_table .big_table__list_col.small:nth-child(1) {
  display: flex;
  flex-basis: 50%;
  max-width: 320px;
}
.single_page .single_wrap__body_content .small_table .big_table__list_col.small:nth-child(2) {
  display: flex;
  flex-basis: 50%;
  max-width: 225px;
}
.single_page .single_wrap__body_content .small_table .big_table__list_col.small:nth-child(3) {
  display: flex;
  flex-basis: 25%;
  max-width: 350px;
}
.single_page .single_wrap__body_content .small_table .big_table__list_col.small:nth-child(4) {
  display: flex;
  flex-basis: 25%;
  max-width: 350px;
}
.single_page .single_wrap__body_content .small_table .table_mark {
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .small_table .table_mark {
    margin-top: 16px;
  }
}
.single_page .single_wrap__body_content .dont_miss {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .dont_miss {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.single_page .single_wrap__body_content .single_article_card_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 30px;
  border-radius: 30px;
  background: #f0f0f0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .single_article_card_wrap {
    row-gap: 24px;
    padding: 48px 36px;
    margin: 0 -36px;
    margin-bottom: 24px !important;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .single_article_card_wrap {
    row-gap: 16px;
    margin: 0 -16px;
    padding: 16px;
  }
}
.single_page .single_wrap__body_content .single_article_card_wrap-it {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  padding: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .single_article_card_wrap-it {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .single_article_card_wrap-it {
    padding: 16px;
  }
}
.single_page .single_wrap__body_content .single_article_card_wrap-it p img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.single_page .single_wrap__body_content .single_article_card_wrap-it .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  height: 100%;
  background: var(--circle-color);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 20px;
}
.single_page .single_wrap__body_content .single_article_card_wrap-it h2 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  margin: 20px 0 30px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .single_article_card_wrap-it h2 {
    font-size: 22px;
    line-height: 24px;
    margin: 20px 0;
  }
}
.single_page .single_wrap__body_content .single_article_card_wrap-it p {
  margin-bottom: 20px;
}
.single_page .single_wrap__body_content .single_article_card_wrap-it figure {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .single_article_card_wrap-it figure {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.single_page .single_wrap__body_content .single_article_card_wrap-it .article_product_slider .swiper-slide {
  max-width: 250px;
}
.single_page .single_wrap__body_content .single_article_card_wrap-it > *:first-child {
  margin-top: 0px;
}
.single_page .single_wrap__body_content .single_article_card_wrap-it > *:last-child {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .shelf_project {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project {
    row-gap: 24px;
    margin: 48px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .shelf_project_item {
  row-gap: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item.row {
    --bs-gutter-x: 24px;
  }
}
.single_page .single_wrap__body_content .shelf_project_item_left {
  display: flex;
  padding: 29px 9px 29px 19px;
  border-radius: 16px;
  border: 1px solid rgba(9, 33, 255, 0.1);
  background: rgba(9, 33, 255, 0.05);
  height: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item_left {
    padding-top: 19px;
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .single_page .single_wrap__body_content .shelf_project_item_left {
    aspect-ratio: 41/55;
  }
}
.single_page .single_wrap__body_content .shelf_project_item_meta {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item_meta {
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .shelf_project_item_meta::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.single_page .single_wrap__body_content .shelf_project_item_meta::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}
.single_page .single_wrap__body_content .shelf_project_item_meta::-webkit-scrollbar-track {
  background: #FFF;
  border-radius: 10px;
}
.single_page .single_wrap__body_content .shelf_project_item_meta-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item_meta-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .shelf_project_item_meta-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.single_page .single_wrap__body_content .shelf_project_item_meta-text p {
  margin-bottom: 20px;
}
.single_page .single_wrap__body_content .shelf_project_item_meta-text p:last-child {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .shelf_project_item-img {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 366/539;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_item-img {
    aspect-ratio: 336/451;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .shelf_project_item-img {
    aspect-ratio: 41/55;
  }
}
.single_page .single_wrap__body_content .shelf_project_item-img img {
  width: 100%;
  height: auto;
}
.single_page .single_wrap__body_content .shelf_project_second {
  margin-top: 40px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(9, 33, 255, 0.1);
  position: relative;
  padding: 23px;
  row-gap: 20px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second_item {
    padding: 15px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .shelf_project_second_item {
    width: 74%;
    max-width: 400px;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item-img {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  user-select: none;
  pointer-events: none;
}
.single_page .single_wrap__body_content .shelf_project_second_item-img img {
  width: 100%;
  height: auto;
}
.single_page .single_wrap__body_content .shelf_project_second_item-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.single_page .single_wrap__body_content .shelf_project_second_item_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.single_page .single_wrap__body_content .shelf_project_second_item_content-title {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item_content-text {
  margin-top: 16px;
  flex: 1 1 auto;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-text {
    margin-top: 12px;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item_content-text p {
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-text p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 16px;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item_content-text p:last-child {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .shelf_project_second_item_content-buy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 13px 24px;
  max-width: max-content;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  border-radius: 50px;
  background: var(--Blue, #0921FF);
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-buy {
    margin-top: 20px;
    padding: 9px 20px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-buy:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .shelf_project_second_item_content-buy:active {
    opacity: 0.7;
  }
}
.single_page .single_wrap__body_content .shelf_project_second_item-link {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.single_page .single_wrap__body_content .shelf_product {
  display: flex;
  column-gap: 10px;
  background: #fff;
  border-radius: 16px;
  background: #FFF;
  width: 100%;
  transition: 0.4s;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  padding: 19px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .shelf_product {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .shelf_product {
    padding: 0;
    border: unset;
  }
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .shelf_product:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .shelf_product:active {
    opacity: 0.6;
  }
}
.single_page .single_wrap__body_content .shelf_product-image {
  width: 100%;
  max-width: 72px;
  max-height: 72px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
}
.single_page .single_wrap__body_content .shelf_product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.single_page .single_wrap__body_content .shelf_product-image .sale_percent {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 4px;
  margin: 0 4px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #FFF;
  color: #E0119D;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.single_page .single_wrap__body_content .shelf_product.adult .item-image {
  position: relative;
}
.single_page .single_wrap__body_content .shelf_product.adult .item-image img {
  filter: blur(15px);
}
.single_page .single_wrap__body_content .shelf_product.adult .item-image .adult_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.44);
}
.single_page .single_wrap__body_content .shelf_product_meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 82px);
}
.single_page .single_wrap__body_content .shelf_product_meta-title {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .shelf_product_meta-descr {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.single_page .single_wrap__body_content .shelf_product_meta-descr p {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .shelf_product_meta-cost {
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin-top: 4px;
}
.single_page .single_wrap__body_content .shelf_product_meta-cost .sale_cost {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.single_page .single_wrap__body_content .shelf_product_meta-cost .ussual_cost {
  color: #999;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
}
.single_page .single_wrap__body_content .poll_block {
  border-radius: 16px;
  border: 1px solid rgba(6, 31, 245, 0.1);
  background: rgba(6, 31, 245, 0.05);
  padding: 30px;
  margin: 40px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .poll_block {
    margin: 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block {
    padding: 16px;
  }
}
.single_page .single_wrap__body_content .poll_block > *:first-child {
  margin-top: 0px;
}
.single_page .single_wrap__body_content .poll_block > *:last-child {
  margin-bottom: 0px;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_item {
  user-select: none;
  pointer-events: none;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_item-text-votes {
  display: inline;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_item-percent_vote {
  display: block;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block-total_votes {
  display: block;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_row .poll_block_list_item-label {
  position: unset;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_row .poll_block_list_item-check {
  border: unset;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_row .poll_block_list_item-check:checked {
  border: unset;
}
.single_page .single_wrap__body_content .poll_block.--voted .poll_block_list_row .poll_block_list_item-text {
  display: flex;
}
.single_page .single_wrap__body_content .poll_block-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 0px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block-title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .poll_block form {
  width: 100%;
  max-width: 100%;
}
.single_page .single_wrap__body_content .poll_block_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list {
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .poll_block_list_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_row {
    row-gap: 16px;
  }
}
.single_page .single_wrap__body_content .poll_block_list_row-col {
  padding: 0 10px;
  width: 100%;
  max-width: 33.33333333%;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_row-col {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  column-gap: unset;
  border-radius: unset;
  background: unset;
  padding: 0;
  border: unset;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item {
    row-gap: 16px;
  }
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item:hover .poll_block_list_item-check {
    border-color: #061FF5;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item:active .poll_block_list_item-check {
    border-color: #061FF5;
  }
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-label {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-label::after {
  display: none;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: unset;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-check:checked {
  background: transparent;
  border: 1px solid #061FF5;
  border-radius: 8px;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-check::after {
  display: none;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-check:checked + .poll_block_list_item-text {
  border-color: #061FF5;
  background: #DADEFE;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-text {
  display: none;
  column-gap: 4px;
  width: 100%;
  border-radius: 6px;
  background: #FFF;
  padding: 5px 10px;
  border: 1px solid transparent;
}
.single_page .single_wrap__body_content .poll_block_list_row .poll_block_list_item-text-percent_vote {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  margin-left: auto;
}
.single_page .single_wrap__body_content .poll_block_list_item {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  border-radius: 8px;
  background: #FFF;
  padding: 6px 15px 7px 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_item {
    padding: 10px;
  }
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .poll_block_list_item:hover .poll_block_list_item-check:checked::after {
    border-color: rgb(6, 31, 245);
  }
  .single_page .single_wrap__body_content .poll_block_list_item:hover .poll_block_list_item-check::after {
    border-color: rgba(6, 31, 245, 0.6);
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .poll_block_list_item:active .poll_block_list_item-check:checked::after {
    border-color: rgb(6, 31, 245);
  }
  .single_page .single_wrap__body_content .poll_block_list_item:active .poll_block_list_item-check::after {
    border-color: rgba(6, 31, 245, 0.6);
  }
}
.single_page .single_wrap__body_content .poll_block_list_item-label {
  display: flex;
  column-gap: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_item-label {
    column-gap: 14px;
  }
}
.single_page .single_wrap__body_content .poll_block_list_item-label::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.single_page .single_wrap__body_content .poll_block_list_item-check {
  appearance: none;
  display: flex;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #D9D9D9;
  margin-top: 8px;
  flex-shrink: 0;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_item-check {
    margin-top: 5px;
  }
}
.single_page .single_wrap__body_content .poll_block_list_item-check::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: 0.4s;
}
.single_page .single_wrap__body_content .poll_block_list_item-check:checked {
  background: #061FF5;
}
.single_page .single_wrap__body_content .poll_block_list_item-check:checked::after {
  border-color: #061FF5;
}
.single_page .single_wrap__body_content .poll_block_list_item-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_item-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .poll_block_list_item-text-votes {
  display: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.single_page .single_wrap__body_content .poll_block_list_item-percent_vote {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block_list_item-percent_vote {
    font-size: 14px;
    line-height: 20px;
  }
}
.single_page .single_wrap__body_content .poll_block_list-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 24px;
  border-radius: 8px;
  background: #FFF;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: 0.4s;
}
.single_page .single_wrap__body_content .poll_block_list-submit:disabled {
  display: none;
}
@media (hover: hover) {
  .single_page .single_wrap__body_content .poll_block_list-submit:hover {
    background: #F0F0F0;
  }
}
@media (hover: none) {
  .single_page .single_wrap__body_content .poll_block_list-submit:active {
    background: #F0F0F0;
  }
}
.single_page .single_wrap__body_content .poll_block-total_votes {
  display: none;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .single_page .single_wrap__body_content .poll_block-total_votes {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
}
.single_page .single_wrap__body_after {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_after {
    margin-top: 24px;
    row-gap: 24px;
  }
}

.read_end {
  display: flex;
  column-gap: 30px;
  padding: 30px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .read_end {
    margin: 0 -36px;
    padding: 36px;
  }
}
@media screen and (max-width: 767px) {
  .read_end {
    flex-direction: column-reverse;
    row-gap: 24px;
    margin: 0 -16px;
    padding: 16px;
  }
}
.read_end_content {
  width: 100%;
  max-width: calc(100% - 174px - 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .read_end_content {
    max-width: 100%;
    row-gap: 16px;
  }
}
.read_end_content-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .read_end_content-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.read_end_content-descr {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  flex: 1 1 auto;
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .read_end_content-descr {
    flex: unset;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .read_end_content-descr {
    margin-bottom: 0px;
  }
}
.read_end_content-descr p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  letter-spacing: inherit;
}
@media screen and (max-width: 767px) {
  .read_end_content .btn {
    max-width: 100%;
    width: 100%;
  }
}
.read_end-image {
  width: 100%;
  max-width: 174px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 58/55;
}
.read_end-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.read_end-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
.read_end-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more_topic_slider {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .more_topic_slider {
    row-gap: 16px;
  }
}
.more_topic_slider .more_topic_slider-title {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1199px) {
  .more_topic_slider .more_topic_slider-title {
    font-size: 22px;
    line-height: 24px;
  }
}
.more_topic_slider .more_topic_block {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .more_topic_slider .more_topic_block .sw_buttons {
    display: none;
  }
}
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_prev {
  left: -16px;
}
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_next {
  right: -16px;
}
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_prev,
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  margin: 0px;
  top: 91px;
  transform: translateY(-50%);
  transition: 0.4s;
}
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_prev.swiper-button-disabled,
.more_topic_slider .more_topic_block .sw_buttons .sw_more_topic_next.swiper-button-disabled {
  opacity: 0;
}
.more_topic_slider .more_topic_block .sw_more_topic {
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .more_topic_slider .more_topic_block .sw_more_topic {
    overflow: visible;
  }
}
.more_topic_slider .more_topic_block .sw_more_topic .swiper-slide {
  max-width: 306px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .more_topic_slider .more_topic_block .sw_more_topic .swiper-slide {
    width: 75%;
    max-width: 306px;
  }
}
.more_topic_slider .more_topic_block .sw_more_topic .small_card_content {
  padding: 0;
  margin-top: 16px;
}

.article_reactions {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .article_reactions {
    margin-top: 24px;
    row-gap: 16px;
  }
}
.article_reactions-title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.article_reactions_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .article_reactions_list {
    gap: 8px;
  }
}
.article_reactions_list-it {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  padding: 18px 18px 8px 18px;
  border: 2px solid transparent;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  width: 100%;
  max-width: 90px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .article_reactions_list-it {
    max-width: 48px;
    padding: 6px 10px;
    row-gap: 6px;
  }
}
.article_reactions_list-it.active {
  border-color: #000;
}
@media (hover: hover) {
  .article_reactions_list-it:hover {
    background: #f0f0f0;
  }
}
@media (hover: none) {
  .article_reactions_list-it:active {
    background: #f0f0f0;
  }
}
.article_reactions_list-it .img {
  width: 100%;
  max-width: 50px;
  aspect-ratio: 1/1;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .article_reactions_list-it .img {
    max-width: 24px;
  }
}
.article_reactions_list-it .img img {
  width: 100%;
}
.article_reactions_list-it .count {
  color: #999;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .article_reactions_list-it .count {
    font-size: 12px;
    line-height: 18px;
  }
}

.comments_section {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (max-width: 1199px) {
  .comments_section {
    margin-top: 24px;
    row-gap: 48px;
  }
}
.comments_section__head {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .comments_section__head {
    row-gap: 16px;
  }
}
.comments_section__head_author {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .comments_section__head_author {
    column-gap: 16px;
    align-items: flex-start;
  }
}
.comments_section__head_author-avatar {
  width: 100%;
  max-width: 80px;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .comments_section__head_author-avatar {
    max-width: 60px;
  }
}
.comments_section__head_author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments_section__head_author_meta {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
  max-width: calc(100% - 100px);
}
@media screen and (max-width: 1199px) {
  .comments_section__head_author_meta {
    max-width: calc(100% - 76px);
  }
}
.comments_section__head_author_meta-title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.comments_section__head_author_meta-text {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .comments_section__head_author_meta-text {
    font-size: 16px;
    line-height: 25px;
  }
}
.comments_section__head_author_meta-text p {
  color: inherit;
  color: #000;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
}
.comments_section__head_author_meta-text p a {
  color: #000;
}
.comments_section__head_form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .comments_section__head_form {
    row-gap: 8px;
  }
}
.comments_section__head_form_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.comments_section__head_form_wrap .form_textarea {
  display: flex;
  width: 100%;
}
.comments_section__head_form_wrap .form_textarea textarea {
  width: 100%;
  min-height: 115px;
  resize: none;
  padding: 20px;
  border: 1px solid black;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.comments_section__head_form_wrap .form_textarea textarea::placeholder {
  color: #999;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.comments_section__head_form_wrap .input_btn {
  display: none;
}
.comments_section__head_form-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.comments_section__head_form-text p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.comments_section__head_form-text a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .comments_section__head_form-text a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .comments_section__head_form-text a:active {
    text-decoration-color: inherit;
  }
}
.comments_section__body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body {
    row-gap: 24px;
  }
}
.comments_section__body_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 15px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body_head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 8px;
  }
}
.comments_section__body_head-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
.comments_section__body_head-notifications .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.comments_section__body_head-notifications .custom-checkbox + label {
  display: flex;
  column-gap: 10px;
  align-items: center;
  user-select: none;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.comments_section__body_head-notifications .custom-checkbox + label .check_toggle {
  display: flex;
  align-items: center;
  background: #999;
  width: 32px;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2px;
  position: relative;
  transition: 0.3s;
}
.comments_section__body_head-notifications .custom-checkbox + label .check_toggle span {
  aspect-ratio: 1/1;
  height: calc(100% - 4px);
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 2px;
  transition: 0.3s;
}
@media (hover: hover) {
  .comments_section__body_head-notifications .custom-checkbox + label:hover span {
    background: #f0f0f0;
  }
}
@media (hover: none) {
  .comments_section__body_head-notifications .custom-checkbox + label:active span {
    background: #f0f0f0;
  }
}
.comments_section__body_head-notifications .custom-checkbox:checked + label .check_toggle {
  display: flex;
  align-items: center;
  background: #000;
  width: 32px;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2px;
  position: relative;
}
.comments_section__body_head-notifications .custom-checkbox:checked + label .check_toggle span {
  left: 14px;
}
.comments_section__body .comments__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body .comments__list {
    row-gap: 24px;
  }
}
.comments_section__body .comments__list_it {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body .comments__list_it {
    row-gap: 24px;
  }
}
.comments_section__body .comments__list_it_comment {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body .comments__list_it_comment {
    row-gap: 8px;
  }
}
.comments_section__body .comments__list_it_comment:nth-child(1) {
  margin-top: 0px;
}
.comments_section__body .comments__list_it_comment:nth-child(2) {
  margin-left: 40px;
}
.comments_section__body .comments__list_it_comment:nth-child(3) {
  margin-left: 80px;
}
.comments_section__body .comments__list_it_comment:nth-child(n+4) {
  margin-left: 120px;
}
.comments_section__body .comments__list_it_comment:first-child {
  max-width: 640px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body .comments__list_it_comment:first-child {
    max-width: 100%;
  }
}
.comments_section__body .comments__list_it_comment.with_avatar {
  flex-direction: row;
  column-gap: 10px;
}
.comments_section__body .comments__list_it_comment.with_avatar .comments__list_it_comment_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .comments_section__body .comments__list_it_comment.with_avatar .comments__list_it_comment_wrap {
    row-gap: 8px;
  }
}
.comments_section__body .comments__list_it_comment-avatar {
  width: 100%;
  max-width: 30px;
  min-width: 30px;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.comments_section__body .comments__list_it_comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comments_section__body .comments__list_it_comment_head {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 5px;
}
.comments_section__body .comments__list_it_comment_head .name {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.comments_section__body .comments__list_it_comment_head .date {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.comments_section__body .comments__list_it_comment-content {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.comments_section__body .comments__list_it_comment-content p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.comments_section__body .comments__list_it_comment-content a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.comments_section__body .comments__list_it_comment_buttons {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.comments_section__body .comments__list_it_comment_buttons-answer {
  color: #176de5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .comments_section__body .comments__list_it_comment_buttons-answer:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .comments_section__body .comments__list_it_comment_buttons-answer:active {
    text-decoration-color: inherit;
  }
}
.comments_section__body .comments__list_it_comment_buttons_rating {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.comments_section__body .comments__list_it_comment_buttons_rating .btn_rating {
  display: flex;
}
.comments_section__body .comments__list_it_comment_buttons_rating .count {
  color: #30cf60;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.comments_section__body .comments__list_it .comments_section__head_form {
  display: none;
}
.comments_section__body .comments__list_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
}
.comments_section__body .comments__list_btn_wrap-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #176de5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .comments_section__body .comments__list_btn_wrap-btn:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .comments_section__body .comments__list_btn_wrap-btn:active {
    text-decoration-color: inherit;
  }
}

.big_table {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 100%;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .big_table {
    margin-top: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    padding-top: 24px;
    row-gap: 24px;
  }
}
.big_table::after {
  display: block;
  content: "";
  width: calc(100vw + 15px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: inherit;
  user-select: none;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .big_table::after {
    border-radius: 24px;
    width: 100vw;
  }
}
.big_table .big_table_slide {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .big_table .big_table_slide {
    overflow: visible;
  }
}
.big_table .big_table_slide .swiper-slide {
  width: auto;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  min-width: 100%;
}
.big_table__head {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .big_table__head {
    row-gap: 16px;
  }
}
.big_table__head-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin: 0px;
}
@media screen and (max-width: 1199px) {
  .big_table__head-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.big_table__head-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.big_table__head-text p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
}
.big_table__list {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
}
.big_table__list th {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
}
.big_table__list_head {
  display: flex;
  align-items: center;
}
.big_table__list_head .big_table__list_col {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.big_table__list_body_row {
  display: flex;
  border-top: 1px solid #e8e8e8;
}
.big_table__list_body_row_title {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}
.big_table__list_body_row_title-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 40px;
  min-width: 40px;
  height: auto;
  max-height: 40px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 1/1;
}
.big_table__list_body_row .small_mark {
  display: inline-block;
  transform: translate(0px, -4px);
  color: #176de5;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}
.big_table__list_body_row .mark {
  display: inline-block;
  transform: translate(2px, -3px);
  border-radius: 4px;
  border: 1px solid rgba(9, 33, 255, 0.1);
  background: rgba(9, 33, 255, 0.05);
  padding: 0 2px;
  color: #000;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}
.big_table__list_body_row_variable {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.big_table__list_body_row_variable-color {
  width: 100%;
  max-width: 24px;
  min-width: 24px;
  max-height: 24px;
  border-radius: 50%;
  overflow: hidden;
  height: auto;
  aspect-ratio: 1/1;
}
.big_table__list_body_row_brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.big_table__list_body_row_brand img {
  width: 100%;
  max-width: 40px;
  max-height: 40px;
  aspect-ratio: 1/1;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}
.big_table__list_body_row_approved {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.big_table__list_body_row-comment {
  display: flex;
  align-items: center;
}
.big_table__list_body_row-cost {
  display: flex;
  align-items: center;
}
.big_table__list_col {
  padding: 15px 20px;
  flex: 1 1 100%;
  width: 100%;
  border-right: 1px solid #e8e8e8;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.big_table__list_col:last-child {
  border-right: none;
}
.big_table__list_col p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
}
.big_table__list_col:nth-child(1) {
  max-width: 320px;
}
.big_table__list_col:nth-child(2) {
  max-width: 240px;
}
.big_table__list_col:nth-child(3) {
  max-width: 456px;
}
.big_table__list_col:nth-child(4) {
  max-width: 84px;
}
.big_table__list_col:nth-child(5) {
  max-width: 115px;
}
.big_table__list_col:nth-child(6) {
  max-width: 105px;
}
@media screen and (max-width: 1199px) {
  .big_table__list_col:nth-child(1) {
    max-width: 320px;
    min-width: 320px;
  }
  .big_table__list_col:nth-child(2) {
    max-width: 240px;
    min-width: 240px;
  }
  .big_table__list_col:nth-child(3) {
    display: none;
    max-width: 456px;
  }
  .big_table__list_col:nth-child(4) {
    max-width: 84px;
    min-width: 84px;
  }
  .big_table__list_col:nth-child(5) {
    max-width: 115px;
    min-width: 115px;
  }
  .big_table__list_col:nth-child(6) {
    max-width: 105px;
    min-width: 105px;
  }
}
.big_table .table_mark {
  margin-top: -10px;
}
@media screen and (max-width: 1199px) {
  .big_table .table_mark {
    margin-top: 8px;
  }
}

.fresh-views__month {
  display: none;
}

em {
  font-style: italic;
}

@media screen and (max-width: 1199px) {
  .single_page_head {
    row-gap: 16px;
  }
}
.single_page_head_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  row-gap: 16px;
}
.single_page_head_content-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5px 10px;
  border-radius: 20px;
  background: var(--Blue, #0921FF);
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.single_page_head_content-title {
  flex: 1 1 auto;
  width: 100%;
  text-wrap: balance;
  color: #000;
  font-family: var(--golos);
  font-size: 48px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.96px;
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .single_page_head_content-title {
    font-size: clamp(2.25rem, -1.516rem + 5.021vw, 3rem);
  }
}
@media screen and (max-width: 1199px) {
  .single_page_head_content-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}
.single_page_head_content_meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  width: 100%;
  max-width: 100%;
}
.single_page_head_content_meta-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-right: 20px;
}
.single_page_head_content_meta-item.--typ-text {
  color: #999;
}
@media screen and (max-width: 1199px) {
  .single_page_head_content_meta-item.--typ-text {
    font-size: 14px;
    line-height: 25px;
  }
}
.single_page_head_content_meta-item .icon {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .single_page_head_content_meta-item .icon {
    width: 20px;
    height: 20px;
  }
}
.single_page_head_content_meta-item .icon svg {
  width: 100%;
  height: 100%;
}
.single_page_head_content_meta-item:first-child {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .single_page_head_content_meta .single_wrap__head_top_meta_right-share {
    margin-left: auto;
  }
}
@media screen and (max-width: 1199px) {
  .single_page_head_content_meta .single_wrap__head_top_meta_right-share .share_btn {
    font-size: 14px;
    line-height: 25px;
  }
}
.single_page_head_content_meta .single_wrap__head_top_meta_right-share .share_btn span {
  display: flex;
}
.single_page_head-img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 757/428;
}
.single_page_head-img img {
  width: 100%;
  height: auto;
}
.single_page .podcast_in_single {
  margin: 60px 0;
  padding: 30px;
  background: var(--Blue);
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .single_page .podcast_in_single {
    margin: 48px 0;
  }
}
.single_page .podcast_in_single-tag {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: var(--White);
}
@media screen and (max-width: 1199px) {
  .single_page .podcast_in_single-tag {
    font-size: 14px;
    line-height: 140%;
  }
}
.single_page .podcast_in_single-tag .icon {
  display: flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.single_page .podcast_in_single-tag .icon svg {
  width: 100%;
  height: 100%;
}
.single_page .podcast_in_single-tag .icon svg g circle {
  animation: circle-blink 2.5s infinite linear;
}
.single_page .podcast_in_single-title,
.single_page .podcast_in_single h3 {
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 20px;
  font-weight: 500;
  line-height: 118%;
  margin: 14px 0 0 0;
  text-wrap: balance;
  max-width: 500px;
}
.single_page .podcast_in_single_btns {
  display: flex;
  column-gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .single_page .podcast_in_single_btns {
    width: 100%;
    flex-direction: column;
    row-gap: 10px;
  }
}
.single_page .podcast_in_single_btns-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid var(--White);
  border-radius: 50px;
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  cursor: pointer;
  transition: 0.4s;
}
.single_page .podcast_in_single_btns-btn.bg {
  background: var(--White);
}
@media (hover: hover) {
  .single_page .podcast_in_single_btns-btn.bg:hover {
    background: transparent;
    color: var(--White);
  }
  .single_page .podcast_in_single_btns-btn.bg:hover svg path {
    fill: var(--White);
    stroke: var(--White);
  }
}
@media (hover: none) {
  .single_page .podcast_in_single_btns-btn.bg:active {
    background: transparent;
    color: var(--White);
  }
  .single_page .podcast_in_single_btns-btn.bg:active svg path {
    fill: var(--White);
    stroke: var(--White);
  }
}
.single_page .podcast_in_single_btns-btn.border {
  background: transparent;
  color: var(--White);
}
@media (hover: hover) {
  .single_page .podcast_in_single_btns-btn.border:hover {
    background: var(--White);
    color: var(--Black);
  }
}
@media (hover: none) {
  .single_page .podcast_in_single_btns-btn.border:active {
    background: var(--White);
    color: var(--Black);
  }
}
.single_page .podcast_in_single_btns-btn .icon {
  display: flex;
  width: 10px;
  height: 11px;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .podcast_in_single_btns-btn .icon {
    transform: translateY(1px);
  }
}
.single_page .podcast_in_single_btns-btn .icon svg {
  width: 100%;
  height: 100%;
}
.single_page .another_card {
  display: flex;
  border-radius: 16px;
  background: #F2F4FF;
  padding: 10px;
  position: relative;
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .another_card {
    margin: 48px 0;
  }
}
@media screen and (max-width: 767px) {
  .single_page .another_card {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (hover: hover) {
  .single_page .another_card:hover img {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .single_page .another_card:active img {
    transform: scale(1.05);
  }
}
.single_page .another_card_image {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 100%;
  border-radius: 12px;
  position: relative;
  aspect-ratio: 85/57;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single_page .another_card_image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 350px;
  }
}
.single_page .another_card_image-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
}
.single_page .another_card_image img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.single_page .another_card_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 10px 10px 30px;
}
@media screen and (max-width: 767px) {
  .single_page .another_card_content {
    padding: 0;
  }
}
.single_page .another_card_content-title,
.single_page .another_card_content h3 {
  margin: 0;
  width: 100%;
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .single_page .another_card_content-title,
  .single_page .another_card_content h3 {
    font-size: clamp(1.5rem, -0.383rem + 2.51vw, 1.875rem);
  }
}
@media screen and (max-width: 1199px) {
  .single_page .another_card_content-title,
  .single_page .another_card_content h3 {
    font-size: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 767px) {
  .single_page .another_card_content-title,
  .single_page .another_card_content h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 99;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 126%;
  }
}
.single_page .another_card_content-author {
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .single_page .another_card_content-author {
    font-size: 14px;
    line-height: 140%;
  }
}
.single_page .another_card_content-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid var(--White);
  border-radius: 50px;
  background: var(--White);
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_page .another_card_content-btn {
    padding: 9px 20px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .single_page .another_card_content-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .single_page .another_card_content-btn:active {
    opacity: 0.7;
  }
}
.single_page .another_card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  font-size: 0px;
  color: transparent;
  line-height: 0px;
}
.single_page .become_author_card {
  margin: 60px 0;
  container-type: inline-size;
}
@media screen and (max-width: 1199px) {
  .single_page .become_author_card {
    margin: 48px 0;
  }
}
.single_page .become_author_card_wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  border-radius: 16px;
  background: radial-gradient(113.98% 113.98% at 2.27% 50%, #FF477E 0%, #FFF 100%);
  padding: 20px 30px;
}
@media screen and (min-width: 1280px) {
  @container (max-width: 800px) {
    .single_page .become_author_card_wrap .become_author_card_wrap_body {
      flex-direction: column;
      align-items: flex-start;
      row-gap: 16px;
    }
  }
}
@media screen and (max-width: 1199px) {
  .single_page .become_author_card_wrap {
    align-items: flex-start;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .single_page .become_author_card_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
}
.single_page .become_author_card_wrap-img {
  display: block;
  width: 100%;
  max-width: 120px;
  padding: 8px 23px;
}
@media screen and (max-width: 767px) {
  .single_page .become_author_card_wrap-img {
    padding: 8px 0;
    max-width: 75px;
  }
}
.single_page .become_author_card_wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single_page .become_author_card_wrap_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 auto;
}
@media screen and (max-width: 1199px) {
  .single_page .become_author_card_wrap_body {
    flex-direction: column;
    row-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.single_page .become_author_card_wrap_body_content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 740px;
}
.single_page .become_author_card_wrap_body_content-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.single_page .become_author_card_wrap_body_content-text {
  margin: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.single_page .become_author_card_wrap_body-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 10px;
  background: #FFF;
  padding: 10px 24px 10px 16px;
  border-radius: 8px;
  background: #FFF;
  flex-shrink: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .become_author_card_wrap_body-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .single_page .become_author_card_wrap_body-btn:active {
    opacity: 0.7;
  }
}
.single_page .become_author_card_wrap_body-btn .icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.single_page .become_author_card_wrap_body-btn .icon svg {
  width: 100%;
  height: 100%;
}
.single_page .tags_article {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .single_page .tags_article {
    margin-top: 50px;
  }
}
.single_page .tags_article-title {
  color: var(--Dark-grey, #999);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.single_page .tags_article__list {
  max-width: calc(100% - 66px);
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .single_page .tags_article__list {
    overflow: visible;
    clip-path: inset(0px -100% 0px -10px);
  }
}
.single_page .tags_article__list .swiper-slide {
  display: flex;
  width: auto;
}
.single_page .tags_article__list-it {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.5px 10px;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  background: #fff;
  width: 100%;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  transition: 0.4s;
}
@media (hover: hover) {
  .single_page .tags_article__list-it:hover {
    border-color: #999;
  }
}
@media (hover: none) {
  .single_page .tags_article__list-it:active {
    border-color: #999;
  }
}

.single_page .single_wrap__body_content .img_cloud {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 30px 0 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .img_cloud {
    row-gap: 24px;
    margin: 30px 0 48px 0;
  }
}
.single_page .single_wrap__body_content .img_cloud_img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.single_page .single_wrap__body_content .img_cloud_img img {
  width: 100%;
  border-radius: 16px;
  height: auto;
}
.single_page .single_wrap__body_content .img_cloud-cloud {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 18px;
  right: 18px;
  max-width: calc(100% - 36px);
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .img_cloud-cloud {
    max-width: calc(100% - 20px);
    top: 10px;
    right: 10px;
  }
}
.single_page .single_wrap__body_content .img_cloud-cloud-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (hover: hover) and (min-width: 1200px) {
  .single_page .single_wrap__body_content .img_cloud-cloud-trigger:hover ~ .img_cloud-cloud-message {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (hover: none) and (min-width: 1200px) {
  .single_page .single_wrap__body_content .img_cloud-cloud-trigger:active ~ .img_cloud-cloud-message {
    opacity: 1;
    visibility: visible;
  }
}
.single_page .single_wrap__body_content .img_cloud-cloud-trigger .GlassContent {
  width: 100%;
  height: 100%;
}
.single_page .single_wrap__body_content .img_cloud-cloud-trigger svg {
  width: 100%;
  height: 100%;
}
.single_page .single_wrap__body_content .img_cloud-cloud-message {
  display: block;
  position: absolute;
  right: -5px;
  top: calc(100% + 12px);
  border-radius: 10px;
  background: #0921FF;
  width: max-content;
  max-width: calc(100% + 10px);
  padding: 6px 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .img_cloud-cloud-message.active {
    opacity: 1;
    visibility: visible;
  }
}
.single_page .single_wrap__body_content .img_cloud-cloud-message::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  bottom: calc(100% - 5px);
  position: absolute;
  right: 10px;
  background: var(--Blue);
}
.single_page .single_wrap__body_content .img_cloud-cloud-message p {
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  text-align: left;
}
.single_page .single_wrap__body_content .img_cloud-caption {
  width: 100%;
  max-width: 57%;
}
@media screen and (max-width: 1199px) {
  .single_page .single_wrap__body_content .img_cloud-caption {
    max-width: 100%;
  }
}
.single_page .single_wrap__body_content .img_cloud-caption p {
  width: 100%;
  max-width: 100%;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-wrap: balance;
  margin: 0;
}

.dont_miss {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .dont_miss {
    margin-top: 24px;
  }
}
.dont_miss .dont_miss_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: #E7E9FF;
  padding: 20px 20px 20px 40px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap {
    padding: 40px 36px;
    margin: 0 -36px;
  }
}
@media screen and (max-width: 767px) {
  .dont_miss .dont_miss_wrap {
    padding: 24px 16px 16px 16px;
    margin: 0 -16px;
    row-gap: 16px;
  }
}
.dont_miss .dont_miss_wrap .left {
  width: 100%;
  max-width: calc(100% - 655px);
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .left {
    max-width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .dont_miss .dont_miss_wrap .left {
    flex-direction: row;
    max-width: 100%;
    column-gap: 16px;
  }
}
.dont_miss .dont_miss_wrap .left-icon {
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .left-icon {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}
.dont_miss .dont_miss_wrap .left__content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.dont_miss .dont_miss_wrap .left__content-title {
  color: #000;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .left__content-title {
    display: none;
  }
}
.dont_miss .dont_miss_wrap .left__content-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.6;
}
.dont_miss .dont_miss_wrap .right {
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .right {
    max-width: calc(66.6666666667% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .dont_miss .dont_miss_wrap .right {
    max-width: 100%;
  }
}
.dont_miss .dont_miss_wrap .right .right__form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .right .right__form {
    padding: 16px;
    border-radius: 16px;
    row-gap: 16px;
  }
}
.dont_miss .dont_miss_wrap .right .right__form .right__form_top {
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .right .right__form .right__form_top {
    flex-wrap: wrap;
    row-gap: 16px;
  }
}
.dont_miss .dont_miss_wrap .right .right__form .right__form_top .form_input {
  max-width: 288px;
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .right .right__form .right__form_top .form_input {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .dont_miss .dont_miss_wrap .right .right__form .right__form_top .form_btn {
    width: 100%;
    max-width: 100%;
  }
  .dont_miss .dont_miss_wrap .right .right__form .right__form_top .form_btn .btn {
    width: 100%;
  }
}
.dont_miss.other {
  margin: 0;
}
.dont_miss.other .dont_miss_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: #E7E9FF;
  padding: 10px 10px 10px 30px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap {
    padding: 40px 36px;
    margin: 0 -36px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .dont_miss.other .dont_miss_wrap {
    padding: 24px 8px 8px 8px;
    margin: 0 -16px;
    row-gap: 16px;
  }
}
.dont_miss.other .dont_miss_wrap .left {
  flex-direction: column;
  row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: calc(50% - 26px);
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .left {
    max-width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .dont_miss.other .dont_miss_wrap .left {
    flex-direction: row;
    max-width: 100%;
    column-gap: 16px;
    padding-right: 10px;
  }
}
.dont_miss.other .dont_miss_wrap .left-icon {
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
}
.dont_miss.other .dont_miss_wrap .left-title {
  display: none;
}
.dont_miss.other .dont_miss_wrap .left__content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.dont_miss.other .dont_miss_wrap .left__content-title {
  display: none;
}
.dont_miss.other .dont_miss_wrap .left__content-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  opacity: 0.6;
}
.dont_miss.other .dont_miss_wrap .left__content-text p {
  margin-bottom: 0px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .left__content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.dont_miss.other .dont_miss_wrap .right {
  width: 100%;
  max-width: 460px;
  max-width: calc(50% - 4px);
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right {
    max-width: calc(66.6666666667% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .dont_miss.other .dont_miss_wrap .right {
    max-width: 100%;
  }
}
.dont_miss.other .dont_miss_wrap .right .right__form {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right .right__form {
    padding: 20px 20px 40px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right .right__form {
    padding: 16px;
    row-gap: 16px;
    border-radius: 16px;
  }
}
.dont_miss.other .dont_miss_wrap .right .right__form .right__form_top {
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right .right__form .right__form_top {
    row-gap: 16px;
  }
}
.dont_miss.other .dont_miss_wrap .right .right__form .right__form_top .form_btn .btn {
  width: auto;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right .right__form .right__form_top .form_btn .btn {
    width: 100%;
  }
}
.dont_miss.other .dont_miss_wrap .right .right__form .form_text {
  color: #999;
}
.dont_miss.other .dont_miss_wrap .right .right__form .form_text a {
  color: #999;
  text-decoration-color: inherit;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .dont_miss.other .dont_miss_wrap .right .right__form .form_text a {
    color: #176DE5;
    text-decoration-color: transparent;
    font-weight: 400;
  }
}
@media screen and (max-width: 1199px) and (hover: hover) {
  .dont_miss.other .dont_miss_wrap .right .right__form .form_text a:hover {
    text-decoration-color: inherit;
  }
}
@media screen and (max-width: 1199px) and (hover: none) {
  .dont_miss.other .dont_miss_wrap .right .right__form .form_text a:active {
    text-decoration-color: inherit;
  }
}
@media (hover: hover) {
  .dont_miss.other .dont_miss_wrap .right .right__form .form_text a:hover {
    text-decoration-color: transparent;
  }
}
@media (hover: none) {
  .dont_miss.other .dont_miss_wrap .right .right__form .form_text a:active {
    text-decoration-color: transparent;
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 10px 24px;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) {
  .btn:hover.black {
    color: #fff;
    background: #323232;
  }
  .btn:hover.gray {
    background: #D9D9D9;
    color: #000;
  }
  .btn:hover.blue {
    background: #6B7AFF;
    color: #fff;
  }
  .btn:hover.white {
    background: #F0F0F0;
    color: #000;
  }
}
@media (hover: none) {
  .btn:active.black {
    color: #fff;
    background: #323232;
  }
  .btn:active.gray {
    background: #D9D9D9;
    color: #000;
  }
  .btn:active.blue {
    background: #6B7AFF;
    color: #fff;
  }
  .btn:active.white {
    background: #F0F0F0;
    color: #000;
  }
}
.btn.black {
  color: #fff;
  background: #000;
}
.btn.gray {
  background: #E8E8E8;
  color: #000;
}
.btn.blue {
  background: #0921FF;
  color: #fff;
}
.btn.blue:disabled {
  background: #D9D9D9;
  cursor: not-allowed;
}

.form .form_input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.form .form_input input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 8px;
  border: 1px solid #999;
  background: #FFF;
  transition: border 0.4s;
}
.form .form_input input:focus {
  border-color: #000;
}
.form .form_input input::placeholder {
  color: #999;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.form .form_text {
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.form .form_text a {
  color: #176DE5;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 1px;
  transition: 0.4s;
}
@media (hover: hover) {
  .form .form_text a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .form .form_text a:active {
    text-decoration-color: inherit;
  }
}

.search_page {
  margin-bottom: 40px;
}
.search_page__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .search_page__wrap {
    row-gap: 40px;
  }
}

.error_page {
  margin-top: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .error_page {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 1199px) {
  .error_page {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .error_page {
    margin-bottom: 64px;
  }
}
.error_page__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .error_page__wrap {
    row-gap: 24px;
  }
}
.error_page__wrap-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 870/407;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .error_page__wrap-image {
    aspect-ratio: 164/77;
    max-width: 328px;
  }
}
.error_page__wrap-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.error_page__wrap_info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;
}
.error_page__wrap_info-title {
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1199px) {
  .error_page__wrap_info-title {
    font-size: 22px;
    line-height: 24px;
  }
}
.error_page__wrap_info-text {
  color: #999;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  max-width: 450px;
}
@media screen and (max-width: 1199px) {
  .error_page__wrap_info-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .error_page__wrap .btn {
    width: 100%;
  }
}

.expert_page {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .expert_page {
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .expert_page {
    margin-top: 32px;
    margin-bottom: 20px;
  }
}
.expert_page .expert_page_wrap__head {
  display: flex;
  column-gap: 30px;
  padding: 39px 51px 40px 27px;
  border-radius: 16px;
  background: #f0f2ff;
}
@media screen and (max-width: 1600px) {
  .expert_page .expert_page_wrap__head {
    padding: 42px 23px 40px 14px;
    column-gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .expert_page .expert_page_wrap__head {
    padding: 40px 60px 40px 40px;
  }
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__head {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head {
    flex-direction: column;
    align-items: start;
    padding: 44px 17px 30px 17px;
    row-gap: 25px;
    position: relative;
  }
}
.expert_page .expert_page_wrap__head .avatar {
  aspect-ratio: 280/326;
  max-width: 280px;
  min-width: 280px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .expert_page .expert_page_wrap__head .avatar {
    aspect-ratio: 243/298;
    max-width: 243px;
    min-width: 243px;
  }
}
@media screen and (max-width: 1024px) {
  .expert_page .expert_page_wrap__head .avatar {
    aspect-ratio: 258/298;
    max-width: 258px;
    min-width: 258px;
  }
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__head .avatar {
    aspect-ratio: 244/284;
    max-width: 244px;
    min-width: 244px;
  }
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head .avatar {
    aspect-ratio: 1;
    min-width: auto;
    max-width: 200px;
    border-radius: 50%;
    display: flex;
    margin-inline: auto;
  }
}
.expert_page .expert_page_wrap__head .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert_page .expert_page_wrap__head .inform {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head .inform {
    position: initial;
  }
}
.expert_page .expert_page_wrap__head .inform .name {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__head .inform .name {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.24px;
    max-width: calc(100% - 60px);
  }
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head .inform .name {
    max-width: 100%;
  }
}
.expert_page .expert_page_wrap__head .inform .job {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  margin-top: 5px;
  line-height: 22px;
}
.expert_page .expert_page_wrap__head .inform .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-block: 20px 30px;
}
@media screen and (max-width: 1024px) {
  .expert_page .expert_page_wrap__head .inform .description {
    margin-block: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__head .inform .description {
    margin-block: 15px;
  }
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head .inform .description {
    margin-block: 15px 0;
  }
}
.expert_page .expert_page_wrap__head .inform .tag {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 1px 5px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: fit-content;
  max-width: fit-content;
  background: linear-gradient(90deg, #eac062 0%, #fbde7d 44.27%, #eac062 100%);
}
.expert_page .expert_page_wrap__head .inform .social_links {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__head .inform .social_links {
    margin-top: 40px;
  }
}
.expert_page .expert_page_wrap__head .inform .social_links_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
.expert_page .expert_page_wrap__head .inform .social_links_wrap a {
  display: flex;
  column-gap: 5px;
  max-width: fit-content;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
.expert_page .expert_page_wrap__head .inform .social_links_wrap a span {
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: 0.4s;
  text-decoration-color: transparent;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__head .inform .social_links_wrap a:hover span {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__head .inform .social_links_wrap a:active span {
    text-decoration-color: inherit;
  }
}
.expert_page .expert_page_wrap__head .inform .social_links_wrap a .icon {
  display: flex;
  flex-shrink: 0;
}
.expert_page .expert_page_wrap__tabs {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__tabs {
    margin-top: 15px;
    row-gap: 14px;
  }
}
.expert_page .expert_page_wrap__tabs-head {
  display: flex;
  align-items: center;
  column-gap: 28px;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__tabs-head {
    column-gap: 22px;
  }
}
.expert_page .expert_page_wrap__tabs-head .tab {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 8px;
  cursor: pointer;
  padding: 11px 0 12px 0;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__tabs-head .tab {
    font-size: 14px;
    padding: 4px 0 5px 0;
  }
}
.expert_page .expert_page_wrap__tabs-head .tab span {
  transition: 0.4s;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-head .tab:hover span {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-head .tab:active span {
    opacity: 0.7;
  }
}
.expert_page .expert_page_wrap__tabs-head .tab.active {
  padding: 11px 31px 12px 31px;
  background: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__tabs-head .tab.active {
    padding: 4px 20px 5px 20px;
  }
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-head .tab.active:hover span {
    opacity: 1;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-head .tab.active:active span {
    opacity: 1;
  }
}
.expert_page .expert_page_wrap__tabs-content {
  padding: 27px;
  border-radius: 16px;
  border: 3px solid #f0f2ff;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__tabs-content {
    border: 1px solid #f0f2ff;
    padding: 17px;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content {
  display: none;
}
.expert_page .expert_page_wrap__tabs-content .tab_content_loadmore {
  padding: 11px 32px 12px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e8e8e8;
  column-gap: 8px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-top: 30px;
  color: #000;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-content .tab_content_loadmore:hover {
    background: #d9d9d9;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-content .tab_content_loadmore:active {
    background: #d9d9d9;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content_loadmore.hidden {
  display: none;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h2 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin: 60px 0 30px;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h2:first-child {
  margin: 0 0 30px;
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
    margin: 48px 0 24px 0;
  }
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h2:first-child {
    margin: 0 0 24px 0;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin: 60px 0 20px 0;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h3:first-child {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 48px 0 16px 0;
  }
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap h3:first-child {
    margin: 0 0 16px 0;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p {
    margin-bottom: 24px;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap p a:active {
    text-decoration-color: inherit;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap span a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap span a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap span a:active {
    text-decoration-color: inherit;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ol {
  padding-left: 25px;
  list-style-type: auto;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ol li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ol li a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ol li a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ol li a:active {
    text-decoration-color: inherit;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ul {
  list-style-type: disc;
  padding-left: 25px;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ul li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ul li a {
  color: #176de5;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.4s;
}
@media (hover: hover) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ul li a:hover {
    text-decoration-color: inherit;
  }
}
@media (hover: none) {
  .expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap ul li a:active {
    text-decoration-color: inherit;
  }
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap strong {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap b {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.expert_page .expert_page_wrap__tabs-content .tab_content .tab_wrap.active {
  display: flex;
  flex-direction: column;
  -webkit-line-clamp: initial;
  overflow: visible;
}
.expert_page .expert_page_wrap__tabs-content .tab_content.active {
  display: block;
}
.expert_page .expert_page_wrap__article {
  margin-top: 40px;
  padding: 27px;
  border-radius: 16px;
  border: 3px solid #f0f2ff;
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__article {
    padding: 17px;
    border: 1px solid #f0f2ff;
  }
}
.expert_page .expert_page_wrap__article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 25px;
}
@media screen and (max-width: 1600px) {
  .expert_page .expert_page_wrap__article-wrap {
    column-gap: 40px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .expert_page .expert_page_wrap__article-wrap {
    column-gap: 25px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .expert_page .expert_page_wrap__article-wrap {
    grid-template-columns: 1fr;
  }
}
.expert_page .expert_page_wrap__article .btn_more .btn {
  column-gap: 8px;
  font-size: 16px;
  padding: 11px 32px 12px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.category_page {
  margin-bottom: 40px;
}
.category_page__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.category_page__head {
  position: relative;
  padding-top: 57px;
  padding-bottom: 57px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1199px) {
  .category_page__head {
    min-height: 360px;
    align-items: flex-end;
    padding-top: 53px;
    padding-bottom: 53px;
  }
}
@media screen and (max-width: 767px) {
  .category_page__head {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.category_page__head_top {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .category_page__head_top {
    row-gap: 16px;
  }
}
.category_page__head_top-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60px;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  padding: 12px;
}
.category_page__head_top-icon svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.category_page__head_top-descr {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.category_page__head-bg {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 102vw;
  max-width: 102vw;
  padding-left: 0px;
  padding-right: 0px;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  filter: brightness(0.5);
}
.category_page__head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tags_page {
  margin-bottom: 40px;
}
.tags_page__wrap-col {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .tags_page__wrap-col {
    row-gap: 40px;
  }
}

.author_page {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .author_page {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.author_page .author_page_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .author_page .author_page_wrap {
    row-gap: 40px;
  }
}
.author_page .author_page_wrap__head {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .author_page .author_page_wrap__head {
    row-gap: 16px;
  }
}
.author_page .author_page_wrap__head_top {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .author_page .author_page_wrap__head_top {
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 16px;
    column-gap: 0px;
    flex-direction: column;
  }
}
.author_page .author_page_wrap__head_top .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.author_page .author_page_wrap__head_top .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author_page .author_page_wrap__head_top .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 160px);
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .author_page .author_page_wrap__head_top .content {
    max-width: 100%;
  }
}
.author_page .author_page_wrap__head_top .content .name {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1199px) {
  .author_page .author_page_wrap__head_top .content .name {
    color: #000;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.author_page .author_page_wrap__head_top .content .job {
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.author_page .author_page_wrap__head_descr {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.author_page .author_page_wrap__head_social {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.author_page .author_page_wrap__head_social-title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.author_page .author_page_wrap__head_social_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.author_page .author_page_wrap__head_social_list-it {
  display: flex;
  align-items: center;
  column-gap: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .author_page .author_page_wrap__head_social_list-it:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .author_page .author_page_wrap__head_social_list-it:active {
    opacity: 0.7;
  }
}
.author_page .author_page_wrap__head_social_list-it .icon {
  display: flex;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.quiz_block {
  display: flex;
  margin-bottom: 30px;
  flex: 1 1 auto;
  min-height: 450px;
}
@media screen and (max-width: 767px) {
  .quiz_block {
    margin-bottom: 20px;
  }
}

.quiz_app {
  width: 100%;
  max-width: 867px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .quiz_app {
    max-width: 735px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app {
    margin-top: 0px;
  }
}
.quiz_app .loader_app {
  font-size: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes mulShdSpin {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em rgb(9, 33, 255), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2), 2.5em 0em 0 0em rgba(9, 33, 255, 0.2), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.2), 0em 2.5em 0 0em rgba(9, 33, 255, 0.2), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.2), -2.6em 0em 0 0em rgba(9, 33, 255, 0.5), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.7), 1.8em -1.8em 0 0em rgb(9, 33, 255), 2.5em 0em 0 0em rgba(9, 33, 255, 0.2), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.2), 0em 2.5em 0 0em rgba(9, 33, 255, 0.2), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.2), -2.6em 0em 0 0em rgba(9, 33, 255, 0.2), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.5), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.7), 2.5em 0em 0 0em rgb(9, 33, 255), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.2), 0em 2.5em 0 0em rgba(9, 33, 255, 0.2), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.2), -2.6em 0em 0 0em rgba(9, 33, 255, 0.2), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.2), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.5), 2.5em 0em 0 0em rgba(9, 33, 255, 0.7), 1.75em 1.75em 0 0em rgb(9, 33, 255), 0em 2.5em 0 0em rgba(9, 33, 255, 0.2), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.2), -2.6em 0em 0 0em rgba(9, 33, 255, 0.2), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.2), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2), 2.5em 0em 0 0em rgba(9, 33, 255, 0.5), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.7), 0em 2.5em 0 0em rgb(9, 33, 255), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.2), -2.6em 0em 0 0em rgba(9, 33, 255, 0.2), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.2), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2), 2.5em 0em 0 0em rgba(9, 33, 255, 0.2), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.5), 0em 2.5em 0 0em rgba(9, 33, 255, 0.7), -1.8em 1.8em 0 0em rgb(9, 33, 255), -2.6em 0em 0 0em rgba(9, 33, 255, 0.2), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.2), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2), 2.5em 0em 0 0em rgba(9, 33, 255, 0.2), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.2), 0em 2.5em 0 0em rgba(9, 33, 255, 0.5), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.7), -2.6em 0em 0 0em rgb(9, 33, 255), -1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(9, 33, 255, 0.2), 1.8em -1.8em 0 0em rgba(9, 33, 255, 0.2), 2.5em 0em 0 0em rgba(9, 33, 255, 0.2), 1.75em 1.75em 0 0em rgba(9, 33, 255, 0.2), 0em 2.5em 0 0em rgba(9, 33, 255, 0.2), -1.8em 1.8em 0 0em rgba(9, 33, 255, 0.5), -2.6em 0em 0 0em rgba(9, 33, 255, 0.7), -1.8em -1.8em 0 0em rgb(9, 33, 255);
  }
}
.quiz_app-start_screen {
  display: flex;
  flex-direction: column;
}
.quiz_app-start_screen-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 867/464;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(9, 33, 255, 0.05);
}
.quiz_app-start_screen-image img {
  height: auto;
}
.quiz_app-start_screen_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_content {
    row-gap: 16px;
    margin-top: 16px;
  }
}
.quiz_app-start_screen_content-title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.quiz_app-start_screen_content-descr {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.quiz_app-start_screen_controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  position: relative;
  height: 40px;
}
@media screen and (max-width: 1199px) {
  .quiz_app-start_screen_controls {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_controls {
    flex-wrap: wrap;
    row-gap: 40px;
    height: auto;
  }
}
.quiz_app-start_screen_controls-view {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_controls-view {
    order: 3;
  }
}
.quiz_app-start_screen_controls-view .icon {
  display: flex;
  width: 24px;
  height: 24px;
}
.quiz_app-start_screen_controls-view .icon svg {
  width: 100%;
  height: 100%;
}
.quiz_app-start_screen_controls-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #0921FF;
  padding: 10px;
  width: 100%;
  max-width: 154px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_controls-btn {
    width: 100%;
    max-width: 100%;
    position: unset;
    transform: unset;
    order: 1;
  }
}
.quiz_app-start_screen_controls-share {
  display: inline-flex;
  width: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_controls-share {
    order: 2;
  }
}
.quiz_app-start_screen_controls-share-btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) {
  .quiz_app-start_screen_controls-share-btn:hover {
    color: #000;
  }
  .quiz_app-start_screen_controls-share-btn:hover svg path {
    fill: #000;
  }
}
@media (hover: none) {
  .quiz_app-start_screen_controls-share-btn:active {
    color: #000;
  }
  .quiz_app-start_screen_controls-share-btn:active svg path {
    fill: #000;
  }
}
.quiz_app-start_screen_controls-share-btn svg {
  transition: 0.4s;
}
.quiz_app-start_screen_controls-share-btn svg path {
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .quiz_app-start_screen_controls-share-btn .icon {
    width: 20px;
    max-width: 20px;
  }
  .quiz_app-start_screen_controls-share-btn .icon svg {
    width: 100%;
    height: auto;
  }
}
.quiz_app-start_screen_controls-share-btn.active {
  color: #000;
}
.quiz_app-start_screen_controls-share-btn.active svg path {
  fill: #000;
}
.quiz_app-start_screen_controls-share_list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  padding: 10px 0;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  width: max-content;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .quiz_app-start_screen_controls-share_list {
    right: auto;
    left: 0px;
  }
}
.quiz_app-start_screen_controls-share_list.open {
  opacity: 1;
  visibility: visible;
}
.quiz_app-start_screen_controls-share_list-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 16px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .quiz_app-start_screen_controls-share_list-item {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (hover: hover) {
  .quiz_app-start_screen_controls-share_list-item:hover {
    color: #000;
    background: #F0F0F0;
  }
}
@media (hover: none) {
  .quiz_app-start_screen_controls-share_list-item:active {
    color: #000;
    background: #F0F0F0;
  }
}
.quiz_app-start_screen_controls-share_list-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
}
.quiz_app-start_screen_controls-share_list-item .icon svg {
  width: 100%;
  height: 100%;
}
.quiz_app_test {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #0921FF;
  background: rgba(9, 33, 255, 0.05);
  margin-bottom: 10px;
}
@media screen and (max-width: 1600px) {
  .quiz_app_test {
    padding: 29px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app_test {
    padding: 29px 29px 59px 29px;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app_test {
    padding: 29px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app_test {
    padding: 19px 13px 29px 13px;
    row-gap: 15px;
    margin-bottom: 20px;
  }
}
.quiz_app_test_counter {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.quiz_app_test_question {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 647px;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .quiz_app_test_question {
    row-gap: 20px;
    max-width: 620px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app_test_question {
    max-width: 650px;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app_test_question {
    max-width: 100%;
    row-gap: 16px;
  }
}
.quiz_app_test_question-title {
  display: flex;
  column-gap: 5px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  width: 100%;
}
.quiz_app_test_question-title span {
  flex-shrink: 0;
}
.quiz_app_test_question_answers {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .quiz_app_test_question_answers {
    row-gap: 16px;
  }
}
.quiz_app_test_question_answers.images {
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -25px;
  width: auto;
  row-gap: 20px;
}
@media screen and (max-width: 1600px) {
  .quiz_app_test_question_answers.images {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app_test_question_answers.images {
    margin: 0 -25px;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app_test_question_answers.images {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app_test_question_answers.images {
    margin-top: 4px;
    row-gap: 15px;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.quiz_app_test_question_answers.images .quiz_app_test_question_answers-it {
  flex-direction: column;
  background: transparent;
  border-radius: 0px;
  row-gap: 20px;
  width: 100%;
  max-width: 33.33333%;
  padding: 0 25px;
}
@media screen and (max-width: 1600px) {
  .quiz_app_test_question_answers.images .quiz_app_test_question_answers-it {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app_test_question_answers.images .quiz_app_test_question_answers-it {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app_test_question_answers.images .quiz_app_test_question_answers-it {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app_test_question_answers.images .quiz_app_test_question_answers-it {
    max-width: calc(100% - 110px);
    row-gap: 10px;
    padding: 0px;
  }
}
.quiz_app_test_question_answers.images .quiz_app_test_question_answers-it-image {
  display: block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #FFF;
}
.quiz_app_test_question_answers.images .quiz_app_test_question_answers-it-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz_app_test_question_answers.images .quiz_app_test_question_answers-it-input {
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-radius: 6px;
  background: #FFF;
  width: 100%;
  padding: 5px 10px;
  position: relative;
}
.quiz_app_test_question_answers.images .quiz_app_test_question_answers-it-input span {
  text-transform: uppercase;
}
.quiz_app_test_question_answers-it {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  background: #FFF;
  cursor: pointer;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .quiz_app_test_question_answers-it {
    padding: 4px 10px;
    border-radius: 8px;
    column-gap: 13px;
  }
}
@media (hover: hover) {
  .quiz_app_test_question_answers-it:hover input::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: none) {
  .quiz_app_test_question_answers-it:active input::after {
    opacity: 1;
    visibility: visible;
  }
}
.quiz_app_test_question_answers-it input {
  appearance: none;
  width: 11px;
  height: 11px;
  background: #D9D9D9;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.4s;
}
.quiz_app_test_question_answers-it input::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #0921FF;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 6px;
  user-select: none;
  pointer-events: none;
  transition: 0.4s;
}
.quiz_app_test_question_answers-it input:checked {
  background: #0921FF;
}
.quiz_app_test_question_answers-it input:checked ~ span {
  color: #0921FF;
}
.quiz_app_test_question_answers-it input:checked::after {
  opacity: 1;
  visibility: visible;
}
.quiz_app_test_question_answers-it span {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
.quiz_app_test_question-btn_next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  background: #0921FF;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .quiz_app_test_question-btn_next {
    margin-top: 4px;
  }
}
.quiz_app_test_question-btn_next:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.quiz_app-result_screen {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1600px) {
  .quiz_app-result_screen {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen {
    row-gap: 16px;
  }
}
.quiz_app-result_screen_top {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_top {
    row-gap: 16px;
  }
}
.quiz_app-result_screen_top-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 867/464;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(9, 33, 255, 0.05);
}
.quiz_app-result_screen_top-image img {
  height: auto;
}
.quiz_app-result_screen_top_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_top_content {
    row-gap: 16px;
  }
}
.quiz_app-result_screen_top_content-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}
@media screen and (max-width: 1600px) {
  .quiz_app-result_screen_top_content-title {
    font-size: 32px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_top_content-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.quiz_app-result_screen_top_content-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.quiz_app-result_screen_top_content-text a {
  color: #0921FF;
}
.quiz_app-result_screen_top_content-text strong,
.quiz_app-result_screen_top_content-text b {
  color: #0921FF;
  font-weight: 700;
}
.quiz_app-result_screen_products {
  display: flex;
  flex-direction: column;
}
.quiz_app-result_screen_products-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}
@media screen and (max-width: 1600px) {
  .quiz_app-result_screen_products-title {
    font-size: 32px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big {
  position: relative;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big {
    margin: 24px 0 0 0;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big {
  position: unset;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big {
    overflow: visible;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide {
  max-width: 195px;
}
@media screen and (max-width: 1600px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide {
    max-width: 195px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide {
    max-width: 240px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide.preload {
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide.preload {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .swiper-slide.preload {
    margin-top: 16px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 100%;
  transition: 0.4s;
}
@media (hover: hover) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item {
    row-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item {
    flex-direction: row;
    column-gap: 10px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item .adult_icon {
  display: none;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item.adult .item-image {
  position: relative;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item.adult .item-image img {
  filter: blur(15px);
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item.adult .item-image .adult_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.44);
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item.adult .item-image .adult_icon svg {
  width: 50px;
  height: auto;
  max-width: 50px;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item-image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item-image {
    max-width: 72px;
    flex-shrink: 0;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item-image .sale_percent {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 4px;
  margin: 0 4px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #FFF;
  color: #E0119D;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item-image .sale_percent {
    display: inline-flex;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info {
    width: 100%;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost {
    order: 3;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-main {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-main {
    font-size: 14px;
    line-height: 20px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-second {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-second {
    font-size: 11px;
    line-height: 16px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-percent {
  color: #E0119D;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info_cost-percent {
    display: none;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-title {
  margin-top: 3px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-title {
    margin-top: 6px;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.44px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-title {
    order: 1;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-text {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .item__info-text {
    order: 2;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .skeleton {
  background: rgba(0, 0, 0, 0.05);
  color: transparent;
  width: 100%;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .skeleton.--mt {
  margin-top: 5px;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .skeleton.--mt-mobile {
  margin-top: 5px;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_prod_big .skeleton::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 80%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: -185px 0, center 0, center 115px, center 142px;
  box-sizing: border-box;
  animation: animloader 1s linear infinite;
}
@keyframes animloader {
  to {
    background-position: 185px 0, center 0, center 115px, center 142px;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls {
  position: absolute;
  top: 82px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls.loading {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls {
    top: 90px;
  }
}
@media screen and (max-width: 1199px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls {
    top: 93px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls {
    display: none;
  }
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-prev,
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-next {
  top: 82px;
  position: unset;
  transform: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  margin: 0px;
  transition: 0.4s;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-prev.swiper-button-disabled,
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-prev {
  transform: translateX(-16px);
}
.quiz_app-result_screen_products .article_slider_prod_big .sw_article_controls .swiper-button-next {
  transform: translateX(16px);
}
.quiz_app-result_screen_controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_controls {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_controls .quiz_app-result_screen_controls-btn {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .quiz_app-result_screen_controls .quiz_app-start_screen_controls-share-btn {
    display: none;
  }
}

.stream_index {
  margin-top: 47px;
}
@media screen and (max-width: 1199px) {
  .stream_index {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .stream_index {
    margin-top: 24px;
  }
}
.stream_index_wrap {
  row-gap: 40px;
}
@media screen and (max-width: 1199px) {
  .stream_index_wrap {
    row-gap: 24px;
  }
}
.stream_index-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1024px) {
  .stream_index-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.stream_index-btn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.stream_index-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  background: #F0F0F0;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .stream_index-btn a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .stream_index-btn a:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1199px) {
  .stream_index-btn a {
    width: 100%;
    max-width: 100%;
  }
}
.stream_index_sw {
  aspect-ratio: 1321/532;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-width: 0px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .stream_index_sw {
    overflow: visible;
    aspect-ratio: 695/337;
  }
}
@media screen and (max-width: 767px) {
  .stream_index_sw {
    aspect-ratio: 328/405;
    max-height: 450px;
  }
}
.stream_index_sw .swiper-slide {
  width: 100%;
  max-width: calc(25% - 23px);
}
@media screen and (max-width: 1199px) {
  .stream_index_sw .swiper-slide {
    max-width: calc(33.3333333333% - 9px);
  }
}
@media screen and (max-width: 767px) {
  .stream_index_sw .swiper-slide {
    max-width: 70%;
  }
}
.stream_index_sw .swiper-slide:first-child {
  max-width: calc(50% - 15px);
}
@media screen and (max-width: 1199px) {
  .stream_index_sw .swiper-slide:first-child {
    max-width: calc(66.6666666667% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .stream_index_sw .swiper-slide:first-child {
    max-width: 70%;
  }
}

.stream_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 10px 20px 20px 20px;
  row-gap: 20px;
}
@media (hover: hover) {
  .stream_card:hover .stream_card-img img {
    transform: scale(1.03);
  }
}
@media (hover: none) {
  .stream_card:active .stream_card-img img {
    transform: scale(1.03);
  }
}
.stream_card-cloud {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 1px 8px;
  margin-left: -10px;
}
.stream_card_content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  flex: 1 1 auto;
  justify-content: flex-end;
  z-index: 1;
}
.stream_card_content_tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
  position: relative;
  z-index: 2;
}
@media (hover: hover) {
  .stream_card_content_tags a:hover span::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .stream_card_content_tags a:active span::after {
    opacity: 1;
  }
}
.stream_card_content_tags_item {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .stream_card_content_tags_item {
    display: none;
  }
}
.stream_card_content_tags_item:first-child::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .stream_card_content_tags_item:first-child {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .stream_card_content_tags_item:last-child {
    display: flex;
  }
}
.stream_card_content_tags_item::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  flex-shrink: 0;
  background: #FFF;
  border-radius: 50%;
}
.stream_card_content_tags_item-hash {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  width: 16px;
  max-width: 16px;
  height: 16px;
  max-height: 16px;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
  background: #0921FF;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.stream_card_content_tags_item span {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
.stream_card_content_tags_item span::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: currentColor;
  opacity: 0;
  transition: 0.4s;
}
.stream_card_content-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.stream_card_message {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 100%;
  padding: 0 10px;
  z-index: 1;
}
.stream_card_message-item {
  padding: 5px 12px;
  background: #FFF;
  border-radius: 20px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .stream_card_message-item {
    font-size: 14px;
    line-height: 140%;
  }
}
@media screen and (max-width: 767px) {
  .stream_card_message-item {
    font-size: 12px;
    line-height: 140%;
  }
}
.stream_card-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
}
.stream_card-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 90%);
  position: absolute;
  top: 0;
  left: 0;
}
.stream_card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.stream_card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.stream_card_big .stream_card_content-title {
  color: #FFF;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1199px) {
  .stream_card_big .stream_card_content-title {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .stream_card_big .stream_card_content-title {
    font-size: 16px;
    line-height: 140%;
  }
}

.stream_archive {
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .stream_archive {
    margin-bottom: 48px;
  }
}
.stream_archive-page_title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 1199px) {
  .stream_archive-page_title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}
.stream_archive_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 80px;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .stream_archive_row {
    margin: 0 -8px;
    margin-top: 40px;
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .stream_archive_row {
    row-gap: 16px;
  }
}
.stream_archive-col {
  width: 100%;
  padding: 0 15px;
}
@media screen and (max-width: 1199px) {
  .stream_archive-col {
    padding: 0 8px;
  }
}
.stream_archive-col.stream_archive-col_wide {
  max-width: 66.6666666667%;
}
@media screen and (max-width: 767px) {
  .stream_archive-col.stream_archive-col_wide {
    max-width: 100%;
  }
}
.stream_archive-col.stream_archive-col_small {
  max-width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .stream_archive-col.stream_archive-col_small {
    max-width: 100%;
  }
}
.stream_archive .stream_card_small {
  aspect-ratio: 116/201;
}
@media screen and (max-width: 767px) {
  .stream_archive .stream_card_small {
    aspect-ratio: 164/200;
  }
}
@media screen and (max-width: 767px) {
  .stream_archive .stream_card_big {
    aspect-ratio: 164/200;
  }
}
.stream_archive .stream_card_big .stream_card_content-title {
  font-size: 20px;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .stream_archive .stream_card_big .stream_card_content-title {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .stream_archive .stream_card_big .stream_card_content-title {
    font-size: 16px;
    line-height: 140%;
  }
}

.tags_stream {
  width: 100%;
  padding: 30px;
  border-radius: 24px;
  background: #F6F6F6;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .tags_stream {
    width: unset;
    margin: 0 -36px;
  }
}
@media screen and (max-width: 767px) {
  .tags_stream {
    margin: -16px;
  }
}
.tags_stream_head {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.tags_stream_head-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .tags_stream_head-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.tags_stream_head-count {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .tags_stream_head-count {
    font-size: 14px;
    line-height: 20px;
  }
}
.tags_stream_sw {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  margin-left: unset;
  margin-right: unset;
  min-width: 0px;
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .tags_stream_sw {
    margin-top: 24px;
  }
}
.tags_stream_sw_item {
  max-width: 250px;
  aspect-ratio: 5/8;
  height: auto;
}
.tags_stream-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 11px 30px;
  border-radius: 8px;
  background: #E8E8E8;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .tags_stream-btn {
    margin-top: 24px;
    padding: 9px 28px;
    font-size: 14px;
    line-height: 23px;
  }
}
@media (hover: hover) {
  .tags_stream-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .tags_stream-btn:active {
    opacity: 0.7;
  }
}

.single_stream {
  margin-top: 0px;
}
@media screen and (max-width: 1024px) {
  .single_stream {
    margin-top: -8px;
  }
}
.single_stream_head {
  border-radius: 16px;
  background: #F2F4FF;
}
.single_stream_head-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single_stream_head-col {
  width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  .single_stream_head-col {
    width: 100%;
  }
}
.single_stream_head_left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: unset;
  align-content: space-between;
  column-gap: 30px;
  padding: 30px;
  height: 100%;
  min-height: clamp(18.125rem, 15rem + 4.1666666667vw, 18.75rem);
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left {
    min-height: 290px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream_head_left {
    min-height: unset;
    padding: 30px 30px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .single_stream_head_left {
    padding: 20px 20px 16px 20px;
  }
}
.single_stream_head_left-main {
  width: 100%;
  margin-bottom: 15px;
  order: 1;
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left-main {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream_head_left-main {
    order: 1;
    margin-bottom: 0px;
  }
}
.single_stream_head_left-main > *:first-child {
  margin-top: 0px;
}
.single_stream_head_left-main > *:last-child {
  margin-bottom: 0px;
}
.single_stream_head_left_message {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.single_stream_head_left_message-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px 6px 12px;
  border-radius: 20px;
  background: #0921FF;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left_message-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .single_stream_head_left_message-item {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.single_stream_head_left-title {
  font-size: clamp(1.875rem, -3.75rem + 7.5vw, 3rem);
  line-height: clamp(2.25rem, -3.6875rem + 7.9166666667vw, 3.4375rem);
  letter-spacing: calc(0px - clamp(0.0375rem, -0.075rem + 0.15vw, 0.06rem));
  width: 100%;
  margin-top: 15px;
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream_head_left-title {
    margin-top: 14px;
  }
}
.single_stream_head_left .single_wrap__head_top_meta_left {
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 12px;
  order: 3;
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left .single_wrap__head_top_meta_left {
    margin-top: 0;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream_head_left .single_wrap__head_top_meta_left {
    order: 2;
    column-gap: 16px;
    width: 100%;
    margin-top: 20px;
  }
}
.single_stream_head_left .single_wrap__head_top_meta_left .tag .icon {
  background: #0921FF;
}
.single_stream_head_left_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  order: 2;
}
@media screen and (max-width: 1600px) {
  .single_stream_head_left_btns {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream_head_left_btns {
    margin-top: 30px;
    column-gap: 20px;
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .single_stream_head_left_btns {
    margin-top: 28px;
    justify-content: space-between;
  }
}
.single_stream_head_left_btns-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_stream_head_left_btns-link {
    font-size: 12px;
    line-height: 18px;
    padding: 7px 20px;
  }
}
@media (hover: hover) {
  .single_stream_head_left_btns-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .single_stream_head_left_btns-link:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1199px) {
  .single_stream_head_left_btns .share_btn span {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .single_stream_head_left_btns .share_btn span {
    display: none !important;
  }
}
.single_stream_head-img {
  width: 100%;
  height: 100%;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .single_stream_head-img {
    aspect-ratio: 24/13;
    overflow: hidden;
    display: block;
    height: auto;
    border-radius: 0px 0px 16px 16px;
  }
}
.single_stream_head-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .single_stream .single_wrap__body {
    margin-top: 48px;
  }
}
.single_stream .single_wrap__body_top .article_author {
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .single_stream .single_wrap__body_top .article_author {
    padding-top: 24px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .single_stream .single_wrap__body_content {
    margin-top: 48px;
  }
}
.single_stream .stream_shelves .row {
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .single_stream .stream_shelves .row {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .single_stream .stream_shelves .row {
    row-gap: 16px;
  }
}
.single_stream_more {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .single_stream_more {
    row-gap: 20px;
    margin-top: 64px;
  }
}
.single_stream_more-title {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1600px) {
  .single_stream_more-title {
    font-size: 22px;
    line-height: 24px;
  }
}
.single_stream_more_wrap {
  position: relative;
}
.single_stream_more_wrap .swiper-button-prev,
.single_stream_more_wrap .swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_stream_more_wrap .swiper-button-prev,
  .single_stream_more_wrap .swiper-button-next {
    display: none;
  }
}
@media (hover: hover) {
  .single_stream_more_wrap .swiper-button-prev:hover,
  .single_stream_more_wrap .swiper-button-next:hover {
    opacity: 0.8;
    background: transparent !important;
  }
}
@media (hover: none) {
  .single_stream_more_wrap .swiper-button-prev:active,
  .single_stream_more_wrap .swiper-button-next:active {
    opacity: 0.8;
    background: transparent !important;
  }
}
.single_stream_more_wrap .swiper-button-disabled {
  opacity: 0;
}
.single_stream_more_wrap .swiper-button-prev {
  left: -16px;
}
.single_stream_more_wrap .swiper-button-next {
  right: -16px;
}
.single_stream_more_sw {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 0px;
}
@media screen and (max-width: 1199px) {
  .single_stream_more_sw {
    overflow: visible;
  }
}
.single_stream_more_sw .stream_card {
  aspect-ratio: 11/19;
}
@media screen and (max-width: 1199px) {
  .single_stream_more_sw .stream_card {
    max-width: 256px;
    aspect-ratio: 256/433;
  }
}

html,
body {
  overflow-x: clip;
  scroll-behavior: smooth;
}

:root {
  --main-color-oragne: #f90;
  --main-color-exclusive: #8f63ee;
  --main-color-pink: #e0119d;
  --main-color-green: #30cf60;
  --main-color-blue: #0921ff;
}

body {
  color: #000;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  background-color: #fff;
  font-size: 16px;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-thumb {
  background: #0921ff;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

form {
  width: 100%;
}
form p {
  width: 100%;
}

.section_title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section_title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}

.section_title_small {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .section_title_small {
    font-size: 18px;
    line-height: 20px;
  }
}

h1 {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 1199px) {
  h1 {
    color: #000;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}

.page_title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.96px;
}
.page_title.white {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .page_title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}

main {
  overflow-x: clip;
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  main {
    margin-top: 0px;
  }
}
main.main_other_page {
  margin-top: 0px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1280px;
    padding: 0 82px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 44px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 36px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.row {
  --bs-gutter-x: 30px;
}
@media screen and (max-width: 1600px) {
  .row {
    --bs-gutter-x: 24px;
  }
}
@media screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 16px;
  }
}

.swiper-slide {
  user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: unset;
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  user-select: none;
  transition: 0.4s;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #f0f0f0 !important;
  }
}
@media (hover: none) {
  .swiper-button-prev:active,
  .swiper-button-next:active {
    background: #f0f0f0 !important;
  }
}

.index_first__wrap {
  row-gap: 30px;
}
.index_first__wrap .card .content .title {
  -webkit-line-clamp: 4;
}
.index_first__wrap .card .content .text {
  -webkit-line-clamp: inherit;
}
.index_first__wrap .expert {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 29px 14px 29px 29px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #f0f0f0;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert {
    padding: 23px 12px 23px 23px;
    row-gap: 24px;
  }
}
.index_first__wrap .expert_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert_wrap {
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index_first__wrap .expert {
    margin: 0 -16px;
  }
}
.index_first__wrap .expert-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.index_first__wrap .expert__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  overflow-y: auto;
  padding-right: 15px;
  max-height: 500px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert__list {
    row-gap: 24px;
    padding-right: 12px;
  }
}
.index_first__wrap .expert__list::-webkit-scrollbar {
  width: 5px;
}
.index_first__wrap .expert__list::-webkit-scrollbar-track {
  background: transparent;
}
.index_first__wrap .expert__list::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.0666666667);
  border-radius: 16px;
}
.index_first__wrap .expert__list-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.index_first__wrap .expert__list-item .expert_top {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert__list-item .expert_top {
    padding: 12px 16px;
    row-gap: 8px;
  }
}
.index_first__wrap .expert__list-item .expert_top-title {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  transition: 0.4s;
}
@media (hover: hover) {
  .index_first__wrap .expert__list-item .expert_top-title:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .index_first__wrap .expert__list-item .expert_top-title:active {
    opacity: 0.7;
  }
}
.index_first__wrap .expert__list-item .expert_author {
  display: flex;
  column-gap: 15px;
  transition: 0.4s;
}
@media (hover: hover) {
  .index_first__wrap .expert__list-item .expert_author:hover .expert_author__meta-name::after {
    opacity: 1;
  }
  .index_first__wrap .expert__list-item .expert_author:hover .expert_author__meta-job {
    color: #000;
  }
}
@media (hover: none) {
  .index_first__wrap .expert__list-item .expert_author:active .expert_author__meta-name::after {
    opacity: 1;
  }
  .index_first__wrap .expert__list-item .expert_author:active .expert_author__meta-job {
    color: #000;
  }
}
@media screen and (max-width: 1199px) {
  .index_first__wrap .expert__list-item .expert_author {
    column-gap: 12px;
  }
}
.index_first__wrap .expert__list-item .expert_author__avatar {
  display: flex;
  position: relative;
}
.index_first__wrap .expert__list-item .expert_author__avatar .icon {
  display: flex;
  position: absolute;
  top: -12px;
  right: 0;
}
.index_first__wrap .expert__list-item .expert_author__avatar .image {
  width: 70px;
  max-width: 70px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 100%;
  max-height: 70px;
}
.index_first__wrap .expert__list-item .expert_author__avatar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_first__wrap .expert__list-item .expert_author__meta {
  width: 100%;
  max-width: calc(100% - 85px);
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  justify-content: center;
}
.index_first__wrap .expert__list-item .expert_author__meta-name {
  color: #000;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  max-width: fit-content;
}
.index_first__wrap .expert__list-item .expert_author__meta-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.4s;
}
.index_first__wrap .expert__list-item .expert_author__meta-job {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
.index_first__wrap_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: radial-gradient(113.98% 113.98% at 2.27% 50%, #0921ff 0%, #fff 100%);
  padding: 13px 30px;
  overflow: hidden;
  column-gap: 90px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap_link {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 767px) {
  .index_first__wrap_link {
    flex-direction: column;
    align-items: start;
    row-gap: 12px;
    background: radial-gradient(113.98% 113.98% at 2.27% 50%, #0921ff 62.22%, #fff 100%);
  }
}
@media (hover: hover) {
  .index_first__wrap_link:hover .index_first__wrap_link_btn {
    background: #f0f0f0;
  }
}
@media (hover: none) {
  .index_first__wrap_link:active .index_first__wrap_link_btn {
    background: #f0f0f0;
  }
}
.index_first__wrap_link_inform_title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap_link_inform_title {
    line-height: 20px;
  }
}
.index_first__wrap_link_inform_text {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 1199px) {
  .index_first__wrap_link_inform_text {
    line-height: 20px;
  }
}
.index_first__wrap_link_btn {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  column-gap: 8px;
  border-radius: 8px;
  background: #fff;
  padding: 6px 19px 6px 19px;
  white-space: nowrap;
  transition: 0.4s;
}
.index_first__wrap_link_btn_icon {
  display: flex;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .index_first .quiz-swiper {
    overflow: visible;
  }
}
.index_first .quiz-swiper .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1199px) {
  .index_first .quiz-swiper .swiper-slide {
    flex: 1 0 300px;
  }
}
.index_first .quiz-swiper .swiper-slide .index_first__wrap_link {
  height: 100%;
}
.index_first .quiz-swiper .swiper-pagination {
  position: unset;
}

.expert_cloud {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eac062 0%, #fbde7d 44.27%, #eac062 100%);
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.special_projects {
  padding: 40px 0;
  margin-top: 30px;
  background: #f2f4ff;
}
@media screen and (max-width: 1024px) {
  .special_projects {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .special_projects {
    padding: 24px 0;
    margin-top: 24px;
  }
}
.special_projects__wrap .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.special_projects__wrap .head__left {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.special_projects__wrap .head__left-image {
  display: block;
  width: 100%;
  max-width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.special_projects__wrap .head__left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special_projects__wrap .head__left__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 5px;
}
@media screen and (max-width: 1199px) {
  .special_projects__wrap .head__left__meta {
    row-gap: 4px;
  }
}
.special_projects__wrap .head__left__meta-cloud {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1px 8px;
  border-radius: 4px;
  background: #0921ff;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.special_projects__wrap .head__left__meta-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .special_projects__wrap .head__left__meta-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.special_projects__wrap .special_content {
  margin-top: 40px;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .special_projects__wrap .special_content {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .special_projects__wrap .special_content {
    margin-top: 24px;
  }
}
.special_projects__wrap .special_content .col-xl-3 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .special_projects__wrap .special_content .col-xl-3 {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-3 {
    column-gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-3 .card {
    width: 100%;
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .special_projects__wrap .special_content .col-xl-3 .card {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-3 .card.small .content {
    row-gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-3 .card.small .content .title {
    margin-top: -8px;
  }
}
.special_projects__wrap .special_content .col-xl-6 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .special_projects__wrap .special_content .col-xl-6 {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-6 {
    order: -1;
  }
}
@media screen and (max-width: 1024px) {
  .special_projects__wrap .special_content .col-xl-6 .card.big {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .special_projects__wrap .special_content .col-xl-6 .card.big {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .special_projects__wrap .special_content .col-xl-6 .card.big {
    margin: 0px;
  }
}
.special_projects__wrap .special_content .col-xl-6 .card.big .content {
  row-gap: 16px;
}
@media screen and (max-width: 1199px) {
  .special_projects__wrap .special_content .col-xl-6 .card.big .content .title {
    font-size: 16px;
    line-height: 140%;
    margin-top: -8px;
  }
  .special_projects__wrap .special_content .col-xl-6 .card.big .content .text {
    display: none;
  }
  .special_projects__wrap .special_content .col-xl-6 .card.big .content .avatar {
    display: none;
  }
}

.editor_choise {
  padding: 40px 0;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .editor_choise {
    margin-top: 40px;
    padding: 0px;
  }
}
@media screen and (max-width: 767px) {
  .editor_choise {
    margin-top: 24px;
  }
}
.editor_choise .editor_choise_wrap__list {
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .editor_choise .editor_choise_wrap__list {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .editor_choise .editor_choise_wrap__list {
    row-gap: 32px;
  }
}

.popular {
  margin-top: 40px;
}
.popular .popular_wrap {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #f0f0f0;
  padding: 17px 20px 30px 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .popular .popular_wrap {
    padding: 20px 20px 30px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .popular .popular_wrap {
    padding: 40px 36px;
    margin: 0 -36px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .popular .popular_wrap {
    padding: 24px 16px;
    margin: 0 -16px;
  }
}
.popular .popular_wrap__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .popular .popular_wrap__head {
    margin-bottom: 24px;
  }
}
.popular .popular_wrap__head .sw_controls {
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .popular .popular_wrap__head .sw_controls {
    display: none;
  }
}
.popular .popular_wrap__head .sw_controls .sw_pop_next,
.popular .popular_wrap__head .sw_controls .sw_pop_prev {
  max-width: 32px;
  max-height: 32px;
  width: 32px;
  height: 32px;
}
@media (hover: hover) {
  .popular .popular_wrap__head .sw_controls .sw_pop_next:hover,
  .popular .popular_wrap__head .sw_controls .sw_pop_prev:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .popular .popular_wrap__head .sw_controls .sw_pop_next:active,
  .popular .popular_wrap__head .sw_controls .sw_pop_prev:active {
    opacity: 0.7;
  }
}
.popular .popular_wrap__head .sw_controls .sw_pop_next svg,
.popular .popular_wrap__head .sw_controls .sw_pop_prev svg {
  max-width: 32px;
  max-height: 32px;
  width: 32px;
  height: 32px;
}
.popular .popular_wrap .sw_popular {
  overflow: visible;
}
.popular .popular_wrap .sw_popular .card {
  padding: 10px 10px 20px 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .popular .popular_wrap .sw_popular .card {
    row-gap: 5px;
    padding: 8px 8px 16px 8px;
  }
  .popular .popular_wrap .sw_popular .card .content {
    padding-top: 12px;
  }
  .popular .popular_wrap .sw_popular .card .content .title {
    margin-top: 0px;
  }
}
.popular .popular_wrap .sw_popular .card .image {
  border-radius: 8px;
  overflow: hidden;
}
.popular .popular_wrap .sw_popular .card .content {
  padding: 15px 5px 0px 5px;
  flex: 1 1 auto;
}
.popular .popular_wrap .sw_popular .card .content a:not(.tag) {
  flex: 1 1 auto;
}
.popular .popular_wrap .sw_popular .card .content .title {
  -webkit-line-clamp: 3;
}
.popular .popular_wrap .sw_popular .swiper-slide {
  max-width: 260px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .popular .popular_wrap .sw_popular .swiper-slide {
    max-width: 256px;
  }
}

.trands {
  margin-top: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 1199px) {
  .trands {
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .trands {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .trands .trands_wrap__list {
    row-gap: 24px;
  }
}
.trands .trands_wrap__list .row {
  row-gap: 38px;
}
@media screen and (max-width: 1024px) {
  .trands .trands_wrap__list .row {
    row-gap: 32px;
  }
}

.breadcrumbs {
  margin-top: -20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .breadcrumbs {
    margin-top: 16px;
    margin-bottom: 32px;
  }
}
.breadcrumbs__wrap {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.breadcrumbs__wrap li {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.breadcrumbs__wrap li:last-child {
  overflow: hidden;
}
.breadcrumbs__wrap li:last-child span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs__wrap li::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #d9d9d9;
  margin-left: 8px;
}
.breadcrumbs__wrap li:last-of-type::after {
  display: none;
}
.breadcrumbs__wrap li a {
  transition: 0.4s;
}
@media (hover: hover) {
  .breadcrumbs__wrap li a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .breadcrumbs__wrap li a:active {
    opacity: 0.7;
  }
}
.breadcrumbs__wrap li a,
.breadcrumbs__wrap li span {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.other_page_list {
  row-gap: 40px;
}
@media screen and (max-width: 1199px) {
  .other_page_list {
    row-gap: 32px;
  }
}
.other_page_list .btn_more {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1199px) {
  .other_page_list .btn_more {
    margin-top: 16px;
    width: 100%;
  }
}
.other_page_list .btn_more .btn {
  column-gap: 8px;
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 12px;
}
@media screen and (max-width: 1199px) {
  .other_page_list .btn_more .btn {
    width: 100%;
  }
}

.table_mark {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .table_mark {
    row-gap: 8px;
  }
}
.table_mark li {
  display: flex;
  column-gap: 8px;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  counter-increment: list;
  position: relative;
}
.table_mark li::before {
  content: counter(list);
  display: block;
  font-size: 20px;
  transform: translateY(-3px);
  color: #999;
  font-feature-settings: "sups" on;
  font-size: 9px;
  font-weight: 400;
  line-height: 18px;
}

.index_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 1600px) {
  .index_wrap {
    margin-bottom: 40px;
  }
}

.other_page_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .other_page_wrap {
    margin-bottom: 48px;
  }
}

.header_ban .header_ban-ban {
  position: relative;
}
.header_ban .header_ban-ban img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.header_ban .header_ban-ban .header_ban_inform {
  display: flex;
  align-items: center;
  column-gap: 20px;
  max-width: fit-content;
  max-width: fit-content;
  margin-inline: auto;
  padding-block: 16px;
  position: relative;
  z-index: 1;
}
.header_ban .header_ban-ban .header_ban_inform .ban_text {
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 22px;
  font-style: normal;
  font-weight: 200;
  line-height: 24px;
}
.header_ban .header_ban-ban .header_ban_inform .ban_btn {
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: 1px solid #fff;
  padding: 4px 10px;
}
.header_ban .header_ban-close {
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .header_ban .header_ban-ban .header_ban_inform {
    padding-block: 9px;
  }
  .header_ban .header_ban-ban .header_ban_inform .ban_text {
    font-size: 11px;
    line-height: 14px;
    font-weight: 300;
    max-width: 170px;
  }
  .header_ban .header_ban-ban .header_ban_inform .ban_btn {
    display: none;
  }
}
/**** Только этот стиль перенести ***/
@media screen and (min-width: 1024px) {
  .card.wide .content {
    padding: 0;
    max-width: calc(100% - 60px);
    left: 0;
    right: 0;
    margin-inline: auto;
    bottom: 30px;
    max-height: fit-content;
    height: fit-content;
  }
}
#ajax-load-more {
  margin-top: 30px;
}
#ajax-load-more .row {
  row-gap: 30px;
}

.poster_block {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .poster_block {
    margin-top: 24px;
  }
}
.poster_block_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.poster_block_wrap-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.poster_block_wrap_sw {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .poster_block_wrap_sw {
    overflow: visible;
  }
}
.poster_block_wrap_sw.reach_start::before {
  opacity: 0;
  visibility: hidden;
}
.poster_block_wrap_sw.reach_start::after {
  opacity: 1;
  visibility: visible;
}
.poster_block_wrap_sw.reach_end::before {
  opacity: 1;
  visibility: visible;
}
.poster_block_wrap_sw.reach_end::after {
  opacity: 0;
  visibility: hidden;
}
.poster_block_wrap_sw::before {
  display: block;
  content: "";
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw::before {
    display: none;
  }
}
.poster_block_wrap_sw::after {
  display: block;
  content: "";
  width: 40px;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw::after {
    display: none;
  }
}
.poster_block_wrap_sw_item {
  display: flex;
  column-gap: 10px;
  width: 100%;
  max-width: 350px;
  padding: 9px 19px 9px 9px;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  position: relative;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw_item {
    column-gap: 24px;
    padding: 8px 11px 8px 8px;
  }
}
.poster_block_wrap_sw_item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  padding: 15px 10px;
  border-radius: 8px;
  background: #F5F5F5;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw_item-date {
    padding: 13px 10px;
  }
}
.poster_block_wrap_sw_item-date .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
.poster_block_wrap_sw_item-date .date span {
  color: #F77F6E;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw_item-date .date span {
    font-size: 12px;
    line-height: 18px;
  }
}
.poster_block_wrap_sw_item_content {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
.poster_block_wrap_sw_item_content-title {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw_item_content-title {
    font-size: 12px;
    line-height: 18px;
  }
}
.poster_block_wrap_sw_item_content-city {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.poster_block_wrap_sw_item-link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.poster_block_wrap_sw .sw_btn-prev,
.poster_block_wrap_sw .sw_btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap_sw .sw_btn-prev,
  .poster_block_wrap_sw .sw_btn-next {
    display: none;
  }
}
.poster_block_wrap_sw .sw_btn-prev svg,
.poster_block_wrap_sw .sw_btn-next svg {
  width: 100%;
  height: 100%;
}
.poster_block_wrap_sw .sw_btn-prev.swiper-button-disabled,
.poster_block_wrap_sw .sw_btn-next.swiper-button-disabled {
  opacity: 0;
}
.poster_block_wrap_sw .sw_btn-prev.swiper-button-lock,
.poster_block_wrap_sw .sw_btn-next.swiper-button-lock {
  display: none;
}
.poster_block_wrap_sw .sw_btn-prev {
  left: 0px;
}
.poster_block_wrap_sw .sw_btn-next {
  right: 0px;
}
.poster_block_wrap .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1199px) {
  .poster_block_wrap .swiper-pagination {
    display: inline-flex;
    justify-content: center;
    padding: 0 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    top: auto;
    right: auto;
    bottom: 0px;
    column-gap: 16px;
    position: unset;
    margin-top: -4px;
  }
}
.poster_block_wrap .swiper-pagination-bullet {
  display: flex;
  opacity: 0.2;
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 !important;
  padding: 0;
  transition: 0.4s;
}
.poster_block_wrap .swiper-pagination-bullet-active {
  opacity: 1;
}

.afisha_archive .tags_page__wrap-col {
  row-gap: 0px;
}
.afisha_archive .afisha_dates {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .afisha_archive .afisha_dates {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates {
    margin-top: 16px;
  }
}
.afisha_archive .afisha_dates_sw {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_sw {
    overflow: visible;
  }
}
.afisha_archive .afisha_dates_sw.reach_start::before {
  opacity: 1;
  visibility: visible;
}
.afisha_archive .afisha_dates_sw.reach_end::after {
  opacity: 1;
  visibility: visible;
}
.afisha_archive .afisha_dates_sw::before {
  display: block;
  content: "";
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_sw::before {
    display: none;
  }
}
.afisha_archive .afisha_dates_sw::after {
  display: block;
  content: "";
  width: 40px;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_sw::after {
    display: none;
  }
}
.afisha_archive .afisha_dates_sw_item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  position: relative;
  width: auto;
}
.afisha_archive .afisha_dates_sw_item-month {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: sticky;
  left: 0;
}
.afisha_archive .afisha_dates_sw_item_list {
  display: flex;
  column-gap: 15px;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_sw_item_list {
    column-gap: 12px;
  }
}
.afisha_archive .afisha_dates_sw_item_list-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_sw_item_list-date {
    color: #000;
    font-size: 18px;
    line-height: 20px;
  }
}
.afisha_archive .afisha_dates_sw_item_list-date.--not_event {
  color: #D9D9D9;
  user-select: none;
  pointer-events: none;
}
.afisha_archive .afisha_dates_sw_item_list-date span {
  color: #999;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.afisha_archive .afisha_dates_sw_item_list-date span.weekend {
  color: #F77F6E;
}
.afisha_archive .afisha_dates_city {
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .afisha_archive .afisha_dates_city {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates_city {
    margin-top: 16px;
  }
}
.afisha_archive .afisha_dates_city .select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) translateY(-2px);
}
.afisha_archive .afisha_dates_city .select2-container.select2-container--below .city-render {
  border-radius: 8px;
}
.afisha_archive .afisha_dates_city .select2-container.select2-container--above .city-render {
  border-radius: 8px;
}
.afisha_archive .afisha_dates_city .city-render {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  height: auto;
  padding: 9px 15px;
}
.afisha_archive .afisha_dates_city .city-render .select2-selection__rendered {
  padding: 0px;
}
.afisha_archive .afisha_dates_city .city-render .select2-selection__placeholder {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.afisha_archive .afisha_dates_city .city-render .select2-selection__rendered {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.afisha_archive .afisha_dates_city .city-render .select2-selection__arrow {
  position: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.55806%208.72475C4.80214%208.48067%205.19786%208.48067%205.44194%208.72475L10%2013.2828L14.5581%208.72475C14.8021%208.48067%2015.1979%208.48067%2015.4419%208.72475C15.686%208.96882%2015.686%209.36455%2015.4419%209.60863L10.4419%2014.6086C10.1979%2014.8527%209.80214%2014.8527%209.55806%2014.6086L4.55806%209.60863C4.31398%209.36455%204.31398%208.96882%204.55806%208.72475Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.4s;
  transform: rotate(0deg) translateY(-2px);
}
.afisha_archive .afisha_dates_city .city-render .select2-selection__arrow b {
  display: none;
}
.afisha_archive .afisha_dates_city .city-dropdown {
  min-width: 165px;
  max-width: 300px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  overflow: hidden;
}
.afisha_archive .afisha_dates_city .city-dropdown.select2-dropdown--below {
  top: 10px;
}
.afisha_archive .afisha_dates_city .city-dropdown.select2-dropdown--above {
  top: -10px;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options {
  max-height: 245px;
  padding: 6px 0;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options::-webkit-scrollbar {
  width: 0px;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: #0921FF;
  border-radius: 10px;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options .select2-results__option {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 4px 16px;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
  background: #5897fb;
  color: #FFF;
}
.afisha_archive .afisha_dates_city .city-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background: #0921FF;
  color: #FFF;
}
.afisha_archive .afisha_list {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .afisha_archive .afisha_list {
    margin-top: 24px;
  }
}
.afisha_archive .afisha_list .card__meta {
  flex-direction: row;
  justify-content: flex-start;
}
.afisha_archive .afisha_list .card__meta-date:not(:first-child)::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background: #999999;
  border-radius: 50%;
}
.afisha_archive .afisha_list .card__meta-date::after {
  display: none;
}
.afisha_archive .afisha_list .other_meta .descr {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.afisha_archive .afisha_dates-prev,
.afisha_archive .afisha_dates-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates-prev,
  .afisha_archive .afisha_dates-next {
    display: none;
  }
}
.afisha_archive .afisha_dates-prev svg,
.afisha_archive .afisha_dates-next svg {
  width: 100%;
  height: 100%;
}
.afisha_archive .afisha_dates-prev.swiper-button-disabled,
.afisha_archive .afisha_dates-next.swiper-button-disabled {
  opacity: 0;
}
.afisha_archive .afisha_dates-prev.swiper-button-lock,
.afisha_archive .afisha_dates-next.swiper-button-lock {
  display: none;
}
.afisha_archive .afisha_dates-prev {
  left: -52px;
}
@media screen and (max-width: 1024px) {
  .afisha_archive .afisha_dates-prev {
    left: -37px;
  }
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates-prev {
    display: none;
  }
}
.afisha_archive .afisha_dates-next {
  right: -52px;
}
@media screen and (max-width: 1024px) {
  .afisha_archive .afisha_dates-next {
    right: -37px;
  }
}
@media screen and (max-width: 1199px) {
  .afisha_archive .afisha_dates-next {
    display: none;
  }
}

.afisha_table_container {
  overflow-x: auto;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .afisha_table_container {
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
.afisha_table_container::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.afisha_table_container::-webkit-scrollbar-thumb {
  background: #0921FF;
  border-radius: 10px;
}
.afisha_table_container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.afisha_table_container table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  min-width: 650px;
  position: relative;
  padding: 0px;
  margin: 0px;
}
.afisha_table_container table::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
.afisha_table_container table th {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #F0F0F0;
  padding: 15px 20px;
  border-right: 1px solid #E8E8E8;
  text-align: left;
  flex: 1 1 100%;
}
.afisha_table_container table th:last-child {
  border-right: unset;
}
.afisha_table_container table td {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 15px 20px;
  border-right: 1px solid #E8E8E8;
  vertical-align: middle;
  flex: 1 1 100%;
}
.afisha_table_container table td:last-child {
  border-right: unset;
}
.afisha_table_container table tr {
  display: flex;
  border-bottom: 1px solid #E8E8E8;
}
.afisha_table_container table tr:last-child {
  border-bottom: unset;
}
.afisha_table_container table img {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0px;
}
.afisha_table_container .afisha_table_container-descr {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 24px;
  position: sticky;
  left: 0;
}
.afisha_table_container .afisha_table_container-descr p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-top: inherit;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .afisha_table_container .afisha_table_container-descr {
    margin-top: 20px;
  }
}

.map_block-map {
  width: 100%;
  aspect-ratio: 379/213;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .map_block-map {
    aspect-ratio: 1/1;
  }
}
.map_block .map_block_content {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .map_block .map_block_content {
    margin-top: 24px;
  }
}
.map_block .map_block_content > *:first-child {
  margin-top: 0px;
}
.map_block .map_block_content > *:last-child {
  margin-bottom: 0px;
}
.map_block .map_block_content-adres {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
}
.map_block .map_block_content p {
  margin: 0px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.custom-marker {
  display: flex;
  transform: translate(-50%, -95%);
  width: 50px;
  height: 68px;
}
.custom-marker-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.custom-marker svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .single_afisha .single_wrap__head_top_meta_left {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 8px;
  }
}
.single_afisha .single_wrap__head_top_meta_left .afisha_meta_item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1024px) {
  .single_afisha .single_wrap__head_top_meta_left .afisha_meta_item {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
}
.single_afisha .single_wrap__head_top_meta_left .afisha_meta_item .icon {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .single_afisha .single_wrap__head_top_meta_left .afisha_meta_item .icon {
    width: 20px;
    height: 20px;
  }
}
.single_afisha .single_wrap__head_top_meta_left .afisha_meta_item .icon svg {
  width: 100%;
  height: 100%;
}
.single_afisha .single_wrap__head_top_meta_left .afisha_meta_item.--link {
  color: #176DE5;
}
.single_afisha .single_wrap__head_top_meta_left .afisha_meta_item.--link .icon svg path {
  fill: #176DE5;
}
.single_afisha .single_wrap__head_top_meta_right {
  margin-left: auto;
}

.news_block {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .news_block {
    margin-bottom: 24px;
  }
}
.news_block_wrap {
  display: flex;
  align-items: flex-end;
  column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .news_block_wrap {
    flex-direction: column;
    row-gap: 24px;
    column-gap: unset;
    align-items: flex-start;
  }
}
.news_block_wrap_left {
  writing-mode: sideways-lr;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news_block_wrap_left {
    writing-mode: unset;
  }
}
@media (hover: hover) {
  .news_block_wrap_left:hover .news_block_wrap_left-title {
    color: #0921FF;
  }
}
@media (hover: none) {
  .news_block_wrap_left:active .news_block_wrap_left-title {
    color: #0921FF;
  }
}
.news_block_wrap_left-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.2px;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .news_block_wrap_left-title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: unset;
  }
}
.news_block_wrap_left-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news_block_wrap_content {
  position: relative;
  max-width: calc(100% - 70px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news_block_wrap_content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news_block_wrap_content_sw {
    overflow: visible;
  }
}
.news_block_wrap_content_sw-item {
  display: flex;
  max-width: 350px;
  min-height: 140px;
  padding: 20px 15px;
  border-radius: 16px;
  background: #F0F0F0;
  height: auto;
  position: relative;
  transition: background 0.4s;
}
@media screen and (max-width: 767px) {
  .news_block_wrap_content_sw-item {
    padding: 12px 16px;
    min-height: 102px;
    align-items: center;
    max-width: 350px;
  }
}
@media (hover: hover) {
  .news_block_wrap_content_sw-item:hover {
    background: #F2F4FF;
  }
}
@media (hover: none) {
  .news_block_wrap_content_sw-item:active {
    background: #F2F4FF;
  }
}
.news_block_wrap_content_sw-item-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
.news_block_wrap_content_sw-item-link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.news_block_wrap_content .news_block_wrap_content_sw-prev,
.news_block_wrap_content .news_block_wrap_content_sw-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .news_block_wrap_content .news_block_wrap_content_sw-prev,
  .news_block_wrap_content .news_block_wrap_content_sw-next {
    display: none;
  }
}
.news_block_wrap_content .news_block_wrap_content_sw-prev svg,
.news_block_wrap_content .news_block_wrap_content_sw-next svg {
  width: 100%;
  height: 100%;
}
.news_block_wrap_content .news_block_wrap_content_sw-prev.swiper-button-disabled,
.news_block_wrap_content .news_block_wrap_content_sw-next.swiper-button-disabled {
  opacity: 0;
}
.news_block_wrap_content .news_block_wrap_content_sw-prev.swiper-button-lock,
.news_block_wrap_content .news_block_wrap_content_sw-next.swiper-button-lock {
  display: none;
}
.news_block_wrap_content .news_block_wrap_content_sw-prev {
  left: -16px;
}
.news_block_wrap_content .news_block_wrap_content_sw-next {
  right: -16px;
}

.news_archive .page_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1199px) {
  .news_archive .page_title {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: unset;
  }
}
@media screen and (max-width: 767px) {
  .news_archive .page_title {
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: unset;
  }
}
.news_archive .tags_page {
  margin-bottom: 0px;
}
.news_archive .tags_page__wrap-col {
  row-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .news_archive .tags_page__wrap-col {
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .news_archive .tags_page__wrap-col {
    row-gap: 16px;
  }
}
.news_archive .news_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .news_archive .news_wrap {
    row-gap: 24px;
  }
}
.news_archive .news_wrap_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .news_archive .news_wrap_block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: unset;
    grid-row-gap: unset;
    row-gap: 24px;
    column-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .news_archive .news_wrap_block {
    row-gap: 16px;
  }
}
.news_archive .news_wrap_block.--reverse {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block.--reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .news_archive .news_wrap_block.--reverse {
    padding: 24px 0;
  }
}
.news_archive .news_wrap_block.--reverse::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  background: #F2F4FF;
  z-index: -1;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item {
  background: #FFF;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item1 {
  grid-area: 1/1/2/2;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item2 {
  grid-area: 1/2/2/3;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item3 {
  grid-area: 1/3/2/4;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item4 {
  grid-area: 2/1/3/2;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item5 {
  grid-area: 3/1/4/2;
}
.news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item6 {
  grid-area: 2/2/4/4;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block.--reverse .news_wrap_block_item.--item6 {
    order: -1;
  }
}
.news_archive .news_wrap_block_item {
  position: relative;
  border-radius: 16px;
  padding: 15px 20px;
  background: #F2F4FF;
  overflow: hidden;
  min-height: 145px;
  transition: 0.4s;
}
@media screen and (max-width: 1600px) {
  .news_archive .news_wrap_block_item {
    min-height: 141px;
  }
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item {
    flex: 1 1 calc(50% - 12px);
    min-height: 104px;
  }
}
@media screen and (max-width: 767px) {
  .news_archive .news_wrap_block_item {
    flex-basis: 100%;
  }
}
@media (hover: hover) {
  .news_archive .news_wrap_block_item:hover {
    opacity: 0.6;
  }
  .news_archive .news_wrap_block_item:hover .news_wrap_block_item-image {
    filter: brightness(0.55);
  }
  .news_archive .news_wrap_block_item:hover .news_wrap_block_item-image img {
    transform: scale(1.03);
  }
}
@media (hover: none) {
  .news_archive .news_wrap_block_item:active {
    opacity: 0.6;
  }
  .news_archive .news_wrap_block_item:active .news_wrap_block_item-image {
    filter: brightness(0.55);
  }
  .news_archive .news_wrap_block_item:active .news_wrap_block_item-image img {
    transform: scale(1.03);
  }
}
.news_archive .news_wrap_block_item.--big {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 57/32;
  padding: 30px;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item.--big {
    flex-basis: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
    aspect-ratio: unset;
  }
}
@media (hover: hover) {
  .news_archive .news_wrap_block_item.--big:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .news_archive .news_wrap_block_item.--big:active {
    opacity: 1;
  }
}
.news_archive .news_wrap_block_item.--big .news_wrap_block_item_content {
  flex-direction: column-reverse;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item.--big .news_wrap_block_item_content {
    padding: 16px;
  }
}
.news_archive .news_wrap_block_item.--big .news_wrap_block_item_content-time {
  color: #FFF;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item.--big .news_wrap_block_item_content-time {
    color: #000;
  }
}
.news_archive .news_wrap_block_item.--big .news_wrap_block_item_content-title {
  color: #FFF;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item.--big .news_wrap_block_item_content-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
  }
}
.news_archive .news_wrap_block_item.--item1 {
  grid-area: 1/1/3/3;
}
.news_archive .news_wrap_block_item.--item2 {
  grid-area: 1/3/2/4;
}
.news_archive .news_wrap_block_item.--item3 {
  grid-area: 2/3/3/4;
}
.news_archive .news_wrap_block_item.--item4 {
  grid-area: 3/1/4/2;
}
.news_archive .news_wrap_block_item.--item5 {
  grid-area: 3/2/4/3;
}
.news_archive .news_wrap_block_item.--item6 {
  grid-area: 3/3/4/4;
}
.news_archive .news_wrap_block_item_content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item_content {
    row-gap: 8px;
    flex-direction: column-reverse;
  }
}
.news_archive .news_wrap_block_item_content-time {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.news_archive .news_wrap_block_item_content-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_archive .news_wrap_block_item-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.news_archive .news_wrap_block_item-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
  filter: brightness(0.6);
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item-image {
    position: unset;
    filter: unset;
    aspect-ratio: 87/49;
  }
}
.news_archive .news_wrap_block_item-image img {
  width: 100%;
  height: auto;
  transition: 0.6s;
}
@media screen and (max-width: 1199px) {
  .news_archive .news_wrap_block_item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.single_news_page .single_wrap__body_top {
  padding-bottom: 40px;
  border-bottom: 1px solid #E8E8E8;
}
@media screen and (max-width: 1199px) {
  .single_news_page .single_wrap__body_top {
    padding-bottom: 24px;
  }
}
.single_news_page .single_wrap__body_after .more_topic_slider {
  align-items: flex-start;
}
.single_news_page .single_wrap__body_after .more_topic_slider-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 15px;
  border-radius: 8px;
  background: #E8E8E8;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .single_news_page .single_wrap__body_after .more_topic_slider-link {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .single_news_page .single_wrap__body_after .more_topic_slider-link {
    width: 100%;
  }
}

.podcast_archive {
  margin-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  .podcast_archive {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .podcast_archive {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .podcast_archive {
    margin-top: 24px;
  }
}
.podcast_archive .row {
  justify-content: center;
}
.podcast_archive_wrap .card {
  border-radius: unset;
}
.podcast_archive_wrap .card .image {
  border-radius: 16px;
}
.podcast_archive_wrap .card__meta {
  flex-direction: row;
  justify-content: flex-start;
}
.podcast_archive_wrap .card__meta-date:last-child::after {
  display: none;
}
.podcast_archive_wrap .card__meta-date::after {
  display: none;
}
.podcast_archive_wrap .card__meta-date::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background: #999999;
  border-radius: 50%;
}
.podcast_archive_wrap .card .content {
  padding: 10px 0 0 0;
}
@media screen and (max-width: 767px) {
  .podcast_archive_wrap .card .content {
    padding: 8px 16px 0px 16px;
  }
}
@media (hover: hover) {
  .podcast_archive_wrap .card .content .title:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .podcast_archive_wrap .card .content .title:active {
    opacity: 1;
  }
}
.podcast_archive_wrap .card .content .text {
  -webkit-line-clamp: unset;
}
.podcast_archive_wrap_archive {
  padding: 30px;
  border-radius: 16px;
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .podcast_archive_wrap_archive {
    margin-top: 40px;
    padding: 25px 30px 30px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .podcast_archive_wrap_archive {
    padding: 16px 16px 24px 16px;
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .podcast_archive_wrap_archive {
    margin-top: 16px;
    margin-left: -16px;
    margin-right: -16px;
    row-gap: 28px;
    padding: 16px 16px 34px 16px;
  }
}
.podcast_archive_wrap_archive_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.podcast_archive_wrap_archive_head-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
@media screen and (max-width: 1199px) {
  .podcast_archive_wrap_archive_head-title {
    font-size: 18px;
    line-height: 20px;
  }
}
.podcast_archive_wrap_archive_head_control {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.podcast_archive_wrap_archive_head_control-prev {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (hover: hover) {
  .podcast_archive_wrap_archive_head_control-prev:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .podcast_archive_wrap_archive_head_control-prev:active {
    opacity: 0.7;
  }
}
.podcast_archive_wrap_archive_head_control-prev svg {
  width: 100%;
  height: 100%;
}
.podcast_archive_wrap_archive_head_control-next {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (hover: hover) {
  .podcast_archive_wrap_archive_head_control-next:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .podcast_archive_wrap_archive_head_control-next:active {
    opacity: 0.7;
  }
}
.podcast_archive_wrap_archive_head_control-next svg {
  width: 100%;
  height: 100%;
}
.podcast_archive_wrap_archive_sw {
  min-width: 0px;
  margin: unset;
}
.podcast_archive_wrap_archive_sw .swiper-slide {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.podcast_archive_wrap_archive_sw_item {
  display: flex;
  column-gap: 15px;
  position: relative;
}
@media (hover: hover) {
  .podcast_archive_wrap_archive_sw_item:hover .podcast_archive_wrap_archive_sw_item-image img {
    transform: scale(1.1);
  }
  .podcast_archive_wrap_archive_sw_item:hover .podcast_archive_wrap_archive_sw_item-title {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .podcast_archive_wrap_archive_sw_item:active .podcast_archive_wrap_archive_sw_item-image img {
    transform: scale(1.1);
  }
  .podcast_archive_wrap_archive_sw_item:active .podcast_archive_wrap_archive_sw_item-title {
    opacity: 0.5;
  }
}
.podcast_archive_wrap_archive_sw_item-image {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.podcast_archive_wrap_archive_sw_item-image img {
  width: 100%;
  height: auto;
  transition: 0.6s;
}
.podcast_archive_wrap_archive_sw_item-title {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  transition: 0.4s;
}
.podcast_archive_wrap_archive_sw_item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.podcast_archive_wrap .other_page_list {
  margin-top: 40px;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .podcast_archive_wrap .other_page_list {
    margin-top: 16px;
    row-gap: 16px;
  }
}
.podcast_archive_wrap .popular {
  margin-top: 40px;
}
.podcast_archive_wrap .popular_wrap {
  padding: 20px 30px 30px 30px;
}
@media screen and (max-width: 767px) {
  .podcast_archive_wrap .popular_wrap {
    padding: 24px 16px;
  }
}
.podcast_archive_wrap .popular .sw_popular {
  overflow: hidden;
  min-width: 0px;
  margin: unset;
}
@media screen and (max-width: 1024px) {
  .podcast_archive_wrap .popular .sw_popular {
    overflow: visible;
  }
}
.podcast_archive_wrap .popular .sw_popular .swiper-slide {
  border-radius: 16px;
  max-width: 256px;
}
@media screen and (max-width: 1024px) {
  .podcast_archive_wrap .popular .sw_popular .swiper-slide {
    max-width: 260px;
  }
}

.podcast_single_archive {
  margin-top: 0px;
}
.podcast_single_archive .single_wrap__body_top h2 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin: 60px 0 30px;
}
@media screen and (max-width: 1199px) {
  .podcast_single_archive .single_wrap__body_top h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
    margin: 48px 0 24px 0;
  }
}
.podcast_single_archive .single_wrap__body_top ol {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  list-style-type: auto;
}
@media screen and (max-width: 1199px) {
  .podcast_single_archive .single_wrap__body_top ol {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.podcast_single_archive .single_wrap__body_top ol li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.podcast_single_archive .single_wrap__body_top strong {
  font-weight: 700;
}
.podcast_single_archive .single_wrap__body_top ul {
  margin-top: 20px;
  margin-bottom: 30px;
  list-style-type: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .podcast_single_archive .single_wrap__body_top ul {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.podcast_single_archive .single_wrap__body_top ul li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.podcast_single_archive .single_wrap__body_content .select_season {
  margin-top: 0px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .podcast_single_archive .single_wrap__body_content .select_season {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .podcast_single_archive .single_wrap__body_content .select_season {
    margin-top: 16px;
  }
}
.podcast_single_archive .single_wrap__body_content .select_season .select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) translateY(-2px);
}
.podcast_single_archive .single_wrap__body_content .select_season .select2-container.select2-container--below .city-render {
  border-radius: 8px;
}
.podcast_single_archive .single_wrap__body_content .select_season .select2-container.select2-container--above .city-render {
  border-radius: 8px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  height: auto;
  padding: 9px 15px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render .select2-selection__rendered {
  padding: 0px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render .select2-selection__placeholder {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render .select2-selection__rendered {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render .select2-selection__arrow {
  position: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.55806%208.72475C4.80214%208.48067%205.19786%208.48067%205.44194%208.72475L10%2013.2828L14.5581%208.72475C14.8021%208.48067%2015.1979%208.48067%2015.4419%208.72475C15.686%208.96882%2015.686%209.36455%2015.4419%209.60863L10.4419%2014.6086C10.1979%2014.8527%209.80214%2014.8527%209.55806%2014.6086L4.55806%209.60863C4.31398%209.36455%204.31398%208.96882%204.55806%208.72475Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.4s;
  transform: rotate(0deg) translateY(-2px);
}
.podcast_single_archive .single_wrap__body_content .select_season .season-render .select2-selection__arrow b {
  display: none;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown {
  min-width: 165px;
  max-width: 300px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  overflow: hidden;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown.select2-dropdown--below {
  top: 10px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown.select2-dropdown--above {
  top: -10px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options {
  max-height: 245px;
  padding: 6px 0;
  margin: 0px;
  list-style: unset;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options::-webkit-scrollbar {
  width: 0px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: #0921FF;
  border-radius: 10px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options .select2-results__option {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 4px 16px;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
  background: #5897fb;
  color: #FFF;
}
.podcast_single_archive .single_wrap__body_content .select_season .season-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background: #0921FF;
  color: #FFF;
}
.podcast_single_archive .single_wrap__body_content .other_page_list {
  margin-top: 30px;
}
.podcast_single_archive .single_wrap__body_content .card .content .title {
  margin-bottom: 0px;
}
.podcast_single_archive .single_wrap__body_content .card .content .other_meta {
  row-gap: 15px;
}
.podcast_single_archive .single_wrap__body_content .card .content .other_meta-time {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single_archive .single_wrap__body_content .btn_more {
  margin-top: 30px;
}
.podcast_single_archive .podcast_archive_wrap_archive {
  margin-top: 0px;
}

.podcast_single {
  margin-top: 0px;
}
.podcast_single .single_wrap__head_top-image .plyr {
  width: 100%;
  height: 100%;
}
.podcast_single .single_wrap__head_top-image .plyr video {
  width: 100%;
  height: 100%;
}
.podcast_single .single_wrap__head_top_meta_left {
  width: 100%;
}
.podcast_single .single_wrap__head_top_meta_left .views {
  margin-right: auto;
}
.podcast_single .single_wrap__body_top > *:first-child {
  margin-top: 0px;
}
.podcast_single .single_wrap__body_top > *:last-child {
  margin-bottom: 0px;
}
.podcast_single .single_wrap__body_top h2 {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .podcast_single .single_wrap__body_top h2 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .podcast_single .single_wrap__body_top h2 {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.podcast_single .single_wrap__body_top .article_author {
  margin-top: 24px;
  padding-top: 0px;
  border-top: unset;
  display: none;
}
.podcast_single .single_wrap__body_content .select_episode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .podcast_single .single_wrap__body_content .select_episode {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .podcast_single .single_wrap__body_content .select_episode {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .podcast_single .single_wrap__body_content .select_episode {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 16px;
  }
}
.podcast_single .single_wrap__body_content .select_episode-btn {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .podcast_single .single_wrap__body_content .select_episode-btn:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .podcast_single .single_wrap__body_content .select_episode-btn:active {
    opacity: 0.6;
  }
}
.podcast_single .single_wrap__body_content .select_episode .select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) translateY(-2px);
}
.podcast_single .single_wrap__body_content .select_episode .select2-container.select2-container--below .city-render {
  border-radius: 8px;
}
.podcast_single .single_wrap__body_content .select_episode .select2-container.select2-container--above .city-render {
  border-radius: 8px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-render {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  height: auto;
  padding: 9px 15px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-render .select2-selection__rendered {
  padding: 0px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-render .select2-selection__placeholder {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-render .select2-selection__rendered {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-render .select2-selection__arrow {
  position: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.55806%208.72475C4.80214%208.48067%205.19786%208.48067%205.44194%208.72475L10%2013.2828L14.5581%208.72475C14.8021%208.48067%2015.1979%208.48067%2015.4419%208.72475C15.686%208.96882%2015.686%209.36455%2015.4419%209.60863L10.4419%2014.6086C10.1979%2014.8527%209.80214%2014.8527%209.55806%2014.6086L4.55806%209.60863C4.31398%209.36455%204.31398%208.96882%204.55806%208.72475Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.4s;
  transform: rotate(0deg) translateY(-2px);
}
.podcast_single .single_wrap__body_content .select_episode .episode-render .select2-selection__arrow b {
  display: none;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown {
  min-width: 165px;
  max-width: 300px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  overflow: hidden;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown.select2-dropdown--below {
  top: 10px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown.select2-dropdown--above {
  top: -10px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options {
  max-height: 245px;
  padding: 6px 0;
  margin: 0px;
  list-style: unset;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options::-webkit-scrollbar {
  width: 0px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: #0921FF;
  border-radius: 10px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options .select2-results__option {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 4px 16px;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
  background: #5897fb;
  color: #FFF;
}
.podcast_single .single_wrap__body_content .select_episode .episode-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background: #0921FF;
  color: #FFF;
}
.podcast_single .single_wrap__body_content .podcast_episode_item {
  display: flex;
  column-gap: 30px;
  padding: 30px;
  border-radius: 16px;
  background: #F2F4FF;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .podcast_single .single_wrap__body_content .podcast_episode_item {
    flex-direction: column;
    row-gap: 24px;
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 20px;
  }
}
.podcast_single .single_wrap__body_content .podcast_episode_item-image {
  display: block;
  width: 100%;
  max-width: 277px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 277/156;
}
@media screen and (max-width: 767px) {
  .podcast_single .single_wrap__body_content .podcast_episode_item-image {
    max-width: 100%;
  }
}
.podcast_single .single_wrap__body_content .podcast_episode_item-image img {
  width: 100%;
  height: auto;
}
.podcast_single .single_wrap__body_content .podcast_episode_item_content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  .podcast_single .single_wrap__body_content .podcast_episode_item_content {
    row-gap: 16px;
  }
}
.podcast_single .single_wrap__body_content .podcast_episode_item_content-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.16px;
  margin: 0;
}
.podcast_single .single_wrap__body_content .podcast_episode_item_content-audio {
  --plyr-control-spacing: 9px;
}
.podcast_single .single_wrap__body_content .podcast_episode_item_content-audio .plyr--audio {
  border-radius: 24px;
}
.podcast_single .single_wrap__body_content .podcast_episode_item_content-time {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.podcast_single .podcast_archive_wrap_archive {
  margin-top: 0px;
}
.podcast_single .popular {
  margin-top: 0px;
}
.podcast_single .plyr__poster {
  background-size: cover;
}
.podcast_single .podcast_platforms {
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  .podcast_single .podcast_platforms {
    margin-top: 24px;
  }
}
.podcast_single .podcast_platforms_sw {
  margin: 0;
  max-width: 100%;
  min-width: 0px;
}
@media screen and (max-width: 1199px) {
  .podcast_single .podcast_platforms_sw {
    overflow: visible;
  }
}
.podcast_single .podcast_platforms-item {
  display: flex;
  flex-shrink: 0;
  max-width: 154px;
  height: auto;
  aspect-ratio: 77/30;
  overflow: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .podcast_single .podcast_platforms-item {
    max-width: 130px;
    aspect-ratio: 130/51;
  }
}
@media (hover: hover) {
  .podcast_single .podcast_platforms-item:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .podcast_single .podcast_platforms-item:active {
    opacity: 0.6;
  }
}
.podcast_single .podcast_platforms-item svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
}

.single_page .single_wrap__head_top_meta_right-share .share_list {
  z-index: 1;
}

.afisha_archive .afisha_dates_sw_item_list-date {
  transition: 0.4s;
}
.afisha_archive .afisha_dates_sw_item_list-date.active {
  color: #0921FF;
}
@media (hover: hover) {
  .afisha_archive .afisha_dates_sw_item_list-date:hover {
    color: #0921FF;
  }
}
@media (hover: none) {
  .afisha_archive .afisha_dates_sw_item_list-date:active {
    color: #0921FF;
  }
}

.become_author {
  margin-bottom: 140px;
}
@media screen and (max-width: 1199px) {
  .become_author {
    margin-bottom: 24px;
  }
}
.become_author .container {
  max-width: 987px;
}
@media screen and (max-width: 1024px) {
  .become_author .container {
    max-width: 1024px;
  }
}
@media screen and (max-width: 1199px) {
  .become_author .container {
    max-width: 100%;
  }
}
.become_author_wrap_head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.become_author_wrap_head > *:first-child {
  margin-top: 0px;
}
.become_author_wrap_head > *:last-child {
  margin-bottom: 0px;
}
.become_author_wrap_head-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 867/464;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_head-img {
    width: 100vw;
    border-radius: unset;
  }
}
.become_author_wrap_head-img img {
  width: 100%;
  height: auto;
}
.become_author_wrap_head-title {
  margin-top: 40px;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_head-title {
    margin-top: 24px;
  }
}
.become_author_wrap_head-text {
  margin-top: 20px;
  max-width: 710px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_head-text {
    margin-top: 24px;
    max-width: 700px;
  }
}
.become_author_wrap_requirements {
  margin-top: 50px;
  row-gap: 20px;
  --bs-gutter-x: 20px;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_requirements {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .become_author_wrap_requirements {
    row-gap: 10px;
  }
}
.become_author_wrap_requirements_it {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(9, 33, 255, 0.05);
  height: 100%;
}
.become_author_wrap_requirements_it-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.become_author_wrap_requirements_it-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.become_author_wrap_send {
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_send {
    margin-top: 48px;
  }
}
.become_author_wrap_send-section_title {
  color: #000;
  text-align: center;
  font-family: "Golos Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.become_author_wrap_send .swiper_become_send {
  overflow: visible;
}
.become_author_wrap_send_list {
  margin-top: 24px;
  row-gap: 24px;
}
.become_author_wrap_send_list > *:last-child .become_author_wrap_send_list_it-index::after {
  display: none;
}
.become_author_wrap_send_list .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_send_list .swiper-slide {
    max-width: 280px;
    width: 100%;
  }
}
.become_author_wrap_send_list_it {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 20px;
}
.become_author_wrap_send_list_it-index {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 10px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_send_list_it-index {
    column-gap: 12px;
  }
}
.become_author_wrap_send_list_it-index::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: #000;
  width: auto;
  transform: translateX(10px);
}
@media screen and (max-width: 1199px) {
  .become_author_wrap_send_list_it-index::after {
    transform: translateX(0px);
  }
}
.become_author_wrap_send_list_it-index span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F5F5F5;
}
.become_author_wrap_send_list_it-text {
  padding: 20px;
  border-radius: 16px;
  background: #F5F5F5;
  flex: 1 1 auto;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.become_author_wrap_send_list_it-text a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: 0.4s;
}
@media (hover: hover) {
  .become_author_wrap_send_list_it-text a:hover {
    color: #0921FF;
  }
}
@media (hover: none) {
  .become_author_wrap_send_list_it-text a:active {
    color: #0921FF;
  }
}
.become_author_cloud {
  display: flex;
  justify-content: center;
  position: fixed;
  left: 50%;
  width: 100%;
  padding: 0 35px;
  transform: translateX(-50%);
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .become_author_cloud {
    padding: 0 16px;
  }
}
.become_author_cloud.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.become_author_cloud-wrap {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 8px;
  background: #0921FF;
  padding: 5px 5px 5px 14px;
}
.become_author_cloud-wrap a {
  display: block;
  color: #0921FF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  background: #FFF;
  padding: 4px 8px 6px 4px;
  border-radius: 6px;
  transition: 0.4s;
}
.become_author_cloud-main {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.become_author_cloud-other {
  display: none;
  align-items: center;
  column-gap: 8px;
  padding: 3px 9px 5px 0;
}
.become_author_cloud-other .icon {
  display: flex;
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}
.become_author_cloud-other .icon svg {
  width: 100%;
  height: 100%;
}

.become_author_card {
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .become_author_card {
    margin: 48px 0;
  }
}
.become_author_card {
  container-type: inline-size;
}
.become_author_card_wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  border-radius: 16px;
  background: radial-gradient(113.98% 113.98% at 2.27% 50%, #FF477E 0%, #FFF 100%);
  padding: 20px 30px;
}
@media screen and (min-width: 1280px) {
  @container (max-width: 800px) {
    .become_author_card_wrap .become_author_card_wrap_body {
      flex-direction: column;
      align-items: flex-start;
      row-gap: 16px;
    }
  }
}
@media screen and (max-width: 1024px) {
  .become_author_card_wrap {
    align-items: flex-start;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .become_author_card_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
}
.become_author_card_wrap-img {
  display: block;
  width: 100%;
  max-width: 120px;
  padding: 8px 23px;
}
@media screen and (max-width: 767px) {
  .become_author_card_wrap-img {
    padding: 8px 0;
    max-width: 75px;
  }
}
.become_author_card_wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.become_author_card_wrap_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 auto;
}
@media screen and (max-width: 1024px) {
  .become_author_card_wrap_body {
    flex-direction: column;
    row-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.become_author_card_wrap_body_content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 740px;
}
.become_author_card_wrap_body_content-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.become_author_card_wrap_body_content-text {
  margin: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.become_author_card_wrap_body-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 10px;
  background: #FFF;
  padding: 10px 24px 10px 16px;
  border-radius: 8px;
  background: #FFF;
  flex-shrink: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .become_author_card_wrap_body-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .become_author_card_wrap_body-btn:active {
    opacity: 0.7;
  }
}
.become_author_card_wrap_body-btn .icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.become_author_card_wrap_body-btn .icon svg {
  width: 100%;
  height: 100%;
}

.single_page .become_author_card {
  margin: 60px 0;
}
@media screen and (max-width: 1199px) {
  .single_page .become_author_card {
    margin: 48px 0;
  }
}

.endless_news {
  margin-top: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 1199px) {
  .endless_news {
    margin-top: 50px;
    padding-top: 0;
  }
}
.endless_news #ajax-load-more {
  margin-top: 0px;
}
@media screen and (max-width: 1024px) {
  .endless_news #ajax-load-more .row {
    row-gap: 24px;
  }
}
.endless_news .alm-listing {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.endless_news_col {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .endless_news_col {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .endless_news_col {
    column-gap: 24px;
  }
}
.endless_news_col .card {
  height: auto;
}
@media screen and (max-width: 1024px) {
  .endless_news_col .card {
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .endless_news_col .card {
    max-width: 100%;
  }
}
.endless_news_col-big {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1600px) {
  .endless_news_col-big {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .endless_news_col-big {
    column-gap: 24px;
  }
}
.endless_news_col-big .card {
  display: flex;
  flex-direction: column;
  height: auto !important;
}
.endless_news_col-big .card .content {
  background: #000;
  flex: 1 1 auto;
}
.endless_news_col-big .card .content .title {
  color: #FFF;
}
.endless_news_col-big .card .content .card__bottom {
  flex: 1 1 auto;
  align-items: flex-end;
}
.endless_news_col-big .card .content > * {
  color: #FFF;
}
.endless_news_col-big .card .content > * > * {
  color: #FFF;
}
.endless_news_col-big .card .content > * > * > * {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .endless_news .card.big {
    margin: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
  }
}

.swiper_first_expert {
  max-width: 100%;
  padding-right: 15px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper_first_expert {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .swiper_first_expert .swiper-wrapper {
    flex-direction: row;
    max-height: unset !important;
    overflow: unset;
  }
  .swiper_first_expert .swiper-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.swiper_first_expert-pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .swiper_first_expert-pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
}
.swiper_first_expert-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background: #000;
  opacity: 0.2;
  border-radius: 50%;
  margin: 0 8px;
}
.swiper_first_expert-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  border-radius: 50%;
}

.card__meta .tag .icon,
.stream_card_content_tags_item-hash,
.single_page .single_wrap__head_top_meta_left .tag .icon {
  background: #879CEE !important;
}

.single_article_card_wrap-it .wp-video {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1199px) {
  .single_article_card_wrap-it .wp-video {
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .single_article_card_wrap-it .wp-video {
    aspect-ratio: 1/1;
    max-height: 450px;
  }
}
.single_article_card_wrap-it .wp-video .mejs-video {
  width: 100% !important;
  height: 100% !important;
}
.single_article_card_wrap-it .wp-video video {
  width: 100% !important;
  height: 100% !important;
}
:root {
  --White: #fff;
  --Black: #000;
  --Blue: #0921FF;
  --Dark-grey: #999;
  --Grey: #DDD;
  --golos: "Golos Text", sans-serif;
}

html,
body {
  overflow-x: clip;
  background-color: #fff;
}

body {
  color: #464646;
  font-family: var(--golos);
  background-color: #fff;
  font-size: 16px;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-thumb {
  background: var(--Blue);
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

main {
  overflow-x: clip;
  margin-top: 62px;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  main {
    margin-top: 116px;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.125rem, -12rem + 17.5vw, 3.75rem);
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

.row {
  --bs-gutter-x: 30px;
}
@media screen and (max-width: 1199px) {
  .row {
    --bs-gutter-x: 10px;
  }
}
@media screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 7px;
  }
}

.swiper {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  margin: 0;
}

.swiper-slide {
  user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  position: unset;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

h1 {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 1199px) {
  h1 {
    color: #000;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}

.--title-h1 {
  color: var(--Base-Main, #000);
  font-family: var(--golos);
  font-size: 48px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 1199px) {
  .--title-h1 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
}

.--title-h3 {
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (max-width: 1199px) {
  .--title-h3 {
    font-size: 16px;
    line-height: 126%;
  }
}

.--title-h4 {
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 20px;
  font-weight: 400;
  line-height: 118%;
}
@media screen and (max-width: 1199px) {
  .--title-h4 {
    font-size: 18px;
  }
}

.--typ-text {
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.--small-text {
  color: var(--Dark-grey, #999);
  font-family: var(--golos);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .--small-text {
    font-size: 12px;
    line-height: 126%;
  }
}

.--article-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 0px;
  line-height: 0px;
  z-index: 5;
}

.--article_card_tag {
  --corner-radius: 20px !important;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 2px 10px 3px 10px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  will-change: transform;
  z-index: 6;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .--article_card_tag {
    padding: 2px 8px 4px 8px;
    line-height: 126%;
  }
}
.--article_card_tag .GlassContent::first-letter {
  text-transform: capitalize;
}
.--article_card_tag .GlassMaterial::after {
  background-color: rgba(255, 255, 255, 0.3);
}
.--article_card_tag.is-blue {
  background: var(--Blue, #0921FF);
  color: var(--White, #FFF);
}
.--article_card_tag.is-blue .GlassMaterial {
  display: none;
}

.vertical_card {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 77/134;
  transform: translateZ(0);
  will-change: transform;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .vertical_card {
    aspect-ratio: 34/54;
    border-radius: 12px;
  }
}
.vertical_card::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3) 90%);
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .vertical_card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 90%);
  }
}
.vertical_card-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1199px) {
  .vertical_card-img {
    border-radius: 12px;
  }
}
.vertical_card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  user-select: none;
  pointer-events: none;
}
.vertical_card-img img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.vertical_card_content {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  position: relative;
  z-index: 2;
  padding: 20px;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .vertical_card_content {
    padding: 12px;
    row-gap: 4px;
  }
}
.vertical_card_content-tag {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .vertical_card_content-tag {
    font-size: 12px;
    line-height: 126%;
    column-gap: 4px;
  }
}
.vertical_card_content-tag .icon {
  display: flex;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.vertical_card_content-tag .icon svg {
  width: 100%;
  height: 100%;
}
.vertical_card_content-tag .icon svg g circle {
  animation: circle-blink 2.5s infinite linear;
}
.vertical_card_content-title {
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .vertical_card_content-title {
    font-size: 14px;
    line-height: 126%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.wide_card {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .wide_card {
    row-gap: 12px;
  }
}
@media (hover: hover) {
  .wide_card:hover img {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .wide_card:active img {
    transform: scale(1.05) translateZ(0);
  }
}
.wide_card_image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 645/362;
}
@media screen and (max-width: 1199px) {
  .wide_card_image {
    border-radius: 12px;
  }
}
.wide_card_image img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wide_card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
}
.wide_card_content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 1199px) {
  .wide_card_content {
    row-gap: 6px;
  }
}
.wide_card_content-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wide_card_podcast {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .wide_card_podcast {
    row-gap: 12px;
  }
}
@media (hover: hover) {
  .wide_card_podcast:hover img {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .wide_card_podcast:active img {
    transform: scale(1.05) translateZ(0);
  }
}
.wide_card_podcast_image {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  aspect-ratio: 645/362;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 645/362;
}
@media screen and (max-width: 1199px) {
  .wide_card_podcast_image {
    border-radius: 12px;
    aspect-ratio: 181/88;
  }
}
.wide_card_podcast_image-cloud {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: calc(100% - 20px);
  padding: 2.5px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 20px;
  background: var(--Blue, #0921FF);
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 1199px) {
  .wide_card_podcast_image-cloud {
    line-height: 126%;
    padding: 3px 10px;
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
  }
}
.wide_card_podcast_image img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wide_card_podcast_content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 1199px) {
  .wide_card_podcast_content {
    row-gap: 6px;
  }
}
.wide_card_podcast_content-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.wide_card_podcast_content-tag {
  color: var(--Black);
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
}
.wide_card_podcast_content-tag .icon {
  display: flex;
  flex-shrink: 0;
  width: 8px;
  height: 10px;
}
.wide_card_podcast_content-tag .icon svg {
  width: 100%;
  height: 100%;
}

.expert_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.expert_card-content {
  padding: 20px;
  background: var(--White);
  border-radius: 16px;
  flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 12px;
  width: 100%;
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
@media screen and (max-width: 1199px) {
  .expert_card-content {
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 126%;
  }
}
.expert_card-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.expert_card_author {
  display: flex;
  column-gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .expert_card_author {
    margin-top: 16px;
  }
}
.expert_card_author-avatar {
  display: block;
  width: 100%;
  max-width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .expert_card_author-avatar {
    max-width: 60px;
    height: 60px;
  }
}
.expert_card_author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert_card_author_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  row-gap: 5px;
}
@media screen and (max-width: 1199px) {
  .expert_card_author_content {
    row-gap: 4px;
  }
}
.expert_card_author_content-name {
  color: var(--White, #FFF);
}
@media screen and (max-width: 1199px) {
  .expert_card_author_content-name {
    font-size: 14px;
    line-height: 126%;
  }
}
.expert_card_author_content-job {
  color: rgba(245, 245, 245, 0.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.small_card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #FFF;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .small_card {
    border-radius: 12px;
  }
}
@media (hover: hover) {
  .small_card:hover img {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .small_card:active img {
    transform: scale(1.05) translateZ(0);
  }
}
.small_card_img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 72/43;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .small_card_img {
    border-radius: 12px;
  }
}
.small_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.small_card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
}
@media screen and (max-width: 1199px) {
  .small_card-tag {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
  }
}
.small_card_content {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 16px;
  flex: 1 1 auto;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .small_card_content {
    row-gap: 6px;
    padding: 14px;
  }
}
.small_card_content-title {
  color: var(--Black);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .small_card_content-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 126%;
  }
}
.small_card_author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 16px 16px 16px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .small_card_author {
    padding: 8px 14px 14px 14px;
    border-radius: 12px;
  }
}
.small_card_author::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* толщина рамки */
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), #FFF, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.small_card_author-content {
  width: 100%;
  color: var(--White);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 16px;
  margin-bottom: auto;
}
@media screen and (max-width: 1199px) {
  .small_card_author-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 126%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
}
.small_card_author_people {
  display: flex;
  width: 100%;
  column-gap: 14px;
  margin-top: 16px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1199px) {
  .small_card_author_people {
    margin-top: 12px;
    column-gap: 10px;
  }
}
.small_card_author_people-img {
  display: block;
  width: 100%;
  max-width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .small_card_author_people-img {
    max-width: 30px;
    height: 30px;
  }
}
.small_card_author_people-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small_card_author_people-text {
  color: var(--White);
  display: flex;
  align-items: center;
  height: 100%;
}

.shorts_video {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
  padding: 10px;
  position: relative;
  aspect-ratio: 119/206;
  overflow: hidden;
  border-radius: 16px;
  background: var(--Blue);
}
@media screen and (max-width: 1199px) {
  .shorts_video {
    padding: 8px;
    row-gap: 12px;
    border-radius: 12px;
  }
}
@media (hover: hover) {
  .shorts_video:hover .shorts_video-img::before {
    transform: translateX(100%);
    transition: transform 0.7s;
  }
  .shorts_video:hover img {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .shorts_video:active .shorts_video-img::before {
    transform: translateX(100%);
    transition: transform 0.7s;
  }
  .shorts_video:active img {
    transform: scale(1.05) translateZ(0);
  }
}
.shorts_video-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
}
.shorts_video-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0) 70%);
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.shorts_video-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: transform 0s;
  z-index: 3;
}
.shorts_video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.shorts_video-tag {
  --corner-radius: 20px !important;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 2.5px 10px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .shorts_video-tag {
    padding: 3px 8px;
    line-height: 126%;
  }
}
.shorts_video-btn {
  --corner-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .shorts_video-btn {
    width: 30px;
    height: 30px;
  }
}
.shorts_video-btn .GlassContent {
  display: flex;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.shorts_video-btn svg {
  width: 100%;
  height: 100%;
}

.main-site {
  padding-top: 36px;
}
@media screen and (max-width: 1199px) {
  .main-site {
    padding-top: 20px;
  }
}
.main-site a {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  position: relative;
  color: var(--Blue, #0921FF);
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: opacity 0.4s;
}
.main-site a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 0%;
  transition: transform 0.4s;
}
@media (hover: hover) {
  .main-site a:hover::after {
    content: "";
    display: block;
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
}
@media (hover: none) {
  .main-site a:active::after {
    content: "";
    display: block;
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
}
.main-site a .icon {
  display: flex;
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  position: relative;
}
.main-site a .icon svg {
  width: 100%;
  height: 100%;
}

.test_card {
  display: flex;
  align-items: flex-end;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--Blue);
  position: relative;
}
@media screen and (max-width: 1199px) {
  .test_card {
    padding: 12px;
    border-radius: 12px;
  }
}
.test_card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
}
@media screen and (max-width: 1199px) {
  .test_card-tag {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
  }
}
@media (hover: hover) {
  .test_card:hover img {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .test_card:active img {
    transform: scale(1.05) translateZ(0);
  }
}
.test_card-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
}
.test_card-img img {
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.test_card_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 14px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .test_card_content {
    row-gap: 10px;
  }
}
.test_card_content-title {
  color: var(--White);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .test_card_content-title {
    font-size: 14px;
    line-height: 126%;
  }
}
.test_card_content-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 11px 16px;
  border-radius: 40px;
  background: var(--White, #FFF);
  position: relative;
  z-index: 666;
  color: var(--Black, #000);
  text-align: center;
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.4s;
}
@media (hover: hover) {
  .test_card_content-btn:hover {
    background: #F2F2F2;
  }
}
@media (hover: none) {
  .test_card_content-btn:active {
    background: #F2F2F2;
  }
}
@media screen and (max-width: 1199px) {
  .test_card_content-btn {
    padding: 9px 12px;
    font-size: 12px;
    line-height: 126%;
  }
}

.gray_card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  background: #F2F4FF;
}
.gray_card_left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  row-gap: 8px;
  width: 100%;
  max-width: 53.5%;
}
.gray_card_left-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  padding: 2px 10px 3px 10px;
  border-radius: 20px;
  background: var(--Blue, #0921FF);
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.gray_card_left-tag::first-letter {
  text-transform: capitalize;
}
@media screen and (max-width: 1199px) {
  .gray_card_left-tag {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 2px 8px 4px 8px;
    line-height: 126%;
  }
}
.gray_card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 46.5%;
  height: auto;
  aspect-ratio: 150/131;
  overflow: hidden;
}
.gray_card-img img {
  width: 100%;
  height: auto;
}
.gray_card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-big {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  padding: 11px 16px;
  border-radius: 40px;
  background: #F2F2F2;
  color: var(--Black, #000);
  text-align: center;
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.4s;
}
.btn-big.--btn-big-gray {
  background: #F2F2F2;
}
@media (hover: hover) {
  .btn-big.--btn-big-gray:hover {
    background: #DDD;
  }
}
@media (hover: none) {
  .btn-big.--btn-big-gray:active {
    background: #DDD;
  }
}
.btn-big.--btn-big-white {
  background: var(--White);
}
@media (hover: hover) {
  .btn-big.--btn-big-white:hover {
    background: #DDD;
  }
}
@media (hover: none) {
  .btn-big.--btn-big-white:active {
    background: #DDD;
  }
}
.btn-big .icon {
  display: flex;
}

.btn-medium {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  padding: 9px 12px;
  border-radius: 40px;
  background: #F2F2F2;
  color: var(--Black, #000);
  text-align: center;
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .btn-medium {
    font-size: 12px;
    line-height: 126%;
  }
}
.btn-medium.--btn-medium-gray {
  background: #F2F2F2;
}
@media (hover: hover) {
  .btn-medium.--btn-medium-gray:hover {
    background: #DDD;
  }
}
@media (hover: none) {
  .btn-medium.--btn-medium-gray:active {
    background: #DDD;
  }
}
.btn-medium.--btn-medium-white {
  background: var(--White);
}
@media (hover: hover) {
  .btn-medium.--btn-medium-white:hover {
    background: #DDD;
  }
}
@media (hover: none) {
  .btn-medium.--btn-medium-white:active {
    background: #DDD;
  }
}
.btn-medium .icon {
  display: flex;
}

.trigger_audio .icon .play {
  display: flex;
}
.trigger_audio .icon .pause {
  display: none;
}
.trigger_audio.active .icon .play {
  display: none;
}
.trigger_audio.active .icon .pause {
  display: flex;
}

.audio_player {
  --plyr-control-spacing: 20px;
  --plyr-range-fill-background: #0921FF;
  --plyr-audio-control-background-hover: transparent;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 6;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  background: #FFF;
  padding: 10px 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
  column-gap: 20px;
  transform: translateY(100%);
  will-change: transform;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .audio_player {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #FFF;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
    --plyr-control-spacing: 10px;
  }
}
.audio_player.active {
  transform: translateY(0);
  visibility: visible;
}
.audio_player_wrap {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .audio_player_wrap {
    column-gap: 10px;
  }
}
.audio_player-img {
  display: block;
  width: 100%;
  max-width: 46px;
  height: 46px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.audio_player-img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.audio_player-img .loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}
.audio_player-img .loader svg {
  width: 100%;
  height: 100%;
  animation: infinity-loader 1s infinite linear;
}
.audio_player-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 3px;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.audio_player-content-title {
  width: 100%;
  text-align: left;
  color: #000;
  font-family: var(--golos);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 40px;
}
@media screen and (max-width: 1199px) {
  .audio_player-content-title {
    font-size: 14px;
    line-height: 126%;
    padding-right: 25px;
  }
}
.audio_player-content-close {
  display: flex;
  position: absolute;
  top: 3px;
  right: 0;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  padding: 10px;
  margin: -10px;
  box-sizing: content-box;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .audio_player-content-close {
    top: 0;
    padding: 5px;
    margin: -5px;
  }
}
@media (hover: hover) {
  .audio_player-content-close:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .audio_player-content-close:active {
    opacity: 0.7;
  }
}
.audio_player-content-close svg {
  width: 100%;
  height: 100%;
}
.audio_player .plyr--audio {
  border-radius: 80px;
  width: 100%;
  max-width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .audio_player .plyr--audio {
    border-radius: unset;
  }
}
.audio_player .plyr--audio .plyr__controls {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
@media (hover: hover) {
  .audio_player .plyr--audio .plyr__controls .plyr__control:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .audio_player .plyr--audio .plyr__controls .plyr__control:active {
    opacity: 0.5;
  }
}
.audio_player .plyr--audio .plyr__controls .plyr__control {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.94238%204.625C6.17853%204.46883%206.46238%204.4494%206.72754%204.62207L12.0527%208.09473H12.0537C12.3352%208.2784%2012.5%208.62071%2012.5%209.00098C12.4999%209.38104%2012.335%209.72257%2012.0537%209.90625L6.72754%2013.3779C6.46212%2013.5507%206.17829%2013.5309%205.94238%2013.375C5.69937%2013.2142%205.5%2012.8976%205.5%2012.4727V5.52734C5.5%205.1033%205.6991%204.78605%205.94238%204.625Z%22%20fill%3D%22black%22%20stroke%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  transition: opacity 0.4s;
}
@media screen and (max-width: 1199px) {
  .audio_player .plyr--audio .plyr__controls .plyr__control {
    width: 18px;
    height: 18px;
  }
}
.audio_player .plyr--audio .plyr__controls .plyr__control.plyr__control--pressed {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%204C6.26522%204%206.51957%204.0878%206.70711%204.24408C6.89464%204.40036%207%204.61232%207%204.83333V13.1667C7%2013.3877%206.89464%2013.5996%206.70711%2013.7559C6.51957%2013.9122%206.26522%2014%206%2014C5.73478%2014%205.48043%2013.9122%205.29289%2013.7559C5.10536%2013.5996%205%2013.3877%205%2013.1667V4.83333C5%204.61232%205.10536%204.40036%205.29289%204.24408C5.48043%204.0878%205.73478%204%206%204ZM12%204C12.2652%204%2012.5196%204.0878%2012.7071%204.24408C12.8946%204.40036%2013%204.61232%2013%204.83333V13.1667C13%2013.3877%2012.8946%2013.5996%2012.7071%2013.7559C12.5196%2013.9122%2012.2652%2014%2012%2014C11.7348%2014%2011.4804%2013.9122%2011.2929%2013.7559C11.1054%2013.5996%2011%2013.3877%2011%2013.1667V4.83333C11%204.61232%2011.1054%204.40036%2011.2929%204.24408C11.4804%204.0878%2011.7348%204%2012%204Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.audio_player .plyr--audio .plyr__controls .plyr__control svg {
  display: none;
}
.audio_player .plyr--audio .plyr__controls .plyr__progress__container input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--White);
  cursor: pointer;
  border: 2px solid var(--Blue);
  transform: translateY(-1px);
}
.audio_player .plyr--audio .plyr__controls .plyr__progress__container input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--White);
  cursor: pointer;
  border: 2px solid var(--Blue);
  transform: translateY(-1px);
}
.audio_player .plyr--audio .plyr__controls .plyr__time {
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .audio_player .plyr--audio .plyr__controls .plyr__time {
    font-size: 12px;
    font-weight: 400;
    line-height: 126%;
  }
}
.audio_player .plyr--audio .plyr__controls .plyr__volume {
  position: unset;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input {
  position: absolute;
  top: calc(-100% - 30px);
  right: -25px;
  transform: rotate(-90deg);
  margin: 0;
  background: #FFF;
  padding: 13px 10px;
  appearance: none;
  -webkit-appearance: none;
  width: 70px;
  height: 26px;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .audio_player .plyr--audio .plyr__controls .plyr__volume input {
    display: none;
  }
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 4px;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--White);
  cursor: pointer;
  border: 2px solid var(--Blue);
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--White);
  cursor: pointer;
  border: 2px solid var(--Blue);
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input::-moz-range-track {
  height: 3px;
  border-radius: 4px;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input::after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -9px;
  user-select: none;
  z-index: -1;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume input.show {
  opacity: 1;
  visibility: visible;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume button {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215%22%20height%3D%2214%22%20viewBox%3D%220%200%2015%2014%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.6001%203.55033C10.0658%203.89963%2010.4438%204.35257%2010.7042%204.87328C10.9646%205.39399%2011.1001%205.96816%2011.1001%206.55033C11.1001%207.1325%2010.9646%207.70668%2010.7042%208.22738C10.4438%208.74809%2010.0658%209.20103%209.6001%209.55033M11.6251%201.30033C12.4081%201.93307%2013.0396%202.73293%2013.4734%203.64132C13.9073%204.54972%2014.1325%205.54365%2014.1325%206.55033C14.1325%207.55701%2013.9073%208.55095%2013.4734%209.45934C13.0396%2010.3677%2012.4081%2011.1676%2011.6251%2011.8003M2.8501%208.80033H1.3501C1.15119%208.80033%200.96042%208.72132%200.819768%208.58066C0.679115%208.44001%200.600098%208.24925%200.600098%208.05033V5.05033C0.600098%204.85142%200.679115%204.66066%200.819768%204.52C0.96042%204.37935%201.15119%204.30033%201.3501%204.30033H2.8501L5.4751%200.925333C5.54065%200.798006%205.64958%200.698326%205.78221%200.644303C5.91485%200.59028%206.06243%200.585479%206.19829%200.630766C6.33415%200.676053%206.44933%200.768442%206.52302%200.891239C6.59671%201.01404%206.62405%201.15914%206.6001%201.30033V11.8003C6.62405%2011.9415%206.59671%2012.0866%206.52302%2012.2094C6.44933%2012.3322%206.33415%2012.4246%206.19829%2012.4699C6.06243%2012.5152%205.91485%2012.5104%205.78221%2012.4564C5.64958%2012.4023%205.54065%2012.3027%205.4751%2012.1753L2.8501%208.80033Z%22%20stroke%3D%22black%22%20stroke-width%3D%221.2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  padding: unset;
}
@media screen and (max-width: 1199px) {
  .audio_player .plyr--audio .plyr__controls .plyr__volume button {
    width: 18px;
    height: 18px;
  }
}
.audio_player .plyr--audio .plyr__controls .plyr__volume button.plyr__control--pressed {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2214%22%20viewBox%3D%220%200%2015%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.55566%200.0881348C5.82081%20-0.019748%206.11612%20-0.0287452%206.3877%200.0617676C6.65926%200.152355%206.88977%200.336821%207.03711%200.582275C7.17297%200.808674%207.22866%201.07308%207.19922%201.33423V11.7649C7.22901%2012.0264%207.17309%2012.2911%207.03711%2012.5178C6.88974%2012.7634%206.65938%2012.9487%206.3877%2013.0393C6.11606%2013.1299%205.82086%2013.1199%205.55566%2013.012C5.31298%2012.9131%205.11073%2012.7371%204.97754%2012.5129L2.55664%209.40063H1.34961C0.991567%209.40063%200.647705%209.2583%200.394531%209.00513C0.141451%208.75197%200%208.40802%200%208.05005V5.05005C7.88806e-05%204.69231%200.141682%204.34901%200.394531%204.09595C0.647699%203.84282%200.991599%203.70044%201.34961%203.70044H2.55566L4.97754%200.587158C5.11074%200.363158%205.31308%200.186944%205.55566%200.0881348ZM5.94824%201.29321L3.32324%204.66821C3.20957%204.81436%203.03476%204.90063%202.84961%204.90063H1.34961C1.30986%204.90063%201.27129%204.91649%201.24316%204.94458C1.21536%204.9726%201.1993%205.01057%201.19922%205.05005V8.05005C1.19922%208.08976%201.21513%208.12838%201.24316%208.15649C1.27129%208.18462%201.30983%208.20044%201.34961%208.20044H2.84961L2.91797%208.20435C3.07716%208.2226%203.22368%208.30393%203.32324%208.43188L5.94824%2011.8069L6.00781%2011.9006C6.0022%2011.8675%206%2011.8336%206%2011.8V1.30005C6.00001%201.26652%206.0022%201.23252%206.00781%201.19946C5.99087%201.23237%205.97094%201.26398%205.94824%201.29321ZM13.3203%203.72583C13.5546%203.49171%2013.9357%203.49166%2014.1699%203.72583C14.4038%203.96012%2014.403%204.34026%2014.1689%204.57446L12.1953%206.54712L14.1689%208.52075C14.4031%208.75487%2014.4037%209.13502%2014.1699%209.36938C13.9356%209.6037%2013.5546%209.6037%2013.3203%209.36938L11.3467%207.39575L9.37402%209.36938C9.13971%209.6037%208.75971%209.6037%208.52539%209.36938C8.2914%209.13518%208.29151%208.756%208.52539%208.52173L10.498%206.54712L8.52539%204.57446C8.29118%204.34016%208.29115%203.96012%208.52539%203.72583C8.75969%203.49171%209.13975%203.49166%209.37402%203.72583L11.3467%205.69849L13.3203%203.72583Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.audio_player .plyr--audio .plyr__controls .plyr__volume button svg {
  display: none;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  position: relative;
  z-index: 2;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.custom-pagination .swiper-pagination-bullet {
  background: var(--Grey, #DDD);
  margin: 0 !important;
  width: 4px;
  height: 4px;
  opacity: 1;
}
.custom-pagination .swiper-pagination-bullet-active {
  background: var(--Dark-grey, #999);
}
.custom-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.custom-pagination.light .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}
.custom-pagination.light .swiper-pagination-bullet-active {
  background: var(--White, #FFF);
}

.swiper-controls-glass,
.swiper-controls {
  display: flex;
  align-items: center;
  column-gap: 8px;
  position: relative;
  z-index: 2;
}
.swiper-controls-glass-prev, .swiper-controls-glass-next,
.swiper-controls-prev,
.swiper-controls-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  --corner-radius: 50% !important;
}
.swiper-controls-glass-prev.swiper-button-lock, .swiper-controls-glass-next.swiper-button-lock,
.swiper-controls-prev.swiper-button-lock,
.swiper-controls-next.swiper-button-lock {
  display: none;
}
.swiper-controls-glass-prev.swiper-button-disabled, .swiper-controls-glass-next.swiper-button-disabled,
.swiper-controls-prev.swiper-button-disabled,
.swiper-controls-next.swiper-button-disabled {
  user-select: none;
  pointer-events: none;
}
.swiper-controls-glass-prev .GlassContent, .swiper-controls-glass-next .GlassContent,
.swiper-controls-prev .GlassContent,
.swiper-controls-next .GlassContent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.swiper-controls-glass-prev .GlassContent svg, .swiper-controls-glass-next .GlassContent svg,
.swiper-controls-prev .GlassContent svg,
.swiper-controls-next .GlassContent svg {
  width: 100%;
  height: 100%;
}

.swiper-controls-glass-prev .GlassMaterial::after, .swiper-controls-glass-next .GlassMaterial::after {
  transition: 0.4s;
}
@media (hover: hover) {
  .swiper-controls-glass-prev:hover .GlassMaterial::after, .swiper-controls-glass-next:hover .GlassMaterial::after {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media (hover: none) {
  .swiper-controls-glass-prev:active .GlassMaterial::after, .swiper-controls-glass-next:active .GlassMaterial::after {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
.swiper-controls-glass-prev:active .GlassMaterial::after, .swiper-controls-glass-next:active .GlassMaterial::after {
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0.2);
}
.swiper-controls-glass-prev.swiper-button-disabled .GlassMaterial::after, .swiper-controls-glass-next.swiper-button-disabled .GlassMaterial::after {
  transition: 0s;
}
@media (hover: hover) {
  .swiper-controls-glass-prev.swiper-button-disabled:hover .GlassMaterial::after, .swiper-controls-glass-next.swiper-button-disabled:hover .GlassMaterial::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (hover: none) {
  .swiper-controls-glass-prev.swiper-button-disabled:active .GlassMaterial::after, .swiper-controls-glass-next.swiper-button-disabled:active .GlassMaterial::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.swiper-controls-glass-prev.swiper-button-disabled:active .GlassMaterial::after, .swiper-controls-glass-next.swiper-button-disabled:active .GlassMaterial::after {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

.swiper-controls-prev, .swiper-controls-next {
  transition: 0.4s;
}
@media (hover: hover) {
  .swiper-controls-prev:hover svg rect, .swiper-controls-next:hover svg rect {
    fill: #EAEAEA;
  }
}
@media (hover: none) {
  .swiper-controls-prev:active svg rect, .swiper-controls-next:active svg rect {
    fill: #EAEAEA;
  }
}
.swiper-controls-prev:active, .swiper-controls-next:active {
  opacity: 0.5;
}
.swiper-controls-prev:active svg rect, .swiper-controls-next:active svg rect {
  fill: #F2F2F2;
}

@keyframes circle-blink {
  0% {
    r: 4;
  }
  50% {
    r: 7;
  }
  100% {
    r: 4;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
  z-index: 200;
  transition: padding 0.4s;
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }
}
.header.scrolled {
  padding: 10px 0;
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header_wrap {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
.header_wrap-logo {
  display: flex;
  width: 100%;
  max-width: 183px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .header_wrap-logo {
    order: 1;
  }
}
.header_wrap-logo svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.header_wrap nav {
  width: auto;
  margin: 0 20px;
}
@media screen and (max-width: 1199px) {
  .header_wrap nav {
    margin: 0;
    order: 3;
    overflow: visible;
    padding-top: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap nav::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #E8E8E8;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header_wrap nav ul {
  column-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .header_wrap nav ul {
    column-gap: 6px;
  }
}
.header_wrap nav ul li {
  display: inline-flex;
  width: auto;
}
.header_wrap nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #F2F2F2;
  background: #FFF;
  padding: 10px 15px;
  color: var(--Black, #000);
  font-family: var(--golos);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: border-color 0.4s;
}
@media screen and (max-width: 1199px) {
  .header_wrap nav ul li a {
    line-height: 126%;
    padding: 8px 17px 9px 17px;
  }
}
@media (hover: hover) {
  .header_wrap nav ul li a:hover {
    border-color: var(--Black, #000);
  }
}
@media (hover: none) {
  .header_wrap nav ul li a:active {
    border-color: var(--Black, #000);
  }
}
.header_wrap-btn_search {
  display: flex;
  justify-content: center;
  border: 1px solid #F2F2F2;
  border-radius: 50%;
  overflow: hidden;
  align-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: #FFF;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) {
  .header_wrap-btn_search:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_wrap-btn_search:active {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap-btn_search {
    width: 32px;
    height: 32px;
    order: 2;
  }
}
.header_wrap-btn_search svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1199px) {
  .header_wrap-btn_search svg {
    width: 16px;
    height: 16px;
  }
  .header_wrap-btn_search svg rect {
    display: none;
  }
}
.header.GlassContainer .GlassContent {
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .header.GlassContainer .GlassMaterial .GlassBlur {
    backdrop-filter: blur(var(--extra-blur)) brightness(1);
  }
}
@media screen and (max-width: 1199px) {
  .header.GlassContainer .GlassMaterial .GlassRefraction {
    backdrop-filter: invert(0) brightness(1) contrast(1);
  }
}
@media screen and (max-width: 1199px) {
  .header.GlassContainer .GlassMaterial .GlassEmbossReflection {
    backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0) brightness(1) saturate(1) hue-rotate(0deg) contrast(1);
  }
}
@media screen and (max-width: 1199px) {
  .header.GlassContainer .GlassMaterial .Highlight {
    backdrop-filter: brightness(1) contrast(1) saturate(1) opacity(1);
  }
}
.header .search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-left: 0px;
  width: 100%;
  max-width: calc(100% - 220px);
  position: absolute;
  right: 0;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .header .search {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 24px;
    column-gap: 0px;
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 100dvh;
    max-width: 100%;
    z-index: 999;
    background: #fff;
    padding: 0 0 24px 0;
    visibility: hidden;
    opacity: 1;
    transform: translateX(100vw);
    will-change: transform;
    transition: 0.4s;
  }
  .header .search::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
  }
}
.header .search.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1199px) {
  .header .search.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: 0.4s;
  }
}
.header .search_main {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .header .search_main {
    display: flex;
    align-items: center;
    column-gap: 24px;
    padding: 16px 0;
    position: relative;
  }
  .header .search_main::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #E8E8E8;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .header .search_main {
    column-gap: 16px;
  }
}
.header .search_main-close {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header .search_main-close {
    display: flex;
  }
}
.header .search form {
  width: 100%;
}
.header .search__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header .search__wrap {
    height: 40px;
  }
}
.header .search__wrap input {
  width: 100%;
  height: 100%;
  border: 1px solid #E8E8E8;
  border-radius: 24px;
  padding: 0 140px 0 48px;
  overflow: hidden;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition-property: border, padding;
  transition-duration: 0.4s, 0s;
  transition-delay: 0s, 0.2s;
}
@media screen and (max-width: 1199px) {
  .header .search__wrap input {
    padding: 0 60px 0 44px;
    transition-delay: 0s, 0s;
  }
}
.header .search__wrap input::placeholder {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.header .search__wrap input:focus {
  border-color: #000;
}
.header .search__wrap input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46967 17.4697C5.17678 17.7626 5.17678 18.2374 5.46967 18.5303C5.76256 18.8232 6.23744 18.8232 6.53033 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7625 18.5303 17.4697L13.0607 12L18.5303 6.53034C18.8232 6.23745 18.8232 5.76258 18.5303 5.46968C18.2374 5.17679 17.7626 5.17679 17.4697 5.46968L12 10.9393L6.53033 5.46967Z' fill='black'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  right: 16px;
  position: absolute;
  cursor: pointer;
  transition: 0.4s;
}
.header .search__wrap button {
  display: none;
  position: absolute;
  right: 16px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  .header .search__wrap button {
    right: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .header .search__wrap button {
    display: none !important;
    right: 12px;
  }
}
.header .search__wrap .icon {
  display: flex;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  .header .search__wrap .icon {
    left: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .header .search__wrap .icon {
    left: 12px;
  }
}
.header .search__wrap .icon svg {
  width: 100%;
  height: 100%;
}
.header .search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  background: #fff;
  width: 100%;
  padding: 30px;
  z-index: 99;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.03), 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  max-height: 700px;
  overflow-y: auto;
}
.header .search__dropdown::-webkit-scrollbar {
  width: 5px;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown::-webkit-scrollbar {
    display: none;
    width: 0px;
  }
}
.header .search__dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.header .search__dropdown::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.0666666667);
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown {
    box-shadow: unset;
    border: unset;
    display: block;
    position: unset;
    max-height: calc(100% - 40px);
    padding: 0px;
    border-radius: unset;
  }
}
.header .search__dropdown_it {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown_it {
    margin-bottom: 24px;
  }
}
.header .search__dropdown_it:last-of-type {
  margin-bottom: 0px;
}
.header .search__dropdown_it.small .title {
  -webkit-line-clamp: 1;
}
.header .search__dropdown_it-title {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
.header .search__dropdown_it_list {
  display: flex;
  flex-direction: column;
}
.header .search__dropdown_it_list-card {
  display: flex;
  column-gap: 20px;
  padding: 10px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown_it_list-card {
    padding: 8px 0;
    column-gap: 16px;
  }
}
.header .search__dropdown_it_list-card::after {
  content: "";
  display: block;
  width: calc(100% + 60px);
  height: 100%;
  background: #F0F0F0;
  position: absolute;
  left: -30px;
  top: 0;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  z-index: -1;
  transition: 0.4s;
}
@media (hover: hover) {
  .header .search__dropdown_it_list-card:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .header .search__dropdown_it_list-card:active::after {
    opacity: 1;
  }
}
.header .search__dropdown_it_list-card .image {
  width: 100%;
  max-width: 125px;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 25/14;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown_it_list-card .image {
    max-width: 114px;
  }
}
.header .search__dropdown_it_list-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .search__dropdown_it_list-card .meta {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
  max-width: calc(100% - 125px - 20px);
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown_it_list-card .meta {
    max-width: calc(100% - 114px - 16px);
  }
}
.header .search__dropdown_it_list-card .title {
  color: #000;
  font-size: 16px;
  font-family: var(--golos);
  font-weight: 400;
  line-height: 25px;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .header .search__dropdown_it_list-card .title {
    font-size: 14px;
    line-height: 126%;
  }
}
.header .search__dropdown_it_list-card .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index_main {
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  .index_main {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index_main_wrap {
    row-gap: 20px;
  }
}
.index_main_wrap_last {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #F2F2F2;
  row-gap: 10px;
  padding: 12px 28px;
  height: auto;
  max-height: 540px;
  overflow-y: auto;
}
.index_main_wrap_last::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last {
    height: 100%;
    max-height: 100%;
    padding: 0;
    background: transparent;
    border-radius: 12px;
    row-gap: 12px;
  }
}
.index_main_wrap_last .swiper-wrapper {
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last .swiper-wrapper {
    flex-direction: row;
  }
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last .swiper-slide {
    height: auto;
  }
}
.index_main_wrap_last-pagination {
  display: none;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last-pagination {
    display: inline-flex;
  }
}
.index_main_wrap_last_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last_item {
    padding: 12px;
    background: #F2F2F2;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
  }
}
.index_main_wrap_last_item:first-child {
  margin-top: 0;
}
.index_main_wrap_last_item:first-child::after {
  display: none;
}
.index_main_wrap_last_item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--Grey, #DDD);
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last_item::after {
    display: none;
  }
}
.index_main_wrap_last_item-tag {
  display: flex;
  align-items: center;
  column-gap: 7px;
  width: 100%;
  color: var(--Black);
  font-family: var(--golos);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last_item-tag {
    line-height: 126%;
  }
}
.index_main_wrap_last_item-tag .icon {
  display: flex;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.index_main_wrap_last_item-tag .icon svg {
  width: 100%;
  height: 100%;
}
.index_main_wrap_last_item-tag .icon svg circle {
  stroke: var(--color);
  fill: var(--color);
}
.index_main_wrap_last_item-tag .icon svg g circle {
  fill: unset;
  animation: circle-blink 2.5s infinite linear;
}
.index_main_wrap_last_item-tag {
  color: var(--color);
}
.index_main_wrap_last_item-title {
  color: var(--Black, #000);
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last_item-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 126%;
    margin-top: auto;
  }
}
.index_main_wrap_last_item .btn-big,
.index_main_wrap_last_item .btn-medium {
  position: relative;
  z-index: 6;
  cursor: pointer;
  margin-top: 4px;
}
@media screen and (max-width: 1199px) {
  .index_main_wrap_last_item .btn-big,
  .index_main_wrap_last_item .btn-medium {
    margin-top: 2px;
  }
}
.index_main_wrap_last_item .btn-big .icon,
.index_main_wrap_last_item .btn-medium .icon {
  width: 7px;
  height: 8px;
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .index_main_wrap_last_item .btn-big .icon,
  .index_main_wrap_last_item .btn-medium .icon {
    transform: unset;
  }
}
.index_main_wrap_last_item .btn-big .icon svg,
.index_main_wrap_last_item .btn-medium .icon svg {
  width: 100%;
  height: 100%;
}

.index_mix {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .index_mix {
    margin-top: 50px;
  }
}
.index_mix_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .index_mix_wrap {
    row-gap: 20px;
  }
}
.index_mix_wrap_btns {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .index_mix_wrap_btns {
    display: none;
  }
}
.index_mix_sw {
  overflow: visible;
}
.index_mix_sw .swiper-slide {
  max-height: 100%;
}
.index_mix_sw .test_card {
  max-width: 420px;
}
@media screen and (max-width: 1199px) {
  .index_mix_sw .test_card {
    max-width: 276px;
  }
}
.index_mix_sw .vertical_card {
  max-width: 238px;
}
@media screen and (max-width: 1199px) {
  .index_mix_sw .vertical_card {
    max-width: 168px;
    aspect-ratio: unset;
  }
}
.index_mix_sw .wide_card {
  max-width: 510px;
}
@media screen and (max-width: 1199px) {
  .index_mix_sw .wide_card {
    max-width: 368px;
  }
}
.index_mix .index_mix_sw-pagination {
  transform: translateY(3px);
}
@media screen and (max-width: 1199px) {
  .index_mix .index_mix_sw-pagination {
    transform: unset;
  }
}

.astro_block {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .astro_block {
    margin-top: 50px;
    background: var(--Blue, #0921FF);
    overflow: hidden;
    padding: 30px 0;
  }
}
.astro_block_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 40px 40px 50px 40px;
  border-radius: 16px;
  background: var(--Blue, #0921FF);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .astro_block_wrap {
    background: transparent;
    overflow: visible;
    padding: 0;
    border-radius: unset;
    row-gap: 20px;
  }
}
.astro_block_wrap::after {
  content: "";
  display: block;
  width: 850px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: #00306B;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(36deg);
  right: -150px;
  filter: blur(150px);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0);
}
@media screen and (max-width: 1199px) {
  .astro_block_wrap::after {
    right: 0;
    width: 560px;
    height: 250px;
  }
}
.astro_block_wrap::before {
  content: "";
  display: block;
  width: 850px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: #007BC9;
  position: absolute;
  top: 105px;
  transform: rotate(31deg);
  left: 36px;
  filter: blur(150px);
  user-select: none;
  pointer-events: none;
  z-index: 2;
  transform: translateZ(0);
}
@media screen and (max-width: 1199px) {
  .astro_block_wrap::before {
    left: -25%;
    width: 560px;
    height: 250px;
  }
}
.astro_block_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 3;
}
.astro_block_head-title {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: var(--White);
}
@media screen and (max-width: 1199px) {
  .astro_block_head-title {
    column-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .astro_block_head-title {
    flex-direction: column-reverse;
    row-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.astro_block_head-title .icon {
  display: flex;
  flex-shrink: 0;
  height: 18px;
  width: auto;
}
.astro_block_head-title .icon svg {
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .astro_block_head_btns {
    display: none;
  }
}
.astro_block_sw {
  position: relative;
  z-index: 7;
}
@media screen and (max-width: 1199px) {
  .astro_block_sw {
    overflow: visible;
  }
}
.astro_block_sw .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1199px) {
  .astro_block_sw .swiper-slide {
    max-width: 27.323%;
  }
}
@media screen and (max-width: 767px) {
  .astro_block_sw .swiper-slide {
    max-width: 200px;
  }
}
.astro_block .astro_block_sw-pagination {
  display: none;
}
@media screen and (max-width: 1199px) {
  .astro_block .astro_block_sw-pagination {
    display: flex;
  }
}

.index_card {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .index_card {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .index_card .row {
    row-gap: 40px;
  }
}

.shorts {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .shorts {
    margin-top: 50px;
  }
}
.shorts_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .shorts_wrap {
    row-gap: 20px;
  }
}
.shorts_sw {
  overflow: visible;
}
.shorts_sw .swiper-slide {
  max-width: 238px;
  height: auto;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .shorts_sw .swiper-slide {
    max-width: 23.225%;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .shorts_sw .swiper-slide {
    max-width: 37.901%;
    margin-right: 6px;
  }
}

.special_projects {
  padding: 60px 0;
  margin-top: 100px;
  background: #F2F4FF;
}
@media screen and (max-width: 1600px) {
  .special_projects {
    padding: 30px 0;
    margin-top: 50px;
  }
}
.special_projects_head {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.special_projects_head-title {
  color: var(--Black);
}
.special_projects_head-cloud {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  column-gap: 7px;
  border-radius: 20px;
  background: var(--Blue, #0921FF);
  padding: 2.5px 10px 2.5px 8px;
  color: var(--White, #FFF);
  font-family: var(--golos);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 1199px) {
  .special_projects_head-cloud {
    column-gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .special_projects_head-cloud {
    display: none;
  }
}
.special_projects_head-cloud .icon {
  display: flex;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}
.special_projects_head-cloud .icon svg {
  width: 100%;
  height: 100%;
}
.special_projects_head-cloud .icon svg g circle {
  animation: circle-blink 2.5s infinite linear;
}
.special_projects_wrap .special_content {
  margin-top: 40px;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content {
    row-gap: 20px;
    margin-top: 20px;
  }
}
.special_projects_wrap .special_content .col-xl-3 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-3 {
    flex-wrap: nowrap;
    column-gap: 10px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .special_projects_wrap .special_content .col-xl-3 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-3 .small_card {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .special_projects_wrap .special_content .col-xl-3 .small_card {
    max-width: 100%;
  }
}
.special_projects_wrap .special_content .col-xl-6 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-6 {
    row-gap: 20px;
  }
}
.special_projects_wrap .special_content .col-xl-6 .wide_card {
  background: #fff;
  border-radius: 16px;
  row-gap: 0px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-6 .wide_card {
    border-radius: 12px;
  }
}
.special_projects_wrap .special_content .col-xl-6 .wide_card_image {
  flex: 1 1 auto;
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-6 .wide_card_image {
    border-radius: 12px;
  }
}
.special_projects_wrap .special_content .col-xl-6 .wide_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special_projects_wrap .special_content .col-xl-6 .wide_card_content {
  padding: 20px 30px;
}
@media screen and (max-width: 1199px) {
  .special_projects_wrap .special_content .col-xl-6 .wide_card_content {
    padding: 14px;
  }
}

.expert_air {
  margin-top: 100px;
  background: var(--Blue, #0921FF);
  padding: 40px 0;
}
@media screen and (max-width: 1199px) {
  .expert_air {
    margin-top: 50px;
    padding: 30px 0;
  }
}
.expert_air_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.expert_air_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.expert_air_head-title {
  color: var(--White);
}
.expert_air_sw {
  overflow: visible;
}
.expert_air_sw .swiper-slide {
  height: auto;
  max-width: 350px;
}
@media screen and (max-width: 1199px) {
  .expert_air_sw .swiper-slide {
    max-width: 270px;
  }
}

.index_infinity {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .index_infinity {
    margin-top: 60px;
  }
}
.index_infinity .row {
  row-gap: 32px;
}
@media screen and (max-width: 1199px) {
  .index_infinity .row {
    row-gap: 20px;
  }
}
.index_infinity-loader {
  display: flex;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .index_infinity-loader {
    margin-top: 50px;
  }
}
.index_infinity-loader svg {
  width: 100%;
  height: 100%;
  animation: infinity-loader 1s infinite linear;
}
@keyframes infinity-loader {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  padding: 60px 0;
  border-top: 1px solid #E8E8E8;
  background: #FFF;
  margin-top: 80px;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 32px 0;
  }
}
.footer.active_audio {
  padding-bottom: 130px;
}
@media screen and (max-width: 1199px) {
  .footer.active_audio {
    padding-bottom: 98px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    row-gap: 32px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
}
.footer__left-tel {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  transition: 0.4s;
}
@media (hover: hover) {
  .footer__left-tel:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer__left-tel:active {
    opacity: 0.7;
  }
}
.footer__left__mail {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  transition: 0.4s;
}
@media (hover: hover) {
  .footer__left__mail:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer__left__mail:active {
    opacity: 0.7;
  }
}
.footer__left__mail-title {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.footer__left__mail-link {
  display: flex;
  align-items: center;
  column-gap: 11px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.footer__left .btn {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 767px) {
  .footer__left .btn {
    width: 100%;
    max-width: 100%;
  }
}
.footer__left__socials {
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}
.footer__left__socials-it {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .footer__left__socials-it:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .footer__left__socials-it:active {
    opacity: 0.5;
  }
}
.footer__left__socials-it svg {
  width: 100%;
  height: 100%;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 19px;
}
.footer__nav ul li {
  display: flex;
}
.footer__nav ul li a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  transition: opacity 0.4s;
}
.footer__nav ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 0%;
  transition: transform 0.4s;
}
@media (hover: hover) {
  .footer__nav ul li a:hover::after {
    content: "";
    display: block;
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
}
@media (hover: none) {
  .footer__nav ul li a:active::after {
    content: "";
    display: block;
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: space-between;
  justify-content: flex-end;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .footer__right {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__right {
    row-gap: 32px;
  }
}
.footer__right_top {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer__right_top-title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.footer__right_top_form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
.footer__right_top_form .form_input {
  display: flex;
  align-items: center;
  position: relative;
}
.footer__right_top_form .form_input input[type=email] {
  padding-right: 45px;
}
.footer__right_top_form .form_input .btn {
  position: absolute;
  right: 4px;
  padding: 5px;
  width: 100%;
  max-width: 32px;
  aspect-ratio: 1/1;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.footer__right_top_form .form_input .btn.active {
  opacity: 1;
  visibility: visible;
}
.footer__right-copyright {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.care_tips {
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  .care_tips {
    margin-top: 50px;
  }
}
.care_tips .row {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .care_tips .row {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .care_tips .row {
    row-gap: 20px;
  }
}
.care_tips .row .flex_col {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .care_tips .row .flex_col {
    column-gap: 16px;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .care_tips .row .flex_col {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .care_tips .row .gray_card {
    flex-direction: column-reverse;
    position: relative;
  }
}
@media screen and (max-width: 1199px) {
  .care_tips .row .gray_card_left {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    row-gap: 6px;
    position: unset;
  }
}
@media screen and (max-width: 1199px) {
  .care_tips .row .gray_card_left-tag {
    padding: 2px 8px;
  }
}
@media screen and (max-width: 1199px) {
  .care_tips .row .gray_card_left-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 126%;
  }
}
@media screen and (max-width: 1199px) {
  .care_tips .row .gray_card-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 234/139;
  }
  .care_tips .row .gray_card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.care_tips .row .wide_card_content-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.GlassContainer {
  --corner-radius: 0px;
  --base-strength: 10px;
  --extra-blur: 5px;
  --softness: 0px;
  --tint-amount: 0;
  --tint-saturation: 1;
  --tint-hue: 180deg;
  --contrast: 1;
  --brightness: 1;
  --invert: 0%;
  --total-strength: calc(var(--base-strength) + var(--extra-blur));
  --edge-width: calc(0.3px + (var(--softness) * 0.1));
  --emboss-width: calc((var(--softness) * 0.38));
  --refraction-width: calc((var(--softness) * 0.3));
  overflow: visible;
  will-change: transform;
}
.GlassContainer .GlassContent {
  position: relative;
  display: block;
  z-index: 100;
  overflow: hidden;
  pointer-events: auto;
  transform: translateZ(0);
  will-change: transform;
}
.GlassContainer .GlassMaterial {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}
.GlassContainer .GlassMaterial:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--corner-radius);
  background-color: rgba(255, 255, 255, 0.2);
}
.GlassContainer .GlassMaterial > div {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border-radius: var(--corner-radius);
  z-index: 2;
  overflow: hidden;
}
.GlassContainer .GlassMaterial .GlassEdgeReflection {
  z-index: 4;
  margin: calc(var(--total-strength) * -1);
  border-radius: calc(var(--corner-radius) + var(--total-strength));
  backdrop-filter: blur(var(--total-strength)) brightness(1.2) saturate(1);
  padding: var(--edge-width);
  border: var(--total-strength) solid transparent;
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0) content-box;
  mask-composite: exclude, exclude;
}
.GlassContainer .GlassMaterial .GlassEmbossReflection {
  backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0) brightness(1) saturate(1) hue-rotate(0deg) contrast(2.3);
  padding: var(--emboss-width);
  border: 0 solid transparent;
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0) content-box;
  mask-composite: exclude, exclude;
}
.GlassContainer .GlassMaterial .GlassRefraction {
  backdrop-filter: invert(0) brightness(1.2) contrast(1.5);
  padding: var(--refraction-width);
  border: calc(var(--emboss-width)) solid transparent;
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0) content-box;
  mask-composite: exclude, exclude;
}
.GlassContainer .GlassMaterial .GlassBlur {
  backdrop-filter: blur(var(--extra-blur)) brightness(1.1);
  border-radius: calc(var(--corner-radius) - (var(--emboss-width) + var(--refraction-width)));
  margin: calc(var(--emboss-width) + var(--refraction-width));
}
.GlassContainer .GlassMaterial .BlendLayers {
  z-index: 3;
  backdrop-filter: blur(calc(var(--softness) * 0.2 + var(--extra-blur) * 0.2));
}
.GlassContainer .GlassMaterial .BlendEdge {
  z-index: 8;
  backdrop-filter: blur(calc(var(--edge-width) * 0.4)) contrast(1) saturate(1);
}
.GlassContainer .GlassContainer:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  border-radius: var(--corner-radius);
  backdrop-filter: invert(var(--invert));
}
.GlassContainer .GlassMaterial:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 11;
  display: block;
  border-radius: var(--corner-radius);
  padding: 1px;
  border: 0 solid transparent;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.15) 0%, hsla(0, 0%, 0%, 0.2) 50%, hsla(0, 0%, 100%, 0.15) 100%);
  backdrop-filter: invert(0) opacity(1);
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0) content-box;
  mask-composite: exclude, exclude;
}
.GlassContainer .GlassMaterial .Highlight {
  z-index: 12;
  display: block;
  border-radius: var(--corner-radius);
  padding: 1px;
  border: 0 solid transparent;
  backdrop-filter: brightness(1.3) contrast(1.3) saturate(1) opacity(1);
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0) content-box;
  mask-composite: exclude, exclude;
}

[data-fancybox-shorts] {
  outline: unset;
}

.rules_page {
  padding-top: 60px;
}
@media screen and (max-width: 1199px) {
  .rules_page {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .rules_page_wrap-title {
    margin-bottom: 20px;
  }
}
.rules_page_wrap-text {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  color: var(--Black);
}
@media screen and (max-width: 1199px) {
  .rules_page_wrap-text {
    row-gap: 16px;
    font-size: 14px;
    line-height: 126%;
  }
}
@media screen and (max-width: 1199px) {
  .rules_page_wrap-text {
    max-width: 800px;
  }
}
.rules_page_wrap-text ul {
  margin-top: -20px;
  list-style-type: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .rules_page_wrap-text ul {
    margin-top: -10px;
  }
}
.rules_page_wrap-message {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  color: var(--Black);
  margin-top: 30px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--Background-grey, #F2F2F2);
}
@media screen and (max-width: 1199px) {
  .rules_page_wrap-message {
    max-width: 800px;
    margin-top: 20px;
    padding: 14px;
    font-size: 14px;
    line-height: 126%;
  }
}
.rules_page_wrap-message p {
  color: #999;
}
.rules_page_wrap-message a {
  color: var(--Blue);
  transition: 0.4s;
}
@media (hover: hover) {
  .rules_page_wrap-message a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .rules_page_wrap-message a:active {
    opacity: 0.7;
  }
}

.breadcrumbs {
  margin-top: 0px;
  padding-top: 25px;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .breadcrumbs {
    padding-top: 20px;
  }
}
.breadcrumbs__wrap {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.breadcrumbs__wrap li {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.breadcrumbs__wrap li:last-child {
  overflow: hidden;
}
.breadcrumbs__wrap li:last-child span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs__wrap li::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #d9d9d9;
  margin-left: 8px;
}
.breadcrumbs__wrap li:last-of-type::after {
  display: none;
}
.breadcrumbs__wrap li a {
  transition: 0.4s;
}
@media (hover: hover) {
  .breadcrumbs__wrap li a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .breadcrumbs__wrap li a:active {
    opacity: 0.7;
  }
}
.breadcrumbs__wrap li a,
.breadcrumbs__wrap li span {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.become_author_card {
  margin: 60px 0;
  container-type: inline-size;
}
@media screen and (max-width: 1199px) {
  .become_author_card {
    margin: 48px 0;
  }
}
.become_author_card_wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  border-radius: 16px;
  background: radial-gradient(113.98% 113.98% at 2.27% 50%, #FF477E 0%, #FFF 100%);
  padding: 20px 30px;
}
@media screen and (min-width: 1280px) {
  @container (max-width: 800px) {
    .become_author_card_wrap .become_author_card_wrap_body {
      flex-direction: column;
      align-items: flex-start;
      row-gap: 16px;
    }
  }
}
@media screen and (max-width: 1199px) {
  .become_author_card_wrap {
    align-items: flex-start;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .become_author_card_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
}
.become_author_card_wrap-img {
  display: block;
  width: 100%;
  max-width: 120px;
  padding: 8px 23px;
}
@media screen and (max-width: 767px) {
  .become_author_card_wrap-img {
    padding: 8px 0;
    max-width: 75px;
  }
}
.become_author_card_wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.become_author_card_wrap_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 auto;
}
@media screen and (max-width: 1199px) {
  .become_author_card_wrap_body {
    flex-direction: column;
    row-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.become_author_card_wrap_body_content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 740px;
}
.become_author_card_wrap_body_content-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.become_author_card_wrap_body_content-text {
  margin: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.become_author_card_wrap_body-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 10px;
  background: #FFF;
  padding: 10px 24px 10px 16px;
  border-radius: 8px;
  background: #FFF;
  flex-shrink: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s;
}
@media (hover: hover) {
  .become_author_card_wrap_body-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .become_author_card_wrap_body-btn:active {
    opacity: 0.7;
  }
}
.become_author_card_wrap_body-btn .icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.become_author_card_wrap_body-btn .icon svg {
  width: 100%;
  height: 100%;
}

.index_marque {
  margin-top: 100px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .index_marque {
    margin-top: 50px;
  }
}
.index_marque_wrap {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .index_marque_wrap {
    column-gap: 7px;
  }
}
.index_marque_wrap_item {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  padding: 8px 24px 8px 8px;
  border-radius: 50px;
  background: var(--Blue, #0921FF);
  overflow: hidden;
  width: max-content;
  transition: transform 0.4s;
}
@media (hover: hover) {
  .index_marque_wrap_item:hover {
    transform: scale(1.05) translateZ(0);
  }
}
@media (hover: none) {
  .index_marque_wrap_item:active {
    transform: scale(1.05) translateZ(0);
  }
}
@media screen and (max-width: 1199px) {
  .index_marque_wrap_item {
    column-gap: 6px;
    padding: 4px 10px 4px 4px;
  }
}
.index_marque_wrap_item-thumb {
  display: block;
  width: 100%;
  max-width: 160px;
  min-height: 80px;
  max-height: 80px;
  flex-shrink: 0;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .index_marque_wrap_item-thumb {
    max-width: 68px;
    min-height: 34px;
    max-height: 34px;
  }
}
.index_marque_wrap_item-thumb img,
.index_marque_wrap_item-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_marque_wrap_item-title {
  color: var(--White);
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .index_marque_wrap_item-title {
    font-size: 12px;
    line-height: 126%;
  }
}

.start_stream {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  user-select: none;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .start_stream {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
}
@media screen and (max-width: 350px) {
  .start_stream {
    left: 5px;
    max-width: calc(100% - 10px);
  }
}
.start_stream-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5px 10px;
  background: var(--White);
  border-radius: 20px;
  color: var(--Black, #000);
  font-family: "Golos Text";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 767px) {
  .start_stream-item {
    padding: 2.5px 8px;
  }
}
@media screen and (max-width: 350px) {
  .start_stream-item {
    padding: 2.5px 8px;
  }
}

.short-fancybox-main .fancybox__slide {
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .short-fancybox-main .fancybox__slide {
    padding: 0;
  }
}
.short-fancybox-main .f-html {
  padding: 0;
  background: var(--Black);
  margin: 0 auto;
  max-width: 760px;
  min-height: 52px;
  min-width: 52px;
  overflow-y: auto;
  position: relative;
  z-index: 101;
  width: auto;
  border-radius: 8px;
  height: 90vh;
}
@media screen and (max-width: 992px) {
  .short-fancybox-main .f-html {
    height: 100dvh;
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
}
.short-fancybox-main .f-html .f-button {
  top: 10px;
  right: 10px;
}
@media (hover: hover) {
  .short-fancybox-main .f-html .f-button:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .short-fancybox-main .f-html .f-button:active {
    opacity: 0.7;
  }
}
.short-fancybox-main .f-html .f-iframe {
  border: none;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1.77;
}

.ugc {
  margin-top: 110px;
}
@media screen and (max-width: 1199px) {
  .ugc {
    margin-top: 50px;
  }
}
.ugc_wrap {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #570C23;
  padding: 40px 40px 50px 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap {
    padding: 30px 18px;
    border-radius: 0px;
    margin: 0 -18px;
  }
}
.ugc_wrap_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_head {
    column-gap: 0;
  }
}
.ugc_wrap_head-title {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: var(--White);
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_head-title {
    column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .ugc_wrap_head-title {
    align-items: flex-start;
  }
}
.ugc_wrap_head-title .icon {
  display: flex;
  width: 21px;
  height: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .ugc_wrap_head-title .icon {
    margin-top: 4px;
  }
}
.ugc_wrap_head-title .icon svg {
  width: 100%;
  height: 100%;
}
.ugc_wrap_head_btns {
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_head_btns {
    display: none;
  }
}
.ugc_wrap_sw {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_sw {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .ugc_wrap_sw {
    margin-top: 20px;
  }
}
.ugc_wrap_sw-it {
  height: auto;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_sw-it {
    max-width: 27.5%;
  }
}
@media screen and (max-width: 767px) {
  .ugc_wrap_sw-it {
    max-width: 200px;
  }
}
@media (hover: hover) {
  .ugc_wrap_sw-it:hover .article_image img {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .ugc_wrap_sw-it:active .article_image img {
    transform: scale(1.05);
  }
}
.ugc_wrap_sw-it .article_image img {
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ugc_wrap_sw-pagination {
  display: none;
}
@media screen and (max-width: 1199px) {
  .ugc_wrap_sw-pagination {
    display: flex;
    margin-top: 20px !important;
  }
}
.ugc_wrap-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
}
.ugc_wrap-bg .circle-small {
  display: block;
  width: 300px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 400px;
  background: #BD3464;
  filter: blur(120px);
}
@media screen and (max-width: 1199px) {
  .ugc_wrap-bg .circle-small {
    width: 170px;
    height: 227px;
  }
}
.ugc_wrap-bg .circle-medium {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 600px;
  background: #A92554;
  filter: blur(120px);
}
@media screen and (max-width: 1199px) {
  .ugc_wrap-bg .circle-medium {
    width: 340px;
    height: 340px;
  }
}
.ugc_wrap-bg .circle-big {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  border-radius: 1000px;
  background: #8B1C44;
  filter: blur(120px);
}
@media screen and (max-width: 1199px) {
  .ugc_wrap-bg .circle-big {
    width: 568px;
    height: 568px;
  }
}
.ugc .ugc_card_bg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px 20px 20px;
  border-radius: 16px;
  position: relative;
  aspect-ratio: 24/23;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_bg {
    padding: 14px;
    border-radius: 12px;
    aspect-ratio: 200/223;
  }
}
.ugc .ugc_card_bg_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 16px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_bg_head {
    column-gap: 12px;
  }
}
.ugc .ugc_card_bg_author {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}
.ugc .ugc_card_bg_author-name {
  color: var(--White);
}
.ugc .ugc_card_bg_author-job {
  color: var(--White, #FFF);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ugc .ugc_card_bg-tag {
  flex-shrink: 0;
  margin: -6px -10px 0 0;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_bg-tag {
    margin-top: -7px;
    margin-right: -8px;
  }
}
.ugc .ugc_card_bg-title {
  color: var(--White, #FFF);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_bg-title {
    font-size: 14px;
    line-height: 126%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.ugc .ugc_card_bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}
.ugc .ugc_card_bg-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ugc .ugc_card_glass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 16px 0 16px;
  overflow: hidden;
  aspect-ratio: 24/23;
  position: relative;
}
.ugc .ugc_card_glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* толщина рамки */
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), #FFF, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_glass {
    padding: 7px 14px 0 14px;
    aspect-ratio: 200/223;
    border-radius: 12px;
  }
}
.ugc .ugc_card_glass > *:first-child {
  margin-top: 0px;
}
.ugc .ugc_card_glass > *:last-child {
  margin-bottom: 0px;
}
.ugc .ugc_card_glass-tag {
  transform: translateX(-6px);
  z-index: 6;
  position: relative;
}
.ugc .ugc_card_glass-title {
  color: var(--White);
  margin-top: clamp(0.75rem, -0.5rem + 1.667vw, 1rem);
  margin-bottom: clamp(0.75rem, -1.125rem + 2.5vw, 1.125rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  width: 100%;
  font-size: clamp(0.875rem, -1rem + 2.5vw, 1.25rem);
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_glass-title {
    margin-top: 12px;
    margin-bottom: 12px;
    color: var(--White, #FFF);
    font-size: 14px;
    font-weight: 400;
    line-height: 126%;
  }
}
.ugc .ugc_card_glass_author {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  column-gap: 15px;
  margin-left: -16px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_glass_author {
    column-gap: 10px;
    margin-left: -14px;
  }
}
.ugc .ugc_card_glass_author-img {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: clamp(5.313rem, -0.938rem + 8.333vw, 6.563rem);
  height: clamp(5.75rem, -0.5rem + 8.333vw, 7rem);
  transform: translateY(1px);
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_glass_author-img {
    max-width: 85px;
    height: 92px;
  }
}
.ugc .ugc_card_glass_author-img img {
  width: 100%;
  height: auto;
}
.ugc .ugc_card_glass_author_content {
  padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_glass_author_content {
    padding-bottom: 14px;
  }
}
.ugc .ugc_card_glass_author_content-name {
  color: var(--White);
}
.ugc .ugc_card_glass_author_content-job {
  color: var(--White, #FFF);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ugc .ugc_card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  background: var(--White);
  overflow: hidden;
  aspect-ratio: 24/23;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card {
    aspect-ratio: 200/223;
    border-radius: 12px;
  }
}
.ugc .ugc_card_head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  row-gap: 20px;
  border-radius: 0px 0px 16px 16px;
  overflow: hidden;
  flex: 1 1 auto;
  padding: 10px 20px 17px 20px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_head {
    padding: 8px 14px 14px 14px;
    border-radius: 0 0 12px 12px;
  }
}
.ugc .ugc_card_head-tag {
  transform: translateX(-10px);
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_head-tag {
    transform: translateX(-6px);
  }
}
.ugc .ugc_card_head-title {
  color: var(--White, #FFF);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_head-title {
    font-size: 14px;
    line-height: 126%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.ugc .ugc_card_head-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ugc .ugc_card_head-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_head-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ugc .ugc_card_author {
  display: flex;
  column-gap: 9px;
  padding: 14px 13px;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_author {
    padding: 14px;
    column-gap: 6px;
  }
}
.ugc .ugc_card_author-avatar {
  display: block;
  width: 100%;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .ugc .ugc_card_author-avatar {
    max-width: 36px;
    height: 36px;
  }
}
.ugc .ugc_card_author-avatar img {
  width: 100%;
  height: auto;
}
.ugc .ugc_card_author_content {
  display: flex;
  flex-direction: column;
}
.ugc .ugc_card_author_content-name {
  line-height: 130%;
}
.ugc .ugc_card_author_content-job {
  color: var(--Dark-grey, #999);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ugc .gradient-blur {
  mix-blend-mode: darken;
  border-radius: 16px;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .ugc .gradient-blur {
    border-radius: 12px;
  }
}
.ugc .gradient-blur::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: rgba(217, 217, 217, 0.01);
  backdrop-filter: blur(4px);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .ugc .gradient-blur::after {
    height: 120px;
  }
}
.ugc .gradient-blur::before {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background: rgba(217, 217, 217, 0.01);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .ugc .gradient-blur::before {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .ugc .gradient-blur::before {
    height: 20%;
  }
}

.article_title.is-blue {
  color: var(--Blue);
}

/*# sourceMappingURL=style.css.map */
