@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;500;600;700&display=swap');
:root {
  --ff-IBM: 'IBM Plex Serif', serif;
  --color-primary: #FFF;
  --color-green: #45f067;
  --bg-main: #4c3144;
  --bg-header: #471558;
  --bg-green: #8f9e00;
}

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

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

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

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

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

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#203f33, #201616) padding-box, var(--color-green);
  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;
}

main {
  background: url(../img/bg1.png) no-repeat left top 20%, url(../img/bg2.png) no-repeat right top 50%;
}
@media (max-width: 890px) {
  main {
    background: none;
  }
}

.head {
  height: 102px;
}
@media (max-width: 590px) {
  .head {
    height: 236px;
  }
}
.head-fix {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 50px;
  transition: 0.3s ease-in-out;
  background: var(--bg-header);
}
@media (max-width: 1240px) {
  .head-fix {
    padding: 29px 15px;
  }
}
@media (max-width: 590px) {
  .head-fix {
    padding: 0 15px 30px;
  }
}
.head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 590px) {
  .head-wrap {
    flex-direction: column;
  }
}
.head-wrap.container {
  max-width: 1340px;
  margin: 0 auto;
}
.head .burger {
  display: none;
}
@media (max-width: 890px) {
  .head .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background: url(../img/burger.svg) no-repeat center;
    z-index: 4;
    transition: 0.3s ease;
  }
  .head .burger.active {
    background: url(../img/burger2.svg) no-repeat center;
  }
}
@media (max-width: 590px) {
  .head .burger {
    position: absolute;
    top: 30px;
    left: 30px;
  }
}
.head-logotype {
  cursor: pointer;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-green);
}
@media (max-width: 590px) {
  .head-logotype {
    font-family: var(--ff-IBM);
    margin-top: 30px;
    font-size: 24px;
    line-height: 36px;
  }
}
.head li:first-child {
  text-decoration: underline;
  color: var(--color-green);
}
@media (max-width: 890px) {
  .head li:first-child {
    text-decoration: none;
    color: var(--color-primary);
  }
}
@media (max-width: 890px) {
  .head .nav {
    position: absolute;
    left: 0;
    right: 20%;
    top: 0;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-header);
    background-size: contain;
  }
  .head .nav.open {
    transform: translateX(0);
  }
}
.head .menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media (max-width: 890px) {
  .head .menu {
    flex-direction: column;
    gap: 50px;
    padding: 180px 0 0 30px;
  }
}
.head .menu .item {
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
@media (max-width: 890px) {
  .head .menu .item {
    font-weight: 500;
  }
}
.head-container {
  display: flex;
  gap: 20px;
}
@media (max-width: 890px) {
  .head-container {
    align-items: center;
  }
}
@media (max-width: 590px) {
  .head-container {
    flex-direction: column;
    margin-top: 23px;
  }
}
@media (max-width: 450px) {
  .head-container {
    width: 100%;
  }
}
.head-btn {
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  width: 151px;
  padding: 11px 0;
  background: var(--bg-green);
  color: var(--color-primary);
}
.head-btn:first-child {
  width: 82px;
  background: transparent;
  border: 1px solid var(--bg-green);
}
@media (max-width: 590px) {
  .head-btn:first-child {
    width: 250px;
  }
}
@media (max-width: 450px) {
  .head-btn:first-child {
    width: 100%;
  }
}
@media (max-width: 590px) {
  .head-btn {
    width: 250px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: #FBF5E6;
  }
}
@media (max-width: 450px) {
  .head-btn {
    width: 100%;
  }
}

.article {
  padding: 10px 0;
}
@media (max-width: 1300px) {
  .article {
    padding: 10px 15px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 10px 15px 20px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 30px;
}
.article p > a {
  color: var(--color-green);
  text-decoration: underline;
}
.article p {
  margin-bottom: 30px;
  text-indent: 20px;
}
.article p:last-of-type {
  margin: 30px 0 0;
}
.article h2 {
  margin: 30px 0;
  text-align: center;
  font-size: 38px;
  line-height: 48px;
  font-weight: 600;
  color: var(--color-green);
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 30px 0;
    text-align: center;
  }
}
.article h3 {
  margin: 30px 0;
  text-align: center;
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  color: #8f9e00;
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 22px;
    margin: 30px 0;
    text-align: center;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 50px 0;
}
.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;
  border-top: 1px solid var(--color-green);
}
.article tbody tr:last-child {
  border-bottom: 1px solid var(--color-green);
}
@media (max-width: 768px) {
  .article tbody tr {
    padding: 0;
  }
}
.article tbody td {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}
.article tbody td:first-child {
  text-align: left;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    padding-left: 0;
  }
}
.article tbody td:last-child {
  text-align: right;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .article tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article tbody td {
    line-height: 20px;
    padding: 0;
  }
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .article tbody td {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .article .table-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article .table-1 tbody tr td:nth-child(odd) {
    text-align: left;
    padding: 20px 0 20px 0;
  }
  .article .table-1 tbody tr td:nth-child(even) {
    text-align: right;
    padding: 20px 0 20px 0;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .article .table-2 tr td {
    grid-column: 2/4;
    grid-row: 3/-3;
  }
  .article .table-2 tr td:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .article .table-2 tr td:last-child {
    grid-column: 4/5;
  }
}
.article .table-3 {
  grid-template: auto/repeat(2, 1fr);
}
.article .table-3 td:last-child {
  grid-column: 4/5;
}
@media (max-width: 768px) {
  .article .table-3 tr {
    padding: 20px 0;
  }
}

.footer {
  padding: 36px 0;
}
@media (max-width: 590px) {
  .footer {
    padding: 40px 0;
  }
}
.footer p {
  line-height: 28px;
  text-align: center;
}
@media (max-width: 590px) {
  .footer p {
    letter-spacing: 0.01em;
  }
}

.hero-block {
  padding-top: 16px;
}
.hero-block h1 {
  margin: 30px auto 30px;
  font-size: 44px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
  max-width: 750px;
  width: 100%;
}
.hero-block h1 span {
  color: var(--color-green);
}
@media (max-width: 590px) {
  .hero-block h1 {
    text-align: center;
    margin: 30px 0;
    font-weight: 700;
    font-size: 33px;
    line-height: 50px;
  }
}
.hero-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-block ul li {
  color: var(--color-green);
  padding: 10px 20px;
  background: var(--bg-header);
  border-radius: 8px;
  line-height: 40px;
}
@media (max-width: 450px) {
  .hero-block ul li {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}
.hero-block ul li:hover {
  background: var(--bg-green);
  color: var(--color-primary);
}
@media (max-width: 1240px) {
  .hero-block {
    padding: 15px 15px 0;
  }
}
@media (max-width: 590px) {
  .hero-block {
    padding: 15px 15px 0px;
  }
}/*# sourceMappingURL=main.css.map */