@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;500;600;700&display=swap');
:root {
  --ff-spectral: 'Spectral', serif;
  --ff-popins: "Poppins", sans-serif;
  --ff-inter: "Inter", sans-serif;
  /* color */
  --color-primary: #ffffff;
  --color-secondary: #842b76;
  --color-gray: #9CA3AF;
  --color-dark: #374151;
  --color-black: #268234;
  /* bg-color */
  --bg-primary: #ffffff;
  --bg-secondary: #8842b76;
  --bg-gray: #9CA3AF;
  --bg-dark: #374151;
  --bg-black: #268234;
}

/* default style */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

li {
  font-size: 18px;
  line-height: 34px;
}

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

p > a {
  text-decoration: underline;
  color: #A00DFA;
}

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

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

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

h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: var(--color-primary);
  max-width: 1000px;
  margin: 50px 0;
  text-align: center;
}
@media (max-width: 590px) {
  h1 {
    word-wrap: break-word;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    margin: 30px auto;
    text-align: center;
  }
}

h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  margin: 40px 0;
  color: var(--color-secondary);
  text-align: center;
}
@media (max-width: 590px) {
  h2 {
    margin: 30px 0;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
  }
}

h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  margin: 40px 0;
  color: var(--color-secondary);
  text-align: center;
}
@media (max-width: 590px) {
  h3 {
    margin: 30px 0;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
  }
}

p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 34px;
  text-indent: 20px;
}

picture + p {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* main style */
body {
  font-family: var(--ff-spectral);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-black);
  overflow-x: hidden;
}

.hidden {
  overflow-y: hidden;
}

.header {
  height: 100px;
}
@media (max-width: 768px) {
  .header {
    height: 234px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  padding: 25px 0px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 30px 0px;
  }
}
@media (max-width: 450px) {
  .header-fixed {
    background: var(--bg-black);
  }
}
.header-fixed.header-fixed__bg {
  background: var(--bg-black);
}
.header-wrapper__block {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper__block {
    flex-direction: column;
    gap: 30px;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 980px) {
  .header .burger {
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../images/burger.svg) no-repeat center;
    z-index: 4;
    transition: 0.3s ease-in-out;
  }
  .header .burger.active {
    background: url(../images/close.svg) no-repeat center;
  }
}
@media (max-width: 768px) {
  .header .burger {
    position: absolute;
    z-index: 4;
    top: 30px;
    left: 30px;
  }
}
.header-logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-secondary);
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 980px) {
  .header .nav {
    position: absolute;
    background: var(--bg-secondary);
    top: 0;
    left: 0;
    right: 30%;
    bottom: 0;
    min-height: 110vh;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
  }
  .header .nav.active {
    transform: translateX(0%);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 980px) {
  .header .menu {
    flex-direction: column;
    padding: 180px 30px 500px 30px;
    background-color: black;
  }
}
.header .menu li {
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.header-block {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.header-btn {
  border-radius: 4px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 0;
  width: 150px;
  transition: 0.3s ease;
}
.header-btn:hover {
  box-shadow: 2px 2px 2px 0px #fff;
}
.header-btn:first-child {
  width: 82px;
}
@media (max-width: 768px) {
  .header-btn:first-child {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .header-btn {
    width: 250px;
  }
}

.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0 0;
  position: relative;
}
@media (max-width: 1050px) {
  .hero {
    padding: 30px 15px 0px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  width: 416px;
  height: 433px;
  background: url(../images/s-lines.png) no-repeat top;
  background-size: 100%;
  transform: rotate(-5deg);
  z-index: -1;
}
@media (max-width: 980px) {
  .hero::after {
    background-size: 60%;
  }
}
@media (max-width: 768px) {
  .hero::after {
    display: none;
  }
}
.hero li {
  font-size: 18px;
  line-height: 40px;
}

.article__block {
  max-width: 1000px;
  padding: 0px 15px 30px 15px;
  margin: 0 auto;
  position: relative;
}
.article__block::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 41px;
  background: url(../images/figure.png) no-repeat center;
  background-size: auto;
  width: 100px;
  height: 97px;
}
@media (max-width: 1250px) {
  .article__block::before {
    left: -14%;
  }
}
@media (max-width: 1100px) {
  .article__block::before {
    left: -10%;
    background-size: 80%;
  }
}
@media (max-width: 980px) {
  .article__block::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .article__block {
    padding: 0px 15px 50px 15px;
  }
}
.article__block ul,
.article__block ol {
  margin-left: 40px;
  margin-bottom: 30px;
}
.article__block ul {
  list-style: disc;
  margin-bottom: 30px;
}
.article__block table {
  width: 100%;
  margin: 0 auto 50px;
  border-collapse: collapse;
  border-spacing: 0px;
  background: var(--bg-black);
}
.article__block table:last-child {
  margin: 0 auto;
}
.article__block tbody tr {
  border-top: 1px solid var(--color-primary);
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
}
.article__block tbody tr:last-child {
  border-bottom: 1px solid var(--color-primary);
}
.article__block tbody td {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .article__block tbody td {
    padding: 20px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .article__block tbody td {
    font-size: 12px;
  }
}
.article__block tbody td:first-child {
  text-align: left;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .article__block tbody td:first-child {
    padding-left: 0;
  }
}
.article__block tbody td:last-child {
  text-align: right;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .article__block tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article__block .tabl-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article__block .tabl-1 tbody tr td:first-child {
    padding-bottom: 20px;
  }
  .article__block .tabl-1 tbody tr td:nth-child(2) {
    padding-bottom: 20px;
    text-align: right;
  }
  .article__block .tabl-1 tbody tr td:nth-child(3) {
    padding-top: 20px;
    text-align: left;
  }
  .article__block .tabl-1 tbody tr td:last-child {
    padding-top: 20px;
  }
}
.article__block .tabl-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
.article__block .tabl-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  padding: 0px 0 36px;
}
@media (max-width: 768px) {
  .footer {
    padding: 0 0 36px;
  }
}
.footer-top {
  max-width: 800px;
  margin: 0 auto 17px;
  padding: 32px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--color-dark);
  border-top: 1px solid var(--color-dark);
}
@media (max-width: 768px) {
  .footer-top {
    gap: 50px;
    padding: 50px 0;
    margin: 0;
  }
}
.footer-top__block {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.footer-top__block:hover {
  box-shadow: 0px 0px 5px 2px #ffffff;
  -webkit-box-shadow: 0px 0px 5px 2px #ffffff;
  -moz-box-shadow: 0px 0px 5px 2px #ffffff;
}
.footer-top__number {
  font-family: var(--ff-spectral);
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: var(--color-secondary);
}
.footer-top__text {
  font-family: var(--ff-spectral);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: var(--color-gray);
}
.footer p {
  margin: 0;
  padding: 36px 0 0 0;
  text-indent: 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}/*# sourceMappingURL=main.css.map */