@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../font-map/Roboto-Bold.woff2) format("woff2"), url(../font-map/Roboto-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../font-map/Roboto-Medium.woff2) format("woff2"), url(../font-map/Roboto-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../font-map/Roboto-Regular.woff2) format("woff2"), url(../font-map/Roboto-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../font-map/Roboto-SemiBold.woff2) format("woff2"), url(../font-map/Roboto-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
:root {
  --ft_background_color:#1e1e1e;
  --ft_text_color:#FFFFFF;
  --site_info_b_color:#e6b900;
  --color_soc_icons:#ffffff;
  --color_bg_soc_icons:#643e94;
  --h_navigation_color:#FFFFFF;
  --h_background_color:#1e1e1e;
  --main-accent-color:#643e94;
  --bg-body:#F8F8FA;
  --b-font-size:15px;
  --btn-back-text-color:#FFFFFF;
  --btn-back-color:#31b35d;
  --btn-back-hover-bg-color:#15851d;
  --btn-back-hover-text-color:#ffffff;
  --btn-border-color:#ffffff;
  --btn-border-hover-color:#31b35d;
  --btn-border-hover-text-color:#ffffff;
  --border-radius:10px;
  --text-body-color:#1D2730;
  --review-bg-color:#1D2730;
  --review-progress-bar:#31b35d;
  --review-text:#ffffff;
  --pros_colors:#33b63c;
  --cons_colors:#e74b4b;
  --link_color:#31b35d;
  --link_hover:#3ad86f;
  --h_sec_navigation_color:#FFFFFF;
  --btn-header-first-color:#ffffff;
  --btn-header-second-color:#ffffff;
  --btn-header-first-bg:#643e94;
  --btn-header-second-bg:#31b35d;
  --btn-header-first-hover:#9a53c6;
  --btn-header-second-hover:#1b7c38;
  --btn-header-first-border:#643e94;
  --btn-header-second-border:#31b35d;
  --bg-color-blocks:#17233A;
}

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

html {
  background-color: var(--bg-body);
}

body {
  margin: 0;
  font-size: var(--b-font-size);
  font-family: Roboto, sans-serif;
  color: var(--text-body-color);
  overflow-x: hidden;
}

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

a {
  color: var(--btn-back-hover-bg-color);
  text-decoration: none;
}

a:not([class]) {
  text-decoration: underline;
}

a:hover {
  color: var(--link_hover);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h2 {
  font-weight: 600;
  font-size: 1.7rem;
  position: relative;
}

h2::after {
  content: "";
  border-bottom: 2px solid var(--main-accent-color);
  width: 10%;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.mainHeader {
  background-color: #f4f6fd;
  border-bottom: 2px solid var(--site_info_b_color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.topBarWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}

.brandIcon img {
  max-height: 70px;
  width: auto;
}

.header__navbar nav ul, .secondaryMenu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__navbar nav a, .secondaryMenu nav a {
  color: var(--h_navigation_color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 3px;
  position: relative;
  display: inline-block;
}

.secondaryMenu {
  background-color: var(--main-accent-color);
}

.secondaryMenu nav ul {
  padding: 5px 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secondaryMenu nav a {
  color: var(--h_sec_navigation_color);
  font-size: 0.9rem;
}

.topButtonGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.startingSection {
  padding: 70px 0 60px 0 !important;
}

.topButtonGroup .interactiveBtn {
  padding: 12px 18px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

.actionWithBg {
  border: 2px solid var(--color_bg_soc_icons);
  color: var(--btn-back-text-color);
}

.actionWithBg:hover {
  background-color: var(--btn-back-hover-bg-color);
  border-color: var(--btn-back-hover-bg-color);
  color: var(--btn-back-hover-text-color);
}

.navButtonLink {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.topButtonGroup .interactiveBtn {
  text-align: center;
}

.topButtonGroup .interactiveBtn:first-child {
  background-color: var(--btn-header-first-bg);
  color: var(--btn-header-first-color);
  border-color: var(--btn-header-first-border);
}

.topButtonGroup .interactiveBtn:first-child:hover {
  background-color: var(--btn-header-first-hover);
  border-color: var(--btn-header-first-hover);
}

.topButtonGroup .interactiveBtn:nth-child(2) {
  color: #472177;
  border-color: var(--color_bg_soc_icons);
}

.topButtonGroup .interactiveBtn:nth-child(2):hover {
  background: rgba(100, 62, 148, 0.4);
}

.burger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1002;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #ffde00;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: #1a1a1a;
  color: #fff;
  z-index: 1003;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
  -webkit-box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.mobile-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mobile-menu nav ul li {
  margin-bottom: 18px;
}

.mobile-menu nav ul li a {
  color: #ffde00;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
}

.mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.mobile-buttons .interactiveBtn {
  width: 100%;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1001;
}

.overlay.active {
  display: block;
}

.nestedBlock {
  background: linear-gradient(120deg, #472177 0, #593e79 100%), url() center/cover no-repeat;
  color: #fff;
  padding: 64px 0 48px 0;
  position: relative;
  overflow: hidden;
}

.nestedBlock .contentWrap {
  position: relative;
  z-index: 2;
}

.nestedBlock:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(176, 107, 255, 0.4), transparent 70%);
  z-index: 1;
}

.nestedBlock:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 70%, rgba(161, 74, 231, 0.4), transparent 70%);
  z-index: 1;
}

.extraContent:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(100, 62, 148, 0.4) 0, rgba(100, 62, 148, 0.4) 100%);
  border-radius: 24px;
  z-index: -1;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  opacity: 0.6;
}

.hero-animate .textInner {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.hero-animate .extraContent {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.howToGuide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.instructionItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg-color-blocks);
  color: var(--ft_text_color);
  border-radius: var(--border-radius);
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.guideIndex {
  font-size: 30px;
  font-weight: 700;
  background-color: var(--main-accent-color);
  color: var(--ft_text_color);
  padding: 10px 20px;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  margin-right: 20px;
}

.guideInfo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.guideInfo h3 {
  margin-top: 0;
  color: var(--site_info_b_color);
  font-size: 20px;
}

.guideInfo p {
  margin: 10px 0;
  color: var(--ft_text_color);
  font-size: var(--b-font-size);
  line-height: 1.6;
}

.guideVisual {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  padding: 20px;
}

.guideVisual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.scrollButton {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  background: #ffde00;
  color: #1a1a1a;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  border: none;
  z-index: 1004;
}

.scrollButton.visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.scrollButton svg {
  width: 28px;
  height: 28px;
  stroke: #1a1a1a;
}

main {
  margin-top: 124px;
}

@-webkit-keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.navListWrap {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--main-accent-color);
}

.navListTitle {
  text-align: center;
  padding: 10px 0;
  color: var(--h_navigation_color);
  background: var(--h_background_color);
  font-weight: 700;
}

.scrollList {
  background-color: #fff;
  padding: 15px;
}

.scrollList ul {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  list-style: none;
  padding: 0;
  margin: 0;
}

.scrollList ul li {
  margin-bottom: 10px;
}

.scrollList ul a {
  text-decoration: none;
  color: var(--text-body-color);
  font-weight: 600;
}

.scrollList ul a:hover {
  color: var(--main-accent-color);
}

.nestedBlock:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.insetTextArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.textInner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
  padding-right: 30px;
}

.innerHeading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.innerHeading:after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: var(--site_info_b_color);
  margin-top: 15px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.innerDesc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.extraContent {
  width: 350px;
  padding: 30px 25px;
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.extraContent:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.extraContent:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--main-accent-color), #4c2f64);
  border-radius: 50%;
  opacity: 0.4;
}

.extraContent:after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--main-accent-color), #4c2f64);
  border-radius: 50%;
  opacity: 0.4;
}

.bonusLabel {
  position: absolute;
  top: -3px;
  right: -8px;
  background: var(--btn-header-first-bg);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.bonusFigure {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--site_info_b_color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rewardText {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.bonusIcon {
  position: relative;
  text-align: center;
  margin: 15px 0;
  height: 40px;
}

.bonusIcon img {
  width: 35px;
  -webkit-animation: bounceArrow 1.5s infinite;
  animation: bounceArrow 1.5s infinite;
  -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.bonusIcon img:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.claimButton {
  text-align: center;
}

.extraCtaBtn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--btn-header-first-bg);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.extraCtaBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

.extraCtaBtn:hover {
  background-color: #4c2f64;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  color: #fff;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.extraCtaBtn:hover:before {
  left: 100%;
}

.extraCtaBtn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
ol.bulletList, ul.bulletList {
  margin: 15px 0;
  padding-left: 10px;
  color: #000;
  list-style: none;
}

ul.bulletList li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

ul.bulletList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: #8064e6;
  border-radius: 50%;
}

ol.bulletList {
  counter-reset: custom-counter;
}

ol.bulletList li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

ol.bulletList li::before {
  content: counter(custom-counter);
  position: absolute;
  left: -8px;
  top: -2px;
  background-color: #8064e6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.columnsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 10px 0;
  gap: 30px;
}

.multiColBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 40%;
  flex: 1 0 40%;
  min-width: 335px;
}

.wideImg {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  display: block;
}

.tagBox {
  padding: 30px 0;
}

.lightTagBlock {
  background-color: #fff;
}

.wpImage {
  text-align: center;
}

.wpImage img {
  border-radius: 10px;
}

.wpImage img {
  max-width: 100%;
  height: auto;
}

.tableBlock {
  overflow-x: auto;
  margin: 20px 0;
}

.tableBlock table {
  width: 100%;
  border-collapse: collapse;
}

.tableBlock th {
  background-color: var(--h_background_color);
  color: var(--h_navigation_color);
  padding: 10px;
}

.tableBlock td {
  padding: 10px;
  border: 1px solid var(--main-accent-color);
}

.tableBlock tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.questionsBlock {
  margin-top: 30px;
}

.questionsBlock details {
  border: 1px solid var(--main-accent-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 15px;
}

.questionsBlock summary {
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  outline: 0;
}

summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

summary > * {
  margin-bottom: 0;
}

.questionsBlock summary::-webkit-details-marker, .questionsBlock summary::marker {
  display: none;
}

.questionsBlock details[open] summary {
  margin-bottom: 15px;
}

.questionsBlock p {
  margin: 0;
  padding-left: 20px;
}

footer {
  background-color: var(--ft_background_color);
  color: var(--ft_text_color);
  padding: 30px 0;
  margin-top: 50px;
}

.footerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.logoFooter img {
  max-width: 200px;
  height: auto;
}

.widgetBlock ul {
  list-style: none;
  padding: 0;
}

.widgetBlock li {
  margin-bottom: 10px;
}

.widgetBlock a {
  color: var(--ft_text_color);
  text-decoration: none;
}

.socialLinksGroup {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.socialLinksGroup li {
  margin-right: 10px;
}

.socialLinksGroup a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color_bg_soc_icons);
  border-radius: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.socialLinksGroup a svg {
  fill: var(--color_soc_icons);
}

.socialLinksGroup a:hover {
  background-color: var(--color_soc_icons);
}

.socialLinksGroup a:hover svg {
  fill: var(--color_bg_soc_icons);
}

@media (max-width: 992.98px) {
  .instructionItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
  }
  .guideIndex {
    margin: 0 auto 10px;
    border-radius: 0 0 10px 10px;
  }
  .guideVisual {
    padding: 10px;
    max-width: 540px;
  }
}
@media (max-width: 991px) {
  .about-page__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .about-page__title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .about-page__description {
    max-width: 100%;
  }
  .scrollList ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
  .burger-menu {
    display: block;
  }
  .textInner {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .innerHeading:after {
    margin: 15px auto 0;
  }
}
@media (max-width: 768px) {
  .header__navbar {
    display: none;
  }
  .scrollList ul {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
  .step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .step__image {
    margin-left: 0;
    margin-top: 15px;
    max-width: 100%;
  }
  .footerWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .widgetBlock, .logoFooter, .socialFooterItem {
    margin-bottom: 20px;
  }
  .socialLinksGroup {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mobile-menu .mobile-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 25px;
  }
  .mobile-menu .mobile-buttons button {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
  }
  .steps-section {
    padding: 40px 0;
  }
  .steps-title {
    font-size: 1.8rem;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .step-content {
    padding: 20px;
  }
  .step-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .insetTextArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .nestedBlock {
    padding: 40px 0;
  }
  .innerHeading {
    font-size: 2.3rem;
  }
  .extraContent {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .scrollButton {
    right: 12px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
  .scrollButton svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 479.98px) {
  .secondaryMenu nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .topButtonGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .topButtonGroup .interactiveBtn {
    padding: 8px 12px;
  }
  .instructionItem {
    padding-bottom: 0;
  }
}