@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-width: 150px;
  width: 100%;
  height: 38px;
}
.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: 300;
  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: 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;
  width: 108px;
}
.header__download {
  border-radius: 3px;
  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-width: 100px;
    width: 100%;
    height: 25px;
  }
}

@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);
}

.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: 26px;
  line-height: 42px;
  font-weight: 600;
}
.hero__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}
.hero__ul {
  padding-left: 25px;
  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: 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;
  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);
}

.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;
}

/* === UNIQUE GREEN BUTTON (OVERRIDES PARENT STYLES) === */
.columns__btn .x1btn-green {
  display: inline-block;
  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;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.columns__btn .x1btn-green:hover {
  background-color: var(--color-green-btn-hover);
}

/* === UNIQUE BLUE BUTTON === */
.columns__btn .x1btn-blue {
  display: inline-block;
  border-radius: 3px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-blue); /* #276aa5 */
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.columns__btn .x1btn-blue:hover {
  background-color: #417fb5; 
}

/* === UNIQUE RED BUTTON === */
.columns__btn .x1btn-red {
  display: inline-block;
  border-radius: 3px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-red-btn); /* #f23e71 */
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.columns__btn .x1btn-red:hover {
  background-color: var(--color-red-btn-hover); /* #ef2019 */
}

/* === UNIQUE NAVY BUTTON === */
.columns__btn .x1btn-navy {
  display: inline-block;
  border-radius: 3px;
  border: none;
  color: var(--color-white);
  background-color: var(--header-bg); /* #1d4369 */
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.columns__btn .x1btn-navy:hover {
  background-color: #2a5684;
}

/* ==== TRUST BLOCK (FULL WIDTH, NO IMAGE) ==== */

.trust-wrapper {
  background: #f5f6f7; 
  padding: 3rem 0;
}

.trust-block {
  display: flex;
  justify-content: flex-start;
}

.trust-content {
  max-width: 760px; 
}

.trust-content h2 {
  font-size: 1.9rem;
  line-height: 2.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #000;
}

.trust-content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.55rem;
  color: #000;
}

.trust-content ul {
  margin-top: 0.5rem;
  padding-left: 20px;
}

.trust-content ul li {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 0.3rem;
}

/* ===== CLEAN CUSTOM BUTTON BLOCK (WHITE ON DARK BLUE BG) ===== */

.promo-buttons-clean {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.x1btn-primary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  background-color: #ffffff;
  color: #195686;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color .25s ease, color .25s ease, transform .15s ease;
}

.x1btn-primary:hover {
  background-color: #e8f2f9;
  transform: translateY(-2px);
}

.x1btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .15s ease;
}

.x1btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 550px) {
  .promo-buttons-clean a {
    width: 100%;
    text-align: center;
  }
}

/* ==============================
   INLINE CTA BUTTONS (NO BACKGROUND BOX)
   ============================== */

.cta-dual-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Base button style */
.cta3-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all .25s ease;
}

.cta3-primary-red {
  background-color: #E02020;  
  border: 2px solid #E02020;
  color: #ffffff;           
}

.cta3-primary-red:hover {
  background-color: #C51818;
  border-color: #C51818;
  transform: translateY(-2px);
}


/* SECONDARY BLUE OUTLINE */
.cta3-secondary-blue {
  background-color: transparent;
  border: 2px solid #195686;
  color: #195686;
}

.cta3-secondary-blue:hover {
  background-color: rgba(25,86,134,0.12);
  transform: translateY(-2px);
}


/* Mobile full-width */
@media (max-width: 550px) {
  .cta-dual-inline .cta3-btn {
    width: 100%;
  }
}

.columns__block .cta3-btn {
    color: inherit;
    text-decoration: none;
}

/* Force correct text color for the secondary outline CTA */
.columns__block .cta3-secondary-blue {
    color: #195686 !important;
}

/* Top and bottom spacing for CTA block */
.cta-dual-inline {
    margin-top: 20px;
    margin-bottom: 24px; 
}

/* Full-width text block (no image) */
.columns__block--full {
    width: 100%;
    display: block;
    padding: 40px 0;
}

.columns__block--full .columns__content {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .columns__block--full {
        padding: 25px 0;
    }

    .columns__block--full .columns__content {
        max-width: 100%;
    }
}

.text-lead {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;  
    color: var(--text-color, #0f1a2a);
    margin: 20px 0 10px;
}

/* =========================
   Hero micro trust line
   ========================= */

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;

  margin-top: 14px;

  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;

  color: #fff; 
}

.hero__trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  white-space: nowrap;
}

.hero__trust .trust-sep {
  color: #a0aab6;
  font-weight: 400;
}

@media (max-width: 576px) {
  .hero__trust {
    font-size: 15px;
    gap: 4px;
  }
}

/* ======================================================
   FAQ (details/summary) 
   ====================================================== */

.section.section-faq {
  padding: 60px 0;
}

.section.section-faq .section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section.section-faq h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.section.section-faq .faq-list {
  display: grid;
  gap: 12px;
}

.section.section-faq details.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.section.section-faq summary.faq-question {
  list-style: none;
  cursor: pointer;

  padding: 16px 44px 16px 16px;

  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;

  position: relative;
}

.section.section-faq summary.faq-question::-webkit-details-marker {
  display: none;
}
.section.section-faq summary.faq-question::marker {
  content: "";
}

.section.section-faq summary.faq-question::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease;
}

.section.section-faq details[open] > summary.faq-question::after {
  transform: translateY(-50%) rotate(-135deg);
}

.section.section-faq .faq-answer {
  padding: 0 16px 16px;
  color: #3a4654;
  font-size: 15px;
  line-height: 1.6;
}

.section.section-faq .faq-answer p {
  margin: 0;
}

.section.section-faq details.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.section.section-faq summary.faq-question:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .section.section-faq {
    padding: 44px 0;
  }

  .section.section-faq h2 {
    font-size: 22px;
  }

  .section.section-faq summary.faq-question {
    padding: 14px 42px 14px 14px;
    font-size: 15px;
  }

  .section.section-faq .faq-answer {
    padding: 0 14px 14px;
    font-size: 14px;
  }
}

/* ======================================================
   Footer (site-footer) — grid / mobile / neutral colors
   ====================================================== */

.site-footer {
  padding: 56px 0 28px;
  background: #0b1220;             
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 28px;
  align-items: start;
}

.site-footer .footer__brand {
  min-width: 0;
}

.site-footer .footer__logo {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}

.site-footer .footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 44ch;
}

.site-footer .footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px 22px;
}

.site-footer .footer__col {
  min-width: 0;
}

.site-footer .footer__heading {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer .footer__list {
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 8px;
}

.site-footer .footer__list a {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer__list a:hover {
  color: #ffffff;
}

.site-footer .footer__current {
  display: inline-block;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer__notice {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer .footer__notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  max-width: 95ch;
}

.site-footer .footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  flex-wrap: wrap;
}

.site-footer .footer__copy,
.site-footer .footer__meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer__meta a {
  color: rgba(255, 255, 255, 0.78);
}

/* Focus visible для доступности */
.site-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
  .site-footer .footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer .footer__tagline {
    max-width: 70ch;
  }

  .site-footer .footer__nav {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 46px 0 24px;
  }

  .site-footer .footer__nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer .footer__heading {
    margin-bottom: 8px;
  }

  .site-footer .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


