@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');
:root {
  --ff-jetbrains_mono: 'JetBrains Mono', monospace;
  --ff-raleway: "Raleway", sans-serif;
  --color-primary: #1e1f23;
  --color-black: #1E1F23;
  --color-white: #fff;
  --bg-main: #b7d2cd;
  --bg-header: #FDDEB9;
  --bg-black: #202226;
  --bg-white: #fff;
}

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

ul {
  list-style: none;
}

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

img {
  max-width: 70%;
  display: block;
}

picture img {
  margin: 0 auto;
}

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

body {
  font-family: var(--ff-jetbrains_mono);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

main {
  background: url(../img/article.webp) no-repeat right top 18%, url(../img/article2.png) no-repeat left top 53%;
}
@media (max-width: 890px) {
  main {
    background: transparent;
  }
}
@media (max-width: 590px) {
  main {
    background: url(../img/article-mini.png) no-repeat right top 3%, url(../img/article2-mini.png) no-repeat left top 45%;
  }
}
@media (max-width: 300px) {
  main {
    background: transparent;
  }
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#b7d2cd, #1d1b4d) padding-box, linear-gradient(to bottom, #000, #b7d2cd) 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: 2;
}

.header {
  height: 80px;
}
@media (max-width: 590px) {
  .header {
    height: 275px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 19px 0;
  transition: 0.3s ease;
  background: rgb(250, 238, 223);
  background: linear-gradient(90deg, #b7d2cd 0%, #6db8aa 36%);
}
@media (max-width: 590px) {
  .header-fixed {
    background: url(../img/header-coin-mini.png) no-repeat, #f5f5f5;
    background-size: 100%;
    padding: 0 0 15px;
  }
}
@media (max-width: 300px) {
  .header-fixed {
    background: #f5f5f5;
  }
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1280px) {
  .header-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 590px) {
  .header-wrap {
    flex-direction: column;
  }
}
.header-block {
  display: flex;
  align-items: center;
  gap: 143px;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    width: 40px;
    height: 25px;
    background: url(../img/burger.svg) no-repeat center;
    position: relative;
    z-index: 5;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 590px) {
  .header .burger {
    position: absolute;
    top: 30px;
    right: 15px;
  }
}
.header-logo {
  font-family: var(--ff-jetbrains_mono);
  cursor: pointer;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
}
@media (max-width: 590px) {
  .header-logo {
    position: absolute;
    top: 30px;
    left: 15px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    backdrop-filter: blur(24px);
  }
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: url(../img/header-coin-menu.webp) no-repeat center bottom 10%, linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(250, 238, 225) 100%);
    background-size: contain;
    color: var(--color-black);
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 890px) {
  .header .menu {
    flex-direction: column;
    gap: 65px;
    align-items: center;
    padding: 109px 15px 0;
  }
}
.header .menu .item {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 890px) {
  .header .menu .item {
    width: 100%;
    max-width: 360px;
    text-align: center;
    padding: 10px 0;
  }
  .header .menu .item:first-child {
    background: var(--bg-black);
    color: var(--color-white);
    border-radius: 26px;
    border: 1px solid #1E1F23;
  }
}
.header-container {
  display: flex;
  gap: 13px;
}
@media (max-width: 890px) {
  .header-container {
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 590px) {
  .header-container {
    flex-direction: column;
    margin-top: 164px;
  }
}
@media (max-width: 390px) {
  .header-container {
    width: 100%;
  }
}
.header-btn {
  border-radius: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  width: 151px;
  padding: 10px 0;
  color: var(--color-white);
  background: #1d1b4d;
}
.header-btn:first-child {
  width: 94px;
  color: var(--color-white);
  background: #1d1b4d;
}
.header-btn:first-child:hover {
  background: #e1e1c3;
}
@media (max-width: 590px) {
  .header-btn:first-child {
    width: 330px;
  }
}
@media (max-width: 390px) {
  .header-btn:first-child {
    width: 100%;
  }
}
.header-btn:hover {
  background: #ebebeb;
  color: #202226;
}
@media (max-width: 590px) {
  .header-btn {
    width: 330px;
  }
}
@media (max-width: 390px) {
  .header-btn {
    width: 100%;
  }
}

.article {
  padding-bottom: 80px;
}
@media (max-width: 1300px) {
  .article {
    padding: 0 15px 80px;
  }
}
@media (max-width: 980px) {
  .article {
    background: transparent;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 50px;
  margin-bottom: 20px;
}
.article h1 {
  margin: 40px 0 40px;
  font-weight: 700;
  font-size: 44px;
  line-height: 56px;
  color: var(--color-black);
  text-align: center;
}
.article p > a {
  color: #F3C960;
}
.article p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.article p:last-of-type {
  margin-bottom: 0;
  margin-top: 20px;
}
.article li {
  font-size: 16px;
  line-height: 34px;
}
.article h3 + p {
  margin-bottom: 30px;
}
.article picture + p {
  margin-top: 30px;
}
.article picture > img {
  border-radius: 16px;
}
@media (max-width: 450px) {
  .article picture > img {
    border-radius: 6px;
  }
}
.article h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  margin: 30px 0;
  text-align: center;
  color: var(--color-black);
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 28px;
  }
}
.article h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 64px;
  margin: 20px 0;
  color: var(--color-black);
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 24px;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 50px 0;
  color: var(--color-black);
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
  padding: 20px 0;
}
.article tbody tr:nth-child(odd) {
  border-radius: 10px;
  background: #F0EBFF;
}
.article tbody tr:nth-child(even) {
  margin: 15px 0;
}
@media (max-width: 768px) {
  .article tbody tr:nth-child(even) {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .article tbody tr {
    padding: 15px;
  }
}
.article tbody td {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .article tbody td {
    font-size: 15px;
    line-height: 18px;
    padding: 0;
  }
}
.article tbody td:first-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 590px) {
  .article tbody td:first-child {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
.article .tab-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .tab-2 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-2 tbody tr td {
    grid-column: 1/2;
  }
  .article .tab-2 tbody tr td:first-child {
    grid-column: 1/5;
    margin-bottom: 15px;
  }
  .article .tab-2 tbody tr td:last-child {
    grid-column: 4/5;
  }
}
.article .tab-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .tab-3 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(1, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-3 tbody tr td:first-child {
    grid-column: 1/3;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-1 tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
  }
  .article .tab-1 tr td:first-child {
    grid-column: 1/4;
    margin-bottom: 15px;
  }
}

.footer {
  padding: 30px 0;
  background: linear-gradient(90deg, #b7d2cd 0%, #6db8aa 36%);
}
.footer p {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  opacity: 0.5;
  color: var(--color-white);
}

.hero-block {
  background: rgb(250, 238, 223);
  background: linear-gradient(90deg, rgb(250, 238, 223) 0%, rgb(246, 238, 229) 51%);
  background: url(../img/header-coin.png) no-repeat center;
  background-size: cover;
  padding: 91px 0 170px;
}
@media (max-width: 1280px) {
  .hero-block {
    padding: 91px 15px 170px;
  }
}
@media (max-width: 890px) {
  .hero-block {
    padding: 11px 15px 0;
    background: transparent;
  }
}
@media (max-width: 450px) {
  .hero-block {
    background: transparent;
  }
}
.hero-block picture img {
  border-radius: 16px;
}/*# sourceMappingURL=main.css.map */