@charset "UTF-8";

@font-face {
  font-family: 'Avenir';
  src: url("../fonts/Avenir-Light.woff2") format("woff2"), url("../fonts/Avenir-Light.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url("../fonts/Avenir-Book.woff2") format("woff2"), url("../fonts/Avenir-Book.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url("../fonts/Avenir-Roman.woff2") format("woff2"), url("../fonts/Avenir-Roman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Avenir';
  src: url("../fonts/Avenir-Heavy.woff2") format("woff2"), url("../fonts/Avenir-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url("../fonts/Avenir-Black.woff2") format("woff2"), url("../fonts/Avenir-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
}

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

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

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

.wrapper {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1104px;
  padding: 0 16px;
  margin: 0 auto;
}

.head-compensation {
  height: 80px;
}

.border-section {
  border-bottom: 1px solid #191919;
}

.center {
  text-align: center;
}

.gradient-text {
  color: #A2CF64;
}

@supports (--css: variables) {
  .gradient-text {
    background: linear-gradient(30deg, #A2CF64, #1479AC);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.gradient-text::-moz-selection {
  color: #A2CF64;
  background: transparent;
}

.gradient-text::-moz-selection,
.gradient-text::selection {
  color: #A2CF64;
  background: transparent;
}

.button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 37px;
  background-color: #ffffff;
  padding: 13px 26px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #000000;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.button-outlined {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  border: 1px solid #ffffff;
  padding: 13px 32px 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.button-gradient {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 37px;
  padding: 18px 34px 16px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.04;
  color: #ffffff;
  white-space: nowrap;
}

.button-gradient span {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.button-gradient::before,
.button-gradient::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 37px;
  position: absolute;
  left: 0;
  top: 0;
}

.button-gradient::before {
  background: linear-gradient(115deg, #A2CF64, #1479AC);
}

.button-gradient::after {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.swiper {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #363636;
  background-color: #060606;
  z-index: 2;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 10px;
  height: 16px;
  background: url("../images/icons/icon-slider-arrow-right-white.svg") center center/contain no-repeat;
  font-size: 0;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.swiper-button-prev {
  left: -25px;
}

.swiper-button-prev::after {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.swiper-button-next {
  right: -25px;
}

/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

body {
  background-color: #060606;
  font-family: 'Avenir', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #ACACAC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: #ffffff;
}

h1,
.main-title {
  font-size: 48px;
  line-height: 1.2;
}

h2,
.big-title {
  font-size: 40px;
  line-height: 1.375;
}

h3,
.medium-title {
  font-size: 32px;
  line-height: 1.17;
}

h4,
.small-title {
  font-size: 26px;
  line-height: 1.15;
}

h5,
.litle-title {
  font-size: 22px;
  line-height: 1.25;
}

h4,
.micro-title {
  font-size: 20px;
  line-height: 1.25;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 16px 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 213px;
  margin-right: 20px;
  position: relative;
  z-index: 12;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__logo.hidden {
  opacity: 0;
  pointer-events: none;
}

.header__submenu-back {
  display: none;
}

.header__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 42px;
  background-color: rgba(255, 255, 255, 0.14);
}

.header__menu-item {
  margin-top: -1px;
  position: relative;
  line-height: 1;
}

.header__menu-link {
  display: inline-block;
  padding: 16px 20px 15px;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #ffffff;
  -webkit-transition: color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: color 0.3s, background-color 0.3s, border-radius 0.3s;
}

.header__menu-link.active {
  border-radius: 40px;
  background-color: #ffffff;
  color: #000000;
}

.header__menu-arrow {
  display: none;
}

.header__actions-wrap {
  margin-left: 30px;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__actions a {
  margin-left: 12px;
}

.header__login {
  padding: 12px 24px 11px;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
}

.header__signup {
  padding: 13px 20px 12px;
}

.header__explore {
  padding: 12px 20px 11px;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
}

.header__user-block {
  display: block;
  margin-left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.header__user-block img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header__burger {
  display: none;
}

.submenu {
  position: absolute;
  left: 50%;
  top: 99%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 612px;
  max-width: 90vw;
  padding-top: 22px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) rotateX(-90deg);
  transform: translateX(-50%) rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.submenu::before {
  content: '';
  width: 40px;
  height: 20px;
  background: url("../images/icons/icon-submenu-angle.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.submenu__inner {
  max-height: calc(100vh - 90px);
  position: relative;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 32px 0 28px;
  overflow-y: auto;
}

.submenu__inner.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.submenu__item {
  padding: 0 32px 14px 32px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 32px;
}

.submenu__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.submenu__item-title {
  display: block;
  margin-bottom: 21px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.04;
  color: #808080;
  text-transform: uppercase;
}

.submenu__list {
  list-style: none;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-right: -15px;
  line-height: 1.04;
}

.submenu__list-item {
  padding-right: 15px;
  margin-bottom: 16px;
}

.submenu__list-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #676767;
}

.submenu__list-icons {
  margin-right: 8px;
}

.submenu__list-icons.big-icons {
  margin-right: 12px;
}

.submenu__list-icons.big-icons .submenu__list-icon1 {
  width: 32px;
  height: 32px;
}

.submenu__list-icon1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
}

.submenu__list-icon1 img {
  display: block;
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.submenu__list-icon1 .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.submenu__list-icon2 {
  display: none;
}

.submenu__list-category {
  display: block;
  margin-bottom: 5px;
  font-weight: 800;
  color: #000000;
}

.submenu__list-description {
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.main-top {
  padding-top: 81px;
}

.main-top.about-top .main-top__inner {
  min-height: 714px;
  padding-bottom: 64px;
}

.main-top__inner {
  min-height: 700px;
  padding: 30px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-top__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-top__info {
  width: 570px;
  margin-right: 30px;
}

.main-top__title {
  margin-bottom: 34px;
}

.main-top__title span {
  display: block;
}

.main-top__text {
  font-size: 18px;
}

.main-top__text + .main-top__text {
  margin-top: 15px;
}

.main-top__actions {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 37px;
  border: 1px solid #272727;
}

.main-top__actions-link {
  margin: -1px;
  padding-left: 28px;
  padding-right: 28px;
}

.main-top__actions-notice {
  display: block;
  margin-right: 24px;
  margin-left: 20px;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.04;
  color: #949494;
}

.main-top__images {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}

.main-top__images-column {
  width: 50%;
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-top__images-column:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.main-top__images-column:nth-child(even) .main-top__images-info {
  background: -webkit-gradient(linear, right top, left bottom, from(#161616), to(#252525));
  background: linear-gradient(to left bottom, #161616, #252525);
  margin-top: 0;
  margin-bottom: 16px;
}

.main-top__images-photo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 156%;
}

.main-top__images-photo img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-top__images-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 158px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(linear, left bottom, right top, from(#161616), to(#252525));
  background: linear-gradient(to right top, #161616, #252525);
  margin-top: 16px;
  padding: 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
  color: #797979;
}

.main-top__images-info img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-top__images-amount {
  display: block;
  font-weight: 800;
  color: #ffffff;
}

.sponsors {
  padding: 25px 0 24px;
  background-color: #ffffff;
}

.sponsors__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -29px;
}

.sponsors__item {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 37px;
}

.sponsors__item img {
  display: block;
  width: 100%;
  max-width: 152px;
}

.information {
  padding: 159px 0 120px;
  position: relative;
}

.information.app-section {
  padding: 119px 0 110px;
}

.information.help-section {
  padding: 120px 0 120px;
}

.information.help-section .information__content {
  max-width: 610px;
}

.information.help-section .information__title {
  margin-bottom: 31px;
  letter-spacing: 0.045em;
}

.information.streaming-section {
  padding: 62px 0 90px;
}

.information.streaming-section .information__title {
  text-transform: capitalize;
}

.information.streaming-section .information__link {
  max-width: 100%;
}

.information.about-from {
  padding: 120px 0 112px;
}

.information.about-from .information__title {
  text-transform: capitalize;
}

.information.about-from .information__link {
  max-width: 100%;
}

.information.musicians-join {
  padding: 119px 0 111px;
}

.information.podcasters-audience {
  padding: 119px 0 110px;
}

.information.podcasters-audience .button-outlined,
.information.podcasters-audience .button-gradient {
  padding-right: 28px;
  padding-left: 28px;
}

.information.podcasters-upgrade {
  padding: 119px 0;
}

.information.podcats-videos-upload {
  padding: 120px 0 90px;
}

.information.music-videos-upload {
  padding: 120px 0 90px;
}

.information.merch-upload {
  padding: 52px 0 90px;
}

.information.trueplay-creator {
  padding: 120px 0 90px;
}

.information.trueplay-creator .information__icon {
  margin-bottom: 55px;
}

.information__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.information__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.information__bg::after {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#060606), to(rgba(6, 6, 6, 0)));
  background: linear-gradient(180deg, #060606, rgba(6, 6, 6, 0));
  position: absolute;
  left: 0;
  top: 0;
}

.information__content {
  width: 100%;
  max-width: 746px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.information__icon {
  display: block;
  height: 120px;
  width: auto;
  margin: 0 auto 47px;
}

.information__title {
  margin-bottom: 33px;
}

.information__text {
  font-size: 18px;
}

.information__text a {
  color: #A2CF64;
}

.information__text + .information__text {
  margin-top: 16px;
}

.information__logotypes {
  max-width: 1065px;
  margin: 48px auto -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.information__logotypes-item {
  width: 20%;
  padding: 0 5px 0 4px;
  margin-bottom: 16px;
}

.information__logotypes-item img {
  display: block;
  width: 100%;
  height: auto;
}

.information__actions {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.information__link {
  display: inline-block;
  margin: 0 12px 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.information__link img {
  display: block;
  width: 194px;
  height: auto;
}

.information__link.button-outlined {
  padding-right: 24px;
  padding-left: 24px;
}

.information__items {
  margin-top: 80px;
}

.information__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.information__item-image {
  width: 508px;
  border-radius: 20px;
  overflow: hidden;
}

.information__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.information__item-info {
  width: 508px;
  margin-left: 30px;
}

.information__item-text {
  font-weight: 400;
  line-height: 1.45;
}

.information__item-text + .information__item-text {
  margin-top: 22px;
}

.features {
  padding: 119px 0 120px;
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 4px;
  margin-bottom: 119px;
}

.features__item:last-of-type {
  margin-bottom: 0;
}

.features__item-info {
  width: 517px;
  margin-right: 30px;
}

.features__item-title {
  margin-bottom: 32px;
}

.features__item-title span {
  display: block;
}

.features__item-text {
  font-weight: 400;
  line-height: 1.45;
}

.features__item-text + .features__item-text {
  margin-top: 16px;
}

.features__item-link {
  margin-top: 32px;
  padding: 19px 37px 16px;
}

.features__item-image {
  width: 456px;
}

.features__item-image img {
  display: block;
  width: 100%;
  height: auto;
}

.platform {
  padding: 119px 0;
}

.platform.pricing-platform {
  padding: 93px 0 90px;
}

.platform__title {
  max-width: 746px;
  margin: 0 auto 33px;
}

.platform__text {
  max-width: 746px;
  margin: 0 auto 10px;
  font-size: 18px;
}

.platform__slider-wrap {
  padding: 0 25px;
}

.platform__slider {
  position: relative;
  padding: 70px 0;
}

.platform__slider-wrap {
  overflow: hidden;
}

.platform__main-link {
  margin: 10px auto 26px;
  padding-left: 28px;
  padding-right: 28px;
}

.platform__sublink-text {
  font-weight: 100;
  font-size: 14px;
  line-height: 1.04;
  color: #949494;
}

.platform .swiper-slide {
  height: auto;
  border-radius: 22px;
  background: linear-gradient(70deg, #111111, #111111);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.platform .swiper-slide::before,
.platform .swiper-slide::after {
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.platform .swiper-slide::before {
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 20px;
  background-color: #111111;
  position: absolute;
  left: 0;
  top: 0;
}

.platform .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(70deg, #A2CF64, #1479AC);
  -webkit-filter: blur(50px);
  filter: blur(50px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.platform .swiper-slide.swiper-slide-active {
  background: linear-gradient(70deg, #A2CF64, #1479AC);
}

.platform .swiper-slide.swiper-slide-active::before {
  border-radius: 22px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
}

.platform .swiper-slide.swiper-slide-active::after {
  opacity: 0.3;
}

.tariff-slide {
  border-radius: 20px;
  height: 100%;
  padding: 41px 24px 36px;
  position: relative;
  z-index: 1;
}

.tariff-slide__price {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 800;
}

.tariff-slide__price-amount {
  font-size: 32px;
  line-height: 1.2;
}

.tariff-slide__price-period {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #707070;
}

.tariff-slide__name {
  margin-bottom: 5px;
  font-weight: 800;
  color: #F8F8F8;
}

.tariff-slide__target {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 14px;
  color: #707070;
}

.tariff-slide__get-start {
  margin-bottom: 31px;
}

.tariff-slide__list {
  border-top: 1px solid #363636;
  padding-top: 32px;
  list-style: none;
}

.tariff-slide__list-item {
  position: relative;
  padding-left: 33px;
  margin-bottom: 13px;
  font-weight: 800;
  font-size: 14px;
  color: #C4C4C4;
}

.tariff-slide__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../images/icons/icon-list-item-false.svg") center center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.tariff-slide__list-item.true::before {
  background-image: url("../images/icons/icon-list-item-true.svg");
}

.tariff-slide__list-item.tooltip-element {
  position: relative;
}

.tooltip {
  display: inline-block;
  position: relative;
  margin-left: 5px;
}

.tooltip__icon {
  display: inline-block;
  width: 13px;
  height: 13px;
}

.tooltip__info {
  display: none;
  width: 150px;
  border-radius: 10px 10px 0 10px;
  background-color: #ffffff;
  padding: 15px 10px;
  position: absolute;
  right: 5px;
  bottom: 100%;
  z-index: 5;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
}

.footer__top {
  padding: 75px 0 32px;
}

.footer__main-block {
  margin: 0 -18px 105px -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 6.4%;
  padding-top: 4px;
}

.footer__logo {
  display: inline-block;
  width: 188px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__navigation {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer__menu {
  width: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__menu-item {
  max-width: 21%;
  padding-right: 16px;
}

.footer__menu-link {
  display: inline-block;
  margin-bottom: 33px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  word-break: break-word;
}

.footer__submenu {
  list-style: none;
}

.footer__submenu-item {
  margin-bottom: 16px;
  line-height: 1;
}

.footer__submenu-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #707070;
  word-break: break-word;
}

.footer__socials {
  margin-bottom: 8px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__socials-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 10px 10px;
}

.footer__socials-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__socials-link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.footer__help {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: -27px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #707070;
}

.footer__help-item {
  position: relative;
  padding-left: 27px;
  margin-bottom: 8px;
}

.footer__help-item::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #707070;
  position: absolute;
  left: 12px;
  top: 8px;
}

.footer__help-item:first-child::before {
  display: none;
}

.footer__help-link {
  color: inherit;
  letter-spacing: 0.06px;
}

.footer__bottom {
  background-color: #ffffff;
  padding: 14px 0 4px;
}

.footer__sertificats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -37px;
}

.footer__sertificats-item {
  width: auto;
  max-width: 50%;
  padding: 0 37px;
  margin-bottom: 10px;
}

.footer__sertificats-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.7);
}

.modal__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 95vw;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 32px;
  background-color: #ffffff;
  padding: 24px 24px 32px;
}

.modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.modal__close img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.modal__main-content {
  max-width: 100%;
  width: 440px;
  padding: 12px 8px 0 16px;
}

.modal__main-title {
  display: block;
  margin-bottom: 8px;
  padding-right: 40px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.45;
  color: #000000;
}

.modal__main-text {
  padding-right: 40px;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 14px;
  color: #949494;
}

.modal__main-form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-y: auto;
}

.modal__thanks-content {
  display: none;
  max-width: 100%;
  width: 370px;
  padding-top: 36px;
  padding-bottom: 4px;
  text-align: center;
}

.modal__thanks-icon {
  display: inline-block;
  width: auto;
  height: 56px;
  margin-bottom: 32px;
}

.modal__thanks-title {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  color: #000000;
}

.modal__thanks-text {
  font-weight: 500;
  line-height: 1.375;
  color: #707070;
}

.modal__thanks-link {
  margin: 32px auto 0;
  padding-top: 16px;
  padding-bottom: 15px;
}

.contact-form__item {
  position: relative;
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #707070;
}

.contact-form__label.required::after {
  content: '*';
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: rgba(241, 67, 54, 0.85);
}

.contact-form__input {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #C4C4C4;
  padding: 11px 40px 10px 11px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.contact-form__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}

.contact-form__input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}

.contact-form__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}

.contact-form__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}

.contact-form__input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}

.contact-form__input:focus {
  outline: none;
  border-color: #000000;
}

.contact-form__input.error {
  border-color: #F14336;
}

.contact-form__error {
  display: none;
  padding-left: 5px;
  padding-top: 3px;
  font-size: 12px;
  color: #F14336;
}

.contact-form__submit {
  margin-top: 32px;
  margin-left: auto;
  padding-top: 16px;
}

.select {
  position: relative;
}

.select .new-select {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  border: 1px solid #C4C4C4;
  padding: 11px 40px 10px 11px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.select .new-select::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../images/icons/icon-arrow-down-grey.svg") center center/13px auto no-repeat;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-44%);
  -ms-transform: translateY(-44%);
  transform: translateY(-44%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.select .new-select.empty {
  color: #949494;
}

.select .new-select.on::after {
  -webkit-transform: translateY(-44%) rotateX(180deg);
  transform: translateY(-44%) rotateX(180deg);
}

.select .new-select.error {
  border-color: #F14336;
}

.select .new-select__list {
  position: absolute;
  top: 105%;
  left: 0;
  z-index: 3;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0 0 10px 10px;
  border: 1px solid #C4C4C4;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  padding: 15px 15px;
}

.select .new-select__item {
  cursor: pointer;
  width: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: #707070;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: font-wieght 0.3s;
  transition: font-wieght 0.3s;
}

.select .new-select__item:last-of-type {
  margin-bottom: 0;
}

.select .new-select__item.selected {
  font-weight: 800;
  color: #000000;
}

.blog {
  padding: 54px 0 103px;
}

.blog__main-title {
  max-width: 572px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog__main-text {
  max-width: 572px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 23px;
  color: #707070;
}

.blog__info {
  margin-top: 87px;
  margin-bottom: 88px;
}

.blog__controls {
  margin-bottom: 54px;
}

.blog-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-info__image {
  width: 552px;
  border-radius: 20px;
  margin-right: 30px;
  overflow: hidden;
}

.blog-info__image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-info__content {
  width: 472px;
  padding-top: 5px;
}

.blog-info__title {
  display: block;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.4;
  color: #ffffff;
}

.blog-info__text {
  line-height: 1.45;
}

.blog-info__text + .blog-info__text {
  margin-top: 16px;
}

.blog-info__service-info {
  margin-top: 48px;
}

.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  color: #707070;
}

.service-info__timedate {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -20px;
}

.service-info__timedate-item {
  position: relative;
  padding-right: 20px;
  margin-bottom: 5px;
}

.service-info__timedate-item::after {
  content: '';
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  right: 9px;
  top: 7px;
}

.service-info__timedate-item:last-child {
  padding-right: 0;
}

.service-info__timedate-item:last-child::after {
  display: none;
}

.service-info__views {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  margin-bottom: 5px;
  margin-left: 40px;
}

.service-info__views::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("../images/icons/icon-views-amount.svg") center center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.blog-controls__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2px;
}

.blog-controls__tag {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 32px;
  background-color: #252525;
  padding: 9px 21px 9px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.blog-controls__tag.active {
  pointer-events: none;
  background-color: #ffffff;
  color: #000000;
}

.blog-controls__search-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
  margin-bottom: 10px;
  width: 336px;
}

.blog-controls__search-item {
  position: relative;
}

.blog-controls__search-input {
  display: block;
  width: 100%;
  padding: 13px 40px 11px 22px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.12);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #ffffff;
}

.blog-controls__search-input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #A2A2A2;
}

.blog-controls__search-input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #A2A2A2;
}

.blog-controls__search-input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #A2A2A2;
}

.blog-controls__search-input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #A2A2A2;
}

.blog-controls__search-input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.04;
  color: #A2A2A2;
}

.blog-controls__search-input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.blog-controls__search-submit {
  position: absolute;
  right: 6px;
  top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 0.12);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.blog-controls__search-submit img {
  display: block;
  width: 13px;
  height: auto;
}

.articles__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.articles__column {
  width: 33.333%;
  padding: 0 16px;
  margin-bottom: 52px;
}

.articles__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.articles__item-image {
  position: relative;
  padding-bottom: 60.8%;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.articles__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.articles__item-title {
  display: block;
  margin-bottom: 16px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: #ffffff;
}

.articles__item-info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
}

.articles__load {
  padding-top: 20px;
}

.load-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.load-block__button {
  padding: 14px 24px 13px;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.load-block__button.hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.load-block__animation {
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.load-block__animation.active {
  opacity: 1;
  visibility: visible;
}

.load-block__animation.active .load-block__animation-outer {
  -webkit-animation: loader-animation 2s infinite linear;
  animation: loader-animation 2s infinite linear;
}

.load-block__animation-outer {
  pointer-events: none;
  display: block;
  width: 40px;
  height: 40px;
}

.load-block__animation-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: auto;
}

@-webkit-keyframes loader-animation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-animation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.article-content {
  padding: 94px 0 63px;
}

.article-content__heading {
  margin-bottom: 88px;
}

.article-content__wrap {
  width: 100%;
  max-width: 656px;
  margin: 0 auto;
}

.article-content__title {
  margin-bottom: 32px;
  line-height: 1.12;
}

.article-content .service-info {
  font-size: 16px;
}

.article-content .service-info__timedate-item {
  padding-right: 22px;
}

.article-content .service-info__timedate-item::after {
  top: 10px;
}

.article-content .service-info__views {
  margin-left: 18px;
  padding-left: 26px;
}

.article-content .service-info__views::before {
  width: 20px;
  height: 20px;
}

.article-content__main-image {
  margin-top: 68px;
  border-radius: 24px;
  overflow: hidden;
}

.article-content__main-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content__body * + h2 {
  margin-top: 69px;
}

.article-content__body p {
  line-height: 1.45;
}

.article-content__body p + p {
  margin-top: 30px;
}

.article-content__body p a {
  color: rgba(162, 207, 100, 0.64);
}

.article-content__body h2 {
  margin-bottom: 32px;
  font-size: 36px;
  line-height: 1.1;
}

.article-content__body img,
.article-content__body picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 9px;
  margin-bottom: 8px;
}

.article-content__body img + span,
.article-content__body picture + span {
  display: block;
  margin-bottom: 31px;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.45;
  color: #787878;
  text-align: center;
}

.article-content__body img + span a,
.article-content__body picture + span a {
  color: inherit;
  word-break: break-word;
}

.article-content__tags {
  margin-top: 70px;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -8px;
}

.tags__item {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 10px;
  border-radius: 32px;
  background-color: #252525;
  padding: 8px 21px 9px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.share-block {
  padding: 54px 0 47px;
}

.share-block__title {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.17;
  color: #ffffff;
  letter-spacing: 0.045em;
}

.share-block__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -20px;
}

.share-block__list-item {
  padding: 0 20px;
  margin-bottom: 10px;
}

.share-block__list-link {
  display: block;
  width: 32px;
  height: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.share-block__list-link img {
  display: block;
  width: 100%;
  height: auto;
}

.related-articles {
  padding: 69px 0 63px;
}

.related-articles__title {
  margin-bottom: 41px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.4;
  color: #ffffff;
}

.reviews {
  padding: 69px 0 90px;
}

.reviews.audiobooks-reviews {
  padding: 119px 0 100px;
}

.reviews__title {
  max-width: 746px;
  margin: 0 auto 20px;
  text-transform: capitalize;
}

.reviews__slider-wrap {
  margin-top: 53px;
  padding: 0 26px;
  overflow: hidden;
}

.reviews__slider {
  padding: 20px 0;
}

.reviews__slide {
  height: auto;
  border-radius: 20px;
  background: linear-gradient(15deg, #151515, #252525);
  padding: 32px 24px 38px;
}

.reviews__slide-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.reviews__slide-author img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 16px;
}

.reviews__slide-author span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.62;
  color: #ffffff;
}

.reviews__slide-raiting {
  margin-bottom: 16px;
}

.reviews__slide-text {
  font-size: 18px;
  color: #D0D0D0;
}

.reviews__slide-text b {
  font-weight: 800;
  color: #ffffff;
}

.reviews__arrow {
  top: 51.5%;
}

.raiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.raiting__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 4px;
}

.raiting__stars svg {
  display: block;
  width: 20px;
  height: auto;
  margin-right: 6px;
  fill: #525252;
}

.raiting__stars svg.fill {
  fill: #FDC943;
}

.raiting__amount {
  font-weight: 100;
  color: #A1A1A1;
}

.faq {
  padding: 73px 0 171px;
}

.faq__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.faq__info {
  width: 330px;
}

.faq__title {
  margin-bottom: 8px;
}

.faq__text {
  font-size: 18px;
}

.faq__text + .faq__text {
  margin-top: 16px;
}

.faq__list {
  width: 698px;
  margin-left: 30px;
  padding-top: 1px;
}

.faq__item {
  border-top: 1px solid #272727;
}

.faq__item:last-of-type {
  border-bottom: 1px solid #272727;
}

.faq-item__question {
  display: block;
  width: 100%;
  padding: 23px 35px 23px 0;
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.375;
  color: #ffffff;
}

.faq-item__question::after {
  content: '';
  width: 22px;
  height: 22px;
  background: url("../images/icons/icon-faq-plus.svg") center center/contain no-repeat;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.faq-item__question.active::after {
  background-image: url("../images/icons/icon-faq-minus.svg");
}

.faq-item__answer {
  display: none;
  padding: 1px 78px 39px 0;
  line-height: 1.45;
}

.faq-item__answer p + p {
  margin-top: 22px;
}

.faq-item__answer ol {
  list-style: none;
  counter-reset: numeric-li;
  margin-top: 4px;
  margin-bottom: -2px;
}

.faq-item__answer ol li {
  position: relative;
  padding-left: 24px;
}

.faq-item__answer ol li::before {
  content: counter(numeric-li) ".";
  counter-increment: numeric-li;
  position: absolute;
  left: 5px;
  top: 0;
}

.about-info {
  padding: 119px 0 90px;
}

.about-info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -36px;
}

.about-info__item {
  width: 50%;
  padding: 0 36px;
  margin-bottom: 30px;
}

.about-info__title {
  margin-bottom: 33px;
}

.about-info__text {
  font-size: 18px;
}

.about-choice {
  padding: 119px 0 120px;
}

.about-choice.musicians-choice {
  padding: 103px 0 60px;
}

.about-choice.musicians-choice .about-choice__item-title {
  font-size: 24px !important;
}

.about-choice.podcasters-choice {
  padding: 119px 0 95px;
}

.about-choice.podcasters-choice .about-choice__item {
  padding-right: 28px;
  padding-left: 28px;
  text-align: left;
}

.about-choice.podcasters-choice .about-choice__item-title {
  font-weight: 400;
  font-size: 24px !important;
}

.about-choice.music-videos-choice {
  padding: 119px 0 90px;
}

.about-choice.music-videos-choice .about-choice__item-title {
  font-weight: 400;
  font-size: 24px !important;
}

.about-choice__title {
  max-width: 746px;
  margin: 0 auto 41px;
  text-transform: capitalize;
}

.about-choice__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.about-choice__column {
  width: 33.333%;
  padding: 44px 12px 0;
  margin-bottom: 30px;
}

.about-choice__item {
  height: 100%;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(10deg, #151515, #252525);
  padding: 72px 32px 42px;
}

.about-choice__icon {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #141414;
  -webkit-box-shadow: 0 4px 19px rgba(185, 185, 185, 0.05);
  box-shadow: 0 4px 19px rgba(185, 185, 185, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-choice__icon img {
  display: block;
  width: 44px;
  height: auto;
}

.about-choice__item-title {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.375;
  color: #ffffff;
}

.about-choice__text {
  font-weight: 100;
  color: #D0D0D0;
}

.about-choice__list {
  list-style: none;
  margin-top: 20px;
}

.about-choice__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.45;
  color: #D0D0D0;
}

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

.about-choice__list-item span {
  font-weight: 800;
  color: #ffffff;
}

.about-choice__list-item a {
  color: inherit;
}

.about-choice__list-item::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("../images/icons/icon-list-item-true2.svg") center center/contain no-repeat;
  position: absolute;
  left: 1px;
  top: 1px;
}

.about-choice__main-link {
  margin: 42px auto 26px;
  padding-left: 28px;
  padding-right: 28px;
}

.about-choice__sublink-text {
  font-weight: 100;
  font-size: 14px;
  line-height: 1.04;
  color: #949494;
}

.inner-top {
  position: relative;
}

.inner-top__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.inner-top__bg img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.4;
}

.inner-top__bg.desktop-bottom img {
  -o-object-position: center bottom;
  object-position: center bottom;
}

.inner-top__bg.desktop-top img {
  -o-object-position: center top;
  object-position: center top;
}

.inner-top__bg::after {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 6, 6, 0)), to(#060606));
  background: linear-gradient(180deg, rgba(6, 6, 6, 0), #060606);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-top__content {
  position: relative;
  z-index: 1;
  min-height: 780px;
  padding: 97px 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.inner-top__content.type2 {
  padding-bottom: 88px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.inner-top__title {
  max-width: 746px;
  margin-bottom: 32px;
  line-height: 1.2;
  text-transform: capitalize;
}

.inner-top__big-title {
  font-weight: 100;
  font-size: 64px;
  line-height: 1.45;
  color: #ffffff;
  text-transform: uppercase;
}

.inner-top__big-title span {
  display: block;
}

.inner-top__big-title b {
  font-weight: 800;
}

.inner-top__text {
  max-width: 746px;
  font-size: 18px;
}

.inner-top__main-link {
  margin-top: 57px;
  padding-left: 28px;
  padding-right: 28px;
}

.description {
  padding: 70px 0 118px;
}

.description.podcasters-description {
  padding: 103px 0 114px;
}

.description.podcasters-description .description__item {
  margin-bottom: 111px;
}

.description.podcasters-description .description__item:last-of-type {
  margin-bottom: 0;
}

.description.podcast-videos-description {
  padding: 103px 0 100px;
}

.description.podcast-videos-description .description__item {
  margin-bottom: 115px;
}

.description.podcast-videos-description .description__item:last-of-type {
  margin-bottom: 0;
}

.description.trueplay-description {
  padding: 107px 0 153px;
}

.description.trueplay-description .description-item {
  margin-bottom: 100px;
}

.description.trueplay-description .description-item:last-of-type {
  margin-bottom: 0;
}

.description.trueplay-description .description-item__text {
  font-weight: 400;
}

.description__item {
  margin-bottom: 118px;
}

.description__item:last-of-type {
  margin-bottom: 0;
}

.description-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.description-item.reverse .description-item__image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-left: 0;
  margin-right: 30px;
}

.description-item__info {
  width: 517px;
  padding-bottom: 5px;
}

.description-item__title {
  margin-bottom: 29px;
  line-height: 1.375;
  text-transform: capitalize;
}

.description-item__title i {
  font-weight: 100;
  font-style: italic;
}

.description-item__text {
  line-height: 1.44;
}

.description-item__list {
  list-style: none;
  margin-top: 24px;
  margin-right: -2px;
}

.description-item__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  line-height: 1.45;
}

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

.description-item__list-item span {
  font-weight: 800;
  color: #ffffff;
}

.description-item__list-item::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("../images/icons/icon-list-item-true2.svg") center center/contain no-repeat;
  position: absolute;
  left: 1px;
  top: 1px;
}

.description-item__link {
  margin-top: 32px;
  padding: 18px 28px 17px;
  text-transform: capitalize;
}

.description-item__status {
  margin-top: 25px;
  font-weight: 400;
  line-height: 1.45;
}

.description-item__status span {
  font-weight: 800;
  color: #ffffff;
}

.description-item__status.status-closed,
.description-item__status.status-opens {
  position: relative;
  padding-left: 28px;
}

.description-item__status.status-closed::before,
.description-item__status.status-opens::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.description-item__status.status-closed::before {
  background-image: url("../images/icons/icon-status-closed.svg");
}

.description-item__status.status-opens::before {
  background-image: url("../images/icons/icon-status-opens.svg");
}

.description-item__image {
  width: 456px;
  margin-left: 30px;
}

.description-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

.description-item__image.content-image {
  border-radius: 24px;
  overflow: hidden;
}

.description-item__image.content-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.description-item__image.big-image {
  width: 488px;
}

.performans {
  padding: 119px 0 100px;
}

.performans__title {
  max-width: 746px;
  margin: 0 auto 20px;
  text-transform: capitalize;
}

.performans__slider-wrap {
  margin-top: 53px;
  padding: 0 26px;
  overflow: hidden;
}

.performans__slider {
  padding: 20px 0;
}

.performans__slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.performans__slide-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding-bottom: 100.2%;
  margin-bottom: 20px;
}

.performans__slide-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.performans__slide-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.performans__slide-text {
  margin-bottom: 18px;
  line-height: 1.4;
}

.performans__slide-link {
  margin-top: auto;
  padding-right: 21px;
  padding-left: 21px;
}

@media (min-width: 992px) {
  .header__menu-item.subitem:hover .header__menu-link,
  .header__menu-item.subitem:focus .header__menu-link {
    color: #9E9E9E;
  }

  .header__menu-item.subitem:hover .submenu,
  .header__menu-item.subitem:focus .submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) rotateX(0deg);
    transform: translateX(-50%) rotateX(0deg);
  }

  .header__menu-link:hover,
  .header__menu-link:focus {
    color: #9E9E9E;
  }
}

@media (min-width: 993px) {
  .button:hover,
  .button:focus {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .button-outlined:hover,
  .button-outlined:focus {
    opacity: 0.7;
  }

  .button-gradient:hover::after,
  .button-gradient:focus::after {
    opacity: 1;
  }

  .swiper-button-prev:hover,
  .swiper-button-prev:focus,
  .swiper-button-next:hover,
  .swiper-button-next:focus {
    background-color: #363636;
  }

  .swiper-button-prev:hover::after,
  .swiper-button-prev:focus::after,
  .swiper-button-next:hover::after,
  .swiper-button-next:focus::after {
    opacity: 1;
  }

  .header__navigation-wrap {
    display: block !important;
  }

  .submenu__list-link:hover .submenu__list-icon1 .basic,
  .submenu__list-link:focus .submenu__list-icon1 .basic,
  .submenu__list-link.active .submenu__list-icon1 .basic {
    opacity: 0;
  }

  .submenu__list-link:hover .submenu__list-icon1 .hover,
  .submenu__list-link:focus .submenu__list-icon1 .hover,
  .submenu__list-link.active .submenu__list-icon1 .hover {
    opacity: 1;
  }

  .submenu__list-link:hover .submenu__list-description,
  .submenu__list-link:focus .submenu__list-description,
  .submenu__list-link.active .submenu__list-description {
    color: #000000;
  }

  .information__text a:hover,
  .information__text a:focus {
    text-decoration: underline;
  }

  .information__link:hover,
  .information__link:focus {
    opacity: 0.5;
  }

  .footer__menu-link:hover,
  .footer__menu-link:focus {
    text-decoration: underline;
  }

  .footer__submenu-link:hover,
  .footer__submenu-link:focus {
    text-decoration: underline;
  }

  .footer__socials-link:hover,
  .footer__socials-link:focus {
    opacity: 0.5;
  }

  .footer__help-link:hover,
  .footer__help-link:focus {
    text-decoration: underline;
  }

  .select .new-select__item:hover,
  .select .new-select__item:focus {
    color: #000000;
  }

  .blog-controls__tag:hover,
  .blog-controls__tag:focus {
    background-color: #363636;
  }

  .blog-controls__tag:hover.active,
  .blog-controls__tag:focus.active {
    background-color: #ffffff;
  }

  .blog-controls__search-submit:hover,
  .blog-controls__search-submit:focus {
    background-color: rgba(217, 217, 217, 0.2);
  }

  .articles__item:hover .articles__item-image img,
  .articles__item:focus .articles__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .article-content__body p a:hover,
  .article-content__body p a:focus {
    text-decoration: underline;
  }

  .article-content__body img + span a:hover,
  .article-content__body img + span a:focus,
  .article-content__body picture + span a:hover,
  .article-content__body picture + span a:focus {
    text-decoration: underline;
  }

  .tags__item:hover,
  .tags__item:focus {
    opacity: 0.75;
  }

  .share-block__list-link:hover,
  .share-block__list-link:focus {
    opacity: 0.5;
  }

  .faq-item__question:hover span,
  .faq-item__question:focus span {
    text-decoration: underline;
  }
}

@media (max-width: 992px) {
  .head-compensation {
    height: 70px;
  }

  h1,
  .main-title {
    font-size: 40px;
  }

  h2,
  .big-title {
    font-size: 36px;
  }

  h3,
  .medium-title {
    font-size: 30px;
  }

  h4,
  .small-title {
    font-size: 22px;
  }

  .header {
    padding: 28px 0 15px;
  }

  .header__submenu-back {
    position: fixed;
    top: 22px;
    left: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    font-weight: 800;
    line-height: 1.04;
    color: #A2CF64;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .header__submenu-back img {
    display: block;
    width: 8px;
    margin-right: 8px;
  }

  .header__submenu-back.active {
    pointer-events: all;
    opacity: 0.64;
    z-index: 13;
  }

  .header__navigation-wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .header__navigation-wrap.open .header__navigation {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__navigation-wrap::before {
    content: '';
    width: 100%;
    height: 60px;
    background-color: #060606;
    position: absolute;
    left: 0;
    top: 0;
  }

  .header__navigation {
    height: 100%;
    max-width: 400px;
    margin-left: auto;
    background-color: #060606;
    padding: 59px 0 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    position: relative;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

  .header__menu {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
    border-top: 1px solid #1E1E1E;
    padding: 21px 16px 0;
    border-radius: 0;
    background-color: transparent;
  }

  .header__menu-item {
    border-bottom: 1px solid #1E1E1E;
    padding-right: 24px;
    position: relative;
  }

  .header__menu-link {
    width: 100%;
    border-radius: 0;
    padding: 24px 0 20px;
    font-weight: 800;
    font-size: 18px;
  }

  .header__menu-link.active {
    background-color: transparent;
    color: #ffffff;
  }

  .header__menu-arrow {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../images/icons/icon-slider-arrow-right-white.svg") center center/9px auto no-repeat;
  }

  .header__actions {
    position: absolute;
    left: 0;
    bottom: 14px;
    z-index: 13;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 6px;
  }

  .header__actions a {
    margin: 0 6px 10px;
  }

  .header__user-block {
    margin: 0 6px 10px;
  }

  .header__burger {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 15;
  }

  .header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

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

  .header__burger span:last-child {
    width: 13px;
    top: auto;
    bottom: 4px;
  }

  .header__burger.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    right: 3px;
  }

  .header__burger.active span:first-child {
    width: 18px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .header__burger.active span:last-child {
    width: 18px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .submenu {
    position: fixed;
    left: auto;
    right: 0;
    top: 0;
    z-index: 12;
    -webkit-transform: translateX(0) rotateX(-90deg);
    transform: translateX(0) rotateX(-90deg);
    width: 400px;
    height: 100vh;
    padding: 59px 0 90px;
    background-color: #060606;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .submenu::before {
    display: none;
  }

  .submenu.open,
  .submenu.test {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0) rotateX(0deg);
    transform: translateX(0) rotateX(0deg);
  }

  .submenu__inner {
    border-radius: 0;
    background-color: transparent;
    padding: 32px 0 0;
    border-top: 1px solid #1E1E1E;
  }

  .submenu__item {
    padding: 0 16px 2px;
    border-bottom-color: #1E1E1E;
  }

  .submenu__item:last-of-type {
    border-bottom: 1px solid #1E1E1E;
  }

  .submenu__list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    margin-right: 0;
  }

  .submenu__list-item {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .submenu__list-link {
    font-size: 16px;
    color: #707070;
  }

  .submenu__list-icons {
    margin-right: 12px;
  }

  .submenu__list-icons.big-icons {
    margin-right: 14px;
  }

  .submenu__list-icons.big-icons .submenu__list-icon2 {
    width: 32px;
    height: 32px;
  }

  .submenu__list-icon1 {
    display: none;
  }

  .submenu__list-icon2 {
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .submenu__list-category {
    color: #ffffff;
  }

  .main-top.about-top .main-top__inner {
    min-height: 600px;
  }

  .main-top__inner {
    min-height: 600px;
  }

  .main-top__title {
    margin-bottom: 25px;
  }

  .main-top__title span {
    display: inline;
  }

  .main-top__images {
    width: 360px;
  }

  .sponsors__block {
    margin: 0 4px;
  }

  .sponsors__item {
    padding: 0 12px;
  }

  .information {
    padding: 100px 0 75px;
  }

  .information.app-section {
    padding: 75px 0;
  }

  .information.help-section {
    padding: 75px 0;
  }

  .information.streaming-section {
    padding: 50px 0 75px;
  }

  .information.about-from {
    padding: 55px 0 65px;
  }

  .information.musicians-join {
    padding: 75px 0 65px;
  }

  .information.podcasters-audience {
    padding: 75px 0 65px;
  }

  .information.podcasters-upgrade {
    padding: 75px 0;
  }

  .information.podcats-videos-upload {
    padding: 83px 0 60px;
  }

  .information.music-videos-upload {
    padding: 83px 0 60px;
  }

  .information.merch-upload {
    padding: 83px 0 60px;
  }

  .information.trueplay-creator {
    padding: 75px 0;
  }

  .information__icon {
    height: 100px;
    margin-bottom: 20px;
  }

  .information__logotypes-item {
    width: 25%;
  }

  .information__items {
    margin-top: 47px;
  }

  .features {
    padding: 75px 0;
  }

  .features__item {
    padding: 0;
    margin-bottom: 90px;
  }

  .features__item-title {
    margin-bottom: 25px;
  }

  .features__item-link {
    margin-top: 26px;
  }

  .platform {
    padding: 75px 0;
  }

  .platform.pricing-platform {
    padding: 75px 0;
  }

  .tariff-slide {
    padding-bottom: 30px;
  }

  .tariff-slide__price-amount {
    font-size: 28px;
  }

  .tariff-slide__price-period {
    font-size: 14px;
  }

  .tariff-slide__target {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .tariff-slide__get-start {
    margin-bottom: 27px;
    font-size: 14px;
  }

  .tariff-slide__list {
    padding-top: 28px;
  }

  .tariff-slide__list-item {
    padding-left: 31px;
    margin-bottom: 11px;
    font-size: 13px;
  }

  .tariff-slide__list-item::before {
    width: 19px;
    height: 19px;
    left: 2px;
    top: 1px;
  }

  .footer__main-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .footer__info {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer__navigation {
    width: 100%;
  }

  .blog {
    padding: 26px 0 63px;
  }

  .blog__info {
    margin-bottom: 44px;
    margin-top: 48px;
  }

  .blog__controls {
    margin-bottom: 30px;
  }

  .blog-info__title {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .blog-info__service-info {
    margin-top: 19px;
  }

  .service-info__views {
    margin-left: 35px;
  }

  .blog-controls__search-wrap {
    width: 250px;
  }

  .articles__block {
    margin: 0 -5px;
  }

  .articles__column {
    padding: 0 5px;
    margin-bottom: 31px;
  }

  .articles__item-image {
    margin-bottom: 19px;
  }

  .articles__item-title {
    font-size: 18px;
  }

  .articles__load {
    padding-top: 0;
  }

  .article-content {
    padding-top: 60px;
  }

  .article-content__heading {
    margin-bottom: 56px;
  }

  .article-content__title {
    margin-bottom: 25px;
  }

  .article-content .service-info {
    font-size: 14px;
  }

  .article-content .service-info__timedate-item {
    padding-right: 19px;
  }

  .article-content .service-info__timedate-item::after {
    top: 8px;
  }

  .article-content .service-info__views {
    padding-left: 22px;
  }

  .article-content .service-info__views::before {
    width: 16px;
    height: 16px;
  }

  .article-content__main-image {
    margin-top: 51px;
    border-radius: 12px;
  }

  .article-content__body * + h2 {
    margin-top: 46px;
  }

  .article-content__body p + p {
    margin-top: 22px;
  }

  .article-content__body h2 {
    font-size: 32px;
  }

  .article-content__body img,
  .article-content__body picture {
    margin-top: 5px;
    margin-bottom: 6px;
  }

  .article-content__tags {
    margin-top: 46px;
  }

  .tags__item {
    padding: 8px 17px 9px 16px;
    font-size: 13px;
  }

  .share-block__title {
    font-size: 16px;
  }

  .share-block__list {
    margin: 0 -11px;
  }

  .share-block__list-item {
    padding: 0 11px;
  }

  .share-block__list-link {
    width: 28px;
  }

  .related-articles {
    padding: 48px 0 28px;
  }

  .related-articles__title {
    margin-bottom: 36px;
    font-size: 26px;
  }

  .reviews.audiobooks-reviews {
    padding: 75px 0;
  }

  .faq {
    padding: 50px 0 72px;
  }

  .faq__text {
    font-size: 16px;
  }

  .faq-item__question {
    font-size: 20px;
  }

  .about-info {
    padding: 80px 0 60px;
  }

  .about-info__block {
    margin: 0 -12px;
  }

  .about-info__item {
    padding: 0 12px;
    margin-bottom: 25px;
  }

  .about-info__title {
    margin-bottom: 25px;
  }

  .about-info__text {
    font-size: 16px;
  }

  .about-choice {
    padding: 75px 0;
  }

  .about-choice.musicians-choice .about-choice__column {
    margin-bottom: 33px;
  }

  .about-choice.musicians-choice .about-choice__item {
    padding: 64px 35px 33px;
  }

  .about-choice.musicians-choice .about-choice__icon {
    width: 80px;
    height: 80px;
  }

  .about-choice.musicians-choice .about-choice__icon img {
    width: 40px;
  }

  .about-choice.podcasters-choice {
    padding: 80px 0 60px;
  }

  .about-choice.podcasters-choice .about-choice__column {
    margin-bottom: 33px;
  }

  .about-choice.podcasters-choice .about-choice__item {
    padding: 64px 28px 31px;
  }

  .about-choice.podcasters-choice .about-choice__icon {
    width: 80px;
    height: 80px;
  }

  .about-choice.podcasters-choice .about-choice__icon img {
    width: 40px;
  }

  .about-choice.music-videos-choice {
    padding: 80px 0 60px;
  }

  .about-choice.music-videos-choice .about-choice__column {
    margin-bottom: 33px;
  }

  .about-choice.music-videos-choice .about-choice__item {
    padding: 64px 35px 34px;
  }

  .about-choice.music-videos-choice .about-choice__icon {
    width: 80px;
    height: 80px;
  }

  .about-choice.music-videos-choice .about-choice__icon img {
    width: 40px;
  }

  .about-choice__column {
    padding-top: 35px;
    margin-bottom: 20px;
  }

  .about-choice__item {
    padding: 45px 20px 25px;
  }

  .about-choice__icon {
    width: 70px;
    height: 70px;
  }

  .about-choice__icon img {
    width: 36px;
  }

  .about-choice__item-title {
    font-size: 22px;
  }

  .inner-top__content {
    padding-top: 80px;
  }

  .inner-top__content.type2 {
    padding-bottom: 60px;
  }

  .inner-top__content.type2 {
    padding-bottom: 40px;
  }

  .inner-top__big-title {
    font-size: 56px;
  }

  .description {
    padding: 30px 0 80px;
  }

  .description.podcasters-description {
    padding: 75px 0;
  }

  .description.podcasters-description .description__item {
    margin-bottom: 80px;
  }

  .description.podcast-videos-description {
    padding: 75px 0;
  }

  .description.podcast-videos-description .description__item {
    margin-bottom: 80px;
  }

  .description.trueplay-description {
    padding: 75px 0;
  }

  .description.trueplay-description .description-item {
    margin-bottom: 80px;
  }

  .description__item {
    margin-bottom: 80px;
  }

  .description-item__title {
    margin-bottom: 23px;
  }

  .description-item__link {
    margin-top: 26px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 992px) and (max-width: 576px) {
  .header__navigation {
    max-width: 100%;
  }

  .submenu {
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 768px) {
  .main-top.about-top .main-top__inner {
    min-height: auto;
  }

  .main-top__inner {
    min-height: auto;
  }

  .main-top__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-top__info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 48px;
  }

  .sponsors__item {
    width: 33.333%;
  }

  .information__logotypes-item {
    width: 33.333%;
  }

  .information__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .information__item-image {
    width: 450px;
    margin-bottom: 40px;
    border-radius: 16px;
  }

  .information__item-info {
    width: 100%;
    margin-left: 0;
  }

  .features__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .features__item-info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 37px;
  }

  .features__item-text {
    line-height: 1.6;
  }

  .features__item-image {
    width: 400px;
  }

  .footer__menu-link {
    font-size: 14px;
  }

  .footer__submenu-link {
    font-size: 14px;
  }

  .footer__help {
    font-size: 13px;
  }

  .blog-info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .blog-info__image {
    width: 400px;
    margin-right: 0;
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .blog-info__content {
    width: 100%;
    padding-top: 0;
  }

  .articles__column {
    width: 50%;
  }

  .faq__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq__info {
    width: 100%;
    margin-bottom: 31px;
  }

  .faq__list {
    width: 100%;
    margin-left: 0;
  }

  .faq-item__answer {
    padding: 9px 0 30px 0;
  }

  .about-choice__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-choice__column {
    width: 50%;
  }

  .inner-top__bg.mobile-left img {
    -o-object-position: left top;
    object-position: left top;
  }

  .inner-top__bg.mobile-right img {
    -o-object-position: right top;
    object-position: right top;
  }

  .inner-top__big-title {
    font-size: 52px;
  }

  .description.podcasters-description .description__item {
    margin-bottom: 62px;
  }

  .description.podcast-videos-description .description__item {
    margin-bottom: 62px;
  }

  .description__item {
    margin-bottom: 62px;
  }

  .description-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .description-item.reverse .description-item__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
  }

  .description-item__info {
    width: 100%;
    margin-bottom: 34px;
  }

  .description-item__image {
    width: 400px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .button-outlined {
    padding: 12px 28px 12px;
    font-size: 14px;
  }

  .button-gradient {
    padding: 18px 28px 16px;
    font-size: 14px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    top: 50%;
  }

  .swiper-button-prev {
    left: -21px;
  }

  .swiper-button-next {
    right: -21px;
  }

  h1,
  .main-title {
    font-size: 36px;
  }

  h2,
  .big-title {
    font-size: 32px;
    line-height: 1.2;
  }

  h3,
  .medium-title {
    font-size: 28px;
  }

  h4,
  .small-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .header__logo {
    width: 172px;
  }

  .header__login {
    padding: 12px 25px 11px;
  }

  .header__signup {
    padding: 13px 20px 12px;
  }

  .main-top {
    padding-top: 65px;
  }

  .main-top__inner {
    padding-bottom: 63px;
  }

  .main-top__title {
    margin-bottom: 17px;
  }

  .main-top__text {
    font-size: 16px;
  }

  .main-top__actions-link {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-top__actions-notice {
    font-size: 13px;
  }

  .main-top__images-photo {
    border-radius: 16px;
  }

  .main-top__images-info {
    min-height: 134px;
    border-radius: 16px;
    padding: 20px 20px;
  }

  .sponsors {
    padding: 28px 0 22px;
  }

  .information {
    padding: 63px 0 56px;
  }

  .information.app-section {
    padding: 55px 0 45px;
  }

  .information.help-section {
    padding: 56px 0 52px;
  }

  .information.help-section .information__title {
    margin-bottom: 25px;
  }

  .information.help-section .information__text {
    padding: 0 10px;
    line-height: 1.72;
  }

  .information.streaming-section {
    padding: 22px 0 30px;
  }

  .information.streaming-section .information__actions {
    margin-top: 31px;
  }

  .information.about-from {
    padding: 25px 0 50px;
  }

  .information.musicians-join {
    padding: 55px 0 51px;
  }

  .information.podcasters-audience {
    padding: 55px 0 53px;
  }

  .information.podcasters-audience .button-outlined,
  .information.podcasters-audience .button-gradient {
    padding-right: 24px;
    padding-left: 24px;
  }

  .information.podcasters-upgrade {
    padding: 62px 0 63px;
  }

  .information.podcasters-upgrade .information__actions {
    margin-top: 32px;
  }

  .information.podcats-videos-upload {
    padding-bottom: 30px;
  }

  .information.music-videos-upload {
    padding-bottom: 37px;
  }

  .information.merch-upload {
    padding-bottom: 37px;
  }

  .information.trueplay-creator {
    padding: 25px 0;
  }

  .information.trueplay-creator .information__icon {
    height: 95px;
    margin-bottom: 33px;
  }

  .information__icon {
    height: 80px;
  }

  .information__title {
    margin-bottom: 24px;
  }

  .information__text {
    font-size: 16px;
  }

  .information__logotypes {
    margin: 38px auto -20px;
  }

  .information__actions {
    margin-top: 35px;
  }

  .information__link {
    margin: 0 8px 10px;
    max-width: calc(50% - 16px);
  }

  .information__link img {
    width: 100%;
    max-width: 156px;
  }

  .information__link.button-outlined,
  .information__link.button-gradient {
    max-width: 100%;
  }

  .information__link.button-outlined {
    padding-right: 20px;
    padding-left: 20px;
  }

  .features {
    padding: 55px 0 54px;
  }

  .features__item {
    margin-bottom: 61px;
  }

  .features__item-link {
    padding-left: 33px;
    padding-right: 33px;
  }

  .platform {
    padding: 55px 0;
  }

  .platform.pricing-platform {
    padding: 45px 0 40px;
  }

  .platform__title {
    margin-bottom: 25px;
  }

  .platform__text {
    font-size: 16px;
  }

  .platform__slider-wrap {
    margin: 0 -16px;
    padding: 0 37px;
  }

  .platform__slider {
    padding: 60px 0 50px;
  }

  .platform__main-link {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 16px;
  }

  .platform__sublink-text {
    font-size: 13px;
  }

  .tariff-slide__price {
    margin-bottom: 15px;
  }

  .tariff-slide__name {
    margin-bottom: 4px;
  }

  .footer__top {
    padding: 58px 0 33px;
  }

  .footer__main-block {
    margin-bottom: 3px;
  }

  .footer__info {
    margin-bottom: 51px;
  }

  .footer__menu-item {
    width: 50%;
    max-width: 50%;
    margin-bottom: 24px;
  }

  .footer__menu-link {
    margin-bottom: 27px;
  }

  .footer__submenu-item {
    margin-bottom: 19px;
  }

  .footer__socials {
    margin-bottom: 14px;
  }

  .footer__socials-item {
    margin-right: 11px;
    margin-left: 11px;
  }

  .footer__help {
    margin-left: -18px;
  }

  .footer__help-item {
    padding-left: 18px;
  }

  .footer__help-item::before {
    left: 8px;
    top: 9px;
  }

  .footer__sertificats {
    margin: 0 -12px;
  }

  .footer__sertificats-item {
    padding: 0 12px;
  }

  .modal__content-wrap {
    left: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    border-radius: 24px 24px 0 0;
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 28px;
  }

  .modal__close {
    width: 30px;
    height: 30px;
    right: 23px;
    top: 23px;
  }

  .modal__main-content {
    width: 100%;
    padding: 0;
  }

  .modal__main-title {
    margin-bottom: 10px;
  }

  .modal__main-text {
    margin-bottom: 24px;
    line-height: 19px;
  }

  .modal__thanks-content {
    width: 100%;
    padding-top: 40px;
    margin-bottom: -4px;
  }

  .modal__thanks-link {
    width: 100%;
    margin-top: 35px;
  }

  .contact-form__item {
    margin-bottom: 12px;
  }

  .contact-form__submit {
    width: 100%;
    margin-top: 27px;
  }

  .blog__main-title {
    line-height: 1.3;
  }

  .blog__main-text {
    font-size: 16px;
  }

  .blog-info__title {
    font-size: 24px;
  }

  .blog-controls {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .blog-controls__tags-wrap {
    width: 100%;
    position: relative;
    margin-right: -16px;
  }

  .blog-controls__tags-wrap::after {
    content: '';
    width: 24px;
    height: calc(100% + 10px);
    background: -webkit-gradient(linear, left top, right top, from(rgba(6, 6, 6, 0)), to(#060606));
    background: linear-gradient(90deg, rgba(6, 6, 6, 0), #060606);
    position: absolute;
    right: -1px;
    top: -5px;
    opacity: 0.88;
  }

  .blog-controls__tags {
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-top: 0;
    margin-bottom: 10px;
    overflow-x: auto;
  }

  .blog-controls__tag {
    padding: 9px 16px 10px 17px;
    margin-right: 8px;
    white-space: nowrap;
    font-size: 13px;
  }

  .blog-controls__search-wrap {
    margin-left: 0;
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .articles__item-title {
    font-size: 16px;
  }

  .load-block__button {
    padding: 14px 24px 13px;
  }

  .article-content {
    padding: 27px 0 43px;
  }

  .article-content__title {
    line-height: 1.3;
  }

  .article-content__body h2 {
    font-size: 28px;
  }

  .share-block {
    padding: 48px 0 36px;
  }

  .related-articles__title {
    font-size: 24px;
    line-height: 1.25;
  }

  .reviews {
    padding: 34px 0 20px;
  }

  .reviews.audiobooks-reviews {
    padding: 34px 0 20px;
  }

  .reviews__title {
    line-height: 1.34;
  }

  .reviews__slider-wrap {
    margin-top: 22px;
    padding: 0 22px;
  }

  .reviews__arrow {
    top: 50%;
  }

  .faq {
    padding-top: 26px;
  }

  .faq-item__question {
    padding: 15px 40px 15px 0;
    font-size: 18px;
  }

  .faq-item__question::after {
    width: 18px;
    height: 18px;
  }

  .about-info {
    padding: 65px 0 30px;
  }

  .about-info__item {
    width: 100%;
    margin-bottom: 35px;
  }

  .about-choice {
    padding-top: 60px;
  }

  .about-choice.musicians-choice {
    padding: 39px 0 30px;
  }

  .about-choice.musicians-choice .about-choice__title {
    margin-bottom: 38px;
  }

  .about-choice.musicians-choice .about-choice__item-title {
    margin-bottom: 12px;
  }

  .about-choice.podcasters-choice {
    padding: 63px 0 30px;
  }

  .about-choice.podcasters-choice .about-choice__title {
    margin-bottom: 37px;
  }

  .about-choice.podcasters-choice .about-choice__item-title {
    margin-bottom: 12px;
  }

  .about-choice.podcasters-choice .about-choice__main-link {
    display: none;
  }

  .about-choice.music-videos-choice {
    padding: 55px 0 22px;
  }

  .about-choice.music-videos-choice .about-choice__title {
    margin-bottom: 37px;
  }

  .about-choice.music-videos-choice .about-choice__item-title {
    margin-bottom: 12px;
  }

  .about-choice__title {
    margin-bottom: 30px;
  }

  .about-choice__column {
    width: 100%;
  }

  .about-choice__item-title {
    font-size: 20px;
  }

  .about-choice__main-link {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 16px;
  }

  .about-choice__sublink-text {
    font-size: 13px;
  }

  .inner-top__bg {
    height: auto;
    padding-bottom: 133.5%;
  }

  .inner-top__bg img {
    -o-object-position: center top;
    object-position: center top;
  }

  .inner-top__content {
    min-height: 570px;
    height: 100vh;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 32px;
  }

  .inner-top__title {
    margin-bottom: 18px;
  }

  .inner-top__big-title {
    font-size: 48px;
    line-height: 1.28;
  }

  .inner-top__big-title b {
    display: block;
  }

  .inner-top__text {
    font-size: 16px;
  }

  .inner-top__main-link {
    margin-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .description {
    padding: 9px 0 55px;
  }

  .description.podcasters-description {
    padding: 39px 0 57px;
  }

  .description.podcasters-description .description-item__text {
    line-height: 1.45;
  }

  .description.podcast-videos-description {
    padding: 39px 0 55px;
  }

  .description.podcast-videos-description .description-item__text {
    line-height: 1.45;
  }

  .description.podcast-videos-description .description-item__image.content-image {
    border-radius: 16px;
  }

  .description.trueplay-description {
    padding: 39px 0 64px;
  }

  .description.trueplay-description .description-item {
    margin-bottom: 63px;
  }

  .description.trueplay-description .description-item__text {
    line-height: 1.45;
    margin-right: -2px;
  }

  .description-item__text {
    line-height: 1.63;
  }

  .description-item__list {
    margin: 20px 0 -4px 0;
  }

  .description-item__list-item {
    margin-bottom: 16px;
  }

  .description-item__status {
    margin-top: 21px;
  }

  .performans {
    padding: 57px 0 39px;
  }

  .performans__title {
    line-height: 1.34;
  }

  .performans__slider-wrap {
    margin-top: 22px;
    padding: 0 19px;
  }

  .performans__slide-image {
    padding-bottom: 101%;
  }

  .performans__slide-link {
    padding: 14px 30px 15px;
  }

  .performans__arrow.prev {
    left: -19px;
  }

  .performans__arrow.next {
    right: -19px;
  }
}

@media (max-width: 400px) {
  .main-top__actions {
    margin-top: 33px;
    width: 100%;
  }

  .main-top__actions-notice {
    padding: 0 10px;
    margin: 0 auto;
  }

  .main-top__images {
    width: calc(100% + 13px);
    margin: 0 -6px 0 -7px;
  }

  .main-top__images-column {
    padding: 0 6px 0 7px;
  }

  .main-top__images-column:nth-child(even) .main-top__images-info {
    margin-bottom: 13px;
  }

  .main-top__images-info {
    margin-top: 13px;
  }

  .sponsors__item {
    width: 50%;
  }

  .sponsors__item img {
    max-width: 142px;
  }

  .information__logotypes-item {
    width: 50%;
  }

  .footer__bottom {
    padding: 37px 0 8px;
  }

  .footer__sertificats {
    max-width: 275px;
    margin: 0 auto;
  }

  .footer__sertificats-item {
    width: 50%;
    margin-bottom: 35px;
  }

  .footer__sertificats-item.big-image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .articles__column {
    width: 100%;
  }

  .articles__item-title {
    font-size: 20px;
  }
}