@import url("./fonts.css");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --text-primary: #fff;
  --text-link: #1071f2;

  --text-link-after: var(--color-blue);

  --bg-primary: #fff;
  --bg-secondary: #195686;
  --header-bg: #1d4369;

  --color-blue-btn: #428bca;
  --color-blue-btn-hover: #1170ff;
  --color-red-btn: #f23e71;
  --color-red-btn-hover: #ef2019;
  --color-green-btn: #7eac2f;
  --color-green-btn-hover: #93c738;
  --color-white: #fff;
  --color-blue: #276aa5;

  --table-bg: #e5e5e5;
  --table-border: #c0c0c0;
}

html,
body {
  height: 100%;
  line-height: 1;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
  font-family: Montserrat, "sans-serif";
  background: var(--bg-primary);
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------- */

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

._container {
  max-width: 1410px;
  padding: 0px 15px;
  margin: 0 auto;
  box-sizing: content-box;
}

._reversed {
  flex-direction: row-reverse;
}

/*       Header        */

.header {
  background: var(--header-bg);
  position: relative;
}
.header__body {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

@media (max-width: 1243px) {
  .header__body {
    flex-wrap: wrap;
    text-align: center;
  }
  .header__actions {
    flex: 1;
    align-items: center;
    justify-content: center;
  }
}

.header__logo-img {
  max-height: 30px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__list {
  display: flex;
  height: 100%;
  list-style: none;
  gap: 16px;
  align-items: center;
}

.header__link {
  position: relative;
  font-size: 16px;
  font-weight: 1000;
  color: var(--text-primary);
  text-decoration: none;
  height: 100%;
  padding-bottom: 4px;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-link-after);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}

.header__item:hover .header__link::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .main-nav {
    margin-left: calc(-100vw / 2 + 100% / 2) !important;
    margin-right: calc(-100vw / 2 + 100% / 2) !important;
    max-width: 100vw !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    z-index: 999;
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
  }
  .header__nav {
    flex-direction: column;
    align-items: start;
  }
}

.select-lang,
.select-lang__options-list {
  transition: 0.3s ease-in-out;
  background-color: var(--color-blue);
}
.select-lang {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  cursor: pointer;
  width: 90px;
  flex-shrink: 0;
  margin-left: 15px;
}
.select-lang::before {
  content: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.5575 6.4425L9 9.8775L12.4425 6.4425L13.5 7.5L9 12L4.5 7.5L5.5575 6.4425Z' fill='%23ffffff'/></svg>");
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 12px;
  left: 4px;
  transition: max-height 0.3s ease-in-out;
}
.select-lang._active,
.select-lang > .select-lang__option {
  border-radius: 10px 10px 0 0;
}
.select-lang._active:hover {
  border-color: var(--color-blue);
}
.select-lang._active::before {
  transform: rotate(180deg);
}
.select-lang._active .select-lang__options-list {
  max-height: min-content;
}
@media (hover: hover), screen and (min-width: 0\0) {
  .select-lang._active .select-lang__option:focus,
  .select-lang._active .select-lang__option:hover {
    background-color: #14a0ff;
  }
  .select-lang:focus,
  .select-lang:hover {
    border-color: #14a0ff;
  }
}
.select-lang__options-list {
  max-height: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 -1px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  padding: 0;
  z-index: 15;
}
.select-lang__options-list .select-lang__option {
  padding: 0;
}
.select-lang__option,
.select-lang__selected {
  color: var(--color-white);
  display: flex;
  align-items: center;
}
.select-lang__option img,
.select-lang__selected img {
  display: block;
  object-fit: contain;
  width: 24px;
  height: 24px;
}
.select-lang__option {
  padding: 7px 7px 7px 25px;
  transition: background-color 0.3s ease-in-out;
}
.select-lang__option span {
  text-transform: uppercase;
  min-width: 23px;
}
.select-lang__image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}
.select-lang__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 7px 7px 7px 25px;
  color: var(--color-white);
}
@media (max-width: 1023px) {
  .select-lang {
    width: 100%;
    background: 0 0;
    border: none;
    padding: 5px 0;
    margin: 0;
  }
  .select-lang::before,
  .select-lang__selected {
    display: none;
  }
  .select-lang__options-list {
    position: static;
    max-height: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    background: 0 0;
    padding: 0 16px;
  }
  .select-lang__link {
    padding: 7px;
  }
}
.select-lang__options-list {
  transition: 0.3s ease-in-out;
  background-color: var(--header-bg);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__sign {
  border-radius: 10px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-green-btn);
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  width: 108px;
}
.header__download {
  border-radius: 10px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.header__download:hover {
  background: #417fb5;
}

.header__sign:hover {
  background: #93c738;
}

.header__burger span {
  -webkit-transition: 250ms;
  -o-transition: 250ms;
}

.header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 26px;
}
.header__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--bg-primary);
  border-radius: 20%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition: 250ms;
}
.header__burger.active span:first-of-type {
  -webkit-transform: translateY(11px) rotateZ(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotateZ(45deg);
}
.header__burger.active span:nth-of-type(2) {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.header__burger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}

@media (max-width: 1023px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .header__logo-img {
  max-height: 30px;
  height: auto;
  width: auto;
  object-fit: contain;
}
}

@media (max-width: 500px) {
  .header__actions {
    order: 5;
    width: 500px;
    flex: 1 1 auto;
  }
  .header__body {
  }
  .header__sign {
    width: 50%;
  }
  .header__download {
    width: 50%;
  }
}

/* Breadcrumbs */

.breadcrumbs {
  padding: 0.5rem 0;
}
.breadcrumbs__list {
  list-style: none;
  margin-top: 0;
  padding: 0 30px;
  display: flex;
}
.breadcrumbs__item,
.screenshotGalleryImages__item {
  margin-right: 10px;
}
.breadcrumbs__current,
.breadcrumbs__link {
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--bg-primary);
}

.breadcrumbs__separator {
  bottom: 1.5px;
  position: relative;
}

.breadcrumbs__current,
.breadcrumbs__link,
.breadcrumbs__separator {
  color: #fff;
}

.breadcrumbs__list,
.show-posts__item {
  display: -webkit-box;
  display: -ms-flexbox;
}

.breadcrumbs {
  background-color: #1d4369;
}

/*       Hero        */

.hero {
  background: var(--bg-secondary);
  background-image: url("../../assets/img/fon.webp"); /* путь к твоему изображению */
}

.hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}

.hero__content {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.hero__title {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
}
.hero__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.hero__image {
  max-width: 670px;
  width: 100%;
  text-align: center;
}

.hero__img {
  max-width: 500px;
  width: 100%;
  height: 510px;
}

@media (max-width: 1024px) {
  .hero__body {
    flex-direction: column;
  }
  .hero__content,
  .hero__image,
  .hero__img {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .hero__image {
    display: none;
  }
  .hero__body {
    padding: 20px 0;
  }
}

.promocode-old {
  margin: 1rem 0;
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  background: #222c44;
  border-radius: 4px;
  background: linear-gradient(180deg, #040e28 24.04%, rgb(4 14 40 / 34%) 100%);
}

.promocode-old__bonus {
  color: #ebebeb;
}

.promocode-old__bonus ul li::marker,
.promocode-old__bonus ol li::marker {
  color: var(--color-blue);
}

.promocode-old__bonus > *:first-child {
  margin-top: 0;
}

.promocode-old__bonus > *:last-child {
  margin-bottom: 0;
}

.promocode-old__bonus > *:not(:first-child) {
  margin-top: 12px;
}

.promocode-old__bonus b,
.promocode-old__bonus strong {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
}

.promocode-old__bonus span {
  color: #a7dc4c;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
}

.promocode-old__title {
  margin: 0 0 20px;
  color: var(--color-white);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
}

.promocode-old__controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promocode-old__value {
  border-radius: 4px;
  background: #efefef;
  display: flex;
  padding: 12px;
  align-items: center;
  flex: 1 0 0;
  color: var(--color-green-btn);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.promocode-old__button {
  border: none;
  border-radius: 4px;
  background: var(--color-blue);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.promocode-old__button:hover {
  opacity: 0.7;
}

.promocode-old__button span,
.promocode-old__button svg {
  pointer-events: none;
}

.promocode-old__button .copied {
  display: none;
}

.promocode-old__button.active .copied {
  display: block;
}

.promocode-old__button.active .copy {
  display: none;
}

.promocode-old__buttons {
  margin-top: 12px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promocode__link {
  border-radius: 4px;
  border: none;
  border-top: 1px solid #d4f59a;
  background-color: var(--color-green-btn);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  align-self: stretch;
}

.promocode__link svg {
  flex-shrink: 0;
}

.promocode__link:hover {
  background-color: #6f9729;
}

.promocode__link--aff {
  margin: 12px auto 0;
  width: 100%;
  max-width: 300px;
}

.promocode__link--android,
.promocode__link--ios {
  flex-grow: 1;
}

* + .promocode-old__info {
  margin-top: 20px;
}

.promocode-old__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promocode-old__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ebebeb;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  flex: 1 1 50%;
  margin: 0 auto;
}

.promocode-old__info-item > span {
  margin-top: 4px;
}

.promocode-old__info-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.promocode-old__info-rating span {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

@media (max-width: 550px) {
  .promocode-old__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .promocode__link--aff {
    max-width: 100%;
  }
}

/*    Content     */

.content {
  margin: 3rem 0;
}
.content__body {
  border-radius: 10px;
  background: #f3f4f4;
  padding: 1rem;
}
.content__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.content__title {
  font-size: 17px;
  line-height: 25px;
  color: #000;
  position: relative;
  cursor: pointer;
}
.content__title::after {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-30%);
  right: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.7px 5px 0;
  border-color: var(--text-link-after) transparent transparent transparent;
  transition: transform 0.3s ease;
}
.content__title.active::after {
  transform: translateY(-30%) rotate(180deg);
}
.content__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.content__list.active {
  max-height: 1000px;
}

.content__link {
  padding: 20px 0;
  color: var(--color-blue);
  font-size: 17px;
}

@media (max-width: 940px) {
  .content__body {
    max-width: 270px;
    gap: 5px;
    padding-bottom: 0;
  }
  .content__nav {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }

  .content__list {
    list-style: decimal;
    padding-left: 1.5rem;
    color: #000;
    flex-direction: column;
  }

  .content__list.active {
    padding-bottom: 1rem;
  }

  .content__link {
    font-size: 15px;
    line-height: 1.5rem;
    text-decoration: underline;
  }
}

/*    Review     */

.review {
}
.review__container {
}
._container {
}
.review__title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-align: left;
  color: #000;
  font-weight: 600;
}
.review__text {
  text-align: left;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.5rem;
}
.review-img {
  margin-top: 2rem;
  max-width: 1380px;
  width: 100%;
  height: 770px;
}

@media (max-width: 1200px) {
  .review-img {
    margin-top: 2rem;
    max-width: 1380px;
    width: 100%;
    height: 670px;
  }
}

@media (max-width: 1100px) {
  .review-img {
    margin-top: 2rem;
    max-width: 1380px;
    width: 100%;
    height: 570px;
  }
}

@media (max-width: 1024px) {
  .review-img {
    height: auto;
  }
}

/*    Specs    */

.specs {
  margin: 4rem 0;
}
.specs__body {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
.specs__title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-align: left;
  color: #000;
  font-weight: 600;
}
.specs__text {
  text-align: left;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.5rem;
}

.specs__content {
  max-width: 670px;
  width: 100%;
}

.specs-img {
  max-width: 50%;
  width: 100%;
  height: 335px;
}

.block-table {
  width: 100%;
  margin-top: 1rem;
}

.block-table {
  overflow: auto;
}
.block-table table thead,
table thead {
  border-bottom: none;
}
.block-table table th,
table th {
  padding: 0.5rem 1rem;
  text-align: center;
}
.block-table table td,
table td {
  padding: 0.5rem 1rem;
}
.block-table .has-fixed-layout {
  table-layout: auto;
}
.block-table .has-fixed-layout td,
.block-table .has-fixed-layout th {
  word-break: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table,
table td {
  border: 1px solid var(--color-blue);
  color: #000;
  line-height: 25px;
}
table {
  border-collapse: collapse;
}
table th {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.spec__btn {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.specs__download {
  border-radius: 3px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-green-btn);
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.specs__download:hover {
  background: #93c738;
}

@media (max-width: 1024px) {
  .specs__body {
    flex-direction: column;
  }
  .specs__content {
    max-width: 100%;
  }
  .specs-img {
    height: auto;
    max-width: 100%;
  }
}

.screens-gallery {
  margin: 3rem 0;
}
.screens-gallery__title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-align: left;
  color: #000;
  font-weight: 600;
}
.screens-gallery__body {
  margin-top: 1rem;
  display: flex;
  gap: 20px;
  align-items: center;
}

.screens-gallery__img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .screens-gallery__body {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .screens-gallery__link {
    flex: 0 0 auto;
  }
}

/*   Columns   */

.section-wrapper {
  margin: 2rem 0;
}
.columns__block {
  display: flex;
  gap: 40px;
  padding: 2rem 0;
  align-items: center;
}

.columns__content {
  max-width: 700px;
}

.columns__block h2 {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}
.columns__block h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}
.columns__container p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
}
.columns__block p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
}

.columns__block a {
  color: var(--color-blue);
  text-decoration: underline;
}

.columns__block ol,
.columns__block ul {
  padding-left: 25px;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
}

.columns__img {
  width: 50%;
  height: 480px;
}

.columns__btn {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.columns__download {
  border-radius: 10px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-green-btn);
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.columns__download:hover {
  background: #93c738;
}

@media (max-width: 1024px) {
  .columns__block {
    flex-direction: column;
    gap: 10px;
  }
  .columns__img {
    width: 100%;
    height: auto;
  }
  .columns__content {
    max-width: 100%;
    width: 100%;
  }
}

.reqs {
  margin: 1rem 0;
}

.reqs h3 {
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.reqs p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
}

.promocode__container {
  max-width: 100%;
  margin-top: 1rem;
  background-color: #f5f5f5;
  padding: 1rem 2rem;
}
.promocode__title {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.promocode__controls {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 3px;
  background-color: var(--color-white);
  border-radius: 8px;
}
.promocode__bottom,
.promocode__button {
  padding: 0.6rem 1rem;
  width: 100%;
  color: var(--color-white);
  outline: 0;
  cursor: pointer;
  text-decoration: none;
}
.promocode__value {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 10%;
  margin-right: 10px;
  margin-top: 3px;
  color: #000;
}
.promocode__bottom,
.promocode__button,
.promocode__text {
  font-size: 1rem;
  text-align: center;
}
.promocode__button {
  font-weight: 400;
  max-width: 200px;
  margin-left: auto;
  border-radius: 7px;
  background-color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.promocode__button:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.promocode__text {
  margin-top: 1rem;
  font-weight: 400;
}
.promocode__bottom {
  display: block;
  margin: 1.2rem auto 0;
  max-width: 300px;
  font-weight: 400;
  background-color: var(--color-red-btn);
  border: 2px solid var(--color-red-btn);
  border-radius: 7px;
  color: var(--color-white) !important;
  text-decoration: none !important;
}
.promocode__bottom:hover {
  background-color: var(--color-white);
  color: var(--color-red-btn) !important;
}

.faq {
  margin: 3rem 0;
}

.faq__body {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border-radius: 10px;
  background: #f3f4f4;
  padding: 1rem;
  cursor: pointer;
}

.faq__title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.faq__question {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.faq__answer {
  display: none;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
}

.faq__item.active .faq__answer {
  display: block;
}

@media (max-width: 1024px) {
  .faq__question {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

/* Footer */

.footer {
  background: var(--header-bg);
  padding: 3rem 0;
}
.footer__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.footer__copy {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer__secure {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
}
.footer__heading {
}
.footer__list {
  margin-top: 1rem;
  list-style: none;
}
.footer__item {
}
.footer__link {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
  color: var(--color-white);
  line-height: 1.8rem;
  transition: all 0.3s ease;
}

.footer__link:hover {
  text-decoration: none;
}

.footer__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.footer__social:hover {
  opacity: 0.7;
}

.footer__social img {
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .footer__body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer__logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 700px) {
  .footer__socials {
    display: none;
  }
  .footer {
    background: var(--header-bg);
    padding: 3rem 0 5rem 0;
  }
}

.scroll-top {
  position: fixed;
  bottom: 70px;
  right: 15px;
}

@media (max-width: 700px) {
  .scroll-top {
    bottom: 90px;
  }
}

.scroll-top__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--main-accent-bg-color);
  color: var(--color-white);
  text-shadow: 1px 1px 2px #000;
  font-size: 20px;
}

.mobile-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  left: 8px;
  right: 8px;
  bottom: 0;
  padding: 12px 8px;
  border-radius: 4px 4px 0px 0px;
  width: auto;
  background: var(--color-white);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 12px 8px;
  z-index: 100;
}
.mobile-button a {
  font-weight: 400;
  font-size: 1.2rem;
}
.mobile-button__container {
  padding: 10px 1rem;
}
.mobile-button__control {
  display: block;
  width: 100%;
}

@media (max-width: 700px) {
  .mobile-button {
    display: flex;
  }
}

.mobile-button.v3 {
  flex-wrap: wrap;
}

.mobile-button.v1 .get-image {
  width: 80px;
  height: 40px;
}

.mobile-button.v1 img {
  max-width: 65px;
  max-height: 14px;
}

.mobile-button > .get-image {
  border-radius: 4px;
  background: #1d4369;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 57px;
  height: 36px;
}

.mobile-button img {
  max-width: 50px;
  max-height: 12px;
  width: 100%;
  object-fit: contain;
}

.mobile-button.v2 .mobile-button__info {
  overflow: auto;
}

.mobile-button__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-button__title {
  margin: 0;
  color: #1d4369;
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
}

.mobile-button__rating {
  --percent: calc(var(--star-rating) / 5 * 100%);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  margin-top: 6px;
}

.mobile-button__rating::before {
  content: "★★★★★";
  font-family: Times, serif;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    #7daa2f var(--percent),
    #828282 var(--percent)
  );
  -webkit-background-clip: text;
}

.mobile-button__rating-counter {
  margin-left: 4px;
  color: #7daa2f;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transform: translateY(-1px);
}

.mobile-button__link {
  margin: 0 0 0 auto;
  border: none;
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #7eac2f;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.mobile-button__link:hover {
  background-color: #6f9729;
}

.mobile-button > .mobile-button__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mobile-button._active > .mobile-button__link:after {
  display: none;
}

.mobile-button__link--show {
  margin-right: -8px;
  transition: none;
  transition: background-color 0.3s ease-in-out;
}

.mobile-button__link--show .close {
  display: none;
}

.mobile-button__link--show._active .close {
  display: flex;
}
.mobile-button__link--show._active {
  background-color: #6f972929;
  margin-right: 0;
}

.mobile-button__link--show._active .open {
  display: none;
}

.mobile-button__running-line {
  overflow: hidden;
  margin-top: 4px;
  position: relative;
}

.mobile-button__running-line:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.mobile-button__running-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.mobile-button__running-line-inner {
  display: flex;
  align-items: center;
}

.mobile-button__running-line-item {
  padding-right: 16px;
  flex-shrink: 0;
  min-width: 100%;
  white-space: nowrap;
  animation-name: running-line;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  color: #1d4369;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}

.mobile-button__running-line-item span {
  color: #7eac2f;
}

/* PRIVACY PAGE */

.privacy-hero {
  background: var(--bg-secondary);
  background-image: url("../../assets/img/fon.webp");
}

.privacy-hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  height: auto;
}

.privacy-hero__content {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.privacy-hero__title {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
}
.privacy-hero__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.privacy-hero__text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.privacy-hero__image {
  max-width: 670px;
  width: 100%;
  text-align: center;
  height: auto;
}

.privacy-hero__img {
  max-width: 670px;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .privacy-hero__body {
    flex-direction: column;
  }
  .privacy-hero__content,
  .privacy-hero__image,
  .privacy-hero__img {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .privacy-hero__image {
    display: none;
  }
  .privacy-hero__body {
    padding: 20px 0;
  }
}

.privacy__title {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  color: #000;
}

.privacy__text {
  margin-top: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.privacy__list {
  padding-left: 19px;
  margin-top: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}


.privacy-content {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.privacy__link {
  color: var(--color-blue);
  text-decoration: underline;
}






.fixed-columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.columns__content {
  flex: 1 1 60%;
  max-width: 60%;
}

.columns__img-wrapper {
  flex-shrink: 0;
  width: 670px;
  max-width: 100%;
}

.columns__img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .fixed-columns {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .columns__content,
  .columns__img-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .columns__img-wrapper {
    margin-top: 20px;
  }
}



.columns__btn-row {
  display: flex;
  gap: 20px; /* расстояние между кнопками */
  flex-wrap: wrap; /* если места мало, кнопки перейдут на новую строку */
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}





.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.install-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.install-block {
  flex: 1 1 45%;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 8px;
  background-color: #f9f9f9;
  background-image: url("../../assets/img/fon.webp"); /* путь к твоему изображению */
}

.install-block h3 {
  margin-top: 0;
}

.columns__download {
  background-color: #88b337;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 15px;
}

.columns__download:hover {
  background-color: #6f962d;
}

@media (max-width: 768px) {
  .install-columns {
    flex-direction: column;
  }

  .install-block {
    flex: 1 1 100%;
  }
}

.install-block {
  color: #ffffff; /* Чёрный цвет текста */
}
.install-block p {
  color: #ffffff; /* Чёрный цвет текста */
}

.section-title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #000;
}

.install-block ol {
  line-height: 1.7; /* Увеличиваем межстрочный интервал */
  margin-left: 20px; /* Немного смещаем список вправо */
}

.install-block li {
  margin-bottom: 10px; /* Отступ между строками */
}





.reviews {
  background-color: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.reviews__subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 100%;
  gap: 24px;
  justify-content: center;
}

.review-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.review-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.review-text {
  font-style: italic;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ddd;
}

.review-author {
  font-size: 14px;
  color: #444;
}

.reviews__footer {
  margin-top: 40px;
  font-size: 15px;
  color: #333;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




.numbered-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}

.numbered-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: #007bff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
}

.blue-dots {
  list-style: none;
  padding-left: 0px;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.blue-dots li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #000;
}

.blue-dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #007bff;
  border-radius: 50%;
}




.check-ul {
  list-style: none;
  padding-left: 0;
}

.check-ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #222;
}

.check-ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745; /* зелёная галочка */
  font-weight: bold;
  font-size: 16px;
}





.register-troubles {
  background: #f8f9fa;
  padding: 50px 20px;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.troubles__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.troubles__subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.trouble-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trouble-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.trouble-question {
  font-weight: bold;
  margin-bottom: 6px;
  color:#000
}

.trouble-answer {
  color: #333;
  line-height: 1.5;
}

.troubles__note {
  margin-top: 40px;
  text-align: center;
  color: #555;
  font-style: italic;
}

.troubles__buttons {
  margin-top: 30px;
  text-align: center;
}

.troubles__buttons .btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.troubles__buttons .btn:hover {
  background: #0056b3;
}




.hero-btn {
  background-color: #7bb929;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #6aa520;
  transform: translateY(-2px);
}

.hero-btn:active {
  transform: translateY(0);
}



.hero-ul {
  list-style: none;
  padding-left: 0px;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.hero-ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #007bff;
  border-radius: 50%;
}



.install-block h3 {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
}

