@import url('https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;500;600;700&display=swap');
:root {
  --ff-vollkorn: 'Vollkorn', serif;
  --color-primary: #F7F8FF;
  --color-link: #E9CC66;
  --color-footer: #FDFCFC;
  --bg-main: #070522;
  --bg-nav: #020202;
  --bg-table: #0F0F0F;
  --bg-table2: #1B1B1B;
  --bg-footer: #0A090A;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

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

body {
  font-family: var(--ff-vollkorn);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}
@media (max-width: 590px) {
  body {
    font-size: 14px;
    line-height: 21px;
  }
}

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

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#0b0c0f, #4f4f10) padding-box, linear-gradient(to bottom, #515c1b, #352f2f) border-box;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 50%;
  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;
}

.article {
  padding-bottom: 57px;
}
@media (max-width: 1280px) {
  .article {
    padding: 10px 15px 57px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 16px;
}
.article p {
  margin-bottom: 16px;
}
.article p:last-child {
  margin-bottom: 0;
  margin-top: 16px;
}
.article p > a {
  color: var(--color-link);
  text-decoration: underline;
}
.article img {
  border-radius: 16px;
}
@media (max-width: 450px) {
  .article img {
    border-radius: 12px;
    padding: 20px;
  }
}
.article h1 {
  margin: 28px 0 40px;
  font-weight: 600;
  font-size: 46px;
  line-height: 62px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h1 {
    margin: 30px 0 30px;
    font-size: 32px;
    line-height: 39px;
  }
}
.article h2 {
  margin: 33px 0 33px;
  font-weight: 600;
  font-size: 35px;
  line-height: 51px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h2 {
    font-size: 26px;
    line-height: 35px;
  }
}
.article h3 {
  margin: 28px 0 28px;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
}
@media (max-width: 450px) {
  .article h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.article picture + h2 {
  margin-top: 32px;
}
.article h3 + p + p {
  margin-bottom: 32px;
}
.article .table {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  align-items: center;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(odd) {
  background: var(--bg-table2);
}
.article tbody tr:first-child {
  background: var(--bg-table);
  border-radius: 8px 8px 0px 0px;
}
.article tbody tr:first-child td {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 590px) {
  .article tbody tr:first-child td {
    line-height: 20px;
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .article tbody tr:first-child td {
    line-height: 17px;
    font-size: 11px;
  }
}
.article tbody tr td {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  padding: 20px 20px;
}
@media (max-width: 768px) {
  .article tbody tr td {
    font-size: 14px;
    line-height: 17px;
    padding: 12px;
  }
}
@media (max-width: 510px) {
  .article tbody tr td {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .article tbody tr td {
    line-height: 17px;
    font-size: 11px;
    padding: 5px;
  }
}
.article .table.tab-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
.article .table.tab-3 tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  background: var(--bg-footer);
  padding: 24px 0;
}
.footer p {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.5;
  color: #FDFCFC;
}
@media (max-width: 450px) {
  .footer p {
    width: 230px;
    margin: 0 auto;
  }
}

.header {
  background-color: var(--bg-main);
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
@media (max-width: 980px) {
  .header {
    background-size: contain;
    background-position: top;
  }
}
@media (max-width: 450px) {
  .header {
    background-image: url(../img/bg-2.png);
    background-size: cover;
    background-position: center;
  }
}
.header-top {
  height: 82px;
}
@media (max-width: 590px) {
  .header-top {
    height: 62px;
  }
}
@media (max-width: 390px) {
  .header-top {
    height: 213px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  transition: 0.3s ease;
  background: #ddc15e;
}
@media (max-width: 590px) {
  .header-fixed {
    padding: 10px 0;
  }
}
.header-fixed.active {
  background: var(--bg-main);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1280px) {
  .header-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 390px) {
  .header-wrap {
    flex-direction: column;
  }
}
.header-block {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 3;
    width: 27px;
    height: 18px;
    background: url(../img/burger.svg) no-repeat center;
    background-color: black;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 390px) {
  .header .burger {
    position: absolute;
    top: 25px;
    left: 23px;
  }
}
.header-logo {
  cursor: pointer;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(145, 145, 145, 0.12);
  padding: 8px 17px;
  font-size: 19px;
}
@media (max-width: 390px) {
  .header-logo {
    position: absolute;
    top: 17px;
    right: 15px;
  }
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-nav);
    background-size: contain;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
@media (max-width: 590px) {
  .header .nav {
    top: 60px;
  }
}
@media (max-width: 390px) {
  .header .nav {
    top: 210px;
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 890px) {
  .header .menu {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 80px 15px 0;
  }
}
@media (max-width: 390px) {
  .header .menu {
    padding: 67px 15px 0;
  }
}
.header .menu .item {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header .menu .item {
    width: 100%;
    max-width: 360px;
    padding: 16px 0;
  }
}
.header-container {
  display: flex;
  gap: 12px;
}
@media (max-width: 890px) {
  .header-container {
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 390px) {
  .header-container {
    flex-direction: column;
    margin-top: 101px;
    width: 100%;
  }
}
.header button {
  width: 150px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  padding: 10px 0;
  background: linear-gradient(95.7deg, #ECD068 0.95%, #5C3A08 109.81%);
  color: #FFFFFF;
  border: 1px solid rgb(146, 93, 17);
}
.header button:hover {
  background: linear-gradient(95.7deg, #E3C762 0.95%, #E3C762 109.81%);
  border: 1px solid rgb(146, 93, 17);
  color: #010101;
}
@media (max-width: 590px) {
  .header button {
    width: 116px;
  }
}
@media (max-width: 390px) {
  .header button {
    width: 100%;
  }
}
.header button:first-child {
  width: 106px;
  padding: 9px 0;
  border: 1px solid rgb(146, 93, 17);
}
.header button:first-child:hover {
  background: #E3C762;
}
@media (max-width: 590px) {
  .header button:first-child {
    width: 75px;
  }
}
@media (max-width: 390px) {
  .header button:first-child {
    width: 100%;
  }
}
.header-bottom {
  padding: 44px 0 20px;
  background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(83,81,18,1) 42%, rgba(221,193,94,1) 73%);
}
.header-bottom img {
  border-radius: 4px;
}
@media (max-width: 450px) {
  .header-bottom img {
    border-radius: 12px;
  }
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 44px 15px 5px;
  }
}
@media (max-width: 980px) {
  .header-bottom {
    padding: 44px 15px 5px;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 44px 15px 5px;
  }
}/*# sourceMappingURL=main.css.map */