html, body, header, nav, section, aside, article, footer, div,
span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small,
strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

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

a, span, p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

font {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

input, button, select, textarea {
  outline: none;
  border: none;
}

select, button {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#detach-button-host {
  display: none;
}

:root {
  --primary-font: "Constantine";
  --secondary-font: "Intro Book";
  --brand-color: #dad0a4;
}

:root {
  --page-gap-x: 60px;
}
@media (max-width: 1460px) {
  :root {
    --page-gap-x: 40px;
  }
}
@media (max-width: 1024px) {
  :root {
    --page-gap-x: 20px;
  }
}

body {
  min-height: 100vh;
  font-family: var(--secondary-font);
  color: #cccdcf;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  background-size: 100% auto, 100% auto;
}

#myVideo {
  position: fixed; 
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.content {
  position: absolute;
  top: 50%; /* например, разместить контент в середине экрана */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* чтобы контент был поверх видео */
  color: white;
}
@media (max-width: 2600px) {
  body {
    background-size: 2600px auto, 2600px auto;
  }
}
@media (max-width: 1680px) {
  body {
    background-size: 2400px auto, 2600px auto;
  }
}
@media (max-width: 1460px) {
  body {
    background-size: 2200px auto, 2600px auto;
  }
}
@media (max-width: 1240px) {
  body {
    background-size: 2000px auto, 2600px auto;
  }
}
@media (max-width: 1024px) {
  body {
    background-size: 1400px auto, 2600px auto;
  }
}
@media (max-width: 640px) {
  body {
    background-size: 1200px auto, 2600px auto;
  }
}
@media (max-width: 480px) {
  body {
    background-size: 1000px auto, 2600px auto;
  }
}
body.page-store {
  background: url("../images/inner_bottom_bg.png") bottom center no-repeat, url("../images/store_top_bg.jpg") #1e1e38 top center no-repeat;
  background-size: 100% auto, 100% auto;
}
@media (max-width: 1920px) {
  body.page-store {
    background-size: 2600px auto, 2000px auto;
  }
}
body.page-text {
  background: url("../images/inner_bottom_bg.png") bottom center no-repeat, url("../images/text_top_bg.jpg") #1e1e38 top center no-repeat;
  background-size: 100% auto, 100% auto;
}
@media (max-width: 1920px) {
  body.page-text {
    background-size: 2600px auto, 2000px auto;
  }
}
body.page-wiki {
  background: url("../images/inner_bottom_bg.png") bottom center no-repeat, url("../images/wiki_top_bg.jpg") #1e1e38 top center no-repeat;
  background-size: 100% auto, 100% auto;
}
@media (max-width: 1920px) {
  body.page-wiki {
    background-size: 2600px auto, 2000px auto;
  }
}

.wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.content-area {
  width: calc(100% - var(--page-gap-x) * 2);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn {
  height: 60px;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  position: relative;
  z-index: 1;
  background: url("../images/border_button_left.png") left center no-repeat, url("../images/border_button_right.png") right center no-repeat, url("../images/border_button_middle.png") left 48px center no-repeat;
  background-size: auto 100%, auto 100%, calc(100% - 96px) 100%;
  cursor: pointer;
}
.btn:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: calc(100% - 44px);
  height: calc(100% - 16px);
}
.btn span, .btn i {
  position: relative;
  z-index: 2;
}
.btn span {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.btn--primary:before {
  background: url("../images/orange_button_bg.jpg") center center repeat-x;
  background-size: auto 100%;
  border-radius: 100px;
  transition: filter 0.3s ease-in-out;
}
.btn--primary:hover:before {
  filter: brightness(130%);
}
.btn--secondary:before {
  background-color: #3c3d5a;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.btn--secondary:hover:before {
  opacity: 1;
}
.btn--small {
  height: 46px;
  padding: 0 30px;
  background: url("../images/sm_border_button_left.png") left center no-repeat, url("../images/sm_border_button_right.png") right center no-repeat, url("../images/sm_border_button_middle.png") left 32px center no-repeat;
  background-size: auto 100%, auto 100%, calc(100% - 64px) 100%;
}
.btn--small span {
  font-size: 15px;
}
.btn--small:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: calc(100% - 36px);
  height: calc(100% - 12px);
}
.btn--tiny {
  height: 30px;
  padding: 0 25px;
  background: url("../images/tn_border_button_left.png") left center no-repeat, url("../images/tn_border_button_right.png") right center no-repeat, url("../images/tn_border_button_middle.png") left 30px center no-repeat;
  background-size: auto 100%, auto 100%, calc(100% - 60px) 100%;
}
.btn--tiny span {
  font-size: 14px;
  transform: translateY(1px);
}
.btn--tiny:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: calc(100% - 24px);
  height: calc(100% - 8px);
}

.slider {
  width: 100%;
  height: auto;
  position: relative;
}
.slider .swiper {
  width: 100%;
}
.slider .swiper-slide {
  height: auto;
  align-self: stretch;
}

.card {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  background: #383551;
}
.card:before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.card__content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.card--video {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: filter 0.3s ease-in-out;
}
.card--video:hover {
  filter: brightness(120%);
}
.card__preview {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}
.card__play {
  width: 20%;
  aspect-ratio: 136/119;
  position: relative;
  z-index: 3;
  transition: filter 0.3s ease-in-out;
}
.card__play:hover {
  filter: brightness(120%);
}
.card__play:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #1e1e38;
  transform: scale(1.2);
  filter: blur(20px);
  transition: background-color 0.3s ease-in-out;
}
.card__play:hover:before {
  background-color: #2f2f53;
}
.card__play:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/play_button.png") center center no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}

.text-area {
  width: 100%;
  font-family: var(--secondary-light-font);
  font-size: 18px;
  line-height: 24px;
  color: #cccdcf;
}
@media (max-width: 1024px) {
  .text-area {
    font-size: 16px;
    line-height: 20px;
  }
}
.text-area > *:not(:first-child) {
  margin-top: 20px;
}
.text-area > img {
  width: 100%;
  margin: 0;
  padding: 0;
}
.text-area b {
  font-family: var(--secondary-font);
}
.text-area p b {
  color: #fff;
}
.text-area p img {
  height: auto !important;
  max-width: 100% !important;
  vertical-align: middle;
}
.text-area ul, .text-area ol {
  padding-left: 20px;
}
.text-area ul li, .text-area ol li {
  font-size: 18px;
  line-height: 24px;
  color: #acafb4;
}
@media (max-width: 1024px) {
  .text-area ul li, .text-area ol li {
    font-size: 16px;
    line-height: 20px;
  }
}
.text-area ul li::marker, .text-area ol li::marker {
  color: var(--brand-color);
  font-weight: 700;
}
.text-area ul li:not(:first-child), .text-area ol li:not(:first-child) {
  margin-top: 15px;
}
.text-area ul li img, .text-area ol li img {
  vertical-align: middle;
}
.text-area ul li {
  position: relative;
  list-style-type: none;
}
.text-area ul li:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 8px;
  left: -18px;
  transform: rotate(45deg);
  background: var(--brand-color);
}
.text-area ul ul:not(:first-child) {
  margin-top: 15px;
}
.text-area a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
.text-area a:hover {
  color: var(--brand-color);
}
.text-area hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.text-area hr:not(:first-child) {
  margin-top: 30px;
}
.text-area hr:not(:last-child) {
  margin-bottom: 30px;
}
.text-area h1, .text-area h2, .text-area h3, .text-area h4, .text-area h5, .text-area h6 {
  font-family: var(--primary-font);
  color: var(--brand-color);
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 5px;
}
.text-area h1 b, .text-area h2 b, .text-area h3 b, .text-area h4 b, .text-area h5 b, .text-area h6 b {
  font-family: var(--primary-font);
}
.text-area h1 {
  font-size: 36px;
  line-height: 40px;
}
@media (max-width: 1460px) {
  .text-area h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 1024px) {
  .text-area h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.text-area h2 {
  font-size: 32px;
  line-height: 36px;
}
@media (max-width: 1460px) {
  .text-area h2 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .text-area h2 {
    font-size: 22px;
    line-height: 26px;
  }
}
.text-area h3 {
  font-size: 26px;
  line-height: 30px;
}
@media (max-width: 1460px) {
  .text-area h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .text-area h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.text-area h4, .text-area h5, .text-area h6 {
  font-size: 22px;
  line-height: 26px;
}
@media (max-width: 1460px) {
  .text-area h4, .text-area h5, .text-area h6 {
    font-size: 18px;
    line-height: 22px;
  }
}
.text-area table {
  width: 100% !important;
  min-width: 700px;
}
.text-area table tr td {
  padding: 16px 20px;
  border-radius: 10px;
}
.text-area table tr td img {
  vertical-align: middle;
}
.text-area table thead tr td {
  background: #313151;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
@media (max-width: 1024px) {
  .text-area table thead tr td {
    font-size: 16px;
    line-height: 16px;
  }
}
.text-area table tbody tr:nth-child(even) td {
  background: #2d2d51;
}
.text-area table tbody tr:nth-child(odd) td {
  background: #262645;
}
.text-area table tbody tr td {
  font-size: 16px;
  line-height: 22px;
  color: #cccdcf;
}
@media (max-width: 1024px) {
  .text-area table tbody tr td {
    font-size: 14px;
    line-height: 18px;
  }
}
.text-area table td {
  border-color: #3c4b70 !important;
  border-width: 1px;
}

.table-bg {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #303e61;
  padding: 5px;
  border-radius: 15px;
}
.table-bg::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #213862;
}
.table-bg::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
}
.table-bg::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-color);
}

.spoiler {
  width: 100%;
  border-left: 2px solid var(--brand-color);
  background: rgba(15, 15, 22, 0.2);
  border-radius: 15px;
}
.spoiler__title {
  width: 100%;
  padding: 20px 40px 18px 20px !important;
  background-color: #313151;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .spoiler__title {
    font-size: 16px;
    line-height: 16px;
  }
}
.spoiler__title:hover {
  background-color: #48486d;
}
.spoiler__title:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc((100% - 12px) / 2);
  right: 20px;
  background: url("../images/arrow.png") center center no-repeat;
  background-size: 100% 100%;
  transition: transform 0.3s ease-in-out;
}
.spoiler__title img {
  height: 30px;
}
.spoiler.active > .spoiler__title:before {
  transform: scale(1, -1);
}
.spoiler__content {
  width: 100%;
  padding: 20px;
  display: none;
}

.icon-stroke {
  width: 100%;
}
.icon-stroke__line {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.icon-stroke__line:not(:first-child) {
  margin-top: 15px;
}
.icon-stroke__line-icon {
  width: 32px;
  height: 32px;
  align-self: stretch;
  position: relative;
}
@media (max-width: 1024px) {
  .icon-stroke__line-icon {
    width: 24px;
    height: 24px;
  }
}
.icon-stroke__line-icon img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center center;
}
.icon-stroke__line-text {
  width: calc(100% - 32px);
  padding-left: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 3px;
}
@media (max-width: 1024px) {
  .icon-stroke__line-text {
    width: calc(100% - 24px);
    padding-left: 10px;
    padding-top: 1px;
  }
}

.nav {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}
.nav:before {
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #1e1e38 0%, rgba(30, 30, 56, 0) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.nav--fixed:before {
  opacity: 1;
}
.nav__content {
  width: calc(100% - var(--page-gap-x) * 2);
  max-width: 1800px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 60px;
  transition: padding 0.3s ease-in-out;
}
@media (max-width: 1460px) {
  .nav__content {
    column-gap: 40px;
    padding: 20px 0;
  }
}
@media (max-width: 1024px) {
  .nav__content {
    padding: 15px 0;
  }
}
.nav--fixed .nav__content {
  padding: 15px 0px;
}
.nav__emblem {
  width: 90px;
  aspect-ratio: 90/58;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1680px) {
  .nav__emblem {
    width: 80px;
  }
}
@media (max-width: 1460px) {
  .nav__emblem {
    width: 70px;
  }
}
@media (max-width: 1240px) {
  .nav__emblem {
    width: 60px;
  }
}
@media (max-width: 1024px) {
  .nav__emblem {
    width: 50px;
  }
}
.nav__emblem:hover {
  transform: scale(1.05);
}
.nav__emblem img {
  height: 100px;
}
.nav__langs {
  position: relative;
  z-index: 1;
  max-height: 30px;
}
.nav__langs-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  flex-wrap: nowrap;
  cursor: pointer;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1460px) {
  .nav__langs-item {
    font-size: 15px;
  }
}
.nav__langs-item:hover, .nav__langs-item.active {
  color: var(--brand-color);
}
.nav__langs-item img {
  width: 34px;
  aspect-ratio: 34/24;
  border-radius: 5px;
}
@media (max-width: 1460px) {
  .nav__langs-item img {
    width: 28px;
  }
}
.nav__langs-item--current:after {
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background: url("../images/arrow.png");
  background-size: 100% 100%;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1460px) {
  .nav__langs-item--current:after {
    width: 10px;
  }
}
.nav__langs-item.active:after {
  transform: scale(1, -1);
}
.nav__langs-stroke {
  list-style-type: none;
  position: absolute;
  z-index: 1;
  top: calc(100% + 10px);
  left: -10px;
  padding: 10px;
  border-radius: 10px;
  background: #1e1e38;
  display: none;
}
.nav__langs-stroke li:not(:first-child) {
  margin-top: 10px;
}
.nav__links {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 40px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1460px) {
  .nav__links {
    column-gap: 30px;
  }
}
@media (max-width: 1024px) {
  .nav__links {
    width: 300px;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    right: calc(var(--page-gap-x) * -1);
    padding: 0 30px;
    background: rgba(30, 30, 56, 0.8);
    backdrop-filter: blur(5px);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  .nav__links.active {
    transform: translateX(0%);
  }
  .nav__links:before {
    content: "";
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 40px auto 30px;
    aspect-ratio: 641/233;
    background: url("../img/logos/logo_minimal.png");
    background-size: 100% 100%;
  }
}
@media (max-width: 1024px) {
  .nav__links li {
    width: 100%;
  }
  .nav__links li:not(:first-child) {
    margin-top: 20px;
  }
}
.nav__links-item {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1460px) {
  .nav__links-item {
    font-size: 15px;
  }
}
.nav__links-item:hover {
  color: var(--brand-color);
}
.nav__links-item img {
  height: 30px;
}
@media (max-width: 1460px) {
  .nav__links-item img {
    height: 25px;
  }
}
.nav__links-button {
  margin-top: -10px;
}
@media (max-width: 1460px) {
  .nav__links-button {
    height: 46px;
    padding: 0 30px;
    background: url("../images/sm_border_button_left.png") left center no-repeat, url("../images/sm_border_button_right.png") right center no-repeat, url("../images/sm_border_button_middle.png") left 32px center no-repeat;
    background-size: auto 100%, auto 100%, calc(100% - 64px) 100%;
  }
  .nav__links-button span {
    font-size: 15px;
  }
  .nav__links-button:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: calc(100% - 36px);
    height: calc(100% - 12px);
  }
}
.nav__switch {
  width: 34px;
  height: 34px;
  position: relative;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  display: none;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
  z-index: 3;
  border-radius: 50%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .nav__switch {
    display: flex;
  }
}
.nav__switch:hover {
  background-color: var(--brand-color);
}
.nav__switch:hover:after, .nav__switch:hover:before, .nav__switch:hover .nav__switch-item {
  background: #1c2227;
}
.nav__switch:hover .nav__switch-item {
  transform: scale(0.7, 1);
}
.nav__switch.active:after {
  transform: rotate(-135deg) scale(0.7, 1);
  top: calc((100% - 2px) / 2);
}
.nav__switch.active:before {
  transform: rotate(135deg) scale(0.7, 1);
  top: calc((100% - 2px) / 2);
}
.nav__switch.active .nav__switch-item {
  transform: scale(0, 1);
}
.nav__switch:after {
  content: "";
  width: calc(100% - 12px);
  height: 2px;
  background: #cdcfd1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  top: 11px;
  left: 6px;
  transform: scale(0.7, 1);
}
.nav__switch:before {
  content: "";
  width: calc(100% - 12px);
  height: 2px;
  background: #cdcfd1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  top: calc(100% - 13px);
  left: 6px;
  transform: scale(0.7, 1);
}
.nav__switch-item {
  width: calc(100% - 12px);
  height: 2px;
  background: #cdcfd1;
  position: absolute;
  top: calc((100% - 2px) / 2);
  left: 6px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  transform: scale(0.7, 1);
}

.points {
  width: 2px;
  height: auto;
  position: fixed;
  z-index: 11;
  top: 50%;
  right: var(--page-gap-x);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  background: linear-gradient(to bottom, rgba(192, 178, 120, 0) 0px, #c0b178 60px, #c0b178 calc(100% - 60px), rgba(192, 178, 120, 0) 100%);
}
@media (max-width: 1680px) {
  .points {
    gap: 30px;
    padding: 30px 0;
    right: calc(var(--page-gap-x) / 2);
  }
}
@media (max-width: 1460px) {
  .points {
    display: none;
  }
}
.points__item {
  width: 16px;
  height: 16px;
  border: 2px solid #c0b178;
  background: #1e1e38;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.points__item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #c0b178;
  border-radius: 50%;
  border: 2px solid #1e1e38;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.points__item.active:before, .points__item.active:before {
  opacity: 1;
}
.points__item-content {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  text-align: right;
  text-transform: uppercase;
  padding-right: 20px;
  overflow: hidden;
  transition: padding-right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media (max-width: 1680px) {
  .points__item-content {
    pointer-events: none;
    opacity: 0;
  }
}
.points__item-content:before {
  content: "";
  width: 80px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: calc(100% - 15px);
  transform: translateY(-50%);
  background: url("../images/point_bg.png") no-repeat;
  transition: left 0.3s ease-in-out;
}
.points__item-content-name {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1em;
  color: #c0b178;
  transition: color 0.3s ease-in-out;
}
.points__item-content-desc {
  font-size: 11px;
  line-height: 1em;
  color: #7b7b7b;
  margin-top: 3px;
}
.points__item:hover .points__item-content, .points__item.active .points__item-content {
  padding-right: 40px;
}
.points__item:hover .points__item-content:before, .points__item.active .points__item-content:before {
  left: calc(100% - 35px);
}
.points__item:hover .points__item-content .points__item-content-name, .points__item.active .points__item-content .points__item-content-name {
  color: #fff;
}
.points__item.active {
  pointer-events: none;
}
.points__item:hover .points__item-content {
  opacity: 1;
}

.socials {
  width: 54px;
  height: auto;
  position: fixed;
  z-index: 11;
  top: 50%;
  left: calc(var(--page-gap-x) + 18px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1680px) {
  .socials {
    width: 44px;
    left: calc(var(--page-gap-x) / 2);
  }
}
@media (max-width: 1460px) {
  .socials {
    display: none;
  }
}
.socials__item {
  width: 100%;
  transition: filter 0.3s ease-in-out;
}
.socials__item img {
  width: 100%;
}
.socials__item:hover {
  filter: brightness(130%);
}

.main-background {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .main-background {
    display: none;
  }
}
.main-background video {
  width: 100%;
}
@media (max-width: 2600px) {
  .main-background video {
    width: 2600px;
  }
}
@media (max-width: 1680px) {
  .main-background video {
    width: 2400px;
  }
}
@media (max-width: 1460px) {
  .main-background video {
    width: 2200px;
  }
}
@media (max-width: 1240px) {
  .main-background video {
    width: 2000px;
  }
}
@media (max-width: 1024px) {
  .main-background video {
    display: none;
  }
}

.main-header {
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 1240px) {
  .main-header {
    padding: 220px 0 100px;
  }
}
@media (max-width: 1024px) {
  .main-header {
    padding: 180px 0 0px;
    min-height: auto;
  }
}
.main-header__logo {
  width: 560px;
  aspect-ratio: 641/234;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1680px) {
  .main-header__logo {
    width: 460px;
  }
}
@media (max-width: 1460px) {
  .main-header__logo {
    width: 400px;
  }
}
@media (max-width: 1240px) {
  .main-header__logo {
    width: 360px;
  }
}
@media (max-width: 1024px) {
  .main-header__logo {
    width: 360px;
  }
}
@media (max-width: 640px) {
  .main-header__logo {
    width: 280px;
  }
}
.main-header__logo img {
  width: auto;
  height: 160px;
}
.main-header__title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
.main-header__title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-header__title small {
    font-size: 24px;
  }
}
@media (max-width: 1240px) {
  .main-header__title small {
    font-size: 18px;
  }
}
.main-header__title h1 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 48px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-header__title h1 {
    font-size: 42px;
  }
}
@media (max-width: 1240px) {
  .main-header__title h1 {
    font-size: 34px;
  }
}
@media (max-width: 760px) {
  .main-header__title h1 {
    font-size: 28px;
  }
}
.main-header__button {
  width: 416px;
  aspect-ratio: 416/95;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1em;
  color: #141414;
  text-align: center;
  text-transform: uppercase;
  background: url("../images/main_button.png");
  background-size: 100% 100%;
  transition: filter 0.3s ease-in-out;
  margin: 40px auto 0;
}
@media (max-width: 1460px) {
  .main-header__button {
    width: 300px;
    font-size: 24px;
    margin: 30px auto 0;
  }
}
@media (max-width: 1024px) {
  .main-header__button {
    width: 280px;
    font-size: 20px;
    margin: 30px auto 0;
  }
}
.main-header__button:hover {
  filter: brightness(110%);
}

.inner-header {
  width: 100%;
  padding: 190px 0 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1460px) {
  .inner-header {
    padding: 146px 0 80px;
  }
}
@media (max-width: 1024px) {
  .inner-header {
    padding: 110px 0 60px;
  }
}
.inner-header:after {
  content: "";
  width: 100%;
  height: 82px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background: url("../images/delimiter.png") center center repeat-x;
  background-size: auto 100%;
  pointer-events: none;
}
.inner-header h1 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 54px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1460px) {
  .inner-header h1 {
    font-size: 42px;
  }
}
@media (max-width: 1240px) {
  .inner-header h1 {
    font-size: 34px;
  }
}
@media (max-width: 760px) {
  .inner-header h1 {
    font-size: 28px;
  }
}
.inner-header h1 span {
  color: var(--brand-color);
}
.inner-header__buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1460px) {
  .inner-header__buttons {
    margin-top: 30px;
  }
}
@media (max-width: 1024px) {
  .inner-header__buttons {
    margin-top: 20px;
  }
}
.inner-header__buttons-item {
  width: 416px;
  aspect-ratio: 416/95;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: url("../images/main_button_alt.png");
  background-size: 100% 100%;
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0.6;
}
@media (max-width: 1460px) {
  .inner-header__buttons-item {
    width: 300px;
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .inner-header__buttons-item {
    width: 280px;
    font-size: 20px;
  }
}
.inner-header__buttons-item.active {
  opacity: 1;
  background: url("../images/main_button.png");
  background-size: 100% 100%;
  color: #1e1e38;
}
.inner-header__buttons-item:hover {
  filter: brightness(110%);
  opacity: 1;
}

.section {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 140px 0;
  padding-bottom: 200px;
}
@media (max-width: 1240px) {
  .section {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
}
.section__title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
}
@media (max-width: 1240px) {
  .section__title {
    column-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .section__title {
    justify-content: space-between;
  }
}
.section__title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .section__title small {
    font-size: 17px;
  }
}
@media (max-width: 1240px) {
  .section__title small {
    font-size: 15px;
  }
}
.section__title h2 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 54px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .section__title h2 {
    font-size: 42px;
  }
}
@media (max-width: 1240px) {
  .section__title h2 {
    font-size: 34px;
  }
}
@media (max-width: 760px) {
  .section__title h2 {
    font-size: 28px;
  }
}
.section__title-arrow {
  height: 29px;
  background: url("../images/arrow_left.png") left center no-repeat, url("../images/arrow_right.png") right center no-repeat, url("../images/arrow_middle.png") left 22px center no-repeat;
  background-size: auto 100%, auto 100%, calc(100% - 44px) 100%;
  flex-grow: 1;
  opacity: 0.25;
}
@media (max-width: 760px) {
  .section__title-arrow {
    display: none;
  }
}
.section__title-arrows {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1240px) {
  .section__title-arrows {
    column-gap: 20px;
  }
}
.section__title-arrows-item {
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 1240px) {
  .section__title-arrows-item {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .section__title-arrows-item {
    width: 24px;
    height: 24px;
  }
}
.section__title-arrows-item:hover {
  opacity: 1;
}
.section__title-arrows-item img {
  width: 100%;
  height: 100%;
}
.section__title-arrows-item.swiper-button-disabled {
  opacity: 0.25;
}
.section__content {
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 1240px) {
  .section__content {
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .section__content {
    margin-top: 30px;
  }
}
.section--bordered-top:before {
  content: "";
  width: 100%;
  height: 82px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  background: url("../images/delimiter.png") center center repeat-x;
  background-size: auto 100%;
  pointer-events: none;
}
.section--bordered-bottom:after {
  content: "";
  width: 100%;
  height: 82px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background: url("../images/delimiter.png") center center repeat-x;
  background-size: auto 100%;
  pointer-events: none;
}

.main-features {
  width: 100%;
}
.main-features__swiper {
  width: 100%;
  height: 680px;
}
@media (max-width: 1024px) {
  .main-features__swiper {
    height: auto;
  }
}
.main-features__swiper .swiper-slide {
  height: calc((100% - 40px) / 2) !important;
  position: relative;
  z-index: 1;
  transition: z-index 0.5s ease-in-out;
}
@media (max-width: 1024px) {
  .main-features__swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
}
.main-features__swiper .swiper-slide:hover {
  z-index: 2;
}
.main-features__swiper .swiper-slide:nth-child(odd) .card {
  top: 0;
}
.main-features__swiper .swiper-slide:nth-child(even) .card {
  bottom: 0;
}
.main-features__item {
  width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  background-color: #23233f;
}
@media (max-width: 1024px) {
  .main-features__item {
    flex-grow: 1;
    position: relative;
  }
}
.main-features__item:before {
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out, border 0.5s ease-in-out;
}
.main-features__item:hover:before {
  opacity: 1;
  border: 1px solid var(--brand-color);
}
.main-features__item-bg {
  min-width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  -webkit-mask: linear-gradient(to bottom, rgba(42, 59, 91, 0.8) 0%, rgba(42, 59, 91, 0.4) 80px, rgba(42, 59, 91, 0.2) 120px, rgba(42, 59, 91, 0) 300px, rgba(42, 59, 91, 0) 100%);
  -webkit-mask-size: 100% 100%;
  transition: opacity 0.5s ease-in-out;
}
.main-features__item:hover .main-features__item-bg {
  opacity: 0.2;
}
@media (max-width: 1024px) {
  .main-features__item:hover .main-features__item-bg {
    opacity: 1;
  }
}
.main-features__item-content {
  width: 100%;
  padding: 30px 30px 40px;
}
@media (max-width: 1024px) {
  .main-features__item-content {
    padding: 140px 30px 40px;
  }
}
.main-features__item-title {
  width: 100%;
  text-align: center;
}
.main-features__item-title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1em;
  color: #c0c0ca;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main-features__item-title h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1em;
  color: #c0c0ca;
  text-transform: uppercase;
}
.main-features__item-text {
  width: 100%;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
  color: #a7a6bc;
  text-align: center;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}
@media (max-width: 1024px) {
  .main-features__item-text {
    grid-template-rows: 1fr;
    margin-top: 10px;
  }
}
.main-features__item-text > div {
  overflow: hidden;
}
.main-features__item:hover .main-features__item-text {
  grid-template-rows: 1fr;
  margin-top: 10px;
}
.main-features__item-button {
  width: 100%;
  max-width: 200px;
  margin: 15px auto 0px;
}

.main-lore {
  background: url("../images/main_lore_bg.jpg") top center no-repeat;
  background-size: cover;
}
.main-lore__title {
  width: calc((100% - 40px) / 2);
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .main-lore__title {
    width: 100%;
  }
}
.main-lore .slider {
  margin-top: -84px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1460px) {
  .main-lore .slider {
    margin-top: -68px;
  }
}
@media (max-width: 1240px) {
  .main-lore .slider {
    margin-top: -58px;
  }
}
@media (max-width: 1024px) {
  .main-lore .slider {
    margin-top: 30px;
  }
}
.main-lore__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 40px;
  align-self: flex-start !important;
}
@media (max-width: 1460px) {
  .main-lore__item {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .main-lore__item {
    gap: 20px;
  }
}
.main-lore__item-col {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 1460px) {
  .main-lore__item-col {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 1024px) {
  .main-lore__item-col {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 760px) {
  .main-lore__item-col {
    width: 100%;
  }
}
.main-lore__item-content {
  padding-top: 120px;
}
@media (max-width: 1460px) {
  .main-lore__item-content {
    padding-top: 100px;
  }
}
@media (max-width: 1240px) {
  .main-lore__item-content {
    padding-top: 80px;
  }
}
@media (max-width: 1024px) {
  .main-lore__item-content {
    padding-top: 0px;
  }
}
@media (max-width: 760px) {
  .main-lore__item-content {
    text-align: center;
  }
}
.main-lore__item h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2em;
  color: #fff;
}
@media (max-width: 1024px) {
  .main-lore__item h3 {
    font-size: 26px;
  }
}
.main-lore__item h3 span {
  color: var(--brand-color);
}
@media (max-width: 1024px) {
  .main-lore__item p {
    font-size: 16px;
  }
}
.main-lore__item p:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .main-lore__item p:not(:first-child) {
    margin-top: 15px;
  }
}
@media (max-width: 760px) {
  .main-lore__item p:not(:first-child) {
    margin-top: 10px;
  }
}
.main-lore__item-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .main-lore__item-buttons {
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .main-lore__item-buttons {
    justify-content: center;
  }
}
.main-lore__item-buttons:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .main-lore__item-buttons:not(:first-child) {
    margin-top: 20px;
  }
}
.main-lore__item-buttons .btn {
  min-width: 280px;
}
@media (max-width: 1024px) {
  .main-lore__item-buttons .btn {
    min-width: 200px;
  }
}
.main-lore .card {
  aspect-ratio: 680/450;
}

.main-update {
  background: url("../images/main_update_bg.jpg") top center no-repeat;
  background-size: cover;
}
.main-update__title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}
.main-update__title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-update__title small {
    font-size: 17px;
  }
}
@media (max-width: 1240px) {
  .main-update__title small {
    font-size: 15px;
  }
}
.main-update__title h2 {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 44px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-update__title h2 {
    font-size: 42px;
  }
}
@media (max-width: 1240px) {
  .main-update__title h2 {
    font-size: 34px;
  }
}
@media (max-width: 760px) {
  .main-update__title h2 {
    font-size: 28px;
  }
}
.main-update__item {
  padding: 80px 0;
  background-color: #1f1e38;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .main-update__item {
    padding: 40px 0;
  }
}
.main-update__item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top left;
  -webkit-mask: linear-gradient(to right, rgba(42, 59, 91, 0.8) 0%, rgba(42, 59, 91, 0) 50%);
  -webkit-mask-size: 100% 100%;
}
.main-update__item-content {
  width: calc((100% - 40px) / 2);
  position: relative;
  z-index: 2;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .main-update__item-content {
    width: 100%;
    padding: 0 40px;
    text-align: center;
  }
}
.main-update__item-content h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 31px;
  line-height: 1.2em;
  color: var(--brand-color);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-update__item-content h3 {
    font-size: 26px;
  }
}
.main-update__item-content h3 span {
  color: var(--brand-color);
}
@media (max-width: 1024px) {
  .main-update__item-content p {
    font-size: 16px;
  }
}
.main-update__item-content p:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .main-update__item-content p:not(:first-child) {
    margin-top: 15px;
  }
}
@media (max-width: 760px) {
  .main-update__item-content p:not(:first-child) {
    margin-top: 10px;
  }
}
.main-update__item-content-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .main-update__item-content-buttons {
    gap: 10px;
    justify-content: center;
  }
}
.main-update__item-content-buttons:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .main-update__item-content-buttons:not(:first-child) {
    margin-top: 20px;
  }
}
.main-update__item-content-buttons .btn {
  min-width: 280px;
}
@media (max-width: 1024px) {
  .main-update__item-content-buttons .btn {
    min-width: 200px;
  }
}
.main-update .slider--thumbs {
  width: 635px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .main-update .slider--thumbs {
    width: 480px;
    margin: 30px auto 0;
  }
}
@media (max-width: 640px) {
  .main-update .slider--thumbs {
    width: 260px;
  }
}
.main-update__arrow {
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1240px) {
  .main-update__arrow {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .main-update__arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 640px) {
  .main-update__arrow {
    top: 0%;
    transform: translateY(0%);
    position: relative;
  }
}
.main-update__arrow:hover {
  opacity: 1;
}
.main-update__arrow img {
  width: 100%;
  height: 100%;
}
.main-update__arrow.swiper-button-disabled {
  opacity: 0.25;
}
.main-update__arrow--prev {
  right: calc(100% + 30px);
}
@media (max-width: 1024px) {
  .main-update__arrow--prev {
    right: calc(100% + 20px);
  }
}
@media (max-width: 640px) {
  .main-update__arrow--prev {
    right: 0px;
  }
}
.main-update__arrow--next {
  left: calc(100% + 30px);
}
@media (max-width: 1024px) {
  .main-update__arrow--next {
    left: calc(100% + 20px);
  }
}
@media (max-width: 640px) {
  .main-update__arrow--next {
    left: 0px;
  }
}
.main-update__thumbs {
  width: 100%;
}
.main-update__thumbs-item {
  width: 103px;
  height: 103px !important;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .main-update__thumbs-item {
    width: 80px;
    height: 80px !important;
  }
}
.main-update__thumbs-item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: url("../images/border.png");
  background-size: 100% 100%;
}
.main-update__thumbs-item:after {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #362668;
  box-shadow: inset 0px 0px 20px #000;
  transition: background-color 0.3s ease-in-out;
}
.main-update__thumbs-item:hover:after, .main-update__thumbs-item.active:after {
  background-color: #d96f24;
}
.main-update__thumbs-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  object-fit: contain;
  object-fit: center center;
}

.main-road {
  background: url("../images/main_road_bg.jpg") top center no-repeat;
  background-size: cover;
}
.main-road__swiper {
  width: 100%;
}
.main-road hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 60px 0;
}
@media (max-width: 1240px) {
  .main-road hr {
    margin: 40px 0;
  }
}
@media (max-width: 1024px) {
  .main-road hr {
    margin: 30px 0;
  }
}
.main-road__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  background-color: #23233f;
  overflow: hidden;
  cursor: pointer;
}
.main-road__item:before {
  transition: border 0.3s ease-in-out;
}
.main-road__item:hover:before, .main-road__item.active:before {
  border: 1px solid var(--brand-color);
}
.main-road__item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0.2;
  transition: opacity 0.3s ease-in-out;
}
.main-road__item:hover .main-road__item-bg, .main-road__item.active .main-road__item-bg {
  opacity: 0.5;
}
.main-road__item-content {
  width: 100%;
  padding: 100px 40px 40px;
}
@media (max-width: 1240px) {
  .main-road__item-content {
    padding: 60px 40px 40px;
  }
}
@media (max-width: 1024px) {
  .main-road__item-content {
    padding: 30px;
  }
}
.main-road__item-content small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 23px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1460px) {
  .main-road__item-content small {
    font-size: 18px;
  }
}
.main-road__item-content h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-road__item-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 1240px) {
  .main-road__item-content h3 {
    font-size: 22px;
  }
}
.main-road__content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-road__content-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 40px;
  row-gap: 40px;
  align-self: flex-start !important;
}
@media (max-width: 1460px) {
  .main-road__content-item {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .main-road__content-item {
    font-size: 16px;
    gap: 20px;
  }
}
.main-road__content-item h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 23px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
}
.main-road__content-item ul, .main-road__content-item ol {
  padding-left: 18px;
  font-size: 16px;
}
.main-road__content-item ul li::marker, .main-road__content-item ol li::marker {
  color: var(--brand-color);
}
.main-road__content-col {
  width: 100%;
}
.main-road__content-col > *:not(:first-child) {
  margin-top: 15px;
}
.main-road__content-col.col-1-2 {
  width: calc((100% - 40px) / 2);
  flex-grow: 1;
}
@media (max-width: 1460px) {
  .main-road__content-col.col-1-2 {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 1024px) {
  .main-road__content-col.col-1-2 {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 760px) {
  .main-road__content-col.col-1-2 {
    width: 100%;
  }
}
.main-road__content-col.col-1-3 {
  width: calc((100% - 80px) / 3);
  flex-grow: 1;
}
@media (max-width: 1460px) {
  .main-road__content-col.col-1-3 {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 1024px) {
  .main-road__content-col.col-1-3 {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 760px) {
  .main-road__content-col.col-1-3 {
    width: 100%;
  }
}

.main-store {
  background: url("../images/main_store_bg.jpg") top center no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 0px;
  row-gap: 60px;
}
@media (max-width: 1240px) {
  .main-store {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .main-store {
    gap: 30px;
  }
}
.main-store .swiper {
  width: 100%;
}
.main-store__pack {
  padding: 40px 40px 50px;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .main-store__pack {
    padding: 40px 30px;
  }
}
.main-store__pack:hover {
  background-color: #2d2b42;
}
.main-store__pack:before {
  transition: border 0.3s ease-in-out;
}
.main-store__pack:hover:before {
  border: 1px solid var(--brand-color);
}
.main-store__pack-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}
.main-store__pack-icon {
  width: 100%;
  max-width: 342px;
  aspect-ratio: 1/1;
  position: relative;
  margin: -30px auto;
}
@media (max-width: 1460px) {
  .main-store__pack-icon {
    max-width: 260px;
    margin: -30px auto 0;
  }
}
@media (max-width: 1024px) {
  .main-store__pack-icon {
    max-width: 220px;
    margin: -30px auto -10px;
  }
}
.main-store__pack-icon img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center center;
}
.main-store__pack-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.main-store__pack-title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .main-store__pack-title small {
    font-size: 15px;
  }
}
.main-store__pack-title h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 34px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-store__pack-title h3 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .main-store__pack-title h3 {
    font-size: 24px;
  }
}
.main-store__pack .btn {
  max-width: 200px;
  margin: 30px auto 0;
}
@media (max-width: 1024px) {
  .main-store__pack .btn {
    margin: 20px auto 0;
    height: 46px;
    padding: 0 30px;
    background: url("../images/sm_border_button_left.png") left center no-repeat, url("../images/sm_border_button_right.png") right center no-repeat, url("../images/sm_border_button_middle.png") left 32px center no-repeat;
    background-size: auto 100%, auto 100%, calc(100% - 64px) 100%;
  }
  .main-store__pack .btn span {
    font-size: 15px;
  }
  .main-store__pack .btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: calc(100% - 36px);
    height: calc(100% - 12px);
  }
}
.main-store__payment {
  padding: 40px;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}
.main-store__payment:hover {
  background-color: #2d2b42;
}
.main-store__payment:before {
  transition: border 0.3s ease-in-out;
}
.main-store__payment:hover:before {
  border: 1px solid var(--brand-color);
}
.main-store__payment-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
}
.main-store__payment-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.main-store__payment-image img {
  height: 42px;
}
.main-store__payment-text {
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 10px;
}
.main-store__payment .btn {
  margin: 20px auto 0;
  max-width: 120px;
}
.main-store__info {
  width: 100%;
  text-align: center;
}
.main-store__info > *:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .main-store__info > *:not(:first-child) {
    margin-top: 15px;
  }
}
.main-store__info h2 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 34px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .main-store__info h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .main-store__info h2 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .main-store__info p {
    font-size: 16px;
  }
}

.main-gallery__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1460px) {
  .main-gallery__wrapper {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .main-gallery__wrapper {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .main-gallery__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.main-gallery__wrapper > *:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 760px) {
  .main-gallery__wrapper > *:first-child {
    aspect-ratio: 680/450;
  }
}
.main-gallery__wrapper > *:not(:first-child) {
  aspect-ratio: 680/450;
}

.footer {
  background: url("../images/main_lore_bg.jpg") top center no-repeat;
  background-size: cover;
}
.footer .content-area {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .footer .content-area {
    flex-wrap: wrap;
  }
}
.footer__cpr {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .footer__cpr {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__cpr-emblem {
  width: 60px;
  aspect-ratio: 90/58;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  flex-shrink: 0;
}
.footer__cpr-emblem img {
  width: auto;
  height: 60px;
}
.footer__cpr-text {
  font-size: 12px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #a5a3ad;
}
@media (max-width: 640px) {
  .footer__cpr-text {
    width: 100%;
    text-align: center;
  }
}
.footer .unsimple {
  width: 164px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  text-transform: uppercase;
  flex-shrink: 0;
}
.footer .unsimple:hover {
  opacity: 1;
}
.footer .unsimple__copyright {
  font-size: 12px;
  line-height: 16px;
  text-align: left !important;
}
.footer .unsimple__copyright p {
  color: #dad9d8;
}
.footer .unsimple__copyright span {
  color: #dad0a4;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 640px) {
  .footer .unsimple {
    margin: 0 auto;
  }
}

.page-content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(31, 30, 56, 0.8), rgba(31, 30, 56, 0));
}
@media (max-width: 1240px) {
  .page-content {
    padding: 80px 0;
  }
}
@media (max-width: 1024px) {
  .page-content {
    padding: 60px 0;
  }
}

.store {
  width: 100%;
}
.store__categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 25px;
}
.store__categories-item {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1em;
  color: #cdd2f3;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.store__categories-item span {
  color: var(--brand-color);
}
.store__categories-item:hover, .store__categories-item.active {
  color: #fff;
}
.store__categories-item.active {
  color: var(--brand-color);
}
.store__content {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.store__content-item {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.store__content-item.active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1460px) {
  .store__content {
    margin-top: 30px;
  }
}
@media (max-width: 1024px) {
  .store__content {
    margin-top: 20px;
  }
}
.store__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 1460px) {
  .store__list {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .store__list {
    gap: 20px;
  }
}
.store__list-item {
  width: calc((100% - 120px) / 4);
  padding: 40px 40px 50px;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1460px) {
  .store__list-item {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 1240px) {
  .store__list-item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 1024px) {
  .store__list-item {
    padding: 40px 30px;
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 640px) {
  .store__list-item {
    width: 100%;
  }
}
.store__list-item:hover {
  background-color: #2d2b42;
}
.store__list-item:before {
  transition: border 0.3s ease-in-out;
}
.store__list-item:hover:before {
  border: 1px solid var(--brand-color);
}
.store__list-item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}
.store__list-item-icon {
  width: 100%;
  max-width: 342px;
  aspect-ratio: 1/1;
  position: relative;
  margin: -30px auto -20px;
}
@media (max-width: 1460px) {
  .store__list-item-icon {
    max-width: 260px;
    margin: -30px auto 0;
  }
}
@media (max-width: 1024px) {
  .store__list-item-icon {
    max-width: 220px;
    margin: -30px auto -10px;
  }
}
.store__list-item-icon img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center center;
}
.store__list-item-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.store__list-item-title small {
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1em;
  color: var(--brand-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.store__list-item-title h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1460px) {
  .store__list-item-title h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .store__list-item-title h3 {
    font-size: 17px;
  }
}
.store__list-item .btn {
  max-width: 200px;
  margin: 30px auto 0;
}
.store__list-empty {
  width: 100%;
  padding: 40px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}

.wiki {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.wiki__toggle {
  width: 370px;
  padding: 20px 40px;
  border-radius: 15px;
  background: url("../images/wiki_nav_bg.jpg") #242544 top center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 1240px) {
  .wiki__toggle {
    width: 300px;
    padding: 10px 25px;
  }
}
@media (max-width: 1024px) {
  .wiki__toggle {
    width: 100%;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px;
  }
}
@media (max-width: 650px) {
  .wiki__toggle {
    display: block;
    padding: 10px 25px;
  }
}
.wiki__toggle:after {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.wiki__toggle-item {
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  row-gap: 15px;
}
.wiki__toggle-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .wiki__toggle-item {
    width: calc((100% - 20px) / 2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    flex-grow: 1;
    padding: 15px;
    align-self: stretch;
  }
}
@media (max-width: 650px) {
  .wiki__toggle-item {
    width: 100%;
    border: unset;
    padding: 15px 0;
    border-radius: 0px;
  }
}
.wiki__toggle-item-icon {
  width: 52px;
  aspect-ratio: 1;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #485065;
  transition: border 0.3s ease-in-out;
}
.wiki__toggle-item-icon img {
  width: 100%;
  border-radius: 100%;
}
.wiki__toggle-item-info {
  width: calc(100% - 52px - 15px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.wiki__toggle-item-info span {
  width: 100%;
  font-family: "Intro";
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #b8bfd3;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.wiki__toggle-item-info p {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #485065;
  transition: color 0.3s ease-in-out;
}
.wiki__toggle-item:hover .wiki__toggle-item-icon, .wiki__toggle-item.active .wiki__toggle-item-icon {
  border: 1px solid var(--brand-color);
}
.wiki__toggle-item:hover .wiki__toggle-item-info span, .wiki__toggle-item.active .wiki__toggle-item-info span {
  color: #fff;
}
.wiki__toggle-item:hover .wiki__toggle-item-info p, .wiki__toggle-item.active .wiki__toggle-item-info p {
  color: var(--brand-color);
}
.wiki__content {
  width: calc(100% - 370px - 40px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1240px) {
  .wiki__content {
    width: calc(100% - 300px - 40px);
  }
}
@media (max-width: 1024px) {
  .wiki__content {
    width: 100%;
    margin-top: 40px;
  }
}
.wiki__content-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.wiki__content-item.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
}

.video-wnd {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(30, 30, 56, 0.8);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.video-wnd.active {
  opacity: 1;
  pointer-events: auto;
}

.video-wnd__box {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1/0.56;
  position: relative;
  background: #383550;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: auto;
}

.video-wnd__navigation {
  width: 100%;
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.video-wnd__cancel {
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.video-wnd__cancel:hover {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}






.main-lore__item-buttons {
    display: flex;
    justify-content: center;
}
.download-block {
    text-align: center;
}
.linova-content {
    display: flex;
    flex-wrap: wrap;
}
.linova-sidebar {
    width: 35%;
    max-width: 380px;
}
.linova-news {
    width: 63%;
}
.l-server {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    width: 320px;
}
.l-server-item {
    position: relative;
    max-width: 320px;
}
.l-server-item::before {
    content: "";
    background-image: url("../images/cowa-bg.png");
    background-repeat: no-repeat;
    position: absolute;
    width: 352px;
    height: 46px;
    bottom: -20px;
    left: -25px;
}
.l-cowa {
    width: 35%;
    position: relative;
    z-index: 9;
}
.l-cowa img {
    width: 100%;
}
.l-text p {
    font-size: 16px;
}
.l-text {
    width: 60%;
}
.l-server td {
    font-size: 14px;
    line-height: 1.3;
}
.l-server table {
  width: 100%;
}
.l-img {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 32px;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#eee, #faffd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: center;
}
.linova-news .section__title {
    text-align: center;
}
.linova-news .section__title h2 {
    margin: auto;
}
.news-title a {
    color: #c9c09b;
    font-size: 16px;
    text-decoration: underline;
}
.news-title a:hover {
    text-decoration: none;
}
.news-item p {
    font-size: 14px;
    line-height: 1.3;
}
.news-date {
    font-size: 14px;
}
.news-date span {
    color: #fff;
}
.news-forum {
    margin-top: 30px;
}
.news-item {
    border-bottom: 1px solid #5e5e7d;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.news-item:last-child {
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
    margin-bottom: 0;
}
.new-cont a {
    color: #fff;
    text-decoration: underline;
}
.new-cont a:hover {
    text-decoration: none;
}
.announcers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    margin: auto;
    padding: 20px 0;
}
.announcers img {
    width: 80px;
    height: 32px;
}
.announcers a {
    height: 32px !important;
    position: relative;
    margin: 0 !IMPORTANT;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 1 !important;
    bottom: 0 !important;
}

.footer__cpr a {
    font-size: 12px;
}

td.onlinestat {
    color: #76ff76;
    font-weight: bold;
}




