@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;500;600;700&display=swap');
:root {
  --ff-cormorant_infant: 'Cormorant Infant', serif;
  --ff-sans: "Open Sans", sans-serif;
  --color-primary: #FFFFFF;
  --color-secondary: #1ef6ce;
  --color-grey: #5A5A5A;
  --color-green: #106C56;
  --color-red: #D9113A;
  --color-drgreen: #075A46;
  --color-drgrey: #283346;
  --color-black: #1D2738;
  --bg-primary: #FFFFFF;
  --bg-secondary: #1ef6ce;
  --bg-grey: #5A5A5A;
  --bg-green: #0e5a00;
  --bg-red: #D9113A;
  --bg-drgreen: #075A46;
  --bg-drgrey: #283346;
  --bg-black: #1D2738;
}

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

li {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
}

ul {
  list-style: none;
}

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

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

picture > img {
  border-radius: 30px;
}

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

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

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

main {
  background: url(../img/coins.png) no-repeat right 0 top 23%;
  background-size: 25%;
}
@media (max-width: 1920px) {
  main {
    background: url(../img/coins.png) no-repeat right 0 top 23%;
  }
}
@media (max-width: 850px) {
  main {
    background: transparent;
  }
}

.header-top {
  height: 85px;
}
@media (max-width: 590px) {
  .header-top {
    height: 213px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 90px;
  transition: 0.3s ease;
  background: #0a3a01;
}
@media (max-width: 1300px) {
  .header-fixed {
    padding: 15px 15px;
  }
}
@media (max-width: 590px) {
  .header-fixed {
    padding: 15px 0px;
  }
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 590px) {
  .header-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.header-block {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header .burger {
  display: none;
}
@media (max-width: 850px) {
  .header .burger {
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../img/burger.svg) no-repeat center;
    margin-left: 20px;
    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;
    left: auto;
    right: 15px;
    margin-left: 0;
  }
}
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 55px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: #1ef6ce;
}
@media (max-width: 590px) {
  .header-logo {
    position: absolute;
    top: 15px;
    left: 15px;
  }
}
@media (max-width: 400px) {
  .header-logo {
    left: 25px;
  }
}
@media (max-width: 850px) {
  .header .nav {
    position: absolute;
    background: var(--bg-green);
    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;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 90px;
}
@media (max-width: 1300px) {
  .header .menu {
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .header .menu {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding-top: 255px;
  }
}
.header .menu .item {
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s linear;
}
.header .menu .item:hover {
  border-bottom: 1px solid #FBBB1F;
  filter: drop-shadow(0px 0px 6px #FBBB1F);
  color: var(--color-secondary);
}
@media (max-width: 920px) {
  .header .menu .item {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .header .menu .item {
    font-size: 20px;
    line-height: 33px;
  }
}
.header-container {
  display: flex;
  gap: 15px;
}
@media (max-width: 590px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
  }
}
.header-btn {
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  width: 163px;
  padding: 10px 0px;
  border: 2px solid #FFFFFF;
  color: var(--color-primary);
  background: linear-gradient(90deg, #561ffb 0%, #1ef6ce 100%);
  box-shadow: 0 0 24px #1eb8a8;
}
.header-btn:first-child {
  width: 119px;
  padding: 10px 40px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 24px #1eb8a8;
}
@media (max-width: 590px) {
  .header-btn:first-child {
    width: 250px;  
    padding: 15px 0px;
  }
}
.header-btn:hover {
  box-shadow: 1px 5px 10px rgba(179, 143, 28, 0.75);
}
@media (max-width: 590px) {
  .header-btn {
    width: 250px;
      padding: 15px 0px;
  }
}

.article {
  padding-bottom: 40px;
}
@media (max-width: 1300px) {
  .article {
    padding: 0 15px 40px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 20px;
}
.article p > a {
  text-decoration: underline;
  color: var(--color-secondary);
}
.article p {
  text-indent: 20px;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
}
.article picture + p {
  margin: 24px 0;
}
.article h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 64px;
  margin: 24px 0;
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    margin: 24px 0;
    font-size: 28px;
    line-height: 64px;
  }
}
.article h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 64px;
  margin: 24px 0;
}
@media (max-width: 590px) {
  .article h3 {
    margin: 24px 0;
    font-size: 24px;
    line-height: 64px;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 24px;
  border-collapse: collapse;
  border-spacing: 0;
  padding: 50px 0;
}
.article .table:last-child {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .article .table {
    padding: 0;
  }
}
@media (max-width: 950px) {
  .article .table {
    margin: 0;
  }
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
}
.article tbody tr:nth-child(odd) {
  background: #FBBB1F;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .article tbody tr:nth-child(odd) {
    margin-bottom: 0;
  }
}
.article tbody tr:nth-child(even) {
  margin: 15px 0;
}
@media (max-width: 768px) {
  .article tbody tr:nth-child(even) {
    margin: 0;
  }
}
.article tbody td {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  padding: 20px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .article tbody td {
    padding: 0;
    font-size: 16px;
  }
}
@media (max-width: 395px) {
  .article tbody td {
    font-size: 14px;
  }
}
.article tbody td:first-child {
  text-align: left;
  padding-left: 21px;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    padding-left: 0;
  }
}
.article tbody td:last-child {
  padding-right: 21px;
}
@media (max-width: 768px) {
  .article tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article .tab-1 tbody tr {
    grid-template-areas: " a a a a" "b c c d";
    padding: 15px;
  }
  .article .tab-1 tbody tr td:first-child {
    grid-area: a;
    text-align: center;
    padding-bottom: 15px;
  }
  .article .tab-1 tbody tr td:nth-child(2) {
    grid-area: b;
    text-align: center;
  }
  .article .tab-1 tbody tr td:nth-child(3) {
    grid-area: c;
    text-align: center;
  }
  .article .tab-1 tbody tr td:last-child {
    grid-area: d;
    text-align: center;
  }
}
.article .tab-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .tab-2 tbody tr {
    grid-template-areas: " a a a" "b . c";
    padding: 25px 15px;
  }
  .article .tab-2 tbody tr td:first-child {
    grid-area: a;
    text-align: center;
    padding-bottom: 15px;
  }
  .article .tab-2 tbody tr td:nth-child(2) {
    grid-area: b;
    text-align: center;
  }
  .article .tab-2 tbody tr td:last-child {
    grid-area: c;
    text-align: center;
  }
}
.article .tab-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .tab-3 tbody tr {
    grid-template-areas: "a a" "b b";
    padding: 25px 15px;
  }
  .article .tab-3 tbody tr td:first-child {
    grid-area: a;
    text-align: center;
    padding-bottom: 15px;
  }
  .article .tab-3 tbody tr td:last-child {
    grid-area: b;
    text-align: center;
  }
}

.footer {
  padding: 30px 0;
  background: #0a3a01;
}
.footer p {
  width: 256px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 16px;
  text-indent: 0;
  text-align: center;
  color: var(--color-white);
}
@media (max-width: 450px) {
  .footer p {
    width: 198px;
  }
}

.hero-block {
  padding: 24px 0 24px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .hero-block {
    padding: 40px 15px 0;
  }
}
.hero-block h1 {
  max-width: 1260px;
  width: 100%;
  margin: 24px 0;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 58px;
}
.hero-block h1 span {
  display: block;
}
@media (max-width: 590px) {
  .hero-block h1 {
    word-wrap: break-word;
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    margin: 30px 0;
  }
}
.hero-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hero-block li {
  background: var(--bg-secondary);
  border-radius: 30px;
  transition: 0.3s ease;
}
@media (max-width: 610px) {
  .hero-block li {
    width: 100%;
  }
}
.hero-block li:hover {
  background: linear-gradient(180deg, #FBBB1F 0%, #F6791E 100%);
  box-shadow: 0px 0px 24px #F6791E;
  border-radius: 30px;
}
.hero-block a {
  display: block;
  padding: 5px 30px;
  text-align: center;
}
@media (max-width: 590px) {
  .hero-block a {
    padding: 10px 0;
  }
}
