@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --ff-plex: 'IBM Plex Sans', sans-serif;
  --color-primary: #505050;
  --color-ul: #6CA30F;
  --color-white: #FFFFFF;
  --color-table1: #292925;
  --color-table2: #384F66;
  --bg-main: #F2F2F2;
  --bg-table1: #F7F7F7;
  --bg-table2: #E8F0C1;
  --bg-table3: #6EA500;
  --bg-fixed: #15772B;
}

* {
  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-plex);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main) url(../img/bg.png) no-repeat top center;
  background-size: contain;
  overflow-x: hidden;
}

@media (max-width: 450px) {
  body {
    background-size: auto;
  }
}

body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 46px;
  height: 46px;
  background: url(../img/arrow.svg);
  border: 2px solid #8CC728;
  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;
}

main {
  background: url(../img/bg2.png) no-repeat top 17% left, url(../img/bg3.png) no-repeat top 35% right;
}

@media (max-width: 620px) {
  main {
    background: url(../img/bg-bottom.png) no-repeat bottom center, url(../img/bg2.png) no-repeat top 9% left, url(../img/bg3.png) no-repeat top 18% right;
  }
}

.article {
  padding-bottom: 20px;
}

@media (max-width: 1280px) {
  .article {
    padding: 0 20px 20px;
  }
}

@media (max-width: 620px) {
  .article {
    padding: 0 20px 110px;
  }
}

.article p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}

.article h1 {
  margin: 50px 0 30px;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.article h2 {
  margin: 40px 0 30px;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
}

.article picture {
  display: block;
  margin: 40px 0;
}

.article picture img {
  margin: 0 auto;
  border-radius: 20px;
}

.article a {
  color: var(--color-table2);
  text-decoration: underline;
}

article ol {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  margin: 30px 0 30px 20px;
  list-style-type: decimal;
}

.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 40px 0 60px;
}

.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}

.article tbody tr:nth-child(odd) {
  background: var(--bg-table2);
  border-bottom: 1px solid black;
}

.article tbody tr:nth-child(even) {
  background: var(--bg-table1);
  border-bottom: 1px solid black;
}

.article tbody tr:nth-child(even):last-child {
  border-bottom: none;
}

.article tbody tr:nth-child(even):first-of-type {
  border-bottom: 0;
}

.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  border-left: 1px solid white;
}

@media (max-width: 620px) {
  .article tbody td {
    word-break: break-all;
  }
}

.article .table-0 td {
  border-left: none;
}

.article .table-0 tr {
  grid-template-columns: 1fr 1fr;
  text-align: center;
  display: grid;
}

.article .table-0 tr:nth-child(odd) {
  border-bottom: none;
}

.article .table-0 tr:nth-child(even) {
  border-bottom: none;
}

.article .table-0 tr:first-child {
  background: var(--bg-table3);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--color-white);
}

.article .table-0 tr:first-child td {
  grid-column: 1/3;
}

.article .table-1 tr {
  grid-template-columns: 1fr 1fr;
}

.article .table-1 td:first-child {
  font-weight: 700;
}

.article .table-2 tr {
  grid-template-columns: 160px 1fr 1fr;
  color: var(--color-table2);
}

@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article .table-3 tr {
  color: var(--color-table2);
}

.article .table-3 tr:first-child {
  background: var(--bg-table3);
  color: var(--color-white);
  font-weight: 700;
  line-height: 26px;
}

.footer {
  padding: 41px 0 23px;
  background: url(../img/bg-bottom.png) no-repeat bottom center;
  background-size: cover;
}

@media (max-width: 980px) {
  .footer {
    padding: 40px 20px 23px;
  }
}

.footer p {
  color: var(--bg-main);
  text-align: center;
}

.footer-logo {
  display: block;
  text-align: left;
  margin-bottom: 100px;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  color: var(--color-white);
}

.header {
  height: 64px;
}

@media (max-width: 620px) {
  .header {
    height: 138px;
  }
}

.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  transition: 0.3s ease;
  background: transparent;
}

@media (max-width: 1280px) {
  .header-fixed {
    padding: 8px 20px;
  }
}

@media (max-width: 620px) {
  .header-fixed {
    padding: 0 20px 16px;
  }
}

.header-fixed.active {
  background: var(--bg-fixed);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 620px) {
  .header-wrapper {
    flex-direction: column;
  }
}

.header-block {
  display: flex;
  gap: 68px;
}

.header .burger {
  align-items: center;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  width: 142px;
  height: 48px;
  border-radius: 24px;
  background: #81B824;
}

@media (max-width: 620px) {
  .header .burger {
    background: none;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 18px;
    right: 22px;
  }
}

.header .burger a {
  padding-left: 26px;
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

@media (max-width: 620px) {
  .header .burger a {
    display: none;
  }
}

.header .burger-img {
  background: url(../img/burger.svg) no-repeat center;
  width: 48px;
  height: 48px;
}

.header .burger-img.active {
  background: url(../img/closed.svg) no-repeat center;
}

.header-logo {
  cursor: pointer;
  font-size: 24px;
  line-height: 33px;
  font-weight: 800;
  z-index: 3;
  font-family: var(--ff-plex);
  color: var(--color-white);
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .header-logo {
    position: absolute;
    top: 23px;
    left: 22px;
  }
}

.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: #6EA500;
  padding-top: 122px;
}

.header .nav.open {
  transform: translateX(0);
}

.header-container {
  display: flex;
}

@media (max-width: 620px) {
  .header-container {
    margin-top: 76px;
  }
}

.header button {
  font-weight: 700;
  font-size: 18px;
  padding: 12px 0;
  width: 165px;
  background: #81B824;
  border-radius: 26px 0px 0px 26px;
  color: var(--color-white);
  text-transform: capitalize;
}

.header button:last-child {
  width: 120px;
  background: #172401;
  border-radius: 0 26px 26px 0;
  position: relative;
  padding-right: 22px;
  text-align: right;
}

.header button:last-child:before {
  content: "";
  background: url(../img/enter-img.svg);
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  left: 12px;
}

.header ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.header ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--ff-plex);
  color: var(--color-white);
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  padding: 20px 0 20px 80px;
  max-width: 1920px;
}

.header ul li:nth-child(odd) {
  background: #7AB811;
}

.header ul li:nth-child(even) {
  background: #8CC728;
}

.hero {
  padding-top: 60px;
}

@media (max-width: 1280px) {
  .hero {
    padding: 51px 20px 0;
  }
}

@media (max-width: 450px) {
  .hero {
    padding: 90px 20px 0;
  }
}

.hero picture {
  display: block;
}

.hero picture img {
  border-radius: 8px;
}

.hero h1 {
  margin: 190px 0 64px;
  font-weight: 700;
  font-size: 36px;
}

@media (max-width: 1280px) {
  .hero h1 {
    margin: 120px 0 64px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    margin: 50px 0 64px;
    line-height: 36px;
  }
}

@media (max-width: 450px) {
  .hero h1 {
    margin: 170px 0 64px;
  }
}

.hero ul {
  color: var(--color-ul);
  list-style: disc;
  line-height: 32px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 40px 50px;
}

/*# sourceMappingURL=main.css.map */