html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

:after,
:before,
:hover {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei",
    "WenQuanYi Micro Hei", sans-serif;
}
body {
  background-color: #16171A;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  min-width: 350px;
  min-height: 100vh;
  background-repeat: no-repeat; /* избегаем повторений */
  background-attachment: fixed; /* фиксированный фон */
 
}
a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.container {
  width: 100%;
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

header .header_row {
  display: flex;
  align-items:center;
  justify-content: space-between;
  min-height: 70px;
  position: relative;
}

header .header_logo {
  display: block;
  margin-right: 15px;
  padding-top: 18px;
}

header .header_logo img{
  display: block;
  width: 141px;
  height: 48px;
}

header .header_btns {
  display: flex;
  gap: 20px;
}

header .header_btns .btn {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: #0c0c13;
  color: #fff;
  padding: 5px;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid #FD9535;
  transition: 0.5s all ease;
  position: relative;
  overflow: hidden;
  height: 40px;
  min-width: 110px;
  font-size: 14px;
}

header .header_btns .btn_signup:hover {
  border-color: #FD9535;
  background: #0c0c13;
}

header .header_btns .btn_registration:hover {
  background: linear-gradient(to bottom, #FD9535, #FD9535);
}

header .header_btns .btn_registration {
  background: linear-gradient(-45deg, #FD9535, #FD9535);
  border-radius: 10px;
  border: 1px solid #1a197c;
  color: black;
  animation: pulse 16s infinite cubic-bezier(0.7, 0, 0, 1);
  min-width: 130px;
}

@keyframes pulse {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    box-shadow: 0 0 0 0 #FD9535;
  }
  9.99%,
  19.99%,
  29.99%,
  39.99%,
  49.99%,
  59.99%,
  69.99%,
  79.99%,
  89.99%,
  99.99% {
    box-shadow: 0 0 0 10px rgba(115, 92, 252, 0);
  }
}

.page_wrap {
  line-height: 1.5;
  padding: 20px 0 15px 0;
}
.page_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.page_subtitle {
  font-size: 20px;
  line-height: 1.3;
}
.page_btn:hover {
  opacity: 0.7;
}
.page_hero {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-image: url(/bg\ nat.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 32px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.page_hero_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page_hero .text_col {
  padding: 40px;
}
.page_hero_desc {
  max-width: 430px;
  font-weight: 800;
  font-size: 18px;
}
.akcent{
  font-weight: 800;
  font-size: 18px;
  color: #FD9535;
}
.benefits{
  
  padding: 20px 16px 500px 16px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  font-weight: 600;
}
.page_hero .img_col {
  position: relative;
}

.page_hero_img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  padding-top: 50px;
 
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .page_hero_img {
    max-width: 38em;
  }
}
@media screen and (min-width: 800px) {
  .page_hero_img {
    display: block;
    margin-left: auto;
    width: 400px;
    padding-top: 80px;
  }
}

.page_hero .page_title {
  font-size: 48px;
  color: #FD9535;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page_hero_bottom {
  background: #181827;

  padding: 21px 40px;
  position: relative;
  z-index: 1;
}
.loyalty_desc_list {
  display: flex;
  justify-content: space-between;
  gap: 0 28px;
}
.loyalty_desc_list .loyalty_desc_img {

 
  display: flex;
  align-items: center;
  justify-content: center;
}
.loyalty_desc_list .loyalty_desc_img img {
  display: block;
  max-width: 100%;
  width: 40px;
}
.loyalty_desc_list .loyalty_desc_text {
  padding: 8px 0;
}
.loyalty_desc_list .item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  gap: 8px;
}
.loyalty_desc_list .item_title {
  font-size: 14px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 4px;
}
.page_description_section {
  padding: 29px 25px;
  border-radius: 20px;
  background: #19193a;
}
.info {
  position: relative;
  padding-left: 30px;
}
.info .ico {
  position: absolute;
  top: 2px;
  left: 0;
}
.page_description_section .page_title {
  margin-bottom: 12px;
}
.green {
  color: #b8ff69;
  font-weight: 700;
  line-height: 1.4;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  .page_wrap {
    font-size: 14px;
    padding-bottom: 15px;
  }
  .page_title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page_subtitle {
    font-size: 16px;
  }
  .page_hero .text_col {
    padding: 28px 16px 0;
  }
  .page_hero .page_btn {
    margin-top: 24px;
  }
  .page_hero_bottom {
    padding: 21px 14px;
  }
  .loyalty_desc_list .item {
    width: 50%;
  }
  .loyalty_desc_list {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_hero {
    margin-bottom: 15px;
  }
  .page_hero_bg {
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .page_hero .page_title span {
    font-size: 16px;
  }
  .page_hero .page_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  header .header_btns .btn {
    font-size: 12px;
    height: 34px;
    min-width: 95px;
  }
  header .header_btns .btn_signup {
    padding: 5px;
    min-width: 65px;
  }
  header .header_btns .btn_signup {
    padding: 5px 20px;
  }
  header .header_btns {
    gap: 5px;
  }

  .page_hero_row {
    flex-direction: column;
  }
  .loyalty_desc_list .item {
    width: 100%;
  }
  .page_hero .text_col {
    width: 100%;
  }
  .page_hero .img_col {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .loyalty_desc_list .loyalty_desc_img {
    width: 45px;
    min-width: 45px;
  }
  .page_hero_img {
    display: block;
    margin-left: auto;
    width: 500px;
    padding-top: 80px;
  }
}
