@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a {
  text-decoration: none;
}

button:focus,
input:focus {
  outline: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

button,
input[type=submit] {
  cursor: pointer;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  object-fit: cover;
}

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

body {
  font-size: 16px;
  color: #161619;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  background: #edeff4;
}

body.lock {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wrapper > main {
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, footer__container и т.д.
*/

[class*=__container] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: relative;
}

/* .header__top {
  background: #151618;
  padding: 13px 0;
} */

.header__body {
  position: relative;
}

.header__menu {
  position: relative;
  z-index: 3;
  margin-top: 20px;
}

.menu__list {
  display: flex;
  justify-content: space-between;
}

.menu__list li + li {
  padding: 0 0 0 20px;
}

.menu__list li {
  position: relative;
}

.menu__list li + li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: #ff5b14;
}

.menu__link {
  display: inline-block;
  text-transform: uppercase;
  color: #bdbdbd;
  font-size: 12px;
  padding: 12px 0;
  letter-spacing: 0.5px;
  transition: all 0.1s ease 0s;
}

.main-wrapper .header__bottom {
  position: absolute;
  top: 100%;
  left: 0;
  background: none;
}

.header__bottom {
  width: 100%;
  padding: 39px 0 30px;
  background: #020202;
  /* background: #020202 url("../img/header/bg.png") center/contain no-repeat; */
}

.bottom-header__body {
  display: flex;
  justify-content: space-between;
}
.menu__link {
  color: white;
}
.header__actions {
  display: flex;
  align-items: center;
}

.actions-header__list {
  display: flex;
  align-items: center;
}

.actions-header__list li:not(:last-child) {
  margin: 0 26px 0 0;
}

.actions-header__link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.1s ease 0s;
}

.actions-header__icon {
  display: inline-block;
  margin: 0 5px 0 0;
}

.actions-header__icon.actions-header__icon_circle {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1e1e1e;
  transition: all 0.1s ease 0s;
}

.header__login {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0 33px;
  color: #fff;
  padding: 13px 37px 13px 35px;
  border-radius: 25px 25px 0 25px;
}

.header__login span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 0 0 30px;
  background: url("../img/icons/user.png") left center no-repeat;
  position: relative;
  z-index: 2;
}

.login-header .login-header__profile {
  display: none;
}

.profile-wrapper .login-header {
  max-width: 150px;
  padding-left: 25px;
}

.profile-wrapper .login-header__profile {
  display: inline-flex;
}

.profile-wrapper .login-header__enter {
  display: none;
}

.azure-block {
  position: relative;
  overflow: hidden;
  transition: all 1s ease 0s;
}

.azure-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  transition: all 1s ease 0s;
}

.azure-block:hover::before {
  background: linear-gradient(90deg, #1a9197 50%, #1a9197 100%);
}

.menu__icon {
  display: none;
}

.menu__bottom {
  display: none;
}

.footer {
  background: url("../img/footer/bg.png") center/cover no-repeat;
  padding: 38px 0 33px;
  color: #FFF;
}

.footer a {
  color: inherit;
  text-align: left;

}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 0 0 29px;
  border-bottom: 1px solid #232323;
}

.menu-footer {
  padding: 0 17px 0 0;
}

.menu-footer__list {
  display: inline-flex;
  align-items: center;
}

.menu-footer__list li {
  position: relative;
}

.menu-footer__list li:not(:last-child) {
  margin: 0 16px 0 0;
}

.menu-footer__list li:not(:first-child) {
  padding: 0 0 0 18px;
}

.menu-footer__list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #348a8e;
}

.menu-footer__link {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.actions-footer__list {
  display: flex;
  align-items: center;
}

.actions-footer__list li:not(:last-child) {
  margin: 0 26px 0 0;
}

.actions-footer__link {
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.1s ease 0s;
}

.actions-footer__icon {
  display: inline-block;
  margin: 0 5px 0 0;
}

.actions-footer__icon.actions-footer__icon_circle {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.15);
  margin: 0 0 0 16px;
  transition: all 0.1s ease 0s;
}

.footer__bottom {
  padding: 25px 0 0;
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  align-items: center;

}

.footer__copy {
  flex: 0 1 30%;
}

.footer__copy span {
  display: block;
  font-weight: 500;
  line-height: 187.5%;
}

.footer__copy span:not(:last-child) {
  margin: 0 0 7px;
}

.footer__copy span:last-child {
  font-weight: 400;
}

.footer__links {
  padding-left: 37px;
  flex: 0 1 30%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  column-gap: 18px;
  row-gap: 2px;
}
.footer__links а{
  display: block;
}
.footer__pay span{
  display: block;
  margin: auto;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 5px;
}
.footer-icons, .footer-icons-pay {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer__pay img{
  vertical-align: top;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  margin-right: 10px;
  width: 35px;
}

.footer__link {
  font-size: 14px;
  line-height: 214.2857142857%;
  transition: all 0.1s ease 0s;
}

.home {
  background: #020202 url("../img/home/home-bg.png") top -60px center/cover no-repeat;
  padding: 140px 0 165px;
  overflow: hidden;
}

.home__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 30px;
}

.home__info {
  flex: 1 1 auto;
  color: #FFF;
}

.home__title {
  font-size: 42px;
  line-height: 142.8571428571%;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 76px;
  letter-spacing: 1px;
}

.home__list li {
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 30px;
}

.home__list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url("../img/icons/check-orange.png");
  width: 15px;
  height: 10px;
}

.home__list li span {
  color: #ff5b14;
}

.home__list li:not(:last-child) {
  margin: 0 0 24px;
}

.home__bottom {
  margin: 87px 0 0;
  display: flex;
}

.home__button.btn-orange {
  min-height: 53px;
  font-size: 14px;
  padding: 21px 26px 18px 29px;
  border-radius: 25px 25px 0 25px;
  letter-spacing: 0px;
}

.home__label {
  margin-left: 18px;
  min-height: 53px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffc107;
  border-radius: 25px;
  padding: 13px 25px 10px;
}

.home__label span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.home__label span:last-child {
  font-weight: 700;
  color: #ffc107;
  margin: 2px 0 0;
  letter-spacing: 1px;
}

.home__video {
  padding: 0 0 16px;
  position: relative;
}

.home__video::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -256px;
  background: url("../img/home/line.png");
  background-size: 100% 100%;
  background-repeat: repeat-x;
  height: 503px;
  width: 843px;
}

.video-home__image {
  width: 400px;
  position: relative;
  padding-bottom: 72%;
  border: 1px solid #33888c;
  border-radius: 12px;
}

.video-home__image img {
  border-radius: inherit;
}

.video-home__block {
  position: relative;
}

.video-home__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-home__play {
  cursor: pointer;
}

.video-home__icon {
  position: absolute;
  width: 67px;
  height: 67px;
  border: 5px solid #020202;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.video-home__icon.video-home__icon_rub {
  right: -177px;
  top: 43px;
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
}

.video-home__icon.video-home__icon_bell {
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  left: -110px;
  bottom: -68px;
}

.statistics {
  padding: 87px 0 98px;
  background: #edeff4 url("../img/statistic/bg.png") top center/contain no-repeat;
}

.statistics__header {
  display: flex;
  align-items: center;
  max-width: 665px;
}

.statistics__icon:not(:last-child) {
  margin: 0 26px 0 0;
}

.statistics__title {
  font-size: 24px;
  font-weight: 600;
  color: #161619;
  line-height: 125%;
}

.statistics__title span {
  color: #ff5b14;
}

.data-statistics {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px);
  justify-content: center;
  grid-template-rows: auto;
  gap: 18px;
}

.data-statistics__item {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid #348a8e;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.data-statistics__icon {
  display: inline-block;
  margin: 0 0 20px;
  max-width: 30px;
}

.data-statistics__number {
  font-size: 20px;
  font-weight: 700;
  color: #1bbc4c;
  margin: 0 0 15px;
}

.data-statistics__month {
  color: #8d99a3;
  font-weight: 500;
}

.statistics__box:not(:last-child) {
  margin: 0 0 64px;
}

.statistics__box:nth-child(2) .statistics__icon:not(:last-child) {
  margin: 0 31px 0 0;
}

.statistics__table {
  margin: 53px 0 0;
  padding: 0px 29px 0px 29px;
  border: 1px solid #ff5b14;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
}

.table-stats__row {
  display: grid;
  grid-template-columns: 115px 180px minmax(180px, 283px) 141px 210px 180px;
  align-items: center;
  border-bottom: 1px solid rgba(141, 153, 163, 0.2);
  min-height: 58px;
}

.table-stats__row.table-stats__row-head > * {
  color: #8d99a3;
  font-weight: 500;
  font-size: 14px;
}

.table-stats__row:not(.table-stats__row-head) .table-stats__item {
  font-weight: 500;
  color: #161619;
  padding: 22px 0 24px 0;
}

.table-stats__item {
  min-height: 58px;
  padding: 23px 0 23px;
}

.table-stats__tariff {
  color: #ff5b14;
  font-weight: 600;
}

.table-stats__type {
  color: #161619;
  font-weight: 500;
}

.table-stats__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
}

.table-stats-event__item {
  color: #161619;
  font-weight: 500;
}

.table-stats-event__item:not(:last-child) {
  margin: 0 0 11px;
}

.table-stats-event__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 2px 0 0;
}

.table-stats__predict-icon {
  background: none;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0 9px 0 0;
}

.table-stats__button {
  width: 100%;
}

.btn-orange {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
  color: #FFF;
  border-radius: 25px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 14px 20px 12px;
  letter-spacing: 0.5px;
}

.btn-orange:hover {
  background: linear-gradient(45deg, #ff5e00 30%, #ff5e00 100%);
}

.slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  border: 1px solid #fd5c25;
  box-shadow: 0px 0px 4px 0px rgba(22, 57, 59, 0.2);
  background: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #fd5c25;
  box-shadow: none;
  border: none;
}

/* LEARN */

.learn {
  padding: 87px 0 95px;
  background: #020202 url("../img/learn/bg.png") center/cover no-repeat;
}

.learn__body {
  margin: 80px 0 0;
}

.learn__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 29px;
}

.learn__image {
  padding-bottom: 67.5675675676%;
  border: 1px solid #348a8e;
  border-radius: 6px;
  overflow: hidden;
}

.learn__image img {
  border-radius: 0px;
}

.learn__image-box {
  position: relative;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.learn__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.059);
}

.learn__play-icon {
  background: none;
}

.learn__content {
  padding: 29px 0 0;
  color: #fff;
}

.learn__content p {
  font-size: 18px;
  font-weight: 500;
}

.learn__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  margin: 63px auto 0;
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 25px 25px 0 25px;
  padding: 12px 21px 12px;
  max-width: 212px;
}

.learn__button span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 30px;
  background: url("../img/icons/play-white.png") left center no-repeat;
}

.learn__button:hover {
  background: linear-gradient(110deg, #33888c 30%, #33888c 80%);
}

/* GET-MONEY */

.get-money {
  padding: 97px 0 146px;
  background: #edeff4;
}

.get-money .heading-block {
  color: #161619;
}

.get-money .heading-block__title:not(:last-child) {
  margin: 0 0 0px;
}

.tariff {
  background-image: url("../img/tariff/graph-left.png"), url("../img/tariff/graph-right.png");
  background-position: 0 65%, 100% 65%;
  background-repeat: no-repeat, no-repeat;
}

.tariff__body {
  margin: 95px 0 0;
}

.tariff__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px;
}

.head-tariff__left {
  display: flex;
  align-items: center;
}

.head-tariff__left > span {
  display: inline-block;
  font-size: 18px;
  color: #495a74;
  font-weight: 500;
  margin: 0 18px 0 0;
}

.tariff__choice {
  margin: 0 20px 0 0;
}

.tariff__sale {
  color: #19bb4b;
  font-size: 18px;
  font-weight: 500;
}

.head-tariff__right {
  font-size: 18px;
  font-weight: 500;
}

.head-tariff__right span {
  color: #19bb4b;
}

.tariff__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, 371px);
  justify-content: center;
  grid-template-rows: auto;
  gap: 50px 30px;
}

.tariff__item {
  border-radius: 9px;
  background-color: #FFF;
  box-shadow: 0px 3px 20px 0px rgba(22, 57, 59, 0.2);
  border-radius: 9px;
  padding: 29px 29px 47px;
  position: relative;
  border: 1px solid transparent;
}

.tariff__item.active {
  border: 1px solid #ff5b14;
}

.item-tariff__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-tariff__heading .item-tariff__icon {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 36px;
  margin: 0 0 28px;
}

.item-tariff__title {
  color: #2a3746;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
}

.item-tariff__title span {
  display: inline-block;
  color: #ff5b14;
  font-weight: 700;
  margin: 0 0 0 6px;
  position: relative;
  padding: 0 8px;
}

.item-tariff__title span::before,
.item-tariff__title span::after {
  content: '"';
  position: absolute;
  color: #2a3746;
  font-weight: 500;
  top: 0;
}

.item-tariff__title span::before {
  left: 0;
}

.item-tariff__title span::after {
  right: 0;
}

.item-tariff__prices {
  margin: 19px 0 19px;
}

.item-tariff__price {
  font-size: 36px;
  font-weight: 700;
}

.item-tariff__label {
  color: #8d99a3;
  font-size: 16px;
}

.item-tariff__content {
  padding: 21px 0 0;
}

.item-tariff__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px 13px;
  border-bottom: 1px solid #f2f4f5;
}

.item-tariff__list li:last-child {
  border: none;
}

.item-tariff__text {
  font-size: 14px;
  color: #414141;
  width: 90%;
}

.item-tariff__button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 240px;
  min-height: 48px;
  letter-spacing: 1.4px;
}

.guarantees {
  padding: 137px 0 130px;
  background: #020202 url("../img/guarantees/bg.png") center/cover no-repeat;
}

.guarantees .heading-block {
  max-width: 480px;
  padding: 0 0 18px;
  margin: 0 0 59px;
  position: relative;
}

.guarantees .heading-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
}

.guarantees .heading-block__title {
  line-height: 120.8333333333%;
}

.guarantees__body {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 30px;
}

.guarantees__info {
  color: #fff;
  max-width: 700px;
  flex: 1 1 auto;
}

.guarantees__text {
  margin: 0 0 60px;
}

.guarantees__text p {
  line-height: 118.75%;
  letter-spacing: 0.05px;
}

.guarantees__text p:not(:last-child) {
  margin: 0 0 38px;
}

.guarantees__text p:last-child {
  font-weight: 600;
}

.guarantees__button {
  max-width: 212px;
  border-radius: 25px 25px 0 25px;
  min-height: 48px;
  letter-spacing: 1.8px;
}

.guarantees__widget {
  position: relative;
  margin: 40px 8px 0;
  width: 347px;
  height: 347px;
}

.guarantees__widget-label {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  position: absolute;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.testimonials {
  padding: 110px 0 54px;
  background: #edeff4 url("../img/testimonials/bg-left.png") 0 22% no-repeat;
  position: relative;
}

.testimonials::before {
  content: url("../img/testimonials/bg-right.png");
  position: absolute;
  right: 0;
  bottom: 118px;
}

.testimonials .heading-block {
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #161619;
}

.heading-block__box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 0;
}

.testimonials .heading-block__icon {
  margin: 0 28px 0 0;
}

.testimonials .heading-block__subtitle {
  flex: 1 1 100%;
  color: #495a74;
  font-size: 24px;
  margin: 31px 0 0;
  letter-spacing: -0.24px;
}

.testimonials__wrapper {
  overflow: hidden;
  margin: -30px;
  padding: 30px;
}

.testimonials__body {
  width: 100%;
}

.testimonials__video {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  margin: 91px 0 0;
}

.video-block__item {
  flex-shrink: 0;
  position: relative;
  border-radius: 5px;
}

.video-block__image {
  padding-bottom: 125.1851851852%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.video-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-block__play {
  background: rgba(2, 13, 43, 0.3);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(10px, -17px);
}

.video-block__controls {
  background: #3c9b9f;
  display: flex;
  align-items: center;
  min-height: 62px;
  position: relative;
  z-index: 5;
  border-radius: 0 0 5px 5px;
}

.video-player-play {
  width: 58px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-player-progress {
  min-height: 62px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 17px 0 22px;
  background: #2c797d;
  background: linear-gradient(90deg, #2c797d 15%, #3c9b9f 90%);
}

.video-player-progress-full {
  background-color: rgba(255, 255, 255, 0.5);
  height: 8px;
  position: relative;
}

.video-player-progress-watched {
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  height: 8px;
}

.video-player-progress-watched::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
  cursor: pointer;
}

.video-player-volume {
  height: 100%;
  cursor: pointer;
}

.video-player-expand {
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
}

.testimonials__controls,
.block-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 68px 0 0;
}

.testimonials-arrow,
.block-controls-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  cursor: pointer;
}

.testimonials-arrow svg,
.block-controls-arrow svg {
  width: 15px;
  height: 15px;
  fill: #ff5b14;
}

.testimonials-pagination,
.block-controls-pagination {
  padding: 16px 24px 15px 24px;
  background: #ff5b14;
  color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  border-radius: 25px;
  margin: 0 20px;
  letter-spacing: 1px;
}

.testimonials-pagination span,
.block-controls-pagination span {
  font-weight: 700;
}

.testimonials-pagination .swiper-pagination-current {
  font-weight: 700;
}

.testimonials-pagination .swiper-pagination-total {
  font-weight: 400;
}

.install {
  padding: 150px 0 128px;
  background: url("../img/install/bg.png"), url("../img/install/phone.png?v=1");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.install::before {
  content: url("../img/install/phone.png?=1");
  position: absolute;
  right: 9.8%;
  top: 88px;
}

.install:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  background: url("../img/install/bg-top.png");
  background-size: 100% 100%;
  width: 100%;
  height: 90px;
}

.install__text {
  color: #fff;
  padding: 60px 0 145px;
  max-width: 632px;
  position: relative;
  z-index: 2;
}

.install__text p {
  line-height: 125%;
}

.install__text p:not(:last-child) {
  margin: 0 0 19px;
}

.install__links {
  display: flex;
  position: relative;
  z-index: 2;
}

.install__link:not(:last-child) {
  margin: 0 20px 0 0;
}

.work {
  background: #edeff4;
  padding: 85px 0 45px;
}

.work .heading-block {
  color: #161619;
}

.work .heading-block__icon {
  margin: 0 20px 0 0;
}

.work__content {
  padding: 52px 0 0;
}

.work__content p {
  line-height: 118.75%;
}

.work__content p:not(:last-child) {
  margin: 0 0 20px;
}

.work__list {
  margin: 0 0 22px;
}

.work__list li {
  line-height: 118.75%;
  position: relative;
}

.work__list li:not(:last-child) {
  margin: 0 0 19px;
}

.work__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 1px;
  background: #ff5b14;
}

.work__list li::first-letter {
  padding: 0 0 0 20px;
}

.say {
  background: #edeff4;
  padding: 32px 0 100px;
}

.say .heading-block {
  color: #161619;
}

.say__body {
  min-height: 230px;
  background: #020202 url("../img/say/bg.png");
  border-radius: 10px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 67px 0 70px;
  margin: 53px 0 0;
}

.tariffs {
  padding: 0 0 146px;
}

.tariffs .heading-block-common .heading-block__subtitle {
  color: #ff5b14;
  font-size: 24px;
}

.tariffs .heading-block-common .heading-block__title:not(:last-child) {
  margin: 0 0 21px;
}

.tariffs .tariff__body {
  margin: 51px 0 0;
}

.reviews {
  padding: 0 0 109px;
  background: none;
}

.reviews::before {
  content: none;
}

.reviews .heading-block {
  margin: 0;
  text-align: left;
}

.reviews .testimonials__video {
  margin: 0px 0 0;
}

.reviews .testimonials__body {
  margin: 0 0 55px;
}

.reviews__title {
  letter-spacing: 0.1px;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 38px;
}

.reviews__items {
  display: flex;
  flex-direction: column;
}

.reviews__item {
  padding: 32px 30px 24px 30px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.1);
  position: relative;
}

.reviews__item:not(:last-child) {
  margin: 0 0 19px;
}

.item-reviews__header {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 0 0 24px;
  border-bottom: 1px solid #f0f2f4;
}

.item-reviews__date {
  color: #8d99a3;
  display: inline-block;
  margin: 0 0 0 4px;
}

.item-reviews__list {
  margin-left: auto;
  display: flex;
  transform: translateY(-2px);
}

.item-reviews__list li:not(:last-child) {
  margin: 0 5px 0 0;
}

.item-reviews__content {
  padding: 17px 0 0;
}

.item-reviews__content p {
  line-height: 118.75%;
  color: #495a74;
}

.item-reviews__content p:not(:last-child) {
  margin: 0 0 20px;
}

.reviews__button {
  margin: 60px auto 0;
  min-height: 48px;
  letter-spacing: 1.4px;
  max-width: 220px;
}

.learning {
  padding: 0 0 109px;
  background: none;
}

.learning .learn__content {
  color: #161619;
}

.learning .learn__body {
  margin: 48px 0 0;
}

.learning .learn__button {
  padding: 12px 17px 12px 23px;
}

.learning .learn__button span {
  letter-spacing: 0.5px;
}

.learn__question {
  padding: 55px 0 0;
}

.question-learn__box:not(:last-child) {
  margin: 0 0 47.5px;
}

.question-learn__title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 32px;
}

.question-learn__item {
  padding: 0 20px 0 20px;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
}

.question-learn__item.active {
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2), 0 0 0 1px #ff5b14;
}

.question-learn__item:not(:last-child) {
  margin: 0 0 22px;
}

.question-learn__header {
  padding: 22px 30px 20px 0;
  font-weight: 500;
  letter-spacing: 0.15px;
  position: relative;
  cursor: pointer;
}

.question-learn__icon {
  position: absolute;
  right: 0;
  top: 17px;
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #348a8e;
}

.question-learn__icon::before,
.question-learn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: #348a8e;
  transition: all 0.5s ease 0s;
}

.question-learn__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.question-learn__item.active .question-learn__icon {
  border: 1px solid #ff5b14;
}

.question-learn__item.active .question-learn__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.question-learn__item.active .question-learn__icon::before {
  background: #ff5b14;
}

.question-learn__content {
  display: none;
  padding: 20px 0 21px;
  position: relative;
  transform: scale(0);
  height: 0;
  transform-origin: 0% -10%;
  transition: transform 0.7s ease 0s, padding 0.7s ease 0s, height 0.7s ease 0s;
  padding: 0;
}

.question-learn__content.active {
  transform: scale(1);
  height: auto;
  padding: 20px 0 21px;
  display: block;
}

.question-learn__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f0f2f4;
}

.question-learn__content p {
  line-height: 118.75%;
  color: #495a74;
  letter-spacing: 0.15px;
}

.question-learn__content p:not(:last-child) {
  margin: 0 0 19px;
}

.about {
  padding: 0 0 95px;
}

.about__item {
  border: 1px solid #348a8e;
  border-radius: 10px;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  background: #fff;
  display: flex;
  height: 100%;
  overflow: hidden;
}

.about__item:nth-child(even) {
  flex-direction: row-reverse;
}

.about__item:not(:last-child) {
  margin: 0 0 30px;
}

.about__item:nth-child(even) {
  border: 1px solid #ff5b14;
}

.item-about__image {
  flex: 0 0 25.641025641%;
  padding-bottom: 21%;
  min-height: 248px;
}

.item-about__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 25px 20px 29px;
  height: auto;
}

.item-about__title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
}

.item-about__icon {
  display: inline-block;
  margin: 0 12px 0 0;
}

.item-about__text p {
  letter-spacing: 0.15px;
  line-height: 118.75%;
}

.item-about__text p:not(:last-child) {
  margin: 0 0 20px;
}

.item-about__button {
  margin: 26px 0 0;
  max-width: 240px;
  min-height: 48px;
  letter-spacing: 1.3px;
}

.contacts {
  padding: 0 0 66px;
}

.contacts__top {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  display: flex;
  padding: 29px 22px 30px 29px;
  column-gap: 26px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 39px;
}
.contacts__body{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item-contacts {
  display: flex;
  align-items: center;
  position: relative;
}

.item-contacts + .item-contacts {
  padding: 0 0 0 31px;
}

.item-contacts + .item-contacts::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  height: 40px;
  width: 1px;
  background: #d8e2ea;
}

.item-contacts__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px 0 0;
  position: relative;
  right: 5px;
}

.item-contacts__label {
  display: inline-block;
  font-size: 14px;
  color: #8d99a3;
  margin: 0 0 10px;
}

.item-contacts__text {
  font-weight: 500;
  letter-spacing: 0.18px;
}

.contacts__map {
  height: 450px;
  width: 100%;
  border: 1px solid #ff5b14;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 0 42px;
}

.contacts-info__title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 36px;
  letter-spacing: 0.2px;
}

.contacts-info__icon {
  display: inline-block;
  margin: 0 12px 0 0;
}

.contacts-info__list li {
  line-height: 118.75%;
}

.contacts-info__list li:not(:last-child) {
  margin: 0 0 20px;
}

.contacts-info__list li span {
  font-weight: 500;
}
.contacts-info__list li,.item-contacts__text{
  color: black;
}
.contacts-form-div button {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0 33px;
  color: #fff;
  padding: 13px 37px 13px 35px;
  border-radius: 25px 25px 0 25px;
  z-index: 1;
  display: block;
  margin: auto;
}
.contacts-form-div .azure-block::before{
  z-index: -1;

}

.item-contacts__icon{
  margin: 0;
}
.item-contacts + .item-contacts {
  padding: 0 0 0 20px;
}
.contacts-page .contact-input {
  margin-bottom: 20px;
  border: 1px solid #DCD7CD;
  padding-left: 18px;
}
.contacts-page input {
  width: 100%;
  height: 60px;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.contacts-page textarea {
  width: 100%;
  height: 180px;
  padding-top: 14px;
}
.contact-input{
  font-family: "Montserrat", sans-serif;
}
.contacts-form{
  width: 40%;
  min-width: 400px;
  margin-top: 20px;
}
.firm {
  padding: 0 0 92px;
}

.firm-table {
  padding: 3px 0 54px;
}

.firm-table-list {
  padding: 0 30px 0 29px;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  background: #FFF;
  border: 1px solid #ff5b14;
  border-radius: 9px;
}

.firm-table-item {
  display: grid;
  grid-template-columns: 176px 213px 212px 158px minmax(50px, 170px) 1fr;
  grid-template-rows: auto;
}

.firm-table-item__head > * {
  color: #8d99a3;
  font-weight: 500;
  font-size: 14px;
  padding: 23px 0 21px;
  border-bottom: 1px solid #eaeef0;
  padding-right: 10px;
}

.firm-table-item:not(.firm-table-item__head) > * {
  min-height: 90px;
  border-bottom: 1px solid #eaeef0;
  padding: 24px 0 24px;
  padding-right: 10px;
  font-weight: 500;
  display: grid;
  align-items: center;
}

.firm-rating__box {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
}

.firm-rating__list {
  display: flex;
  align-items: center;
  margin: 0 14px 0 0;
}

.firm-rating__list li:not(:last-child) {
  margin: 0 4px 0 0;
}

.firm-rating__value {
  font-weight: 600;
}

.firm-bonus__item {
  display: flex;
  align-items: center;
  background-color: #fff3cd;
  padding: 10px 20px 12px 20px;
  max-width: 140px;
  border-radius: 20px;
  font-weight: 500;
}

.firm-bonus__item span {
  display: flex;
  align-items: center;
  min-height: 20px;
  padding: 0 0 0 27px;
  background: url("../img/firm/bonus.png") left center no-repeat;
}

.firm-check span {
  min-height: 20px;
  display: flex;
  align-items: center;
  padding: 0 0 0 28px;
  background: url("../img/firm/check.png") left center no-repeat;
}

.firm-button .btn-orange span {
  padding: 0 0 0 25px;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 20px;
  background: url("../img/firm/arrow-right.png") left 1px center no-repeat;
}

.firm-button .btn-orange {
  min-height: 40px;
  padding: 10px 15px 10px 26px;
  letter-spacing: 0px;
  font-weight: 700;
}

.firm-info__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 34px;
}

.firm-info__text {
  color: #495a74;
  line-height: 118.75%;
}

.firm-info__text p {
  letter-spacing: 0.15px;
}

.firm-info__text p:not(:last-child) {
  margin: 0 0 18px;
}

.auth {
  padding: 90px 0 180px;
}

.auth-registration {
  padding: 5px 0 80px;
}

.auth-login {
  padding: 5px 0 120px;
}

.auth__body {
  max-width: 780px;
  margin: 0 auto;
}

.auth__box {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  display: flex;
  column-gap: 30px;
  padding: 30px 29px;
}

.auth__image {
  flex: 0 0 48%;
  border-radius: 15px;
  overflow: hidden;
}

.auth__image img {
  border-radius: inherit;
}

.auth__image_password {
  padding-bottom: 36%;
  min-height: 250px;
}

.auth__image_reg {
  min-height: 440px;
  background: url("../img/auth/reg.png") center/cover no-repeat;
}

.auth__image_login {
  padding-bottom: 55%;
  min-height: 400px;
}

.auth__image-body {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
}

.auth-image-content {
  padding: 105px 20px 30px;
  height: 100%;
  font-size: 12px;
}

.auth-image-content__title {
  color: #ffc107;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 42px;
}

.auth-image-content__title span {
  padding: 0 0 0 35px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.auth-image-content__title span::before {
  content: url("../img/auth/reg-sale.png");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.auth-image-content__subtitle {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 35px;
}

.auth-image-content__subtitle span {
  color: #ffc107;
}

.auth-image-content__text p {
  line-height: 146%;
}

.auth-image-content__text p:not(:last-child) {
  margin: 0 0 26px;
}

.auth-image-content__text p span {
  color: #ffc107;
}

.auth__form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.auth__title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 31px;
}

.auth__item {
  position: relative;
  margin-bottom: 10px;
}

.auth__item:not(:last-child) {
  margin: 0 0 20px;
}

.auth__input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: transparent;
  min-height: 50px;
  padding: 17px 40px 13px 20px;
  color: #495a74;
  font-size: 14px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}

.auth__input::placeholder {
  color: #495a74;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.auth__input:focus,
.auth__input:hover {
  border: 1px solid #161619;
}

.auth__icon {
  position: absolute;
  right: 21px;
  top: 16px;
  background: none;
}

.auth__button {
  margin: 20px 0 20px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 25px;
  width: 100%;
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  letter-spacing: 0.7px;
  padding: 20px 15px 15px;
  transition: all 0.2s ease 0s;
}

.auth__button:hover {
  background: linear-gradient(110deg, #1a9197 30%, #1a9197 80%);
}

.auth__bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  text-align: center;
  padding: 30px 0 0;
  border-top: 1px solid #eaeef0;
  font-size: 14px;
}

.auth-registration .auth__bottom {
  margin: 0;
  padding: 19px 0 0;
}

.auth__text {
  color: #495a74;
  display: inline-block;
  margin: 0 3px 0 0;
}

.auth__link {
  color: #348a8e;
  display: inline-block;
  transition: all 0.2s ease 0s;
}

.checkbox-item {
  position: relative;
}

.checkbox-item label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.checkbox-items .checkbox-item:not(:last-child) {
  margin: 0 0 20px;
}

.real-checkbox {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  margin: -1px;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 14px;
  width: 14px;
  flex: 0 0 14px;
  background: transparent;
  border: 1px solid #33888c;
  margin: 0px 6px 0 0;
  transition: 0.2s ease-in;
}

.custom-checkbox::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  background: url("../img/icons/check.svg");
  background-size: 11px 11px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition: 0.2s ease-in;
}

.real-checkbox:checked + .custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}

.real-checkbox:checked + .custom-checkbox {
  background: #fff;
}

.checkbox-items {
  margin: 11px 0 18px;
}

.checkbox-item__text {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 124%;
}

.checkbox-item__text a {
  color: inherit;
}

.auth__choice {
  margin: 25px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}

.auth__choice .auth__link {
  font-size: 14px;
}

.auth__choice .checkbox-item__text {
  font-size: 14px;
  color: #161619;
  width: 100%;
}

.auth-login .auth__button {
  margin: 32px 0 20px;
}

.auth-login .auth__bottom {
  padding-bottom: 17px;
}

.profile {
  padding: 5px 0 132px;
}

.profile__body {
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
  row-gap: 30px;
}

.profile-content {
  flex: 1 1 auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  padding: 34px 30px 29px;
}

.profile-content__security,
.profile-content__settings {
  padding-bottom: 43px;
  padding-left: 29px;
  padding-right: 29px;
}

.aside-profile {
  flex: 0 0 270px;
  padding: 29px 30px 30px;
  border-radius: 16px;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  background: #fff;
}

.aside-profile__title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 31px;
}

.aside-profile__list li:not(:last-child) {
  margin: 0 0 16px;
}

.aside-profile__link {
  width: 100%;
  display: inline-block;
  color: #495a74;
  min-height: 50px;
  padding: 15px 18px 15px;
  box-shadow: 0 0 0 1px #d1dce2;
  border-radius: 6px;
  line-height: 125%;
}

.aside-profile__link.current {
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  color: #fff;
  box-shadow: none;
}

.aside-profile__link_exit span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 0 0 36px;
  background: url("../img/profile/exit-icon.png") left 1px center no-repeat;
}

.profile-content__title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eaeef0;
  padding: 0 0 20px;
  margin: 0 0 29px;
}

.profile-content__security .profile-content__title,
.profile-content__settings .profile-content__title {
  margin: 0 0 24px;
}

.subscribe__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  min-height: 100px;
  padding: 24px 20px;
  border-radius: 19px;
  box-shadow: 0 0 0 1px #ff5b14;
}

.subscribe__item:not(:last-child) {
  margin: 0 0 20px;
}

.subscribe__item_active {
  box-shadow: 0 0 0 1px #d1dce2;
}

.item-subscribe__title {
  padding: 0 15px 0 19px;
}

.item-subscribe__button {
  margin-left: auto;
  min-height: 48px;
  letter-spacing: 0.8px;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 29px 12px 27px;
}

.item-subscribe__button.disabled {
  background: linear-gradient(90deg, #8da2b0 40%, #abbac4 70%);
  padding: 14px 33px 12px 30px;
}

.profile-form {
  display: flex;
  flex-direction: column;
}

.form__item:not(:last-child) {
  margin: 0 0 19px;
}

.form__label {
  display: inline-block;
  margin: 0 0 13px;
  font-size: 14px;
  position: relative;
}

.form__label span {
  color: #8d99a3;
  margin: 0 0 0 -1px;
}

.form__label_required {
  padding: 0 8px 0 0;
}

.form__label_required::before {
  content: "*";
  position: absolute;
  top: 0;
  right: 0px;
  color: #ff0101;
}

.form__input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: transparent;
  min-height: 50px;
  padding: 17px 40px 13px 20px;
  color: #8d99a3;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}

.form__input::placeholder {
  color: #8d99a3;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.form__input:focus,
.form__input:hover {
  border: 1px solid #161619;
}

.form__button {
  max-width: 200px;
  min-height: 48px;
  margin: 42px 0 0;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.result {
  padding: 0 0 87px;
}

.result__content {
  padding: 6px 0 0;
}

.result__text_approve {
  padding: 0 0 0 46px;
  background: url("../img/result/finger.png") left no-repeat;
}

.result__text_approve p {
  line-height: 118.75%;
}

.result__text_approve span {
  font-weight: 600;
}

.result-box {
  margin: 50px 0 85px;
  padding: 49px 100px 69px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 9px;
  border: 1px solid #1bbc4c;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  background: #020202 url("../img/result/bg.png") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.result-box__icon {
  margin: 0 0 25px;
}

.result-box__text {
  line-height: 125%;
  font-weight: 400;
}

.result-box__text span {
  font-weight: 600;
}

.result-box__button {
  position: absolute;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #17b241 40%, #1fc657 60%);
  padding: 16px 24px 17px 24px;
  border-radius: 25px;
  transition: all 0.2s ease 0s;
  min-width: 220px;
}

.result-box__button:hover {
  background-image: linear-gradient(90deg, #119936 40%, #119936 60%);
}

.result__list-title {
  font-weight: 600;
  letter-spacing: 0.14px;
}

.result__list {
  padding: 34px 0 54px;
}

.result__list li {
  color: #495a74;
  position: relative;
  line-height: 118.75%;
}

.result__list li:first-letter {
  padding: 0 0 0 23px;
}

.result__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 2px;
  background: #ff5b14;
}

.result__list li:not(:last-child) {
  margin: 0 0 20px;
}

.result__list li span {
  color: #ff0000;
}

.result__bottom p {
  letter-spacing: 0.15px;
  margin: 0 0 27px;
}

.result__bottom span {
  display: inline-block;
  font-size: 14px;
  color: #495a74;
  position: relative;
}

.result__bottom span::before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff0000;
}

.result__bottom span:first-letter {
  padding: 0 0 0 8px;
}

.job {
  padding: 0 0 107px;
}

.job .heading-block.heading-block-common {
  margin: 0 0 38px;
}

.item-job {
  border-radius: 9px;
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.1);
  padding: 30px 35px 30px 35px;
  display: grid;
  grid-template-columns: 80px 1fr minmax(150px, 285px) auto;
  align-items: center;
  gap: 20px 40px;
}

.item-job:not(:last-child) {
  margin: 0 0 20px;
}

.item-job__icon {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #348a8e;
  border-radius: 5px;
}

.item-job__description {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  letter-spacing: 0.15px;
}

.item-job__place {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  color: #495a74;
  font-weight: 500;
  font-size: 16px;
  padding: 0 0 0 20px;
  position: relative;
  margin: 17px 0 0;
}

.item-job__place::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/job/point-orange.png") left no-repeat;
  width: 14px;
  height: 16px;
}

.item-job__schedule {
  font-size: 14px;
  margin-left: auto;
  padding: 4px 72px 0 0px;
}

.schedule-job__label {
  color: #495a74;
  padding: 0 2px 0 0px;
}

.schedule-job__time {
  color: #161619;
}

.schedule-job__place {
  font-weight: 600;
  padding: 0 0 0 24px;
  position: relative;
  font-size: 16px;
  display: block;
  margin: 18px 0 0;
  letter-spacing: -0.2px;
}

.schedule-job__place::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  background: url("../img/job/case-orange.png") left no-repeat;
  width: 16px;
  height: 14px;
}

.item-job__button {
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(110deg, #33888c 30%, #3ea1a4 80%);
  text-transform: uppercase;
  letter-spacing: 0px;
  flex-shrink: 0;
  padding: 12px 30px 10px 31px;
}

.item-job__button span {
  padding: 0 0 0 25px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  background: url("../img/job/list.png") left no-repeat;
}

.item-job__button:hover {
  background: linear-gradient(110deg, #33888c 30%, #33888c 80%);
}

.news {
  padding: 0 0 95px;
}

.news-top {
  display: grid;
  grid-template-columns: 1fr 370px;
  grid-template-rows: auto auto;
  gap: 27px 30px;
}

.item-news__big {
  grid-row: span 2;
}

.item-news__big .item-news__image {
  padding-bottom: 58.4415584416%;
  height: 100%;
}

.item-news__image {
  padding-bottom: 57.2972972973%;
  overflow: hidden;
}

.item-news__image img {
  border-radius: inherit;
  max-width: 100%;
}

.item-news__image::before {
  content: "";
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.news-top .item-news__image {
  min-height: 220px;
}

.news__item {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.1);
}

.item-news__labels {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 20px;
}

.item-news__big .item-news__labels {
  left: 40px;
}

.item-news__label {
  min-height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 17px 5px 15px;
  border-radius: 12px;
}

.news-top .item-news__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
  background: none;
  padding: 0;
  box-shadow: none;
}

.item-news__body {
  position: static;
  background: #fff;
  padding: 20px 22px 24px 18px;
  display: block;
  flex: 1 1 auto;
}

.item-news__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.news-top .item-news__content {
  padding: 70px 20px 30px 18px;
}

.item-news__date {
  font-size: 14px;
  font-weight: 500;
  color: #8d99a3;
}

.news-top .item-news__date {
  margin: 0 0 13px;
  position: static;
}

.item-news__date {
  position: absolute;
  bottom: 28px;
  left: 20px;
  z-index: 3;
}

.item-news__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  color: #161619;
}

.news-top .item-news__title {
  color: #fff;
}

.item-news__big .item-news__content {
  padding: 70px 38px 28px 39px;
}

.item-news__big .item-news__title {
  font-size: 30px;
}

.news-top .item-news__big .item-news__date {
  margin: 0 0 12px;
}

.category-news {
  padding: 39px 0 39px;
}

.category-news__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: 10px;
  overflow-x: auto;
}

.category-news__list li {
  border-radius: 20px;
}

.category-news__list li:not(:last-child) {
  margin: 0 20px 0 0;
}

.category-news__link {
  flex-shrink: 0;
  overflow: hidden;
  color: #4e4e4e;
  background: #fff;
  border-radius: 20px;
  padding: 10px 20px 8px 20px;
  display: flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
}

.category-news__link.active {
  color: #fff;
  background-color: #348a8e;
}

.news-main__body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  justify-content: center;
  gap: 29px 29px;
}

.item-news__text {
  padding: 20px 0 0;
  margin-top: auto;
  color: #8d99a3;
  line-height: 118.75%;
}

.news-main__body .news__item {
  display: flex;
  flex-direction: column;
}

.news .block-controls {
  margin: 59px 0 0;
}

.news .block-controls-pagination {
  background-color: #348a8e;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
}

.history {
  padding: 0 0 114px;
}

.history-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
  border: 1px solid #348a8e;
  padding: 23px 87px 22px 30px;
  margin: 0 0 30px;
}

.history-header__choice {
  padding: 0 30px 0 0;
}

.history-header__choice .select__item {
  border: 1px solid #d1dce2;
  background: transparent;
  min-width: 200px;
  border-radius: 6px;
}

.history-header__choice .select__value {
  width: 100%;
  min-height: 50px;
  padding: 14px 19px 14px 19px;
  color: #495a74;
  font-weight: 400;
}

.history-header__choice .select__value::before {
  background: url(../img/history/arrow-down.png) center/100% no-repeat;
}

.history-header__choice .select__options {
  font-weight: 400;
  color: #161619;
}

.history-header__item {
  position: relative;
}

.history-header__item + .history-header__item {
  padding-left: 66px;
}

.history-header__item + .history-header__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #d1dce2;
}

.history-header__label {
  color: #8d99a3;
  margin: 0 0 15px;
}

.history-header__value {
  font-size: 22px;
  font-weight: 700;
}

.history-header__percent {
  font-size: 22px;
  font-weight: 700;
  color: #1bbc4c;
}

.history-header__percent-green {
  margin: 0 0 0 11px;
  padding: 3px 28px 3px 10px;
  font-size: 14px;
  color: #fff;
  background: #1bbc4c;
  border-radius: 6px;
  position: relative;
  font-weight: 700;
}

.history-header__percent-green::before {
  content: url("../img/history/chart.png");
  position: absolute;
  top: 2px;
  right: 6px;
}

.history-header__values {
  display: flex;
  align-items: flex-start;
}

.history-box:not(:last-child) {
  margin: 0 0 20px;
}

.history-box__heading {
  min-height: 127px;
  border: 1px solid #ff5b14;
  background: #fff;
  box-shadow: 0px 10px 10px 0px rgba(22, 57, 59, 0.1);
  display: grid;
  grid-template-columns: 120px 126px 189px 244px 252px auto;
  align-items: center;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  position: relative;
}

.history-box__item:first-child {
  align-self: stretch;
}

.history-box__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.history-date {
  background: linear-gradient(45deg, #fd5c25 30%, #fd7c31 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  padding: 25px 15px;
  font-weight: 500;
}

.history__day {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 13px;
}

.history__month {
  margin: 0 0 6px;
}

.history-count__number {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
}

.history-count {
  padding: 0 0 0 7px;
}

.history-count__label {
  font-weight: 500;
}

.history-box__icon {
  margin: 0 0 14px;
}

.history-box__label {
  text-align: center;
}

.history-box__label span {
  display: inline-block;
  font-weight: 600;
}

.history-box__percents {
  padding: 11px 10px 11px 30px;
  border-left: 1px solid #d1dce2;
}

.history-box__percents_lucky .history-box__percent {
  color: #1bbc4c;
}

.history-box__percents_fail .history-box__percent {
  color: #ff0000;
}

.history-box__percent {
  font-weight: 700;
}

.history-box__percent:not(:last-child) {
  margin: 0 0 8px;
}

.history-box__percent span {
  font-weight: 400;
  color: #161619;
}

.history-box__main .statistics__table {
  margin: 0;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(22, 57, 59, 0.2);
}

.history-box__main .table-stats__item {
  padding: 24px 0 21px;
}

.history-box__main .table-stats__row {
  display: grid;
  grid-template-columns: 115px 190px minmax(180px, 223px) 193px 1fr 100px;
}

.history-box__main .table-stats__icon {
  margin: 0 4px 0 3px;
}

.history-box__main .table-stats__row:not(.table-stats__row-head) .table-stats__item {
  padding: 22px 0 22px;
}

.table-stats-bank p:not(:last-child) {
  margin: 0 0 11px;
}

.table-stats-result {
  display: inline-flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  padding-left: 3px;
}

.table-stats-result_lucky .table-stats-result__label {
  background: #1bbc4c;
}

.table-stats-result_lucky .table-stats-result__gain {
  color: #1bbc4c;
}

.table-stats-result_fail .table-stats-result__label {
  background: #ff0000;
}

.table-stats-result_fail .table-stats-result__gain {
  color: #ff0000;
}

.table-stats-result__label {
  color: #fff;
  font-weight: 700;
  padding: 3px 7px 2px;
  border-radius: 6px;
  position: relative;
  top: 3px;
}

.table-stats-result__gain {
  margin: 13px 0 0;
}

/* Адаптивные изображения */

._ibg {
  position: relative;
}

._ibg img,
._ibg video,
._ibg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Знак рубля */

._rub {
  position: relative;
}

._rub::before {
  content: "₽";
  position: absolute;
}

/* Убираем стрелки у input[type="number"] */

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

.block::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: none;
}

.block::-webkit-scrollbar-track {
  width: 0;
  height: 0;
  background: none;
}

.block::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
  background: none;
}

.block {
  scrollbar-width: none;
}

._swiper {
  overflow: hidden;
}

._swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
}

._swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

.select {
  position: relative;
}

.select__item {
  position: relative;
  background-color: white;
  box-shadow: 0px 3px 20px 0px rgba(22, 57, 59, 0.2);
  border-radius: 15px;
}

.select__title {
  color: #161619;
  background: #fff;
  cursor: pointer;
  border-radius: 15px;
}

.select__value {
  display: flex;
  font-size: 16px;
  line-height: 125%;
  min-height: 34px;
  padding: 8px 15px 6px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  color: #161619;
  font-weight: 600;
}

.select__value::before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 12px;
  height: 6px;
  background: url("../img/icons/arrow-down.png") center/100% no-repeat;
  margin-left: 10px;
}

.select__options {
  color: #161619;
  font-weight: 600;
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  border-radius: 4px 4px 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  font-size: 16px;
  padding: 0px 0px 5px 0px;
  box-shadow: 0px 0px 10px 0px rgba(22, 57, 59, 0.2);
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value::before {
  transform: rotate(-180deg);
}

.select._active.select__options {
  display: block;
}

.heading-block {
  color: #FFF;
  display: flex;
  align-items: center;
}

.heading-block.heading-block-common {
  color: #161619;
  margin: 0 0 45px;
}

.heading-block-common .heading-block__subtitle {
  color: #495a74;
  font-size: 16px;
  letter-spacing: 0.14px;
}

.heading-block-common .heading-block__title:not(:last-child) {
  margin: 0 0 30px;
}

.heading-block__icon {
  margin: 0 26px 0 0;
}

.heading-block-common .heading-block__title {
  font-size: 36px;
}

.heading-block__title {
  font-size: 48px;
  font-weight: 600;
}

.heading-block__title:not(:last-child) {
  margin: 0 0 6px;
}

.heading-block__subtitle {
  color: #ff5b14;
  font-size: 24px;
  font-weight: 500;
}

.breadcrumbs {
  padding: 25px 0 26px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}

.breadcrumbs__item {
  font-size: 14px;
  color: #8d99a3;
}

.breadcrumbs__item + .breadcrumbs__item {
  margin: 0 0 0 3px;
  position: relative;
  padding: 0 0 0 10px;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.breadcrumbs__link {
  font-size: 14px;
  color: #8d99a3;
}

.unsub_page .form-control {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 300px;
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.unsub_page{
  margin-bottom: 60px;
}
.unsub_page .heading-block__title{
  text-align: center;
  margin-bottom: 30px;
}
.unsub_page .guarantees__button.btn-orange.btn.btn-primary{
  margin: auto;
}
.unsub_page div.row {
  display: flex;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.unsub_page  .row {
  margin: 0!important;
  position: relative;
}
.unsub_page  .col-12 {
  flex: 0 0 auto;
  width: 100%;
  padding: 3%;
}
.unsub_page  .mb-3 {
  margin-bottom: 1rem!important;
}
.unsub_page .about-item-cont {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.unsub_page .about-item-photo img {
  max-width: 100%;
  box-shadow: 0px 1px 2px 0px rgb(16 21 21 / 10%), 0px 2px 4px 0px rgb(16 21 21 / 10%), 0px 4px 8px 0px rgb(16 21 21 / 10%), 0px 8px 16px 0px rgb(16 21 21 / 15%), 0px 16px 32px 0px rgb(16 21 21 / 15%);
  border-radius: 8px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1520px) {
  .home__video::before {
    right: -30px;
    top: 84px;
  }

  .video-home__icon.video-home__icon_bell {
    left: -15px;
  }

  .video-home__icon.video-home__icon_rub {
    right: 10px;
    bottom: -70px;
    top: auto;
  }
}

@media screen and (max-width: 1150px) {
  .firm-button .btn-orange {
    margin: 0 10px 0 20px;
  }

  .firm-table-list {
    width: 100%;
    min-width: 200px;
    overflow-x: auto;
  }

  .firm-table-item {
    grid-template-columns: 176px 213px 212px 158px minmax(50px, 170px) 205px;
  }
}

@media screen and (max-width: 1140px) {
  .menu__list li + li {
    padding: 0 0 0 12px;
  }

  .menu__list li + li {
    padding: 0 0 0 0px;
  }

  .menu__list li + li::before {
    content: none;
  }

  .table-stats__row {
    grid-template-columns: 80px 150px 200px 100px 190px 1fr;
  }

  .table-stats {
    min-width: 0;
    margin: 30px -16px 0;
    overflow-x: scroll;
    border: none;
    border-radius: 0;
  }

  .table-stats__row {
    border-bottom: none;
  }

  .table-stats__button {
    margin: 0 15px 0 0;
  }

  .table-stats__row > * {
    border-bottom: 1px solid rgba(141, 153, 163, 0.2);
    min-height: 60px;
    height: 100%;
    padding-right: 10px;
  }

  .table-stats__row:not(.table-stats__row-head) .table-stats__item {
    padding-right: 10px;
    align-items: center;
  }

  .install::before {
    right: -10%;
    top: auto;
    bottom: 0;
    content: "";
    background: url("../img/install/phone.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 600px;
    height: 500px;
  }

  .history-header__item + .history-header__item {
    padding: 0;
  }

  .history-header__item + .history-header__item::before {
    content: none;
  }

  .history-box__main .table-stats__item {
    padding-right: 10px;
  }

  .history-box__main .table-stats__row:not(.table-stats__row-head) .table-stats__item {
    padding-right: 10px;
  }

  .history-box__main .table-stats__row {
    grid-template-columns: 115px 190px minmax(180px, 223px) 193px 200px 100px;
  }

  .history-box__main .statistics__table {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
  }

  .history-box__heading {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 0px;
  }

  .history-count {
    padding: 0;
  }

  .history-box__percents {
    padding: 0;
    border: none;
  }

  .history-box__item {
    min-width: 50px;
    flex-direction: row;
    align-items: center;
  }

  .history-box__item:not(:first-child) {
    padding: 15px;
  }

  .history-box__icon {
    margin: 0 10px 0 0;
  }

  .history-count {
    display: flex;
    align-items: center;
  }

  .history-count__number {
    margin: 0 10px 0 0;
  }

  .history-date {
    padding: 10px;
  }

  .table-stats-result {
    padding: 0 20px 0 0;
  }
}

@media screen and (max-width: 991.98px) {
  .menu__icon {
    display: block;
    position: relative;
    z-index: 10;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }

  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after {
    position: absolute;
    height: 2px;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #FFF;
  }

  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }

  .menu__icon::before {
    top: 0;
  }

  .menu__icon::after {
    bottom: 0;
  }

  .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0%, -50%);
  }

  .menu__icon.active span {
    transform: scale(0) translate(0px, -50%);
  }

  .menu__icon.active::before {
    top: 10px;
    transform: rotate(45deg) translate(0%, -50%);
  }

  .menu__icon.active::after {
    bottom: 9px;
    transform: rotate(-45deg) translate(0%, 50%);
  }

  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 80px 30px 40px 30px;
    transition: top 0.3s ease 0s;
    background: #151618;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 5;
  }

  .menu.show-menu {
    top: 0;
  }

  .menu__list {
    flex-direction: column;
    align-items: center;
  }

  .menu__list:not(:last-child) {
    margin: 0 0 20px;
  }

  .menu__link {
    font-size: 16px;
  }

  .header__bottom {
    padding: 15px 0 15px;
  }

  .header__login {
    margin-left: 8px;
    padding: 13px 15px 13px 15px;
  }

  .actions-header__list li:not(:last-child) {
    margin: 0 10px 0 0;
  }

  .actions-header__link {
    letter-spacing: 0.2px;
  }

  .home {
    padding: 150px 0 120px;
  }

  .home__body {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 50px;
  }

  .home__video {
    align-self: center;
  }

  .table-stats__row {
    grid-template-columns: 80px 150px 200px 100px 190px 190px;
  }

  .tariff__head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }

  .tariff {
    background-position: 0 65%, 100% 40%;
  }

  .testimonials .heading-block {
    text-align: left;
  }

  .install::before {
    content: none;
  }

  .install__text {
    max-width: 100%;
    padding: 50px 0 70px;
  }

  .say__body {
    flex-direction: column;
    row-gap: 30px;
    padding: 30px 20px;
    margin: 30px 0 0;
  }

  .say__item img {
    max-width: 100%;
  }

  .item-about__image {
    flex: 0 0 36%;
    min-height: 220px;
  }

  .item-about__content {
    padding: 15px 20px;
  }

  .contacts__map {
    height: 300px;
  }

  .item-subscribe__button {
    flex: 1 1 100%;
    margin: 0;
    font-size: 12px;
    padding: 14px 20px 12px;
  }

  .item-subscribe__button.disabled {
    padding: 14px 15px 12px;
  }

  .profile__body {
    flex-direction: column;
    align-items: stretch;
  }

  .aside-profile {
    flex: 1 1 auto;
    width: 100%;
    padding: 20px 20px;
  }

  .profile-content {
    padding: 30px 20px;
  }

  .subscribe__item {
    padding: 20px 15px;
  }

  .item-subscribe__title {
    font-size: 18px;
    padding: 0 0px;
  }

  .item-subscribe__icon {
    max-width: 100%;
    margin: 0 10px 0 0;
  }

  .item-subscribe__icon img {
    max-width: 100%;
  }

  .form__button {
    max-width: 100%;
  }

  .item-job__schedule {
    padding: 0;
    align-self: end;
  }

  .item-job {
    grid-template-columns: 80px 1fr 180px;
    gap: 20px 15px;
    align-items: end;
  }

  .item-job__button {
    grid-column: span 3;
  }

  .news-top {
    grid-template-columns: 1fr 1fr;
  }

  .item-news__big {
    grid-column: span 2;
  }

  .item-news__big .item-news__image {
    padding-bottom: 50%;
  }

  .history-header {
    flex-direction: column;
    padding: 23px 30px 23px;
  }

  .history-header__choice {
    padding: 0;
  }
}
@media (min-width: 768px){
  .unsub_page .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media screen and (max-width: 767.98px) {
  .menu__bottom {
    display: block;
  }

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

  .header__logo {
    position: relative;
    z-index: 2;
  }

  /* .header__top {
    padding: 7px 0;
  } */

  .header__actions {
    flex-direction: column;
  }

  .actions-header__list {
    flex-direction: column;
  }

  .actions-header__list li:not(:last-child) {
    margin: 0 0px 15px 0;
  }

  .header__login,
  .profile-wrapper .login-header {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .header__login span {
    justify-content: center;
  }

  .header__bottom {
    padding: 0;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column-reverse;
  }

  .footer__links {
    padding: 0;
  }

  .video-home__image {
    width: 100%;
    padding-bottom: 40%;
    min-height: 200px;
  }
  .home__video {
    width: 100%;
    padding: 0;
  }
  .video-home__icon {
    display: none;
  }
  .home__video::before {
    display: none;
  }

  .home {
    padding: 70px 0 70px;
  }

  .home__button {
    flex: 1 1 auto;
  }
  .home__title {
    font-size: 30px;
    margin: 0 0 30px;
  }

  .home__list li {
    font-size: 16px;
  }
  .home__list li::before {
    top: 1px;
  }
  .home__bottom {
    margin: 50px 0 0;
  }
  .statistics__title {
    font-size: 20px;
  }

  .statistics__icon {
    flex: 0 0 40px;
    align-self: flex-start;
  }

  .statistics__icon img {
    max-width: 100%;
  }

  .statistics {
    padding: 70px 0 70px;
    background: #edeff4 url(../img/statistic/bg.png) top center/100% auto no-repeat;
  }

  .data-statistics {
    margin: 40px 0 0;
  }

  .statistics__wrapper {
    height: 100%;
    overflow: hidden;
    margin: -30px;
    padding: 30px;
    position: relative;
  }

  .data-statistics {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 0;
  }

  .data-statistics__item {
    flex-shrink: 0;
  }

  .learn {
    padding: 70px 0 70px;
  }

  .heading-block__title {
    font-size: 28px;
  }

  .heading-block__subtitle {
    font-size: 20px;
  }

  .heading-block__icon {
    flex: 0 0 50px;
    align-self: flex-start;
  }

  .heading-block__icon img {
    max-width: 100%;
  }

  .learn__body {
    margin: 40px 0 0;
  }

  .learn__items {
    grid-template-columns: 1fr;
  }

  .learn__content {
    padding: 8px 0 0;
  }

  .learn__content p {
    font-size: 16px;
  }

  .learn__button {
    max-width: 100%;
    margin: 50px 0 0;
  }

  .learn__wrapper {
    height: 100%;
    overflow: hidden;
    padding: 25px;
    margin: -25px;
    position: relative;
  }

  .learn__wrapper .learn__items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 0;
  }

  .learn__wrapper .learn__item {
    flex-shrink: 0;
    width: 100%;
  }

  .learn__image-box {
    box-shadow: none;
  }

  .get-money {
    padding: 70px 0 70px;
  }

  .tariff__body {
    margin: 40px 0 0;
  }

  .tariff__head {
    margin: 0 0 30px;
  }

  .tariff__items {
    grid-template-columns: 1fr;
  }

  .item-tariff__button {
    width: 91%;
  }

  .tariff__choice {
    margin: 0;
  }

  .tariff__sale {
    display: none;
  }

  .head-tariff__left {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }

  .tariff__item {
    padding: 25px 10px 35px;
  }

  .get-money .heading-block__title:not(:last-child) {
    margin: 0 0 6px;
  }

  .guarantees__widget {
    width: 250px;
    height: 250px;
    margin: 0;
    position: absolute;
    top: 0px;
    right: 0px;
  }

  .guarantees__widget img {
    height: 100%;
  }

  .guarantees__widget-label {
    font-size: 40px;
  }

  .guarantees {
    padding: 130px 0 70px;
    position: relative;
  }

  .guarantees .heading-block {
    margin: 0 0 60px;
    width: 50%;
  }

  .guarantees__text p:not(:last-child) {
    margin: 0 0 20px;
  }

  .guarantees__info {
    flex: 0 1 100%;
  }

  .guarantees__text {
    margin: 0 0 40px;
  }

  .guarantees__button {
    max-width: 100%;
  }

  .testimonials .heading-block__subtitle {
    font-size: 18px;
    margin: 15px 0 0;
    letter-spacing: 0px;
  }

  .testimonials {
    padding: 70px 0 70px;
    background: #edeff4;
  }

  .testimonials__video {
    margin: 40px 0 0;
  }

  .testimonials__controls {
    margin: 30px 0 0;
  }

  .install {
    padding: 70px 0 70px;
  }

  .install::after {
    content: none;
  }

  .install__links {
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 15px;
  }

  .install__link:not(:last-child) {
    margin: 0 0px 0 0;
  }

  .work {
    padding: 70px 0 40px;
  }

  .work__content {
    padding: 30px 0 0;
  }

  .say {
    padding: 30px 0 70px;
  }

  .tariffs .tariff__body {
    margin: 40px 0 0;
  }

  .tariffs {
    padding: 0 0 80px;
  }

  .tariffs .heading-block-common .heading-block__subtitle {
    font-size: 20px;
  }

  .reviews.testimonials {
    padding: 0 0 70px;
  }

  .reviews.testimonials .heading-block__subtitle {
    margin: 0;
    font-size: 18px;
  }

  .reviews .testimonials__controls {
    margin: 40px 0 0;
  }

  .reviews .testimonials__body {
    margin: 0 0 40px;
  }

  .reviews__title {
    margin: 0 0 30px;
    font-size: 24px;
  }

  .item-reviews__list {
    margin: 0;
    transform: none;
  }

  .item-reviews__header {
    flex-direction: column-reverse;
  }

  .item-reviews__date {
    margin: 0;
    order: -1;
  }

  .reviews__button {
    margin: 40px auto 0;
    max-width: 100%;
  }

  .learning {
    padding: 0 0 70px;
  }

  .learning .learn__body {
    margin: 30px 0 0;
  }

  .learn__question {
    padding: 40px 0 0;
  }

  .question-learn__title {
    font-size: 20px;
    margin: 0 0 24px;
  }

  .question-learn__box:not(:last-child) {
    margin: 0 0 35px;
  }

  .about__item {
    flex-direction: column;
  }

  .about__item:nth-child(even) {
    flex-direction: column;
  }

  .item-about__title {
    font-size: 18px;
  }

  .item-about__button {
    max-width: 100%;
  }

  .about {
    padding: 0 0 70px;
  }

  .contacts__top {
    /* flex-direction: column; */
    margin: 0 0 30px;
  }

  .item-contacts + .item-contacts {
    padding: 0;
  }

  .item-contacts + .item-contacts::before {
    content: none;
  }

  .contacts__map {
    margin: 0 0 30px;
  }

  .contacts-info__title {
    margin: 0 0 30px;
  }

  .contacts {
    padding: 0 0 60px;
  }

  .firm-table {
    padding: 0 0 30px;
  }

  .firm-info__title {
    font-size: 22px;
    margin: 0 0 30px;
  }

  .firm {
    padding: 0 0 70px;
  }

  .auth {
    padding: 20px 0 80px;
  }

  .auth__box {
    flex-direction: column;
    row-gap: 20px;
  }

  .auth__box {
    padding: 20px 15px;
  }

  .auth__title {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .auth__image_reg,
  .auth__image_login {
    min-height: 250px;
  }

  .auth-image-content {
    padding: 50px 20px 30px;
  }

  .subscribe__item {
    flex-direction: column;
    align-items: stretch;
  }

  .profile {
    padding: 0 0 80px;
  }

  .aside-profile__title {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .result__content {
    padding: 0;
  }

  .result-box {
    margin: 40px 0 60px;
    padding: 30px 20px 50px;
  }

  .result-box__button {
    min-width: 90%;
  }

  .result__list {
    padding: 25px 0 40px;
  }

  .result__text_approve {
    background-position: left top;
  }

  .result {
    padding: 0 0 70px;
  }

  .job {
    padding: 0 0 70px;
  }

  .job .heading-block.heading-block-common {
    margin: 0 0 30px;
  }

  .item-job {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .item-job__button {
    grid-column: span 1;
  }

  .item-job__schedule {
    margin: 0;
  }

  .schedule-job__place,
  .item-job__place {
    margin: 12px 0 0;
  }

  .item-job__icon {
    margin: 0 auto;
  }

  .item-job {
    padding: 30px 20px;
  }

  .item-job__description {
    font-size: 16px;
    line-height: 125%;
  }

  .item-news__big .item-news__content {
    padding: 40px 20px 20px 20px;
  }

  .item-news__big .item-news__title {
    font-size: 20px;
  }

  .item-news__big .item-news__labels {
    left: 20px;
  }

  .news-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px 0px;
  }

  .item-news__big {
    grid-column: span 1;
  }

  .news-main__body {
    display: grid;
    grid-template-columns: 1fr;
  }

  .item-news__labels {
    top: 10px;
    left: 10px;
  }

  .item-news__date {
    left: 10px;
    bottom: 20px;
  }

  .item-news__body {
    padding: 20px 15px;
  }

  .news .block-controls {
    margin: 40px 0 0;
  }

  .news {
    padding: 0 0 70px;
  }

  .history {
    padding: 0 0 70px;
  }

  .history-box__item:first-child {
    width: 100%;
  }

  .history-date {
    width: 100%;
    text-align: center;
  }

  .history__day {
    font-size: 20px;
    margin: 0 0 10px;
  }

  .history-box__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .history-box__item:not(:first-child) {
    padding: 10px 15px;
  }

  .heading-block.heading-block-common {
    margin: 0 0 30px;
  }

  .heading-block-common .heading-block__title {
    font-size: 28px;
  }

  .heading-block-common .heading-block__subtitle {
    line-height: 125%;
  }

  .heading-block-common .heading-block__title:not(:last-child) {
    margin: 0 0 20px;
  }

  .breadcrumbs {
    padding: 20px 0 20px;
  }
}

@media (max-width: 767.98px) {
  .touch [data-fullscreen] {
    transition: height 0.2s;
  }
}

@media screen and (max-width: 576px) {
  .footer__top {
    align-items: center;
  }

  .menu-footer__list {
    flex-direction: column;
    row-gap: 20px;
  }

  .menu-footer__list li:not(:first-child) {
    padding: 0 0 0 0px;
  }

  .menu-footer__list li::before {
    content: none;
  }

  .menu-footer__list li:not(:last-child) {
    margin: 0 0px 0 0;
  }

  .actions-footer__list {
    flex-direction: column;
    row-gap: 20px;
  }

  .actions-footer__list li:not(:last-child) {
    margin: 0 0px 0 0;
  }

  .actions-footer__icon.actions-footer__icon_circle {
    margin: 0;
  }

  .menu-footer__list li:not(:first-child)::before {
    content: none;
  }

  .statistics__icon {
    display: none;
  }

  .heading-block__icon {
    display: none;
  }

  .guarantees__widget {
    display: none;
  }

  .guarantees .heading-block {
    width: 100%;
    margin: 0 0 30px;
  }

  .guarantees {
    padding: 70px 0;
  }
}
@media (max-width: 567px){
  .unsub_page  .about-item-photo img {
    margin-bottom: 0!important;
  }
  .unsub_page  .about-item-container:first-child .col-12:last-child,.unsub_page  .about-item-container:nth-child(3) .col-12:last-child{
    order: 1;
  }
  .about-item-container:first-child .col-12:first-child,.about-item-container:nth-child(3) .col-12:first-child{
    order: 2;
  }
}
@media screen and (max-width: 479.98px) {
  .home__bottom {
    flex-direction: column;
    row-gap: 10px;
  }
  @media (max-width: 567px){
    .home__label {
      margin: 0;
    }
  }
  @media (max-width: 404px){
    .footer a {
      margin: auto;
      text-align: center;
    }
  }
  @media (any-hover: hover) {
    .menu__link:hover {
      color: #ff5b14;
    }

    .actions-header__link:hover {
      color: #ff5b14;
    }

    .actions-header__icon.actions-header__icon_circle:hover {
      background-color: #ff5b14;
    }

    .menu-footer__link:hover {
      color: #ff5b14;
    }

    .actions-footer__link:hover {
      color: #ff5b14;
    }

    .actions-footer__icon.actions-footer__icon_circle:hover {
      background-color: #ff5b14;
    }

    .footer__link:hover {
      color: #ff5b14;
    }

    .auth__link:hover {
      text-decoration: underline;
    }
  }