@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
:root {
  --ff-oswald: 'Oswald', sans-serif;
  --color-primary: #ECECEC;
  --color-white: #FFFFFF;
  --color-footer: #B5B5B5;
  --bg-main: #261427;
  --bg-header: #38233a;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 70%;
  display: block;
  margin: 0 auto 20px;
}

button {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

body {
  font-family: var(--ff-oswald);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main) url(../img/bg1.png) no-repeat top center;
  background-size: contain;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}
@media (max-width: 1440px) {
  body {
    background-size: auto;
  }
}
@media (max-width: 590px) {
  body {
    background: var(--bg-main);
  }
}

.container {
  max-width: 1090px;
  margin: 0 auto;
}

.arrow-btn-up {
  width: 34px;
  height: 34px;
  background: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border: 5px solid transparent;
  z-index: -1;
  bottom: 45px;
  right: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
.arrow-btn-up.btn-visible {
  opacity: 1;
  z-index: 1;
}
.arrow-btn-up:hover {
  background: url(../img/arrow-hover.svg);
  background-position: center;
}

.article {
  padding-bottom: 22px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 20px 23px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 20px 23px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 24px;
  line-height: 32px;
}
.article p {
  margin-bottom: 24px;
}
.article p > a {
  color: #9062FA;
}
.article p > a:hover {
  color: #CAB2FF;
}
.article p > a:visited {
  color: #ECE3FF;
}
.article h1 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 43px;
  line-height: 56px;
  color: var(--color-white);
}
@media (max-width: 890px) {
  .article h1 {
    line-height: 43px;
  }
}
.article h2 {
  color: var(--color-white);
  margin: 33px 0 33px;
  font-size: 35px;
  line-height: 45px;
  text-align: center;
}
.article h3 {
  color: var(--color-white);
  margin: 30px 0 30px;
  font-size: 29px;
  line-height: 36px;
  text-align: center;
}
.article-content {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.article-container {
  width: 100%;
  max-width: 555px;
  margin-right: 25px;
}
@media (max-width: 1090px) {
  .article-container {
    max-width: 100%;
  }
}
@media (max-width: 1090px) {
  .article picture {
    margin-bottom: 24px;
    margin: 0 auto;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 60px 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(even) {
  background: #1A1D33;
}
.article tbody tr:nth-child(odd) {
  background: #121424;
}
.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  word-break: break-all;
}
.article .table-1 tr:first-child {
  background: #363B68;
}
.article .table-2 tbody tr {
  grid-template-columns: 220px 1fr 1fr;
}
@media (max-width: 768px) {
  .article .table-2 tbody tr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article .table-3 tbody tr {
  grid-template-columns: 284px 1fr;
}
@media (max-width: 768px) {
  .article .table-3 tbody tr {
    grid-template-columns: 150px 1fr;
  }
}
.article .table-3 tbody td:first-child {
  font-weight: 700;
}

.footer {
  padding: 44px 0;
  color: var(--color-footer);
}
@media (max-width: 590px) {
  .footer {
    padding: 24px 0;
  }
}
.footer p {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.footer span {
  display: block;
}

.header-top {
  height: 70px;
}
@media (max-width: 890px) {
  .header-top {
    height: 62px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 20px;
  transition: 0.3s ease;
  background: var(--bg-header);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 890px) {
  .header-wrapper {
    justify-content: flex-end;
    gap: 20px;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    z-index: 5;
    width: 48px;
    height: 50px;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  width: 124px;
}
@media (max-width: 890px) {
  .header-logo {
    position: absolute;
    left: 20px;
  }
}
@media (max-width: 590px) {
  .header-logo {
    width: 58px;
    font-size: 0;
    line-height: 0;
  }
}
.header-block {
  display: flex;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1280px) {
  .header-block {
    gap: 40px;
  }
}
.header .logo {
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-white);
  text-transform: uppercase;
}
@media (max-width: 590px) {
  .header .logo {
    font-size: 0;
    line-height: 0;
  }
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 91px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    padding-top: 52px;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 590px) {
  .header-container {
    gap: 8px;
  }
}
.header button {
  width: 161px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 0;
  background: #0460c0;
  border-radius: 4px;
}
.header button:hover {
  background: #CAB3FF;
}
@media (max-width: 590px) {
  .header button {
    background: url(../img/login.svg) no-repeat;
    line-height: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
  }
}
.header button:first-child {
  background: transparent;
  border: 2px solid #0460c0;
  color: var(--color-white);
}
.header button:first-child:hover {
  background: #CAB3FF;
  border: none;
}
@media (max-width: 590px) {
  .header button:first-child {
    background: url(../img/enter.svg) no-repeat;
    line-height: 0;
    font-size: 0;
    border: none;
  }
}
.header img {
  border-radius: 8px;
  padding-right: 10px;
}
.header ul {
  display: flex;
  gap: 28px;
  color: var(--color-white);
  font-size: 14px;
}
@media (max-width: 890px) {
  .header ul {
    justify-content: center;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.header ul li {
  text-transform: uppercase;
}
.header ul li:hover {
  color: #9062FA;
}
@media (max-width: 890px) {
  .header ul li {
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    width: 100%;
    padding: 20px 0 20px 80px;
    max-width: 1920px;
    background: #0e2d8f;
  }
  .header ul li:nth-child(even) {
    background: #1D224D;
  }
}
.header-bottom {
  padding: 100px 0 34px;
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 100px 20px 34px;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 40px 20px 40px;
  }
}/*# sourceMappingURL=main.css.map */