/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
    outline: none;
}

/* Убираем отступы */
body,
h1,
h2,
h3,
h4,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  margin: 12px 0;
}

h1 {
  color: #2C2C35;
  font-size: 50px;
  font-weight: 800;
  line-height: 110%;
  margin: 0 0 30px;
}

h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #2C2C35;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
}


h3 {
  color: #2C2C35;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
    line-height: 130%;
  }
}

button {
  font: inherit;
  outline: 0;
  border: 0;
}

button:focus {
  /* outline: 0;
  border: 0; */
}

table {
  border-spacing: 0;
}

td, th {
  text-align: left;
  padding: 4px 10px;
  border: 1px solid black;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  /* max-width: 1920px; */
  margin: 0 auto;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

ol {
  padding-inline-start: 20px;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input[type="text"],
textarea,
select {
  font: inherit;
  outline: 0;
  border: 0;
}

input[type="checkbox"] {
  display: inline-block;
  position: relative;
  min-width: 21px;
  min-height: 21px;
  border-radius: 3px;
}

.input-wrap input {
  font-size: 14px;
  padding: 0;
  border: 0;
  background: #ffffff;
}

.input-wrap .country-code {
  display: inline-flex;
  align-items: center;
  color: var(--Black, #2D2A2A) !important;
  padding-right: 5px;
}

.input-wrap--disabled .country-code {
  color: #737781;
}

.input-wrap .country-code a {
  display: inline-block;
  min-width: 40px;
  position: relative;
}

.input-wrap .country-code a::after {
  display: inline-block;
  content: '';
  position: absolute;
  right: 6px;
  top: 8px;
  border: 4px solid transparent;
  border-top: 6px solid #6C757D;
}


.input-wrap .country-code .icon.flag {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.input-wrap {
  border: 1px solid #C2C4CA;
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  margin: 4px 0;
}

.input-wrap--error {
  border: 1px solid red;
}

.input-wrap--disabled {
  border-width: 0;
  background: var(--Background, #F6F6F6);
}

.input-wrap--disabled .input {
  background: var(--Background, #F6F6F6);
  font-weight: 600;
}

.input-wrap .icon {
  position: relative;
}

.input-wrap .icon.copy {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  --svgcolor: #C2C4CA;

}

.copied {
  position: relative;
  /* visibility: hidden  !important; */
  opacity: 0.5 !important;
  transition: opacity 1s ease !important;
}

.copied:hover::after {
  position: absolute;
  left:-25px;
  top: -25px;
  display: flex;
  align-items: center;
  content: 'Скопировано';
  border-radius: 5px;
  background: #a9bdffad;
  width: 90px;
  height: 24px;
  padding: 4px;
  font-size: 13px;
  color: #000000;
}


a {
  text-decoration: none;
  color: #3F6DE5;
  transition: color 150ms ease-in-out;
}

a:hover {
  opacity: 0.8;
  transition: color 150ms ease-in-out;
}

span.green {
  color: #02AF8E !important;
}

span.red {
  color: #E55D5D !important;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
  font-family: "TildaSans";
  font-weight: 400;
  font-style: normal;
	font-display: swap;
  src: url("/fonts2/TildaSans/TildaSans-Regular.ttf") format("truetype");
}


@font-face {
  font-family: "TildaSans";
  font-weight: 500;
  font-style: normal;
	font-display: swap;
  src: url("/fonts2/TildaSans/TildaSans-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "TildaSans";
  font-weight: 600;
  font-style: normal;
	font-display: swap;
  src: url("/fonts2/TildaSans/TildaSans-Semibold.ttf") format("truetype");
}

@font-face {
  font-family: "TildaSans";
  font-weight: 800;
  font-style: normal;
	font-display: swap;
  src: url("/fonts2/TildaSans/TildaSans-Bold.ttf") format("truetype");
}


body {
  font-family: TildaSans;
  background: #F6F6F6;
  position: relative;
}

header {
  padding: 32px 0;
}

@media screen and (max-width: 990px) {
  header {
    padding: 26px 0;
    position: relative;
  }
}

main {
  min-height: 600px;
}

footer {

}

.hidden {
  display: none !important;
}

.center-container {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
}

section.main-promo {
  margin: 0 60px;
  border-radius: 50px;
  background: #ffffff;
  padding: 40px 0 60px;
}

@media screen and (max-width: 1380px) {
  section.main-promo {
    margin: 0 20px;
    padding: 30px 0 40px;
  }
}

@media screen and (max-width: 1280px) {
  .center-container {
    padding: 0 35px !important;
    max-width: 1240px !important;
  }
}

@media screen and (max-width: 990px) {
  .center-container {
    padding: 0 20px !important;
  }
}

.main-promo .tarifs-form__step-awards {
  max-width: 320px;
}

.main-promo__rating {
  border-radius: 12px;
  border: 1px solid #737781;
  width: 158px;
  height: 55px;
  display: flex;
  padding: 14px 9px;
  align-items: center;
  justify-content: space-between;
}


.main-promo__rating span.stars {
  display: inline-flex;
  align-items: center;
}

.main-promo__rating span.stars img {
  margin-right: 7px;
}

.main-promo__content {
  justify-content: space-between;
}

.main-promo__content .col {
  width: 100%;

}

.main-promo__content .col.col-left {
  padding-top: 32px;
  min-width: 575px;
}

.main-promo__title {
  color: #2C2C35;
  font-size: 50px;
  font-weight: 800;
  line-height: 110%;
  margin: 0 0 30px;
}

.main-promo__title h1 {
  margin: 0;
  display: inline;
}

.main-promo__title div {
  display: inline;
  /* margin-right: 14px; */
}

.main-promo__title-sub {
  color: #2C2C35;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.main-promo__title-sub ul li {
  margin: 8px 0;
}

.main-promo__title-actions {
  display: flex;
  margin-top: 32px;
  margin-bottom: 50px;
  max-width: 432px;
}

.main-promo__title-actions .button {
  /* max-width: 264px; */
  width: 100%;
  font-size: 16px !important;

}

.main-promo .breadcrumbs {
  padding-top: 0 !important;
}


.button.inactive {
  background: #cdd0d9;
  color: #ffffff !important;
}

.main-promo__content .col.col-right {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 990px) {
  .main-promo__content .col.col-right {
    display: none;

  }

  .main-promo__content .col.col-left {
    padding-top: 32px;
    min-width: unset;
  }

  .main-promo__content .col {
    max-width: 100%;

  }

}

@media screen and (max-width: 600px) {
  .main-promo__title-actions {
    flex-direction: column;
  }

  .main-promo__title-actions .button {
    max-width: 100%;

  }

  .main-promo__title-actions .button:not(:first-child) {
    margin-top: 20px
  }

  .main-promo__title {
    color: var(--Black, #2C2C35);
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    line-height: 110%;
  }

  .main-promo__title-sub {
    color: var(--Black, #2C2C35);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
  }

  .main-promo__rating {
    margin: 0 auto;
  }

  section.main-promo {
    border-radius: 24px;
  }
}

.button {
  cursor: pointer;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  opacity: 1;
  transition: opacity 500ms ease !important;
}

.block {
  display: block;
  width: 100%;
}

.button:hover {
  opacity: 0.8;
  transition: opacity 500ms ease !important;
}

@media screen and (max-width: 600px) {
  .button {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    padding: 14px;
  }
}


.button:not(:last-child) {
  margin-right: 24px;
}

.button:disabled {
  background: #9d9d9d !important;
  color: #ffffff !important;
}

.yellow-button {
  background: #FFD65A;
  color: #11132D;
}

.black-button {
  background: #2C2C35;
  color: #ffffff;
}



.white-button {
  background: #ffffff;
  color: #2C2C35;
  border-radius: 8px;
  border: 1px solid #000;
}

.button .icon {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.button .icon.logo {
  margin-bottom: -2px;
}

.yellow-button .icon {
  --svgcolor: #11132D;
}

.black-button .icon {
  --svgcolor: #ffffff;
}


.main-promo__platforms-title {
  padding-top: 24px;
  color: var(--Grey-button-link, #CED1D7);
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.main-promo__platforms-icons .icon {
  width: 32px;
  height: 32px;
}

.main-promo__platforms-icons .icon:not(:last-child) {
  margin-right: 26px;
  --svgcolor: #5C75C9;
}

@media screen and (max-width: 600px) {
  .main-promo__platforms-icons .icon:not(:last-child) {
    margin-right: 20px;
  }

  .main-promo__platforms {
    padding-top: 32px;
    text-align: center;
  }
}

section.guide {
  padding-top: 90px;
}

.guide-platforms {
  padding-bottom: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.guide-protocols {
  height: 0;
  /* overflow: hidden; */
  opacity: 0;
}

.guide-protocols--opened {
  height: auto;
  opacity: 1;
  transition: opacity 300ms ease-in
}

.guide-protocols-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.guide-platform-button,
.guide-protocol-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #2C2C35;
  padding: 14px 26px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 16px;
}

.guide-platform-button:not(:last-child),
.guide-protocol-button:not(:last-child) {
  margin-right: 24px;
}

.guide-platform-button .icon,
.guide-protocol-button .icon {
  width: 16px;
  height: 16px;
  --svgcolor: #515151;
  margin-right: 12px;
}


.guide-platform-button:hover,
.guide-platform-button.selected,
.guide-protocol-button:hover,
.guide-protocol-button.selected {
  background: #2C2C35;
  color: #ffffff;
  transition: all 300ms ease-out;
}

.guide-protocol-button .tooltip {
  position: relative;
}

.guide-platform-button:hover .icon,
.guide-platform-button.selected .icon,
.guide-protocol-button:hover .icon,
.guide-protocol-button.selected .icon {
  --svgcolor: #ffffff;
}

.guide-protocol-button span.text {
  text-align: left;
  display: none;
  position: absolute;
  bottom: 20px;
  right: -200px;
  border-radius: 23px;
  background: rgba(0, 0, 0, 0.85);
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  padding: 14px;
  width: 318px;
}

.guide-protocol-button .tooltip:hover span.text {
  display: block;
}

.guide-protocols .guide-protocol-button .icon {
  margin-left: 6px;
  margin-right: 0;
}

@media screen and (max-width: 600px) {
  .guide-platforms {
    flex-direction: column;
  }

  .guide button {
    width: 100%;
    margin-right: 0 !important;
  }
}


.guide-protocols-title {
  color: #515151;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 14px;
  text-align: center;
}

.guide-item:not(.show-block) {
  display: none;
}

.guide-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 50px auto;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
}

.violet {
  font-weight: 600;
  color: #5C75C9;
}

.icon.brand {
  width: 165px;
  height: 30px;
  --svgcolor: #2C2C35;
}

.header__desktop {
  width: 100%;
  display: flex;
}

.header__mobile {
  display: none;
}

.header__navigation {
  width: 100%;
  display: flex;
  justify-content: center;
}

.header__mobile-menu {
  /* height: 100%; */
  z-index: -999;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: var(--Background, #F6F6F6);
  padding: 0 20px;
}

.header__mobile-menu--opened {
  display: block;
  /* height: auto; */
  z-index: 999;
  opacity: 1;
  transition: opacity 300ms ease-in;
}

.header__mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
}

.header__mobile-menu-top .icon.close {
  width: 24px;
  height: 24px;
}

.header__mobile-menu-top .icon.brand {
  --svgcolor: #2C2C35;
  width: 135px;
  height: 24px;
}

.header__mobile-menu-content {
  padding: 20px 0 30px;
}

.header__mobile-menu-content-box {
  border-radius: 8px;
  background: var(--White, #FFF);
  padding: 14px 16px;
}

.header__mobile-menu-content-box > a {
  color: var(--Black, #2C2C35);
  font-weight: 600;
}


.header__mobile-menu-content-box:not(:last-child) {
  margin-bottom: 12px;
}

.header__mobile-menu-content-box .row {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__mobile-menu-content-box .row a {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}


.header__navigation-submenu .header__mobile-menu-content-block {
  padding: 14px 0;
  margin-left: -6px;
}

.header__navigation-submenu .header__mobile-menu-content-block a.row {
  color: var(--Dark-grey, #737781);
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
}

.header__mobile-menu-content-block .header__navigation-submenu {
  padding: 4px 0 !important;
}

.header__navigation-open .row {
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}


.header__mobile-menu-content-block .icon.next {
  width: 18px;
  height: 18px;
  margin-bottom: -4px;
  transform: rotate(90deg);
  --svgcolor: #2C2C35;
}

/* .header__navigation-open--opened  > a .icon.next {
  transform: rotate(-90deg) !important;
} */

.header__navigation-mobile-user-area .icon {
  width: 16px;
  height: 16px;
  --svgcolor: #2C2C35 !important;
  margin-right: 6px;
}


.header__mobile-menu-content > ul li {
  margin-bottom: 24px;
}

.header__mobile-menu-content ul li a {
  color: #2C2C35;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  display: inline-flex;
  align-items: center;
}

.header__mobile-menu-content ul li a:hover {
  color: #5C75C9
}

.header__mobile-menu-content .header__navigation-submenu {
  top: 14px;
  position: relative;
  box-shadow: unset;
  padding: 0 8px 2px;
}

.header__navigation-open--opened .header__navigation-submenu.header__navigation-submenu-flex {
  display: flex !important;
}

.header__mobile-menu-content .header__navigation-submenu li a {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 140% !important;
}

.header__mobile-menu-content .header__navigation-submenu li:not(:last-child) {
  margin-bottom: 18px !important
}


.header__mobile-menu-bottom {
  padding-bottom: 50px;
}

.header__mobile-menu-bottom button {
  width: 100%;
}

/* .header__navigation-open > a::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: -4px;
  margin-left: 2px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuNSAxMUw5IDYuNUwxMy41IDExTDEyLjQ1IDEyLjA1TDkgOC42TDUuNTUgMTIuMDVMNC41IDExWiIgZmlsbD0iIzVDNzVDOSIvPgo8L3N2Zz4K)
} */

.header__navigation-open > a .icon.next {
  width: 18px;
  height: 18px;
  margin-bottom: -4px;
  transform: rotate(90deg);
  --svgcolor: #2C2C35;
}

.header__navigation-open--opened  > a .icon.next {
  transform: rotate(-90deg) !important;
}




@media screen and (max-width: 990px) {
  .header__desktop {
    display: none;
  }

  .header__mobile {
    justify-content: flex-end;
    width: 100%;
    display: flex;
  }
}

.header__mobile .icon.menu {
  width: 24px;
  height: 24px;
}

.header__navigation > ul {
  max-width: 500px;
  display: flex;
  align-items: center;
  width: 100%;
}

.header__navigation > ul li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.header__navigation > ul li a {
  color: #2C2C35;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  white-space: nowrap;
}


.header__navigation > ul li a:hover {
  color: #5C75C9;
}


.header__navigation .header__navigation-submenu a {
  color: #2C2C35 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  white-space: nowrap;
}

.header__navigation .header__navigation-submenu a:hover {
  color: #5C75C9 !important;
}


.header__navigation .header__navigation-submenu a:hover {
  color: #5C75C9;
}


.header__navigation-submenu {
  position: absolute;
  top: 40px;
  display: none;
  border-radius: 10px;
  background: #FFF;
  padding: 16px;
  box-shadow: 0px 2px 4px 0px rgba(207, 207, 207, 0.40);
}

header .header__navigation-submenu {
  top: 60px;

}

header .header__desktop .header__navigation-submenu {
  left: -100px;
}

.header__navigation-submenu.header__navigation-submenu-columns {
  display: flex;
}

.header__navigation-submenu-col-title {
  color: var(--Grey-middle, #C2C4CA);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.header__navigation-submenu-col ul {
  margin-bottom: 26px;
}

.header__navigation-open--opened > .header__navigation-submenu {
  display: block !important;
  z-index: 99;
}

.header__navigation-submenu li:not(:last-child) {
  margin-bottom: 12px;
}

.header__navigation-submenu li a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.header__navigation-submenu li a .icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  --svgcolor: #2C2C35;
}

.header__navigation-submenu li:hover .icon {
  --svgcolor: #5C75C9 !important;
}


.header__user-area {
  display: flex;
  align-items: center;
}

.header__user-area-menu {
  display: flex;
  align-items: center;
}

.header__user-area .header__navigation-open {
  display: inline-block;
  position: relative;
  min-width: 92px;
  padding-left: 32px;
}

.header__user-area .header__navigation-open a {

  cursor: pointer;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.header__user-area-button {
  width: 180px;
  border-radius: 8px;
  background: #2C2C35;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 8px 16px;
}

.icon.user {
  --svgcolor: white;
}



.guide-cards-wrapper {
  padding-top: 80px;
}

@media screen and (max-width: 990px) {
  .guide-cards-wrapper {
    padding-top: 0;
  }
}

.guide-cards__row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 80px;
  justify-content: center;
}

.guide-card-item__title {
  color: #2C2C35;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.guide-card-item__text {
  padding-top: 6px;
  color: #515151;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  display: none;
}


.guide-card-item__content {
  position: relative;
  width: 50%;
  padding: 80px 40px 20px;
}

.guide-item-laptop .guide-cards__row {
  display: block !important;
}

.guide-item-laptop .guide-card-item__content {
  width: 100% !important;
  padding: 20px !important;
  text-align: center;
}

.guide-item-laptop .guide-card-item__screen img {
  margin-top: 0 !important;
}

.guide-item-laptop .guide-card-item__screen {
  width: 100%;
}

.guide-item-laptop .guide-card-item__content .step-number {
  position: unset !important;
}

.guide-item-laptop .guide-card-item__text {
  max-width: 424px;
  margin: 0 auto;
}


.guide-item-laptop .guide-cards-wrapper {
  padding-top: 0 !important;
}

.guide-item-laptop .guide-card-item__title {
  padding-top: 24px;
}

.guide-card-item__content .step-number {
  right: -40px;
  top: 80px;
}

.guide-cards__row:not(:last-child) .guide-card-item__content .step-number {
  position: absolute;
}

.guide-cards__row:last-child {
  text-align: center;
}

.guide-cards__row:nth-child(odd):not(:last-child) .guide-card-item__content .step-number {
  right: -20px;
}

.guide-cards__row:nth-child(even):not(:last-child) .guide-card-item__content .step-number {
  left: -20px;
}

@media screen and (max-width: 990px) {
  .guide-cards__row:not(:last-child) .guide-card-item__content .step-number {
    width: 100%;
    display: block;
    top: -30px;
    text-align: center;
    left: 0 !important;
    right: unset !important;
  }
}

.guide-card-item__content .step-number .icon {
  margin-top: 20px;
  width: 42px;
  height: 42px;
}

.guide-card-item__screen {
  width: 50%;
  padding: 20px 30px;

}

.guide-card-item__screen img {
  margin-top: -60px;
}


.guide-cards__row:nth-child(odd) .guide-card-item__content {
  order: 1;
}

.guide-cards__row:nth-child(odd) .guide-card-item__screen  {
  order: 2;
}

.guide-cards__row:nth-child(even) .guide-card-item__content {
  order: 2;
}

.guide-cards__row:nth-child(even) .guide-card-item__screen {
  order: 1;
}


@media screen and (max-width: 990px) {
  .guide-cards__row {
    padding: 0;
    flex-direction: column;
  }

  .guide-card-item__screen img {
    margin-top: 0 !important;
  }

  .guide-card-item {
    width: 100%;
    order: 1 !important;
  }

  .guide-card-item__content {
    padding: 40px 20px;
  }
}

.video-guide-button {
  margin: 14px auto 0;
  width: 100%;
  max-width: 377px;
  border-radius: 8px;
  background: #2C2C35;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 8px;
}

.video-guide-button .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

section.advantages {
  background: #5C75C9;
  padding: 60px 0 90px;
}

.advantages__title h2 {
  color: #FFFFFF !important;
  margin-bottom: 0;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding-top: 32px;
}

@media screen and (max-width: 990px) {
  .advantages__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .advantages__list {
    grid-template-columns: 1fr;
  }
}

.advantages__card {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
  border-radius: 16px;
  border: 1px solid #F4F4F4;
  background: #FFF;
  padding: 24px;
  /* height: 384px; */
}

.advantages__card-content {
  /* min-height: 180px; */
}

.advantages__card-icon {
  display: flex;
  align-items: center;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  background: #F4F4F4;
}

.advantages__card-icon img {
  margin: 0 auto;
}

.advantages__card-title {
  color: #2C2C35;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  margin: 12px 0;
}

.advantages__card-text {
  color: #2C2C35;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

section.about {
  padding: 90px 0 0;
}
/*
.about__title {
  text-align: center;
  color: var(--Black, #2C2C35);
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
} */

.about__title-sub {
  max-width: 720px;
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  padding-bottom: 32px;
  margin: 0 auto;
  text-align: center;
}

.about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about__list-card:not(:last-child) {
  margin: 0 24px 24px 0;
}


.about__list-card {
  border-radius: 20px;
  background: #FFF;
  padding: 24px;
  width: 374px;
  height: 468px;
}

@media screen and (max-width: 480px) {
  .about__list-card:not(:last-child) {
    margin: 0 0 24px 0;
  }

  .about__list-card {
    width: 100%;
  }
}

.about__card-image {
  display: flex;
  justify-content: center;
  height: 194px;
  padding-bottom: 10px;
}

.about__card-title {
  text-align: center;
  padding: 14px 0;
  color: #11132D;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
}

@media screen and (max-width: 600px) {
  .about__card-title {
    font-size: 24px;
  }
}

.about__card-text {
  color: #2C2C35;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}

section.reviews {
  padding-top: 90px;
}

/* .reviews__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
} */

.reviews__stat {
  display: flex;
  justify-content: space-around;
}

.reviews__stat-item {
  color: #2C2C35;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  display: flex;
  align-items: center;
}

.reviews__stat-item .icon.check {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #ffffff;
  margin-right: 10px;
  --svgcolor: #2C2C35;
  padding: 4px;
}

.reviews__list {
  overflow-x: auto;
  display: flex;
  padding-top: 50px;
  padding-bottom: 20px;
  scroll-start-x: center;
}
/*
.reviews__list::-webkit-scrollbar {
  display: none;
} */

.reviews__list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.reviews__list::-webkit-scrollbar-track {
  background-color: white;
}

.reviews__list::-webkit-scrollbar-thumb {
  /* box-shadow: inset 0 0 6px rgba(30, 30, 30, 1); */
  background-color: rgba(30, 30, 30, 0.5);
  border-radius: 6px;
}

.reviews__review-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #F4F4F4;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(220, 220, 220, 0.20);
  min-width: 336px;
  height: 251px;
  margin-right: 24px;
}

.reviews__review-card-top {
  display: flex;
  justify-content: space-between;
}

.reviews__review-card-top .date {
  color: #737781;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  align-items: center;
}

.reviews__review-text {
  padding: 20px 0 14px;
  color: #2C2C35;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.reviews__review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews__review-bottom .icon.next {
  height: 18px;
  width: 18px;
  margin-bottom: -2px;
  --svgcolor: #FFF;
}

.reviews__review-bottom .caption {
  color: #4E7BD6;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
}

.reviews__review-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #2C2C35;
  width: 40px;
  height: 40px;
}

section.reviews-telegram {
  padding-bottom: 90px;
}
/*
.reviews-telegram__title {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.reviews-telegram__title .icon {
  width: 32px;
  height: 32px;
  --svgcolor: #4E7BD6;
  margin-right: 12px;
}

@media screen and (max-width: 600px) {
  .reviews-telegram__title .icon {
    width: 26px;
    height: 26px;
    margin-right: 0;
  }

  .reviews-telegram__title {
    flex-direction: column;
  }
}

.reviews-telegram__list-wrap {
  padding-top: 50px;
  overflow: hidden;
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
}

.reviews-telegram__list-wrap img {
  margin: 0 auto;
  min-width: 768px;
}

section.feedback {
  padding-bottom: 90px;
}

.feedback__card {
  padding: 45px;
  display: flex;
  align-items: center;
  margin-top: 63px;
  border-radius: 36px;
  background: #ffffff;
  position: relative;
  width: 100%;
  min-height: 321px;
}

section.feedback .feedback__card {
  background-repeat: no-repeat;
  background-image: url('/img2/webp/feedback/feedback_right.webp');
  background-position-y: 100%;
  background-position-x: 95%;
}

.feedback__card img {
  position: absolute;
  bottom: 50px;
  left: 30px;
}



.feedback__card-left-col {
  max-width: 412px;
  width: 100%;
}

.feedback__card-right-col {
  max-width: 587px;
  width: 100%;
}

.feedback__card-title {
  color: #2C2C35;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}


.feedback__card-desc {
  padding-top: 12px;
  color: #2C2C35;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  /* max-width: 468px; */
}

.feedback__card-action {
  padding-top: 33px;
}


.feedback__card-action .button {
  /* border-radius: 12px;
  background: #FFD65A;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #11132D;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px; */
  font-size: 16px;
  max-width: 320px;
  padding: 16px !important;
  width: 100%;
}

@media screen and (max-width: 990px) {
  .feedback__card {
    flex-direction: column;
    background-position-y: 100%;
    background-position-x: 50%;
    padding: 30px;
  }

  .feedback__card-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
  }

  .feedback__card img {
    position: relative;
    bottom: unset;
    left: unset;
    padding-bottom: 20px;
  }

  .feedback__card-action button {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .feedback__card {
    border-radius: 24px;
    padding: 16px;
  }
}

section.tarifs {
  padding-bottom: 60px;
}

.moneyback-banner__card {
  padding: 45px;
  display: flex;
  align-items: center;
  border-radius: 36px;
  background: #ffffff;
  position: relative;
  width: 100%;
}



.moneyback-banner__card-left-col {
  max-width: 238px;
}

.moneyback-banner__card-right-col {
  max-width: 611px;
}


@media screen and (max-width: 600px) {
  .moneyback-banner__card {
    flex-direction: column;
  }

  .moneyback-banner__card-left-col {
    max-width: 100%;
    padding-bottom: 20px;
  }
}

/* .tarifs__title {
  margin: 0 auto;
  padding-bottom: 32px;
  color: #2C2C35;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
} */

.tarifs__list {
  display: flex;
  justify-content: space-between;
  /* padding-bottom: 90px; */
}


.tarifs__list-item {

  width: 100%;
  border-radius: 34px;
  padding: 50px;
  color: #2C2C35;
  background: #FFF;
  margin-bottom: 20px
}

.tarifs__list-item:not(:last-child) {
  margin-right: 24px;
}

@media screen and (max-width: 990px) {
  .tarifs__list-item {
    padding: 25px;
  }

  .tarifs__list {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 900px) {
  .tarifs__list {
    flex-direction: column;
  }

  .tarifs__list-item:not(:last-child) {
    margin-right: 0;
  }
}


.tarifs__list-item-image {
  margin-bottom: 20px;
}

.tarifs__list-item-image img {
  margin: 0 auto;
}

.tarifs__list-item--premium {
  background: #2C2C35;
  color: #FFF;
  position: relative;
}

.tarifs__list-item--premium .tag {
  position: absolute;
  right: 24px;
  top: 24px;
  display: inline-block;
  padding: 12px;
  border-radius: 34px;
  background: var(--Red, #E55D5D);
  color: var(--White, #FFF);
  font-size: 11px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.44px;
}

.tarifs__list-item-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
}

.tarifs__list-item-desc {
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.tarifs__list-item-current {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  padding-top: 16px;
  color: var(--Violet, #5C75C9);
}

.tarifs__list-item-params {
  border-radius: 18px;
  background: #F6F6F6;
  padding: 24px;
  margin-top: 29px;
}

.tarifs__list-item--premium .tarifs__list-item-params {
  background: var(--Light-black-2, #474751);
}

.tarifs__list-item-params ul li {
  display: flex;
  align-items: center;
  color: #474751;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.tarifs__list-item--premium .tarifs__list-item-params ul li {
  color: var(--White, #FFF) !important;
}

.tarifs__list-item-params ul li:not(:last-child) {
  margin-bottom: 15px;
}

.tarifs__list-item-params ul li .icon {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  padding: 4px;
  background: #FFF;
  --svgcolor: #5C75C9;
  margin-right: 8px;
}

.tarifs__list-item-actions {
  margin-top: 40px;
  height: 100%;
}

.tarifs__list-item-actions .button {
  display: block;
  width: 100%;
}

section.faq {
  padding: 90px 0 60px;
}

section.faq .center-container {
  max-width: 700px
}

/* .faq__title {
  text-align: center;
  color: #2C2C35;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
} */

.faq__questions-list {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.faq__questions-list-col {
  width: 100%;
  /* max-width: calc(50% - 12px); */
}

.faq__questions-list-item {
  border-radius: 14px;
  border: 1px solid #F4F4F4;
  background: #FFF;
  margin-bottom: 10px;
}

.faq__questions-list-item:hover {
  box-shadow: 0px 2px 4px 0px rgba(207, 207, 207, 0.40);
}

.faq__questions-list-item .icon.question {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

.faq__questions-list-item .icon.next {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  --svgcolor: #5C75C9;
  transform: rotate(90deg);
}

.faq__questions-list-item--opened .icon.next {
  transform: rotate(-90deg);
}

.faq__questions-list-item-title {
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #2C2C35;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.faq__questions-list-item-title span {
  text-align: left;
  display: block;
  width: 100%;
}

.faq__questions-list-item-text {
  text-align: left;
  padding: 0 20px 20px;
  color: #2C2C35;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  display: none;
}

.faq__questions-list-item-text ul,
.faq__questions-list-item-text ol {
  padding-left: 20px;
}

.faq__questions-list-item-text ol li {
  list-style-type: decimal;
}

.faq__questions-list-item-text ul li {
  list-style-type: disc;
}

.faq__questions-list-item--opened .faq__questions-list-item-text {
  display: block;
}

@media screen and (max-width: 900px) {

  .faq__questions-list {
    flex-direction: column;
  }

  .faq__questions-list-col {
    max-width: 100%;
  }

}

footer {

}

.footer__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}



.footer__top {
  padding: 50px 0;
  min-height: 338px;
}

.footer__top {
  background: var(--Black, #2C2C35);
}

.footer__bottom {
    background: var(--Black, #27272F);
}

.footer__bottom {
  display: flex;
  align-items: center;
  min-height: 62px;
  color: #FFF;
}

.footer__left-col {
  padding-bottom: 40px;
  margin-right: 50px;
}

.footer__right-col {
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: minmax(160px, 300px) minmax(160px, 300px);
}


@media screen and (max-width: 900px) {
  .footer__row {
    flex-direction: column;
  }
  .footer__right-col {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .footer__right-col {
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
  }
}

.footer__nav-column:not(:last-child) {
  margin-right: 20px;
}

.footer__nav-column-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 24px;
}

.footer__nav-column-list ul li {
  margin-bottom: 6px;
}


.footer__nav-column-list ul li a,
.footer__nav-column-list ul li span
 {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.footer__brand .icon.brand {
  --svgcolor: #ffffff;
}

.footer__social {
  margin-top: 30px;
  display: grid;
  max-width: 167px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 15px;
  justify-content: start
}

.footer__social .icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  opacity: 0.55;
  background: rgba(244, 244, 244, 0.10);
  --svgcolor: #ffffff;
  padding: 10px;
}

.footer__email {
  margin-top: 20px;
  color: #5C75C9;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.footer__email .icon {
  --svgcolor: #5C75C9;
  width: 22px;
  height: 22px;
  margin-right: 4px;
}

.footer__email a {
  display: inline-flex;
  align-items: center;
  color: #5C75C9;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.footer__requisites {
  padding-top: 30px;
  color: #adadad;
  font-size: 14px;
  line-height: 20px
}

.footer__ssl-cert span {
  display: flex;
  align-items: center;
  opacity: 0.3;
}

.footer__ssl-cert .icon {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  --svgcolor: white;
}

.footer__copyright {
  opacity: 0.3;
}

.footer__bottom .footer__row div {
  padding: 20px 0;
}

section.main-promo.macos {
  padding: 0 0 20px;
}

section.main-promo.macos .main-promo__content .col.col-left {
  padding-top: 20px
}

section.main-promo.macos .col-right {
  padding-bottom: 20px;
  max-width: 522px;
}

section.main-promo.macos .main-promo__title-actions .button {
  max-width: 414px;
}

section.main-promo.macos .main-promo__title-sub {
  max-width: 575px
}

.breadcrumbs {
  padding: 40px 0 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  .breadcrumbs {
    padding: 0 0 24px;
  }
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li a {
  /* color: #474751; */
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.breadcrumbs li:last-child a {
  color: #5C75C9;
}

.breadcrumbs li:not(:last-child) a::after {
  content: '>';
  color: #474751;
  margin: 0 8px 0 10px;
}

section.promo-setup {
  /* min-height: 557px; */
  background: #2C2C35;
  margin: 70px 0 0;
}

section.promo-setup-macos {
  background-image: url('/img2/webp/promo-setup-macos.webp');
  background-repeat: no-repeat;
  background-position: 100%;
}

@media screen and (max-width: 1190px) {
  section.promo-setup-macos {
    padding: 30px 0;
    background-image: unset;
  }

  section.promo-setup-iphone .promo-setup__right-col {
    display: none;
  }
}

.promo-setup__left-col {
  width: 100%;
  padding: 50px;
}

.promo-setup__right-col {
  min-width: 350px;
  padding-right: 50px;
}

@media screen and (max-width: 600px) {


  .promo-setup__left-col {
    padding: 30px 0 !important;
  }
}

section.promo-setup .promo-setup__right-col img {
  margin-top: -90px;
}

section.promo-setup .center-container .row {
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 1190px) {
  section.promo-setup .center-container .row {
    flex-direction: column;
  }

  .promo-setup__right-col {
    display: none;
  }

  .promo-setup__left-col {
    order: 2;
    padding: 30px;
  }
}

.promo-setup__title h2 {
  color: #ffffff;
  text-align: left;
}

.promo-setup__text {
  padding-bottom: 32px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.promo-setup__action a {
  width: 100%;
  max-width: 515px;
}

section.devices {
  padding-top: 90px;
}

.devices__cards-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 1190px) {
  .devices__cards-list {
    grid-column-gap: 12px;
  }
}

@media screen and (max-width: 990px) {
  .devices__cards-list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
  }
}

@media screen and (max-width: 600px) {
  .devices__cards-list {
    grid-template-columns: 1fr;
  }
}

.devices__cards-list-item {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #F4F4F4;
  background: #ffffff;
}


.devices__cards-list-item-icon {
  margin: 0 auto;
  width: 136px;
  height: 136px;
}

.devices__cards-list-item-title {
  margin-top: 36px;
  color: #5C75C9;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.devices__cards-list-item-desc {
  color: #2C2C35;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding-top: 12px;
}

.features .about__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.features .about__list .about__list-card {
  width: auto;
  height: auto;
  margin: 0;
}

section.features {
  background: #5C75C9;
  padding: 60px 0;
  margin-top: 90px;
}

.features__title h2 {
  color: #ffffff !important;
}

.features__action {
  padding-top: 50px;
}

.features__action .button {
  max-width: 392px;
  margin: 0 auto;
}

@media screen and (max-width: 990px) {
  .features .about__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .features .about__list {
    grid-template-columns: 1fr;
  }
}

.agreement__subsection-title,
.terms__item-title {
  text-align: left !important;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  padding: 12px 0;
  color: #11122E;
  margin-bottom: 0;
}

.agreement__subsection {
  padding-bottom: 12px;
}

.agreement__subsection-text,
.terms__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #525252;
}

.agreement__subsection-text ol {
  padding-left: 32px;
}

.agreement__subsection-text ol li {
  list-style-type: decimal;
  padding-bottom: 16px;
}

.agreement__subsection-text ul li {
  list-style-type: disc;
}

.agreement__subsection-note-title {
  margin: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #11122E;
}

.agreement__subsection-note-text {
  padding-left: 32px;
}

.agreement__subsection-note-text li {
  list-style-type: disc;
  padding-bottom: 16px;
}

section.terms,
section.agreement,
section.support,
section.payment-methods {
  padding-bottom: 90px;
}

.agreement h1,
.terms h1,
.support h1,
.payment-methods h1 {
  text-align: center;
}

.terms h3 {
  text-align: left;
  font-size: 28px;
}

.terms hr {
  margin: 25px 0;
}

.agreement h3 {
  text-align: left;
  font-size: 28px;
}

.agreement hr {
  margin: 25px 0;
}

.support-title-sub {
  margin: 0 auto;
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 58px;
  max-width: 720px;
}

.support-contacts {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .support-contacts {
    grid-template-columns: 1fr
  }
}

.support-contact-method {
  border-radius: 34px;
  color: var(--Black, #2C2C35);
  background: var(--White, #FFF);
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .support-contact-method {
    border-radius: 20px;
    padding: 24px;
  }
}

.support-contact-method__image {
  padding-bottom: 36px;
}

.support-contact-method__image img {
  margin: 0 auto;
}

.support-contact-method__content-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 110%;
}

@media screen and (max-width: 600px) {
  .support-contact-method__content-title {
    font-size: 22px;
  }
}

.support-contact-method__content-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  padding: 14px 0 30px;
}

.support-contact-method__action button {
  width: 100%;
}

.payment-methods__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 66px;
}

.payment-methods__list-item {
  display: flex;
  width: 153px;
  height: 91px;
  border-radius: 12px;
  background: var(--White, #FFF);
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.payment-methods__list-item:not(:last-child) {
  margin-right: 15px;
}

.payment-methods__subtitle h2 {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
}

.payment-methods__subtitle-text {
  color: var(--Light-black-2, #474751);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  padding-bottom: 32px;
}

.payment-methods__subtitle-text2 {
  color: var(--Light-black-2, #474751);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.payment-methods__subtitle-text2 ul {
    padding: 22px 0 22px 22px;
}

.payment-methods__subtitle-text2 ul li {
  list-style-type: disc;
}

section.page-not-found {
  padding-bottom: 90px;
  max
}

.page-not-found__content{
  max-width: 560px;
  margin: 0 auto;
}

.page__main-image {
  height: 360px;
}

.page__main-image img {
  height: 100%;
  margin: 0 auto;
}

.page__main-title h2 {
  color: #11122E;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
}

@media screen and (max-width: 600px) {
  .page__main-title h2 {
    font-size: 26px;
  }
}

.page__main-text {
  color: var(--Dark, #525252);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.page__main-text-line {
  padding: 16px 0 40px;
}

section.free-banner {
  padding-top: 90px;
}

section.moneyback-banner {
  padding-top: 90px;
}

.advantages2__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-top: 32px;
}

@media screen and (max-width: 900px) {
  .advantages2__list {
      display: grid;
      grid-template-columns: 1fr;
  }
}

.advantages2__card-icon {
  display: flex;
  height: 220px;
  justify-content: center;
}

.advantages2__card-icon img {
  display: inline-block;
}

.get-premium__order-container {
  border-radius: 34px;
  background: #FFF;
  padding: 50px;
}

.modal-window {
  opacity: 0;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
  pointer-events: none;
}

.modal-window__wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-window--opened {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 100;
  display: block !important;

}

.modal-window__container {
  margin: 80px auto;
  position: relative;
  width: fit-content;
  animation: fadeIn ease 0.7s;
  -webkit-animation: fadeIn ease 0.7s;
  -moz-animation: fadeIn ease 0.7s;
  -o-animation: fadeIn ease 0.7s;
  -ms-animation: fadeIn ease 0.7s;
}

.modal-window__container > div {
  display: none;
  /* min-width: 768px; */
  min-height: 300px;
  padding: 50px;
}

@media screen and (max-width: 900px) {
  .modal-window__container > div {
    padding: 24px;
    min-width: 600px;
  }
}

@media screen and (max-width: 600px) {
  .modal-window__container > div {
    padding: 24px;
    /* margin: 0 10px; */
    min-width: 300px;
  }
}

.modal-window__container a.modal-close {
  display: inline-block !important;
  position: absolute;
  right: 24px;
  top: 24px;
}

a.modal-close .icon {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  --svgcolor: #000000;
}

.contact-form {
  border-radius: 34px;
  background: #FFF;
  max-width: 785px;
}

.contact-form__top {
  text-align: center;
}

.contact-form__top img {
  margin: 0 auto;
  padding-bottom: 24px;
}

.contact-form__top-title {
  padding-bottom: 10px;
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.contact-form__top-text {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.contact-form__main {
  padding-top: 32px;
}

.contact-form__main .button {
  margin-top: 10px;
  width: 100%;
  border-radius: 8px;
  padding: 11px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.contact-form__wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}



@media screen and (max-width: 600px) {
  .contact-form {
    border-radius: 16px;
    background: #FFF;
    max-width: 580px;
  }
}

.contact-form__main-form-result {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  display: none;
}

.contact-form__main-form--success .contact-form__main-form-result {
  padding: 50px 0;
}

.contact-form__main-form--success .contact-form__main-form-result,
.contact-form__main-form--error .contact-form__main-form-result {
  display: block;
}

.contact-form__main-form--success .contact-form__main-form-fields {
  display: none;
}

.input {
  padding-bottom: 14px;
  width: 100%;
}

.input label {
  color: var(--Light-black, #515151);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding-bottom: 10px;
}

.input .input-field {
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid var(--Grey-middle, #C2C4CA);
  transition: border-color 0.3s ease;
}

.input .input-field input,
.input .input-field textarea {
  margin: 16px 14px;
  width: calc(100% - 28px);
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.input .input-field textarea {
  margin-bottom: -3px;
  margin-right: 6px;
  width: calc(100% - 14px);
  resize: vertical;
}

.input .input-field textarea::-webkit-scrollbar {
    width: 8px;
}
.input .input-field textarea::-webkit-scrollbar-track {
    background-color: #fff;
}
.input .input-field textarea::-webkit-scrollbar-thumb {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
}

.input .input-field:hover {
  border: 1px solid var(--Violet, #5C75C9);
  transition: border-color 0.3s ease;
}

.video-popup-container {
  width: auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 20px;
}

section.payment-status {
  padding-bottom: 180px
}

.payment-status--fail {
  text-align: center;
}

section.payment-status .center-container {
  border-radius: 32px;
  background: #FFF;
  padding: 40px;
}

.payment-status__container {
  max-width: 620px;
  margin: 0 auto;
}

.payment-status__container-image {
  margin: 0 auto 32px;
  width: 105px;
  height: 105px;
}

.payment-status__main-title {
  text-align: center;
}

.payment-status__main-title h1 {
  color: var(--Black, #2C2C35);
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
}

.payment-status__main-title-sub {
  color: var(--Black, #2C2C35);
  font-family: "Tilda Sans";
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}


.payment-status__main-features {
  margin: 24px 0;
  padding: 24px 42px 24px;
  border-radius: 18px;
  background: rgba(92, 117, 201, 0.06);
}

.payment-status__main-features ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}


.payment-status__main-features ul li:not(:last-child) {
  margin-bottom: 15px;
}

.payment-status__main-features ul li .icon {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  padding: 4px;
  background: #60AC71;
  --svgcolor: #ffffff;
  margin-right: 8px;
}

.payment-status__main-bottom-note {
  color: var(--Dark-grey, #737781);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.payment-status--fail .payment-status__main-bottom-actions {
  justify-content: center;
}

.payment-status__main-bottom-actions {
  padding-top: 30px;
  display: flex;
}

.payment-status__main-bottom-actions .button {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .payment-status__main-bottom-actions {
    flex-direction: column;
  }

  .payment-status__main-bottom-actions .button {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }

  .payment-status__main-features {
    padding: 24px;
  }

  .payment-status__main-title h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
  }

  .payment-status__main-title-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
  }

  .payment-status__main-features ul li {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
  }
}

section.subscription-cart {
  padding-bottom: 80px;
  /* display: none */
}

.subscription-cart-title {
  color: var(--Black, #2C2C35);
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 24px;
}

.subscription-cart__container {
  border-radius: 34px;
  background: #FFF;
  padding: 50px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.subscription-cart__container form {
  width: 100%;
  display: flex;
  min-height: 500px;
}

.subscription-cart__container-column {
  width: 100%;
}

.subscription-cart__container--left {
  padding-right: 50px;
  border-right: 1px solid #F4F4F4;
  max-width: 575px;
  width: 100%;
}

.subscription-cart__container--right {
  position: relative;
  padding-left: 50px;
  max-width: 535px;
  width: 100%;
}

@media screen and (max-width: 1599px) {
  .subscription-cart__container {
    padding: 20px;
  }

  .subscription-cart__container--left {
    padding-right: 20px;
  }

  .subscription-cart__container--right {
    padding-left: 20px;
  }

  .subscription-cart__step-final-image img {
    margin-bottom: -20px !important;
  }
}

.subscription-cart__step {
  display: none;
}

.subscription-cart__step--current {
  display: block;
}

.subscription-cart__step-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 32px;
}

.subscription-cart__step-title .icon.step {
  width: 42px;
  height: 42px;
  margin-right: 14px;
}

.subscription-cart__step-choose-plan-item {
  border-radius: 14px;
  background: var(--Background, #F6F6F6);
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 16px;
}

.subscription-cart__step-choose-plan-item:not(:last-child) {
  margin-bottom: 16px;
}



.subscription-cart__step-choose-plan-item-col {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.subscription-cart__step-choose-plan-item-col:first-child {
  max-width: 135px;
}

.subscription-cart__step-choose-plan-item-col:nth-child(2) {
  width: 100%;
}

.subscription-cart__step-choose-plan-item-col:nth-child(3) {
  max-width: 150px;
}

.subscription-cart__step-choose-plan-item-col:not(:last-child) {
  margin-right: 15px
}

.subscription-cart__step-choose-plan-item-col .tag {
  display: inline-block;
  border-radius: 30px;
  color: var(--White, #FFF);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  padding: 8px 10px;
}

.subscription-cart__step-choose-plan-item-col .tag.discount {
  background: var(--Red, #E55D5D);
}

.subscription-cart__step-choose-plan-item-col .tag.current {
  background: var(--Violet, #5C75C9);
}

.subscription-cart__step-choose-plan-item-col .tag.trial {
  background: var(--Green, #60AC71);
}

label input[type="radio"] {
	appearance: none;
	width: 24px;
	height: 24px;
  min-width: 24px;
  border: 2px solid var(--Grey-middle, #C2C4CA);
  background: #ffffff;
	border-radius: 50%;
	background-clip: content-box;
	padding: 4px;
  margin: 0 16px 0 0;
}

label input[type="radio"]:checked {
	background: #ffffff;
  border: 6px solid var(--Violet, #5C75C9);
}

@media screen and (max-width: 600px) {
  .subscription-cart__step-choose-plan-item {
    padding: 19px 14px;
    font-size: 15px;

    position: relative;
    margin-bottom: 23px;
  }

  /* .subscription-cart__step-choose-plan-item-col {
    min-width: 50%;
  } */

  .subscription-cart__step-choose-plan-item-price {
    width: 100%;
    text-align: right;
    font-weight: 700;
  }

  .subscription-cart__step-choose-plan-item-col .tag {
    position: absolute;
    right: 0;
    top: -15px;
    border-radius: 30px 30px 0px 30px;
  }

  .subscription-cart__step-choose-plan-item-trial span.free {
    display: none;
  }

  form label input[type="radio"] {
    margin-right: 8px !important;
  }
}


.subscription-cart__step-choose-plan-item-col span {
  margin-left: 4px;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.subscription-cart__step-actions {
  margin: 32px 0;
  display: flex;
  max-height: 44px;
}

.subscription-cart__step-actions--promo {
  display: none;
}

@media screen and (max-width: 1350px) {
  .subscription-cart__step-actions--promo {
    display: flex;
  }
}

.subscription-cart__step-actions .black-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  padding: 13px 32px;
  width: 100%;
  max-width: 360px;
}

.subscription-cart__step-actions .black-button[type="submit"] {
  max-width: 100%;
}

.subscription-cart__step-actions .white-button {
  padding: 13px 16px;
}

.subscription-cart__step-note {
  color: var(--Light-black-2, #474751);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.subscription-cart__step-subtotal-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F4F4;
}

.subscription-cart__step-subtotal-item:not(:first-child) {
  padding-top: 20px;
}

.subscription-cart__step-subtotal-item-title .logo {
  width: 17px;
  height: 17px;
  --svgcolor: #5C75C9;
  margin-right: 6px;
}

.subscription-cart__step-subtotal-item-title {
  display: flex;
  align-items: center;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.subscription-cart__step-subtotal-item-price {
  padding: 20px 0;
}

.subscription-cart__step-subtotal-item-price-row {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  justify-content: space-between;
}

.subscription-cart__step-subtotal-item-price-row:not(:last-child) {
  padding-bottom: 10px;
}

.subscription-cart__step-subtotal-item-price-row .saving {
  color: var(--Red, #E55D5D);
}

.subscription-cart__step-subtotal-item-price-row .discount-promo {
  color: var(--Succes, #60AC71);
}

.subscription-cart__step-subtotal-item-price-row .trial-end-date {
  color: var(--Dark-grey, #737781);
}

.subscription-cart__step-summary {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  border-bottom: 1px solid #F4F4F4;
}

.subscription-cart__step-actions .input-wrap {
  margin-right: 14px;
  width: 100%;
  max-width: 330px;
}

.subscription-cart__step-actions .input-wrap.input-wrap--disabled .icon.check  {
  display: inline-block !important;
}

.input-wrap .icon.check {
  display: none;
}

.input-wrap--disabled .icon.check {
  display: inline-block !important;
  --svgcolor: #60AC71;
  width: 16px;
  height: 16px;
}

.subscription-cart__step-actions .apply-promo {
  max-width: 160px;
}

.subscription-cart__promo-note {
  padding-top: 10px;
  color: var(--Light-black-2, #474751);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.subscription-cart__step-moneyback {
  margin-top: 40px;
  border-radius: 14px;
  background: #F8FBFF;
  padding: 16px 24px 16px 15px;
  display: flex;
}

.subscription-cart__step-moneyback img {
  margin-right: 16px;
}

.subscription-cart__step-moneyback-title {
  color: var(--Light-black-2, #474751);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.subscription-cart__step-user-fields {
  max-width: 377px;
}

.subscription-cart__step-user-fields label {
  display: block;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.subscription-cart__step-user-fields label span {
  display: inline-block;
  margin: 10px 0;
}

.subscription-cart__step-user-fields label:not(:last-child) {
  padding-bottom: 32px;
}

@media screen and (max-width: 1350px) {

  .subscription-cart__container {
    border-radius: 20px;
  }

  .subscription-cart__container form {
    flex-direction: column;
    min-height: 400px;
  }

  .subscription-cart__container--left {
    border: 0px;
    max-width: unset;
    padding-right: 0;
  }

  .subscription-cart__container--right {
    padding: 0 !important;
    max-width: unset;
  }

  .subscription-cart__step-actions .input-wrap {
    max-width: unset;
  }

  .subscription-cart__step--first {
    display: none !important;
  }

}

.subscription-cart__step-subtotal-regdata-item {
  display: flex;
  justify-content: space-between;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}


.subscription-cart__step-final-image {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.subscription-cart__step-final-image img {
  width: 338px;
  margin-bottom: -50px;
}

@media screen and (max-width: 1350px) {
  .subscription-cart__step-final-image {
    display: none;
  }
}

.subscription-cart__step-auth {
  margin: 32px 0;
}

.subscription-cart__step-auth-title {
  color: var(--Black, #2C2C35);
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  padding-bottom: 12px;
}

.subscription-cart__step-auth-text {
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscription-cart__step-auth-methods-note {
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding-bottom: 16px;
}

.subscription-cart__step-auth-methods-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 14px;
}

@media screen and (max-width: 700px) {
  .subscription-cart__step-auth-methods-list {
    grid-template-columns: 1fr;
  }
}

.subscription-cart__step-auth-methods-list li {
  min-width: 275px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 16px 14px;
  border-radius: 12px;
  border: 0.5px solid var(--Grey, #E2E5EB);
  background: var(--Background, #F6F6F6);
}

.subscription-cart__step-auth-methods-list a {
  display: inline-flex;
  align-items: center;
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.subscription-cart__step-auth-methods-list a .icon {
    width: 18px;
    height: 18px;
    margin-right: 14px;
}

.subscription-cart__step-auth-methods-list a .icon.telegram {
    --svgcolor: #039BE5;
}

.subscription-cart__step-auth-methods-list a .icon.vk {
    --svgcolor: #4B729F;
    width: 22px;
    height: 22px;
}

section.login {
  padding-bottom: 80px;
}

.login__form-container {
  width: 100%;
  max-width: 573px;
  border-radius: 34px;
  background: var(--White, #FFF);
  padding: 50px;
}

.login__form-title {
  color: var(--Black, #2C2C35);
  font-size: 28px;
  font-weight: 700;
  line-height: 110%;
  padding-bottom: 10px;
}

.login__form-container {
  margin: 0 auto;
}

.login__form-main {
  padding-bottom: 16px;
}

.login__form-action {
  padding-top: 24px;
}

.login__form-note {
  padding-top: 10px;
  color: var(--Dark-grey, #737781);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.login__form-step--login {
  visibility: hidden;
  transition: height 0.3s ease;
}

.login__form-action .button {
  width: 100%;
}

.login__form-main label {
  display: block;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.login__form-main label .input-wrap {
  margin: 10px 0;
}

.login__form-step {
  visibility: hidden;
  height: 0;
}

.login__form-step-second {
  padding-top: 32px;
}

.login__form-step-first.active {
  height: 60px;
}

.login__form-step-second.active {
  height: 230px;
}

.login__form-step.active {
  visibility: visible;
  transition: height 0.5s ease;
}

.login__form-main .input-wrap--disabled::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Imljb246Y2hlY2siPgo8ZyBpZD0iR3JvdXAiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNNi4zMDQ1MyAxMi43NDU1QzYuMjM5NTMgMTIuNzQ1NSA2LjE3NDIyIDEyLjcyMDggNi4xMjQ1MyAxMi42NzExTDIuMDc0NTMgOC42MjEwOUMxLjk3NTE2IDguNTIxNzIgMS45NzUxNiA4LjM2MDc4IDIuMDc0NTMgOC4yNjE0MUwzLjYxNjcyIDYuNzE5MjJDMy43MTYwOSA2LjYxOTg0IDMuODc3MDMgNi42MTk4NCAzLjk3NjQxIDYuNzE5MjJMNi4yNTM5MSA4Ljk5NjcyQzYuMjgxNzIgOS4wMjQ1MyA2LjMyNzAzIDkuMDI0NTMgNi4zNTUxNiA4Ljk5NjcyTDEyLjAyMzYgMy4zMjgyOEMxMi4wNzE0IDMuMjgwNDcgMTIuMTM2MSAzLjI1MzkxIDEyLjIwMzYgMy4yNTM5MUMxMi4yNzExIDMuMjUzOTEgMTIuMzM1OCAzLjI4MDc4IDEyLjM4MzYgMy4zMjgyOEwxMy45MjU4IDQuODcwNDdDMTQuMDI1MiA0Ljk2OTg0IDE0LjAyNTIgNS4xMzA3OCAxMy45MjU4IDUuMjMwMTZMNi40ODQ1MyAxMi42NzExQzYuNDM0ODQgMTIuNzIwOCA2LjM2OTUzIDEyLjc0NTUgNi4zMDQ1MyAxMi43NDU1WiIgZmlsbD0iIzYwQUM3MSIvPgo8L2c+CjwvZz4KPC9zdmc+Cg==)
}

.login__form-methods {
  text-align: center;
  border-top: 1px solid #F4F4F4;
}

.login__form-methods-text {
  text-align: left;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding: 16px 0 24px;
}

.login__form-methods ul {
  display: grid;
  align-items: baseline;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}



.login__form-methods ul li {

}

@media screen and (max-width: 600px){
  .login__form-methods ul {
    grid-template-columns: 1fr;
  }

  .login__form-methods ul li {
    text-align: center;
  }
}

.login__form-methods a {
  color: var(--Black, #2C2C35);
  display: flex;
  align-items: center;
  padding: 16px 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;

  text-align: left;
  width: 100%;

  border-radius: 12px;
  border: 0.5px solid var(--Grey, #E2E5EB);
  background: var(--Background, #F6F6F6);
}

.login__form-methods a:hover {
  opacity: 1;
}

.login__form-methods a .icon {
  width: 18px;
  height: 18px;
  margin-right: 14px;
}

.login__form-methods a .icon.telegram {
  --svgcolor: #039BE5;
}

.login__form-methods a .icon.vk {
  --svgcolor: #4B729F;
  width: 22px;
  height: 22px;
}

.login__form-methods a .icon.email {
  --svgcolor: #000000b5;
  width: 18px;
  height: 18px;
}

@media screen and (max-width:600px) {
  .login__form-container {
    padding: 25px;
  }

  .login__form-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
  }
}

.login-popup__header {
  text-align: center;
}

.login-popup__header-illustration .icon {
  width: 50px;
  height: 50px;
}

.login-popup__header-title {
  color: var(--Black, #2C2C35);
  font-size: 28px;
  font-weight: 700;
  line-height: 110%;
}

.login-popup__header-text {
  padding-top: 10px;
  color: var(--Black, #2C2C35);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.subscription-cart__step-gift {
  border-radius: 14px;
  background: #F8FBFF;
  padding: 20px;
}

.subscription-cart__step-gift-top {
  color: var(--Black, #2C2C35);
  border-radius: 12px;
  background: #FFF;
  padding: 12px;
  display: flex;
  align-items: center;
}

.subscription-cart__step-gift-top-icon {
  padding-right: 12px;
}

.subscription-cart__step-gift-top-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 4px;
}

.subscription-cart__step-gift-top-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.subscription-cart__step-gift-bottom {
  padding-top: 19px;
}

.subscription-cart__step-gift-bottom span.number {
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--Black, #2C2C35);
  color: var(--White, #FFF);
  font-size: 12px;
  font-weight: 900;
  line-height: 130%;
  margin-right: 10px;
}

.subscription-cart__step-gift-bottom ul li {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

section.monitoring {
  padding: 80px 0 50px;
}

.monitoring__title-sub {
  font-size: 20px;
}

.monitoring__title-sub2 {
  margin-top: 20px;
  color: #717171;
  font-size: 14px;
}

.monitoring form {
  padding-top: 30px;
}

.monitoring form textarea {
  width: 100%;
  max-width: 800px;
  min-height: 200px;
  padding: 10px;
}

.monitoring form button {
  cursor: pointer;
  min-width: 180px;
  border-radius: 8px;
  background: #2C2C35;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  padding: 16px 30px;
}

.monitoring__config-params {
  padding: 50px 0 30px;
}

.monitoring__config-params-title,
.monitoring__tasks-list-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 10px;
}

.monitoring__tasks-list ul li {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.monitoring__tasks-list span.not_started,
.monitoring__tasks-list span.processing {
  margin-right: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23000000" stroke="%23000000" stroke-width="15" width="30" height="30" x="25" y="85"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.4"></animate></rect><rect fill="%23000000" stroke="%23000000" stroke-width="15" width="30" height="30" x="85" y="85"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.2"></animate></rect><rect fill="%23000000" stroke="%23000000" stroke-width="15" width="30" height="30" x="145" y="85"><animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="0"></animate></rect></svg>')
}

.monitoring__tasks-list span.success {
  margin-right: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #19ef49;
  border-radius: 10px;
}

.monitoring__tasks-list span.fail {
  margin-right: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #e91212;
  border-radius: 10px;
}

.monitoring__config-params span:first-child {
  display: inline-block;
  font-weight: 600;
  line-height: 130%;
  width: 150px;
}

.promo-code .col.col-left {
  min-width: unset;
}

.promo-code .col.col-right {
  min-width: 400px;
  max-width: 400px;
  margin-left: 30px;
}

@media screen and (max-width: 990px) {
  .promo-code .col.col-right {
      display: block;
      margin: 30px auto 0;
      min-width: 300px;
      max-width: 400px;
  }

  .promo-code .main-promo__content {
    flex-direction: column;
  }

  .promo-code .col.col-left {
    text-align: center;
  }

  .promo-code .col.col-left .main-promo__title-actions {
    justify-content: center;
  }
}


.promo-code-faq__title {
  margin-bottom: 32px;
}

.promo-code-faq__title h2 {
  color: var(--Black, #2C2C35);
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .promo-code-faq__title h2 {
    font-size: 26px;
  }
}

.promo-code-faq__title-sub {
  color: var(--Black, #2C2C35);
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  max-width: 720px;
  text-align: center;
}

.promo-code-faq__steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 990px) {
  .promo-code-faq__steps {
    flex-direction: column;

  }
}

.promo-code-faq__step-item {
  border-radius: 20px;
  background: #FFF;
  display: flex;
  max-width: 350px;
  width: 100%;
  padding: 24px 24px 30px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.promo-code-faq__step-item:not(:last-child) {
  margin-right: 24px;
}

@media screen and (max-width: 990px) {
  .promo-code-faq__step-item {
    width: 100%;
    margin-right: 0 !important;
  }
}

.promo-code-faq__step-item-number {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.promo-code-faq__step-item-number .icon.step {
  display: inline-block;
  width: 42px;
  height: 42px;
}

.promo-code-faq__step-item-title {
  width: 100%;
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.promo-code-faq__step-item-text {
  margin-top: 12px;
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.promo-code .main-promo__title-actions .button {
  max-width: 350px;
}

section.about.promo-code {
  padding-top: 0;
}

section.partner-program-faq {
  padding-bottom: 90px;
}

.phone-verify-form__actions {
  text-align: center;
  padding-top: 15px;
}

@media screen and (max-width: 990px) {
  .phone-verify-form__actions .call-button {
    display: none;
  }
}

.phone-verify-form__back {
  margin: 10px auto;
}

.phone-verify-form__step {
  padding-top: 16px;
}

.phone-verify-form__step-call-img img {
  margin: 0 auto;
}

@media screen and (max-width: 990px) {
  .phone-verify-form__step-call-img img {
    display: none;
  }
}

.modal-window .phone-verify-form {
  max-width: 480px;
  padding: 60px 25px 25px 25px;
  background: #ffffff;
  border-radius: 30px;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.modal-window .phone-verify-form label .input-wrap {
  margin: 10px 0;
}

section.tarifs-form {
  padding-bottom: 80px;
}

.tarifs-form__container {
  border-radius: 34px;
  background: #FFF;
  display: flex;
}


.tarifs-form__step {
  display: none;
}

.tarifs-form__step.tarifs-form__step--active {
  display: block;
}

.tarifs-form__step-title .icon.step {
  width: 28px;
  height: 28px;
  margin-right: 9px;
}

.tarifs-form__step-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--Black, #2C2C35);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 17px;
}

.tarifs-form__step-title span {
  display: flex;
  align-items: center;
}

.tarifs-form__step-title-note {
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.tarifs-form__step-plans {
  padding: 32px 0;
}

.tarifs-form__left-col {
  width: 100%;
  max-width: 50%;
  padding: 50px;
  border-right: 1px solid #F4F4F4;
}

.tarifs-form__right-col {
  width: 100%;
  max-width: 50%;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.tarifs-form__step-plans label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border-radius: 14px;
  background: var(--Background, #F6F6F6);
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.tarifs-form__step-plans div:not(:last-child) {
  margin-bottom: 16px;
}

.tarifs-form__step-plans label span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
}

.tarifs-form__step-plans label span:first-child {
  max-width: 150px;
}

.tarifs-form__step-plans label span:nth-child(2) {
  max-width: 150px;
}

.tarifs-form__step-plans label span:last-child {
  max-width: 165px;
}

.tarifs-form__step-plans label span.gift {
  display: inline-flex;
  height: 30px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 34px;
  background: var(--Green, #60AC71);
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

.tarifs-form__step-actions {
  text-align: center;
}

.tarifs-form__step-actions button {
  width: 100%;
}

.tarifs-form__step-actions button span {
  margin: 0 0.4em;
}

.tarifs-form__step-actions-note {
  margin-top: 14px;
  display: inline-block;
  color: var(--Dark-grey, #737781);
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.tarifs-form__step-bottom {
  text-align: center;
  padding-top: 44px;
}

.tarifs-form__step-bottom span {
  display: inline-flex;
  align-items: center;
  color: var(--Grey-middle, #C2C4CA);
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.tarifs-form__step-title .icon.logo
{
  width: 24px;
  height: 24px;
  margin-right: 8px;
  --svgcolor: #5C75C9;
}

.tarifs-form__right-col .tarifs-form__step-title {
  color: var(--Black, #2C2C35);
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}

.tarifs-form__right-col .tarifs-form__step-title span.bonus {
  color: var(--Black, #2C2C35);
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  margin-left: 12px;
}

.tarifs-form__right-col .tarifs-form__step-title .profit {
  border-radius: 30px;
  background: var(--Violet, #5C75C9);
  color: var(--White, #FFF);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  padding: 6px 12px;
}

.tarifs-form__right-col .tarifs-form__step-title .profit span {
  margin-left: 0.4em;
}

.tarifs-form__right-col .tarifs-form__step-title .profit svg {
  margin-left: 8px;
}

.tarifs-form__step-subtotal {
  /* padding-top: 20px; */
  /* padding-bottom: 46px; */

}

.tarifs-form__step-subtotal-row {
  display: flex;
  justify-content: space-between;
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 4px;
}

.tarifs-form__step-subtotal-have-promo-row {
  border-bottom: 1px solid #F4F4F4;
}

.tarifs-form__step-subtotal-current-payment {
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.tarifs-form__step-advantages ul {
  margin: 35px 0 32px;
}

.tarifs-form__step-advantages ul li {
  display: flex;
  align-items: center;
}

.tarifs-form__step-advantages ul li:not(:last-child) {
  margin-bottom: 13px;
}

.tarifs-form__step-advantages ul li .icon.check {
  border-radius: 12px;
  border: 0.5px solid var(--Grey, #E2E5EB);
  background: var(--Background, #F6F6F6);
  width: 24px;
  height: 24px;
  padding: 4px;
  --svgcolor: #60AC71;
  margin-right: 8px;
}

.tarifs-form__step-awards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.tarifs-form__left-col .tarifs-form__step-awards {
  display: none;
  padding-bottom: 33px;
}

.tarifs-form__step-subtotal-have-promo {
  display: flex;
  margin-top: 18px;
  max-height: 44px;
  width: 100%;
}

.tarifs-form__step-subtotal-have-promo.mobile {
  margin-bottom: 24px;
}

.tarifs-form__step-subtotal-have-promo a.have-promo {
  display: block;
  padding: 14px 0;
  color: var(--Violet, #5C75C9);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.56px;
}

.tarifs-form__step-subtotal-have-promo button.apply-promo:disabled {
  background: var(--Grey, #E2E5EB);
}

.tarifs-form__step-subtotal-have-promo button.apply-promo {
  border-radius: 8px;
  margin-left: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.tarifs-form__step-auth-methods {
  padding-top: 32px;
}

.tarifs-form__step-auth-methods a {
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  border: 0.5px solid var(--Grey, #E2E5EB);
  background: var(--Background, #F6F6F6);
  margin-bottom: 16px;
}

.tarifs-form__step-auth-methods a:hover {
  opacity: 1;
}

.tarifs-form__step-auth-methods a .icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.tarifs-form__step-auth-methods a .icon.telegram {
  --svgcolor: #039BE5;
}

.tarifs-form__step-auth-methods a .icon.vk {
  --svgcolor: #039BE5;
}

.tarifs-form__step-auth-methods-note {
  color: var(--Light-black-2, #474751);
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}

.tarifs-form__step-moneyback {
  padding-top: 116px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tarifs-form__step-moneyback img {
  width: 57px;
  height: 57px;
  margin-right: 16px;
}

.tarifs-form__step-moneyback-title {
  color: var(--Light-black-2, #474751);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.tarifs-form__step-moneyback-text {
  padding-top: 5px;
  color: var(--Light-black-2, #474751);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.tarifs-form__right-col .tarifs-form__step2 {
  min-height: 560px;
}

@media screen and (max-width: 600px) {
  .tarifs-form__right-col .tarifs-form__step2 {
    min-height: 400px;
  }
}

.tarifs-form__right-col .tarifs-form__step2 img {
  position: absolute;
  bottom: -15px;
}

.tarifs-form__left-col .phone-verify-form__step label {
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.tarifs-form__left-col .phone-verify-form__step label input
{
  color: var(--Black, #2D2A2A);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.tarifs-form__step-getpremium-title span {
  margin-left: 0.4em;
}

.tarifs-form__step-advantages-title {
  margin-top: 10px;
  text-align: center;
  padding: 16px 0;
  display: none;
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.tarifs-form__step-actions-note-price {
  display: none;
}

.tarifs-form .mobile {
  display: none;
}

.tarifs-form .desktop {
  display: inline-block;
}

.tarifs-form .promo-mobile {
  margin: 0 0 32px;
  display: none;
}

.input-wrap-promo {
  width: 100%;
}

@media screen and (max-width: 1200px) {

  .tarifs-form__step-advantages-title {
    margin-top: 0;
    padding: 20px 0;
  }

  .tarifs-form__container {
    flex-direction: column;
  }

  .tarifs-form__left-col {
    border-right: 0;
    max-width: 100%;
  }

  .tarifs-form__right-col {
    padding-top: 0 !important;
    max-width: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px -1px 29.1px 0px rgba(127, 127, 127, 0.20);
    min-height: unset;
  }

  .tarifs-form__left-col {
    min-height: 350px;
  }

  .tarifs-form__step-advantages-title {
    display: block;
  }

  .tarifs-form__right-col .tarifs-form__step-awards {
    display: none;
  }

  .tarifs-form__left-col .tarifs-form__step-awards {
    display: flex;
  }

  .tarifs-form__step-title-note {
    display: none;
  }

  .tarifs-form__step-actions-note-agreement {
    display: none;
  }

  .tarifs-form__step-actions-note-price {
    display: inline;
  }

  .tarifs-form__step-bottom {
    display: none;
  }

  .tarifs-form__step-moneyback {
    display: none;
  }

  .tarifs-form__step-selected-plan {
    display: none;
  }

  .tarifs-form__step-advantages ul {
    margin: 0;
    border-radius: 12px;
    background: #F9F9F9;
    padding: 12px;
  }

  .tarifs-form__step-advantages ul li {
    display: flex;
    align-items: center;
  }

  .tarifs-form__step-advantages ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .tarifs-form__step-advantages ul li .icon.check {
    border-radius: unset;
    border: unset;
    background: unset;
  }



  .tarifs-form__step-subtotal-have-promo.mobile {
    display: flex !important;
  }

}

@media screen and (max-width: 600px) {

  .tarifs-form__left-col .tarifs-form__step-awards img {
    max-height: 55px;
  }

  .tarifs-form__container {
    border-radius: 20px;
  }

  .tarifs-form__left-col,
  .tarifs-form__right-col {
    padding: 16px;
  }

  .tarifs-form__step-plans {
    padding: 25px 0;
  }

  .tarifs-form__step-title {
    padding: 0;
  }

  .tarifs-form__step-plans label {
    font-size: 16px;
    position: relative;
  }

  .tarifs-form__step-plans div:not(:last-child) {
    margin-bottom: 22px;
  }

  .tarifs-form__step-plans label span.gift {
    position: absolute;
    top: -14px;
    right: 0;
    border-radius: 30px 20px 0px 30px;
  }


  .tarifs-form .desktop {
    display: none;
  }

  .tarifs-form .mobile {
    display: inline-block !important;
  }

  .tarifs-form__step-plans label span {
    width: auto !important;
  }
}

.available-platforms {
  padding-top: 20px;
}

.available-platforms__list {
  display: flex;
  flex-wrap: wrap;
}


.available-platforms__list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-right: 20px;
  color: #CED1D7;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
}


.available-platforms__list-item .icon {
  --svgcolor: #CED1D7 !important;
  margin: 0 auto;
  display: inline-block;
  max-height: 50px;
  max-width: 36px;
}


.available-platforms__title {
  padding-bottom: 22px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: var(--Accent-black, #11132D);
}

.header__navigation-open {
  position: relative;
}

.header__navigation-open .submenu-toggle::before {
  content: 'Show all'
}

.header__navigation-open--opened .submenu-toggle::before {
  content: 'Hide all'
}

.footer__nav-column-list .header__navigation-open > a {
  color: #ffffff;
}

.footer__nav-column-list .header__navigation-open > a .icon.next {
  --svgcolor: #ffffff;
}

.footer__nav-column-list .header__navigation-open--opened  > a .icon.next {
  transform: rotate(-90deg) !important;
}

.footer__nav-column-list .header__navigation-submenu {
  position: relative;
  background: unset;
  box-shadow: unset;
  padding: 0;
  z-index: unset;
  top: unset;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__nav-column-list .header__navigation-submenu li a .icon {
  --svgcolor: #737373 !important;
  width: 22px;
  height: 22px;
}

section.connection-guide {
  padding-top: 90px;
}

.connection-guide__title h2 {
  color: var(--Black, #2C2C35);
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .connection-guide__title h2 {
    font-size: 26px;
  }
}

.connection-guide__steps {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: minmax(320px, 450px) minmax(320px, 450px) minmax(320px, 450px);
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .connection-guide__steps {
    grid-template-columns: minmax(320px, 500px);
    justify-content: center;
  }
}

.connection-guide__steps-item {
  border-radius: 20px;
  background: #FFF;
  text-align: center;
  padding: 24px 24px 0 24px;
  overflow: hidden;
}

.connection-guide .step-number .icon {
  width: 42px;
  height: 42px;
}

.connection-guide__steps-item-title {
  color: var(--Black, #2C2C35);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin: 14px auto 16px;
}

.connection-guide__steps-item-text {
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.connection-guide__steps-item-preview {
  padding-top: 24px;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.connection-guide__steps-item-preview img {
  margin-bottom: -170px;
}

.connection-guide__video-guide {
  padding-top: 32px;
  text-align: center;
  color: var(--Light-black, #515151);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

section.support-team {
  padding: 90px 0 60px;
}

.support-team__title h2 {
  text-align: center;
  color: var(--Black, #2C2C35);
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  .support-team__title h2{
    font-size: 26px;
  }
}

.support-team__advantages {
  display: grid;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-template-columns: minmax(320px, 450px) minmax(320px, 450px) minmax(320px, 450px);
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .support-team__advantages {
    grid-template-columns: minmax(350px, 450px);
    justify-content: center;
  }
}

.support-team__advantages-item {
  padding: 24px;
  border-radius: 20px;
  background: var(--White, #FFF);
}

.support-team__advantages-item-illustration img {
  margin: 0 auto;
  margin-bottom: 24px;
}

.support-team__advantages-item-title {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 8px;
}

.support-team__advantages-item-text {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.free-internet .locations {
  border-radius: 8px;
  border: 1px solid var(--White, #FFF);
  padding: 12px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}

.free-internet__top {
  padding-bottom: 30px;
}

section.free-internet .promo-setup__right-col img {
  max-width: 376px;
  margin-top: -40px;
}

section.free-internet .promo-setup__left-col {
  max-width: 630px;
}


.free-internet__countries {
    padding-top: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
}

.free-internet__countries > a {
  display: none;
}

.free-internet__countries > a:nth-child(-n+7) {
  display: inline-block !important;
}

.free-internet__countries.free-internet__countries--full > a {
  display: inline-block !important;
}

.free-internet__countries a.countries-toggle {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}

.free-internet__countries.free-internet__countries--full a.countries-toggle {
  display: none;
}

.free-internet__countries .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

section.plans {
  padding-top: 90px;
}

.plans__title h2 {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
  .plans__title h2 {
    font-size: 26px;
  }
}

.plans__text {
  color: var(--Black, #2C2C35);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.plans__list {
  padding-top: 32px;
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(320px, 400px) minmax(320px, 400px);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .plans__list {
    grid-template-columns: minmax(320px, 400px);
    justify-content: center;
  }
}

.plans__list-item {
  border-radius: 16px;
  background: var(--White, #FFF);
  text-align: center;
  padding: 24px 16px;
}

.plans__list-item--popular {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--Violet, #5C75C9);
}

.plans__list-item--saving {
  position: relative;
}

.plans__list-item-saving {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  height: 30px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  color: var(--White, #FFF);
  font-size: 11px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 34px;
  background: var(--Red, #E55D5D);
}



.plans__list-item-popular {
  background: var(--Violet, #5C75C9);
  border-radius: 16px 16px 0 0;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  color: var(--White, #FFF);
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  padding: 9px;
}

.plans__list-item-illustration {
  margin: 50px auto 20px;
  display: flex;
  justify-content: center;
}

.plans__list-item-title {
  color: var(--Black, #2C2C35);
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 12px;
}

.plans__list-item-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Black, #2C2C35);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.plans__list-item-price span {
  color: var(--Dark-grey, #737781);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.plans__list-item-desc {
  color: var(--Black, #2C2C35);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  margin: 40px 0 46px;
}

.plans__list-item-note {
  color: var(--Grey-middle, #C2C4CA);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans__list-item-note .icon.moneyback {
  width: 18px;
  height: 18px;
}

.plans__list-item-price-gift {
  position: absolute;
  top: 36px;
  color: var(--Green, #60AC71);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

section.service-metrics {
  padding-top: 90px;
}

.service-metrics__list {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 1100px) {
  .service-metrics__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 900px) {
  .service-metrics__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .service-metrics__list {
    grid-template-columns: 1fr;
  }
}

.service-metrics__list-item {
  text-align: center;
}

.service-metrics__list-item-title {
  color: var(--Black, #2C2C35);
  font-size: 50px;
  font-weight: 700;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.service-metrics__list-item-desc {
  color: var(--Dark-grey, #737781);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.service-metrics__list-item-title .icon {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

section.premium-compare {
  padding-top: 60px;

}

.premium-compare__table-wrap {
  overflow-x: scroll;
}

.premium-compare__title {
  color: var(--Black, #2C2C35);
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 32px;
}

.premium-compare__table {
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
  font-size: 16px;
  min-width: 600px;
}

.premium-compare__table th {
  border-width: 0;
}

.premium-compare__table td,
.premium-compare__table th {
  padding: 13px 20px;
  border-top-width: 0;
  border-bottom-width: 1px;
  border-color: #F6F6F6;
}

@media screen and (max-width: 600px){
  .premium-compare__table td,
  .premium-compare__table th {
    padding: 10px 15px;
  }

  .premium-compare__table {
    border-radius: 12px;
    font-size: 14px;
  }
}

.premium-compare__table td:nth-child(2) {
  background: #DDEDE0;
}

.premium-compare__table td:nth-child(3) {
  background: #FBE2E2;
}

.premium-compare__table th:nth-child(2) {
  background: var(--Violet, #5C75C9);
  color: #fff;
}

.premium-compare__table th:nth-child(3) {
  background: var(--Grey, #E2E5EB);
  font-weight: 500;
}


.premium-compare__table td:not(:last-child),
.premium-compare__table th:not(:last-child)
{
  border-right-width: 0px;
}

.premium-compare__note {
  color: var(--Black, #2C2C35);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  padding-top: 24px;
}

section.pre-footer {
  background: var(--Violet, #5C75C9);
  position: relative;
  min-height: 100px;
  padding-top: 90px;
}

section.pre-footer .right-col {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  border-radius: 30px 0px 0px 30px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #5C75C9;
}

.pre-footer__left-title {
  color: #FFF;
  font-size: 36px;
  font-weight: 800;
  line-height: 130%;
  text-transform: uppercase;
}

.pre-footer .center-container {
  display: flex;
}


.pre-footer__left,
.pre-footer__right {
  max-width: 50%;
  z-index: 2;
}



.pre-footer__left {
  padding: 50px 20px 40px 0;
}

.pre-footer__left-action {
  margin-top: 32px;
}

.pre-footer__premium-advantages {
  padding: 70px 50px;
}

.pre-footer__premium-advantages li {
  display: flex;
  width: 100%;
  align-items: center;
  color: var(--White, #FFF);
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
}

.pre-footer__premium-advantages li:not(:last-child) {
  margin-bottom: 16px;
}

.pre-footer__premium-advantages .icon.check {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #ffffff;
  margin-right: 10px;
  --svgcolor: #2C2C35;
  padding: 4px;
}

.pre-footer .available-platforms {
  margin-top: 37px;
}

.pre-footer__platforms-title {
  padding-bottom: 12px;
  color: var(--white-60, rgba(255, 255, 255, 0.60));
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.pre-footer .available-platforms__list-item .icon {
  max-height: 40px;
  max-width: 30px;

}

.pre-footer .available-platforms__list-item {
  margin-right: 13px;
}


@media screen and (max-width: 1100px) {
  .pre-footer .center-container {
    flex-direction: column;
    padding: 0 !important;
  }

  section.pre-footer .right-col {
    display: none;
  }

  .pre-footer__left,
  .pre-footer__right {
    max-width: 100%;
    z-index: 2;
    padding: 20px !important;
  }

  .pre-footer__right {
    border-radius: 12px 12px 0px 0px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #5C75C9;
  }

  .pre-footer__premium-advantages {
    padding: 20px 0;
  }
}

section.partnership {
  padding-bottom: 90px;
}

.partnership-container {
  padding: 50px;
  border-radius: 20px;
  background: var(--White, #FFF);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}


.partnership__left-col {
  max-width: 600px;
}

.partnership__right-col {
  max-width: 300px;
}


@media screen and (max-width: 1100px) {
  .partnership__right-col {
    display: none;
  }

  .partnership-container {
    padding: 25px;
  }
}

.partnership__title {
  color: var(--Black, #2C2C35);
  font-size: 34px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 16px;
}

.partnership__description {
  color: var(--Black, #2C2C35);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.partnership__action {
  padding-top: 32px;
}

.platforms-available-title {
  color: var(--Accent-black, #11132D);
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 16px;
}

.agile__actions {
  display: none !important;
}

section.available-devices {
  padding-top: 90px;
}
/*
.available-devices__title {
  color: var(--Black, #2C2C35);
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
  text-align: center;
} */

.available-devices__list {
  border-radius: 30px;
  border: 0.5px solid var(--Stroke, #F4F4F4);
  background: var(--White, #FFF);
  display: grid;
  grid-column-gap: 32px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  padding: 32px;
}

@media screen and (max-width: 990px) {
  .available-devices__list {
    padding: 20px;
    border-radius: 18px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 800px) {
  .available-devices__list {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 450px) {
  .available-devices__list {
    padding: 12px;
    border-radius: 12px;
    grid-template-columns: 1fr;
  }
}

.available-devices__list-category {
  padding-bottom: 32px;
}


.available-devices__list-category-title {
  color: var(--Violet, #5C75C9);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  padding: 11px 16px;
  text-transform: uppercase;
}

.available-devices__list-category ul li {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  margin-bottom: 6px;
  color: #2C2C35;
  position: relative;
  padding: 11px 40px 11px 16px;
}

.available-devices__list-category ul li a {
  color: #2c2c35;
  display: inline-flex;
  align-items: center;
}

.available-devices__list-category ul li:hover {
  border-radius: 10px;
  background: var(--Background, #F6F6F6);
}

.available-devices__list-category ul li::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggNC41TDEyLjUgOUw4IDEzLjVMNi45NSAxMi40NUwxMC40IDlMNi45NSA1LjU1TDggNC41WiIgZmlsbD0iIzJDMkMzNSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
}

.available-devices__list-category ul li:hover::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggNC41TDEyLjUgOUw4IDEzLjVMNi45NSAxMi40NUwxMC40IDlMNi45NSA1LjU1TDggNC41WiIgZmlsbD0iIzVDNzVDOSIvPgo8L3N2Zz4K);
}

.available-devices__list-category ul li .icon {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  --svgcolor: #2C2C35;
}

section.countries {
  padding-top: 90px;
}
/*
.countries__title {
  color: var(--Black, #2C2C35);
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 32px;
  text-align: center;
} */

.countries__list {
  border-radius: 30px;
  border: 0.5px solid var(--Stroke, #F4F4F4);
  background: var(--White, #FFF);
  display: grid;
  grid-column-gap: 32px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  padding: 32px;
}

@media screen and (max-width: 1190px) {
  .countries__list {
    padding: 20px;
    border-radius: 18px;
  }
}

@media screen and (max-width: 990px) {
  .countries__list {
    padding: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 800px) {
  .countries__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .countries__list {
    grid-template-columns: 1fr;
  }
}

.countries__list-category {
  padding-bottom: 32px;
}


.countries__list-category-title {
  color: var(--Violet, #5C75C9);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  padding: 11px 16px;
  text-transform: uppercase;
}

.countries__list-category ul a {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  margin-bottom: 6px;
  color: #2C2C35;
  position: relative;
  padding: 11px 40px 11px 16px;
}

.countries__list-category ul span a {
  color: #5C75C9;
  text-decoration: underline;
}

.countries__list-category ul li a:hover {
  border-radius: 10px;
  background: var(--Background, #F6F6F6);

}

.countries__list-category ul li a::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggNC41TDEyLjUgOUw4IDEzLjVMNi45NSAxMi40NUwxMC40IDlMNi45NSA1LjU1TDggNC41WiIgZmlsbD0iIzJDMkMzNSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
}

.countries__list-category ul li a:hover::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggNC41TDEyLjUgOUw4IDEzLjVMNi45NSAxMi40NUwxMC40IDlMNi45NSA1LjU1TDggNC41WiIgZmlsbD0iIzVDNzVDOSIvPgo8L3N2Zz4K);
}

.countries__list-category ul li a .icon {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

section.tbank-widget {
  padding-top: 90px
}



.countries__list-block li {
  display: none;
}

.countries__list-block--full li {
  display: flex !important;
}

.countries__list-block--full span a {
  display: none;
}

.countries__list-block li:nth-child(-n+5){
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}
