@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  margin: 30px 0;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}
button,
[role=button] {
  cursor: pointer;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.page--content {
  padding: 60px 0;
  background: #F0F3F7;
}
.page--breadcrumbs {
  padding: 20px 0;
}
.updated {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}
.updated--inner {
  padding: 10px 15px;
  border-radius: 12px;
}
.post-entry {
  font-size: 16px;
}
.post-entry a {
  color: rgb(252, 101, 143);
}
.post-entry h2 {
  margin: 30px 0 16px;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  color: #19232C;
}
.post-entry h2:first-child {
  margin-top: 0;
}
.post-entry h3 {
  margin: 30px 0 16px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 400;
  color: #19232C;
}
.post-entry h3:first-child {
  margin-top: 0;
}
.post-entry p {
  margin: 16px 0;
  line-height: 1.7;
  color: #4A5B68;
}
.post-entry ul {
  padding-left: 0;
}
.post-entry ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #19232C;
}
.post-entry ul li:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #7528AB;
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.post-entry ol {
  list-style: none;
  counter-reset: list;
  padding-left: 0;
}
.post-entry ol li {
  position: relative;
  counter-increment: list;
  list-style: none;
  padding-left: 68px;
  margin-bottom: 24px;
  color: #19232C;
}
.post-entry ol li:before {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  content: counter(list);
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  color: #f8e4fe;
  background: #7528AB;
  border-radius: 50%;
  font-size: 22px;
  left: 0;
  top: -7px;
}
.post-entry .wp-block-group {
  margin: 30px 0;
  padding: 40px;
}
.post-entry .wp-block-columns {
  margin: 30px 0;
  gap: 30px;
  justify-content: center;
}
.post-entry .wp-block-image {
  margin: 15px 0;
  border-radius: 16px;
  overflow: hidden;
}
.post-entry .wp-block-buttons .wp-block-button__link {
  min-width: 100px;
}
.post-entry .wp-block-table {
  margin: 16px 0;
  border-radius: 16px;
  padding: 0;
}
.post-entry .wp-block-table table {
  border-spacing: 0;
}
.post-entry .wp-block-table table tr {
  border-spacing: 0 10px;
  background: #FFFFFF;
}
.post-entry .wp-block-table table td,
.post-entry .wp-block-table table th {
  padding: 16px 24px;
  background: #F0F3F7;
  border: none;
  color: #4A5B68;
}
.post-entry .wp-block-table table tr:nth-child(odd) td,
.post-entry .wp-block-table table tr:nth-child(odd) th {
  background-color: transparent;
  color: #4A5B68;;
}
.post-entry .wp-block-table table thead {
  border-bottom: none;
}
.post-entry .wp-block-table table thead tr th,
.post-entry .wp-block-table table thead tr td {
  background: #000 !important;
}
.post-entry .wp-block-table table thead tr th:first-child,
.post-entry .wp-block-table table thead tr td:first-child {
  border-radius: 10px 0 0 0;
}
.post-entry .wp-block-table table thead tr th:last-child,
.post-entry .wp-block-table table thead tr td:last-child {
  border-radius: 0 10px 0 0;
}
@media (max-width: 1024px) {
  .post-entry {
    font-size: 14px;
  }
  .post-entry h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
  }
  .post-entry h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
}
.btn-primary, .btn-border, .post-entry .wp-block-buttons .wp-block-button__link {
  background: #44BE4C;
  border-radius: 2px;
  padding: 15px 38px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: center;
}
.btn-border {
  background: transparent;
  border: 1px solid #FC6896;
  box-shadow: none;
}
.header {
  background: #19232C;
  padding: 32px 0 21px;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}
.header--top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}
.header--bottom-row {
  padding-top: 20px;
}
.header--mobile-row {
  display: none;
}
.header--menu-open {
  display: none;
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header--buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header--logo {
  display: block;
  width: 124px;
}
.header--logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.header--left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header--button {
  padding: 9px 25px;
  font-size: 14px;
}
.header--menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--menu ul li {
  list-style: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  justify-content: center;
}
.header--menu .menu a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.header--menu .menu a:hover {
  color: rgb(252, 101, 143);
}
.header--menu .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  background: #000;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  min-width: calc(100% + 35px);
}
.header--menu .menu .sub-menu a {
  display: block;
  white-space: nowrap;
}
.header--menu .menu > li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.header--menu .menu > li.menu-item-has-children:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 11px;
  height: 6px;
  background-image: url(//www.mp3indirv.net/wp-content/themes/theme/dist/styles/../../images/angle-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.header--menu .menu > li.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
.header--menu .menu > li.menu-item-has-children:hover > .sub-menu {
  display: flex;
}
@media (max-width: 1024px) {
  .header--button {
    padding: 9px;
  }
  .header--top-right {
    gap: 15px;
  }
  .header--logo {
    display: none;
  }
  .header--menu-open {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background-color: #4A3247;
    border-radius: 12px;
  }
  .header--menu {
    display: none;
    position: absolute;
    height: calc(100vh - 124px);
    top: 100%;
    width: 100vw;
    left: 0;
    background: #000;
  }
  .header--menu.menu-active {
    display: block;
  }
  .header--menu .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .header--menu .menu li:after {
    display: none !important;
  }
  .header--menu .menu .sub-menu {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .header--mobile-row {
    display: block;
    margin-top: 15px;
  }
  .header--mobile-row .header--buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
}
.footer {
  background: #19232C;
  color: #fff;
  margin-top: 50px;
  padding: 58px 0 26px;
}
.footer--title {
  font-size: 18px;
  margin-bottom: 12px;
}
.footer--text {
  font-size: 13px;
}
.footer--top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15px;
}
.footer--top-right {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer--logo {
  max-width: 210px;
  margin-bottom: 22px;
}
.footer--socials {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.footer--social-item {
  width: 25px;
  height: 25px;
  display: block;
}
.footer--social-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer--line {
  margin: 32px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer--top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer--app {
  padding: 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
  background: #1b1d31;
}
.footer--app-text {
  color: #c4ced7;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  flex-direction: column;
}
.footer--app-text span {
  margin-top: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.footer--menu-title {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer--menu {
  display: flex;
  flex-direction: column;
}
.footer--menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.footer--menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.footer--menu a:hover {
  color: rgb(252, 101, 143);
}
.footer--logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer--logos img {
  height: 40px;
  width: auto;
}
.footer--copyright {
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.footer--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}
.footer--menu-bottom ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer--menu-bottom ul li {
  list-style: none;
}
.footer--menu-bottom ul a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1024px) {
  .footer--top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer--top-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.faq {
  margin: 30px 0;
}
.faq--item {
  padding: 28px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.faq--item.active .faq--text {
  display: block;
}
.faq--item.active .faq--title svg {
  transform: rotate(180deg);
}
.faq--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: left;
  color: #19232C;
  background: transparent;
}
.faq--title svg {
  width: 16px;
  transition: all 0.3s;
  fill: #041059;
}
.faq--text {
  display: none;
  padding: 9px 0 0;
}
.providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.providers--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  color: #fff !important;
}
.providers--item-logo {
  height: 100px;
  background: #1E1B1C;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 10px;
}
.providers--logo-inner {
  height: 100%;
  width: 100%;
}
.providers--logo-inner img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.providers--item-title {
  font-size: 20px;
  line-height: 18px;
  margin-bottom: 8px;
}
.providers--item-text {
  font-size: 16px;
  line-height: 22px;
  padding: 2px 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1024px) {
  .providers {
    display: flex;
    gap: 16px;
    margin-right: -15px;
    overflow-x: auto;
  }
  .providers--item {
    width: 210px;
    min-width: 210px;
  }
}
.hero {
  background-size: cover;
  background-position: center;
  background-color: #000;
  padding: 30px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero--title {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0.6px;
  font-weight: 400;
  width: 672px;
  margin-bottom: 15px;
  color: #fff;
}
.hero--text {
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}
.hero--col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero--link {
  min-width: 200px;
}
@media (max-width: 1024px) {
  .hero {
    min-height: 412px;
  }
  .hero--title {
    width: 100%;
    line-height: 32px;
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .page--content {
    padding: 50px 0;
  }
  .page--content-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
html,
body {
  margin-top: 0 !important;
  font-family: "Poppins", serif;
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 16px;
  background: #F0F3F7;
  color: #4A5B68;
}
.container {
  width: 1170px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.lang--switcher {
  position: relative;
  font-size: 14px;
  border-radius: 5px;
}
.lang--switcher:hover .lang--switcher-list {
  display: flex;
}
.lang--switcher:hover .lang--switcher-current svg {
  transform: rotate(180deg);
}
.lang--switcher-current {
  background: #27343F;
  padding: 6px 12px 6px 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang--switcher-current svg {
  max-width: 8px;
  transition: all 0.3s;
  position: relative;
}
.lang--switcher-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
.lang--switcher-item span {
  width: 16px;
  min-width: 16px;
}
.lang--switcher-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 6px;
  background: #27343F;
  z-index: 100;
  border-radius: 8px;
}