@font-face {
  font-family: "Jost";
  font-weight: 400;
  src: url("../fonts/Jost-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  font-weight: 600;
  src: url("../fonts/Jost-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  font-weight: 700;
  src: url("../fonts/Jost-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Uncial Antiqua";
  font-weight: 400;
  src: url("../fonts/UncialAntiqua-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  max-width: 1920px;
  position: relative;
  background-color: #0C1523;
}

body::before {
  content: "";
  background: linear-gradient(89.98deg, rgba(12, 21, 35, 0) 0.02%, rgba(12, 21, 35, 0.205203) 13%, #0C1523 64.73%);
  position: absolute;
  right: 0px;
  top: 0;
  width: 3%;
  height: 100%;
  z-index: 2;
  transform: translateX(-1px);
}

body::after {
  content: "";
  background: linear-gradient(89.98deg, rgba(12, 21, 35, 0) 0.02%, rgba(12, 21, 35, 0.205203) 13%, #0C1523 64.73%);
  position: absolute;
  left: 0px;
  top: 0;
  width: 3%;
  height: 100%;
  z-index: 2;
  transform: rotate(180deg) translateX(1px);
}

dialog {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: none;
  text-decoration: underline;
}

p {
  cursor: default;
  margin: 0;
}

span {
  cursor: default;
}

strong {
  cursor: default;
}

img {
  max-width: 100%;
}

li {
  cursor: default;
  list-style-type: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  cursor: default;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container {
  max-width: 1554px;
  padding: 0px 75px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
    padding: 0 35px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
}

.overflow {
  overflow: auto;
}

.socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.socials svg path {
  transition: fill 0.25s ease;
}
.socials__link:hover svg path {
  fill: #DD9604;
}

.white-btn {
  display: block;
  padding: 13px 70px;
  border: 2px solid #fff;
  transform: skewX(-20deg);
  background-color: transparent;
  transition: background-color 0.25s ease;
}
.white-btn span {
  display: block;
  cursor: pointer;
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transform: skewX(20deg);
  transition: color 0.25s ease;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.white-btn:hover {
  background-color: rgba(255, 255, 255, 0.0784313725);
}

.white-btn:active {
  background-color: #fff;
}
.white-btn:active span {
  color: #000;
  text-shadow: none;
}

.h2-title {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .h2-title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .h2-title {
    font-size: 28px;
  }
}

.h3-title {
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 576px) {
  .h3-title {
    font-size: 24px;
  }
}

.text-18-140 {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
}
@media (max-width: 576px) {
  .text-18-140 {
    font-size: 16px;
  }
}

.text-24-140 {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
}
@media (max-width: 576px) {
  .text-24-140 {
    font-size: 18px;
  }
}

.content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.content.open {
  grid-template-rows: 1fr;
}

.acc img {
  transition: transform 0.3s ease;
}

.text-wrapper {
  min-height: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .breadcrumbs {
    margin-bottom: 50px;
  }
}
.breadcrumbs .breadcrumbs__link {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #9EA1A7;
  line-height: 140%;
  letter-spacing: 0%;
}

.gap-24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gap-16 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero {
  background-image: url(../img/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  padding-bottom: 50px;
  min-height: 100vh;
}
.hero__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero h1 {
  font-family: Uncial Antiqua;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(60px, 7vw, 170px);
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  max-width: -moz-min-content;
  max-width: min-content;
  text-shadow: 0 0 2px #FFF, 2px 4px 13px #000;
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 44px;
  }
}
.hero h1 span {
  color: #FFD274;
}
.hero p {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 560px;
}
@media (max-width: 576px) {
  .hero p {
    font-size: 16px;
  }
}
.hero__flex-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .hero__flex-2 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 21, 35, 0.68);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 14px;
}
.store-badge img {
  display: block;
}
.store-badge span {
  font-family: Jost;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero__note,
.banner__promo-code {
  max-width: 628px;
  width: 100%;
  font-family: Jost;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.banner__promo-code {
  text-align: left;
  margin-bottom: 32px;
}
.banner__promo-code strong {
  display: inline;
  color: #DD9604;
}

.gameplay .gameplay__flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 37px;
  margin-bottom: 80px;
}
@media (max-width: 993px) {
  .gameplay .gameplay__flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .gameplay .gameplay__flex {
    margin-bottom: 40px;
  }
}
.gameplay__texts {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.gameplay__block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 355px;
  width: 100%;
}
.gameplay__block span {
  display: block;
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.gameplay__block strong {
  display: block;
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.gameplay__block::before {
  content: "";
  background-image: url(../img/svg/venok-l.svg);
  background-repeat: no-repeat;
  display: block;
  max-width: 60px;
  width: 100%;
  height: 95px;
}
.gameplay__block::after {
  content: "";
  background-image: url(../img/svg/venok-r.svg);
  background-repeat: no-repeat;
  display: block;
  max-width: 60px;
  width: 100%;
  height: 95px;
}
.gameplay .gameplay__swiper {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .gameplay .gameplay__swiper {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.gameplay .swiper-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .gameplay .swiper-wrapper {
    margin-bottom: 20px;
  }
}
.gameplay .swiper-slide {
  max-width: 804px;
}
@media (max-width: 993px) {
  .gameplay .swiper-slide {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .gameplay .swiper-slide {
    max-width: 500px;
  }
}
.gameplay .gameplay__img {
  width: 100%;
  height: 457px;
  border-radius: 5px;
}
@media (max-width: 993px) {
  .gameplay .gameplay__img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .gameplay .gameplay__img {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .gameplay .gameplay__img {
    height: 190px;
  }
}
.gameplay .gameplay__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .gameplay .gameplay__btns {
    flex-wrap: wrap;
  }
}
.gameplay .gameplay__btn {
  max-width: 230px;
  transition: border-color 0.25s ease;
  width: 100%;
  padding: 13px 0;
}
.gameplay .gameplay__btn_active {
  border-color: #FFD274;
}
.gameplay .gameplay__btn_active span {
  text-shadow: unset;
  color: #FFD274;
}
.gameplay .gameplay__btn:hover {
  border-color: #FFD274;
  background-color: transparent;
}
.gameplay .gameplay__btn:hover span {
  color: #FFD274;
}
.gameplay__title {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 32px;
}
@media (max-width: 576px) {
  .gameplay__title {
    margin-bottom: 20px;
  }
}
.gameplay__text {
  max-width: 804px;
  margin: 0 auto;
}

.persons {
  padding-bottom: 72px;
  padding-top: 102px;
  position: relative;
}
.persons::after {
  content: "";
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-position: right top;
  max-width: 857px;
  width: 100%;
  height: 776px;
  position: absolute;
  top: -215px;
  right: 10px;
  z-index: -1;
}
@media (max-width: 1440px) {
  .persons::after {
    max-width: 400px;
    width: 100%;
    height: 400px;
    background-size: contain;
    top: -80px;
  }
}
@media (max-width: 993px) {
  .persons::after {
    display: none;
  }
}
.persons__title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .persons__title {
    margin-bottom: 10px;
  }
}
.persons__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 993px) {
  .persons__flex {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.persons__card {
  max-width: 440px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.persons__card span {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #DD9604;
  line-height: 140%;
  letter-spacing: 0%;
  display: block;
  margin-bottom: 16px;
  order: 2;
}
@media (max-width: 576px) {
  .persons__card span {
    margin-bottom: 5px;
  }
}
.persons__card_common span {
  color: #CDD2DB;
}
.persons__card_epic span {
  color: #A964FF;
}
.persons__card_legend span {
  color: #DD9604;
}
.persons__card_common .persons__img,
.persons__card_epic .persons__img,
.persons__card_legend .persons__img {
}
.persons__img {
  max-width: 440px;
  width: 100%;
  height: 458px;
  margin-bottom: 30px;
  margin-top: auto;
  display: flex;
  order: 1;
}
@media (max-width: 993px) {
  .persons__img {
    height: 388px;
    margin-bottom: 10px;
  }
}
.persons__subtitle {
  margin-bottom: 24px;
  order: 3;
}
.persons__card p {
  order: 4;
}

.media {
  padding-bottom: 72px;
}
@media (max-width: 576px) {
  .media {
    padding-bottom: 40px;
  }
}
.media .h2-title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .media .h2-title {
    margin-bottom: 30px;
  }
}
.media .swiper-wrapper {
  margin-bottom: 24px;
  align-items: center;
}
.media .swiper-slide {
  width: 1186px;
  height: 667px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1440px) {
  .media .swiper-slide {
    width: 100%;
    height: auto;
  }
}
.media .media__block {
  width: 593px;
  height: 334px;
  transition: width 0.25s ease-out, height 0.25s ease-out;
}
@media (max-width: 1440px) {
  .media .media__block {
    width: 100%;
    height: auto;
  }
}
.media .swiper-slide-active .media__block {
  width: 1186px;
  height: 667px;
}
@media (max-width: 1440px) {
  .media .swiper-slide-active .media__block {
    width: 100%;
    height: auto;
  }
}
.media .media__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.media .media__arrows {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.media .media__btn svg path {
  transition: fill 0.25s ease;
}
.media .media__btn:hover svg path {
  fill: #DD9604;
}

.news {
  padding: 0 0 136px;
}
@media (max-width: 993px) {
  .news {
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .news {
    padding-bottom: 40px;
  }
}
.news__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 993px) {
  .news__flex {
    flex-wrap: wrap;
  }
}
.news__link {
  text-shadow: unset;
}
@media (max-width: 768px) {
  .news__link {
    margin: 0 auto;
  }
}
.news__flex-2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1440px) {
  .news__flex-2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.news__card {
  max-width: 440px;
  width: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .news__card {
    max-width: 343px;
  }
}
.news__img {
  max-width: 440px;
  width: 100%;
  height: 440px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .news__img {
    max-width: 343px;
    height: 343px;
    margin-bottom: 15px;
  }
}
.news__subtitle {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .news__subtitle {
    margin-bottom: 16px;
  }
}
.news__link-2 {
  position: absolute;
  inset: 0;
}

.waitlist {
  padding: 0 0 136px;
}
@media (max-width: 993px) {
  .waitlist {
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .waitlist {
    padding-bottom: 40px;
  }
}
.waitlist__box {
  background: rgba(12, 21, 35, 0.88);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 480px);
  gap: 40px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .waitlist__box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .waitlist__box {
    padding: 28px 20px;
    border-radius: 24px;
    gap: 28px;
  }
}
.waitlist__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.waitlist__eyebrow {
  font-family: Jost;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FC9A30;
}
.waitlist__title {
  text-align: left;
}
.waitlist__text {
  max-width: 640px;
}
.waitlist__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.waitlist__social-link {
  font-family: Jost;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.waitlist__social-link:hover {
  color: #FC9A30;
  border-color: #FC9A30;
}
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(7, 13, 22, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  align-self: start;
}
@media (max-width: 576px) {
  .waitlist__form {
    padding: 22px 18px;
  }
}
.waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist__label {
  font-family: Jost;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
}
.waitlist__input {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-family: Jost;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.waitlist__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.waitlist__input:focus {
  outline: none;
  border-color: rgba(252, 154, 48, 0.7);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(252, 154, 48, 0.12);
}
.waitlist__consent,
.waitlist__status {
  font-family: Jost;
  font-size: 14px;
  line-height: 140%;
}
.waitlist__consent {
  color: rgba(255, 255, 255, 0.68);
}
.waitlist__status {
  min-height: 20px;
  color: #FC9A30;
}
.waitlist__status_error {
  color: #FF7B7B;
}

.faq__title {
  text-align: center;
  margin-bottom: 16px;
}
.faq__text {
  text-align: center;
  margin-bottom: 32px;
}
.faq__flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__acc {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0;
  cursor: pointer;
}
.faq__acc svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq__subtitle {
  cursor: pointer;
}
.faq__content {
  padding-top: 16px;
}

.banner {
  background-image: url(../img/bg-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  min-height: 1080px;
}
@media (max-width: 993px) {
  .banner {
    min-height: 700px;
    background-position: right -50px;
  }
}
@media (max-width: 576px) {
  .banner {
    min-height: 500px;
    background-position: -313px;
  }
}
.banner__flex {
  min-height: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 993px) {
  .banner__flex {
    min-height: 700px;
  }
}
@media (max-width: 576px) {
  .banner__flex {
    min-height: 500px;
  }
}
.banner__title {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  margin-bottom: 32px;
}
.banner__text {
  max-width: 628px;
  width: 100%;
  padding-bottom: 32px;
  margin-bottom: 32px;
  position: relative;
}
.banner__text::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner .hero__flex-2 {
  justify-content: flex-start;
}

.blog {
  padding: 190px 0 200px;
  background-image: url(../img/blog-bg.webp);
}
@media (max-width: 576px) {
  .blog {
    padding: 100px 0 100px;
  }
}
.blog h1 {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 80px;
  color: #FFFFFF;
  line-height: 124%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .blog h1 {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
.blog .blog__text {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .blog .blog__text {
    margin-bottom: 40px;
  }
}
.blog .blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .blog .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .blog .blog__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.blog .blog__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  max-width: 440px;
}
@media (max-width: 576px) {
  .blog .blog__card {
    justify-self: center;
  }
}
.blog .blog__img {
  display: block;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .blog .blog__img {
    margin-bottom: 0px;
  }
}
.blog .blog__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.blog .blog__tag {
  font-family: Jost;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
}
.blog .blog__tag_purple {
  background-color: #6A1AA8;
}
.blog .blog__tag_green {
  background-color: #0C9300;
}
.blog .blog__tag_yellow {
  background-color: #FC9A30;
}
.blog .blog__date {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #fff;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: right;
}
.blog .blog__subtitle {
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0%;
}
.blog .blog__link {
  position: absolute;
  inset: 0;
}

.pagination {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .pagination {
    gap: 10px;
  }
}
.pagination .pagination__btn {
  border: 4px solid rgba(255, 255, 255, 0.5019607843);
  transition: border-color 0.25s ease;
  padding: 20px 20px;
  transform: skewX(-20deg);
  height: 86px;
  max-width: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .pagination .pagination__btn {
    padding: 20px 10px;
    height: 55px;
    max-width: 44px;
  }
}
.pagination .pagination__btn span {
  cursor: pointer;
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5019607843);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: color 0.25s ease;
  transform: skewX(20deg);
}
@media (max-width: 768px) {
  .pagination .pagination__btn span {
    font-size: 16px;
  }
}
.pagination .pagination__btn svg {
  transform: skewX(20deg);
}
.pagination .pagination__btn:hover {
  border-color: #fff;
}
.pagination .pagination__btn:hover span {
  color: #fff;
}
.pagination .pagination__btn:hover svg path {
  transition: fill-opacity 0.25s ease;
}
.pagination .pagination__btn:hover svg path {
  fill-opacity: 1;
}
.pagination .pagination__btn_active {
  border-color: #fff;
}
.pagination .pagination__btn_active span {
  color: #fff;
}
.pagination .pagination__btn_noborder {
  border: none;
}
.pagination .pagination__btn_noborder span {
  color: #fff;
}
.pagination .pagination__btn_disabled {
  opacity: 0.45;
  pointer-events: none;
}
.detail {
  padding-bottom: 200px;
  background-image: url(../img/blog-bg.webp);
}
@media (max-width: 576px) {
  .detail {
    padding-bottom: 100px;
  }
}
.detail .detail__flexbox {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 920px;
}
.detail h1 {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  color: #fff;
  line-height: 124%;
  letter-spacing: 0%;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .detail h1 {
    font-size: 30px;
  }
}
.detail ul {
  list-style: disc;
  padding-left: 20px;
}
.detail ul li {
  list-style-type: disc;
  list-style: disc;
}
.detail .policy-ol {
  padding-left: 24px;
}
.detail figure {
  margin: 0;
}
.detail figcaption {
  font-family: Jost;
  font-weight: 400;
  font-style: Italic;
  font-size: 14px;
  color: #fff;
  line-height: 140%;
  letter-spacing: 0%;
}
.detail th {
  text-align: left;
  padding: 0 12px 12px 0;
}
.detail table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 576px) {
  .detail table {
    width: -moz-max-content;
    width: max-content;
  }
}
.detail thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3411764706);
}
.detail tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3411764706);
}
.detail td {
  padding: 8px 12px 12px 0;
}
.detail .deatil__flex {
  display: flex;
  align-items: center;
  gap: 6px 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .detail .deatil__flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.detail .deatil__flex span {
  display: flex;
  gap: 16px;
}
.detail .deatil__flex span:not(:last-child)::after {
  content: " | ";
}
@media (max-width: 576px) {
  .detail .deatil__flex span:not(:last-child)::after {
    display: none;
  }
}
.detail h2 {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0%;
}
.detail strong {
  display: block;
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
}
.detail .detail__socials {
  background-image: url(../img/socilas-bh.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  background-position: center;
}
.detail .detail__socials ul {
  padding-left: unset;
  list-style: none;
}
.detail .detail__socials ul li {
  list-style: none;
}
.detail video {
  max-width: 100%;
}
.detail .policy-text {
  color: rgba(255, 255, 255, 0.6);
}

.contacts {
  padding-bottom: 200px;
  background-image: url(../img/blog-bg.webp);
}
@media (max-width: 576px) {
  .contacts {
    padding-bottom: 100px;
  }
}
.contacts .contacts__title {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 80px;
  color: #fff;
  line-height: 124%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .contacts .contacts__title {
    font-size: 30px;
  }
}
.contacts .contacts__text {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .contacts .contacts__text {
    margin-bottom: 50px;
  }
}
.contacts__flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1440px) {
  .contacts__flex {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 993px) {
  .contacts__flex {
    grid-template-columns: 1fr;
  }
}
.contacts .contacts__socials {
  background-image: url(../img/socilas-bg-small.webp);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 40px;
  background-position: center;
  height: auto;
  width: 100%;
  min-height: 310px;
}
@media (max-width: 1440px) {
  .contacts .contacts__socials {
    background-size: cover;
  }
}
.contacts .contacts__socials h2 {
  font-family: Jost;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
}
.contacts .contacts__socials .socials svg {
  width: 40px;
  height: 40px;
}
.contacts .contacts__socials a {
  display: flex;
  align-items: end;
  gap: 8px;
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
  transition: color 0.25s ease;
}
.contacts .contacts__socials a svg path {
  transition: fill 0.25s ease;
}
.contacts .contacts__socials a:hover {
  color: #FC9A30;
}
.contacts .contacts__socials a:hover svg path {
  fill: #FC9A30;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0 auto 0;
}

details, main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}
.footer {
  padding: 60px 0;
  background-color: #0C1523;
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1186px;
  margin: 0 auto 100px;
}
@media (max-width: 576px) {
  .footer__flex {
    margin-bottom: 50px;
    gap: 30px;
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 266px;
  width: 100%;
}
.footer__title {
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  color: #fff;
  line-height: 124%;
  letter-spacing: 0%;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
  letter-spacing: 0%;
  transition: color 0.25s ease;
}
.footer__link:hover {
  color: #DD9604;
}
.footer__flex-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1186px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  transition: color 0.25s ease;
}
.footer__links a:hover {
  color: #DD9604;
}
.footer__text-2 {
  color: rgba(255, 255, 255, 0.6);
}
.header {
  padding: 28px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
@media (max-width: 576px) {
  .header {
    padding: 20px 0;
  }
}
.header_scrolled,
.header.open {
  background-color: rgba(12, 21, 35, 0.92);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__img {
  max-width: 111px;
  width: 100%;
  height: 40px;
}
@media (max-width: 993px) {
  .header__socials {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .header__socials {
    display: none;
  }
}
@media (max-width: 993px) {
  .header .menu {
    position: absolute;
    left: 0%;
    top: -100%;
    transform: translateY(-100%);
    width: 100%;
    background-color: #0C1523;
    padding: 120px 20px 20px 20px;
    transition: transform 0.5s;
    z-index: 2;
  }
}
.header .menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 993px) {
  .header .menu__list {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.header .menu__item_576 {
  display: none;
}
@media (max-width: 576px) {
  .header .menu__item_576 {
    display: block;
  }
  .header .menu__item_576 .header__socials {
    display: flex;
  }
}
.header .menu__link {
  font-family: Jost;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 124%;
  letter-spacing: 0%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 576px) {
  .header .menu__link {
    font-size: 18px;
  }
}
.header .menu__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transform: skewX(-50deg);
  transition: background-color 0.25s ease;
}
.header .menu__link_active::after {
  background-color: #fff;
}
.header .menu__link:hover::after {
  background-color: #fff;
}
.header__burger-btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  z-index: 2;
}
@media (max-width: 993px) {
  .header__burger-btn {
    display: block;
    z-index: 3;
  }
}
.header__burger-btn span {
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}
.header__burger-btn span:nth-child(1) {
  transform: translateY(-10px) translateX(-50%);
}
.header__burger-btn span:nth-child(3) {
  transform: translateY(10px) translateX(-50%);
}

.header.open .header__burger-btn span:nth-child(1) {
  transform: translateY(13px) rotate(45deg) translateX(-50%);
}

.header.open .header__burger-btn span:nth-child(2) {
  opacity: 0;
}

.header.open .header__burger-btn span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg) translateX(-50%);
}

@media (max-width: 993px) {
  .header.open .menu {
    transform: translateY(0%);
  }
}
section[id] {
  scroll-margin-top: 120px;
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  background: rgba(12, 21, 35, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 40;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
  }
}
.cookie-banner_hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-banner__title {
  font-family: Jost;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}
.cookie-banner__text {
  font-family: Jost;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.78);
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner__button {
  flex-shrink: 0;
}
.cookie-banner__secondary {
  font-family: Jost;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 45;
  padding: 40px 24px;
}
.lightbox_open {
  opacity: 1;
  visibility: visible;
}
.lightbox-open {
  overflow: hidden;
}
.lightbox__dialog {
  position: relative;
  width: min(1320px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lightbox__figure {
  margin: 0;
  max-width: 100%;
}
.lightbox__image {
  display: block;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 180px);
  width: auto;
  margin: 0 auto 12px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.lightbox__caption {
  font-family: Jost;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  flex-shrink: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close {
  position: absolute;
  top: -20px;
  right: 0;
}
@media (max-width: 768px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__dialog {
    gap: 8px;
  }
  .lightbox__close {
    top: -10px;
    right: 10px;
  }
  .lightbox__nav {
    position: absolute;
    bottom: -70px;
  }
  .lightbox__nav_prev {
    left: calc(50% - 64px);
  }
  .lightbox__nav_next {
    right: calc(50% - 64px);
  }
}
