@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');
:root {
  --ff-alegreya: 'Alegreya', serif;
  --color-primary: #242525;
  --color-ul: #62d7cb;
  --color-btn: #FFFFFF;
  --color-logo: #bad318;
  --bg-main: #cdb7f2;
  --bg-white: #62f0f9;
  --bg-btn1: #22b32d;
  --bg-btn2: #98ad0e;
  --bg-table1: #3de66d;
  --bg-table2: #f6fb9e;
}

* {
  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-alegreya);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 34px;
  height: 28px;
  background: url(../img/arrow.svg);
  border-radius: 8px;
  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 {
  display: flex;
}
@media (max-width: 1000px) {
  main {
    display: block;
  }
}

.article {
  padding-bottom: 25px;
}
@media (max-width: 1280px) {
  .article {
    padding: 20px 20px 25px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 20px 20px 36px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 12px;
  line-height: 26px;
}
.article p {
  margin-bottom: 12px;
}
.article h1 {
  margin: 60px 0 50px;
  font-size: 44px;
  line-height: 56px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 590px) {
  .article h1 {
    word-wrap: break-word;
  }
}
.article h2 {
  margin: 40px 0 40px;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  text-align: center;
}
.article picture {
  display: block;
  margin-bottom: 12px;
}
.article picture img {
  margin: 0 auto;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 20px 0 20px;
}
.article .table:last-of-type {
  margin-bottom: 20px;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(odd) {
  background: var(--bg-table1);
  border-bottom: 1px solid black;
}
.article tbody tr:nth-child(even) {
  background: var(--bg-table2);
  border-bottom: 1px solid black;
}
.article tbody tr:nth-child(even):last-child {
  border-bottom: none;
}
.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  border-left: 1px solid white;
}
@media (max-width: 590px) {
  .article tbody td {
    word-break: break-all;
  }
}
.article .table-1 tr {
  grid-template-columns: 160px 1fr 1fr;
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article .table-2 tr {
  grid-template-columns: 284px 1fr;
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template-columns: 1fr 1fr;
  }
}
.article .table-2 td:first-child {
  font-weight: 700;
}
.article .table-3 tr:first-child {
  background: var(--bg-white);
}

.footer {
  padding: 24px 0;
  text-align: center;
  display: flex;
}
.footer-aside {
  width: 198px;
}
@media (max-width: 1000px) {
  .footer-aside {
    display: none;
  }
}
.footer p {
  color: #000000;
  font-size: 12px;
  line-height: 18px;
}
.footer span {
  display: block;
}
@media (max-width: 590px) {
  .footer {
    padding: 18px 0;
  }
}

.header {
  display: none;
}
@media (max-width: 1000px) {
  .header {
    height: 62px;
    display: block;
  }
}
.header-fixed {
  position: fixed;
  width: auto;
  height: auto;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 20px;
  transition: 0.3s ease;
  background: var(--bg-white);
}
.header-wrapper {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.header-wrapper.container {
  max-width: 1000px;
  margin: 0 auto;
}
.header .burger {
  display: flex;
  position: relative;
  z-index: 5;
  width: 46px;
  height: 46px;
  background: url(../img/burger.svg) no-repeat center;
}
.header .burger.active {
  background: url(../img/closed.svg) no-repeat center;
}
.header-logo {
  cursor: pointer;
  font-size: 24px;
  line-height: 33px;
  font-weight: 800;
  position: absolute;
  color: var(--color-logo);
  text-transform: uppercase;
  top: 15px;
  left: 20px;
}
.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: #e9cef2;
  padding-top: 122px;
}
.header .nav.open {
  transform: translateX(0);
}
.header-block {
  display: flex;
  gap: 16px;
}
.header-img {
  display: block;
  background: url(../img/login.svg);
  width: 40px;
  height: 40px;
}
.header-img:nth-child(2) {
  background: url(../img/enter.svg);
}
.header ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.header ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  padding: 20px 0 20px 80px;
  max-width: 1000px;
  color: var(--color-primary);
}
.header ul li:nth-child(odd) {
  background: #b3f2ba;
}
.header ul li:nth-child(even) {
  background: #E1EDF2;
}

.hero {
  padding-top: 32px;
}
@media (max-width: 590px) {
  .hero {
    padding: 0;
  }
}
.hero picture {
  display: block;
  margin-bottom: 60px;
}
.hero picture img {
  border-radius: 8px;
}
.hero ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
}
.hero ul li {
  background: var(--bg-main);
  color: var(--color-ul);
  border: 1px solid #A3B5C7;
  border-radius: 6px;
  padding: 16px;
}
@media (max-width: 590px) {
  .hero ul li {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 390px) {
  .hero ul li {
    padding: 10px;
    line-height: 1;
  }
}
.hero ul a {
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 590px) {
  .hero ul a {
    line-height: 20px;
  }
}

.aside {
  min-height: 100vh;
  width: 198px;
}
@media (max-width: 1000px) {
  .aside {
    display: none;
  }
}
.aside-fixed {
  width: 198px;
  min-height: 100vh;
  padding: 0 24px 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  background: var(--bg-white);
}
.aside-wrapper {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.aside-logo {
  cursor: pointer;
  font-size: 22px;
  line-height: 33px;
  font-weight: 800;
  color: var(--color-logo);
  margin-top: 30px;
  text-transform: uppercase;
  text-align: center;
}
.aside-button {
  width: 150px;
  font-weight: 400;
  line-height: 20px;
  padding: 13px 0;
  background: var(--bg-btn2);
  color: var(--color-btn);
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 44px;
}
.aside-button:first-of-type {
  background: var(--bg-btn1);
  margin: 50px 0 9px;
}
.aside ul {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.aside ul li {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-ul);
  cursor: pointer;
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */