@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@400;500;600;700&display=swap');
:root {
  --ff-alumni_sans: 'Alumni Sans', sans-serif;
  --ff-popins: "Poppins", sans-serif;
  /* color */
  --color-primary: #ffffff;
  --color-secondary: #9d00b6;
  --color-black: #000000;
  --color-dark: #090C16;
  /* bg-color */
  --bg-primary: #ffffff;
  --bg-secondary: #9d00b6;
  --bg-black: #000000;
  --bg-dark: #090C16;
}

/* 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: var(--color-secondary);
}

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

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

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

h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
  color: var(--color-primary);
  max-width: 729px;
  margin: 45px auto 60px;
  text-align: center;
}
@media (max-width: 590px) {
  h1 {
    word-wrap: break-word;
    word-break: break-all;
    font-size: 30px;
    line-height: 50px;
    margin: 30px auto 30px;
  }
}

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

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

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

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

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

.hidden {
  overflow-y: hidden;
}

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

.header {
  background: rgb(112,207,97);
  background: linear-gradient(90deg, rgba(112,207,97,1) 22%, rgba(2,0,36,1) 51%, rgba(235,0,255,1) 100%);
}
@media (max-width: 450px) {
  .header {
    /*background: var(--bg-black);*/
  }
}
.header-top__block {
  height: 73px;
}
@media (max-width: 768px) {
  .header-top__block {
    height: 234px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  padding: 10px 0px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1350px) {
  .header-fixed {
    padding: 10px 40px;
  }
}
@media (max-width: 980px) {
  .header-fixed {
    padding: 10px 40px;
  }
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 28px 15px 20px;
  }
}
@media (max-width: 450px) {
  .header-fixed {
    background: linear-gradient(90deg, rgba(112,207,97,1) 22%, rgba(2,0,36,1) 51%, rgba(235,0,255,1) 100%);
  }
}
.header-fixed.header-fixed__bg {
  background: rgb(112,207,97);
  background: linear-gradient(90deg, rgba(112,207,97,1) 22%, rgba(2,0,36,1) 51%, rgba(235,0,255,1) 100%);
}
@media (max-width: 450px) {
  .header-fixed.header-fixed__bg {
    transition: 0.3s ease-in-out;
  }
}
.header-container {
  max-width: 1315px;
  margin: 0 auto;
}
.header-wrapper__block {
  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;
  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: 100vh;
    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 30px 30px;
  }
}
.header .menu li {
  font-size: 18px;
  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: 34px;
  border: 2px solid var(--color-primary);
  color: #121111;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  padding: 11px 0;
  width: 165px;
  transition: 0.3s ease;
}
.header-btn:hover {
  box-shadow: 1px 1px 0px rgba(255, 255, 255, 0.75);
}
.header-btn:first-child {
  width: 96px;
}
@media (max-width: 768px) {
  .header-btn:first-child {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .header-btn {
    width: 250px;
  }
}
@media (max-width: 450px) {
  .header-btn {
    box-shadow: 1px 0px 3px 2px rgba(255, 255, 255, 0.75);
  }
}
.header-bottom__block {
  padding: 30px 0px 17px;
}
@media (max-width: 768px) {
  .header-bottom__block {
    padding: 30px 15px 26px;
  }
}
.header-bottom__block ul {
  background: var(--bg-black);
  padding: 57px 0 78px 80px;
}
@media (max-width: 980px) {
  .header-bottom__block ul {
    padding: 57px 0 78px 40px;
  }
}
@media (max-width: 768px) {
  .header-bottom__block ul {
    margin: 0 -15px;
    padding: 57px 0 78px 15px;
  }
}
@media (max-width: 450px) {
  .header-bottom__block ul {
    padding: 0px 0 60px 15px;
  }
}
.header-bottom__block li {
  font-size: 18px;
  line-height: 40px;
}

.article__block {
  padding: 40px 80px 40px 80px;
  margin-top: -28px;
  background: #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .article__block {
    padding: 20px 40px 100px 40px;
  }
}
@media (max-width: 768px) {
  .article__block {
    padding: 20px 15px 100px 15px;
  }
}
@media (max-width: 450px) {
  .article__block {
    margin-top: 0;
    padding: 20px 15px 0px 15px;
  }
}
.article__block ul,
.article__block ol {
  margin-left: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article__block ol {
    margin-left: 40px;
  }
}
.article__block ul {
  list-style: disc;
  margin-bottom: 20px;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .article__block ul {
    margin-left: 40px;
  }
}
.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: 20px;
}
@media (max-width: 768px) {
  .article__block tbody td:first-child {
    padding-left: 0;
  }
}
.article__block tbody td:last-child {
  text-align: right;
  padding-right: 20px;
}
@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 {
  background: linear-gradient(327deg, rgba(112,207,97,1) 22%, rgba(2,0,36,1) 51%, rgba(235,0,255,1) 100%);
  padding: 205px 0 34px;
  margin-top: -205px;
}
@media (max-width: 450px) {
  .footer {
    background: linear-gradient(90deg, rgba(112,207,97,1) 22%, rgba(2,0,36,1) 51%, rgba(235,0,255,1) 100%);
    margin-top: 0;
    padding: 0 0 40px;
  }
}
.footer-top {
  margin: 64px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 200px;
}
@media (max-width: 1100px) {
  .footer-top {
    gap: 1px;
  }
}
@media (max-width: 450px) {
  .footer-top {
    margin: 50px 0;
  }
}
.footer-top__block {
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  padding-top: 20px;
}
.footer-top__block:hover {
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
@media (max-width: 450px) {
  .footer-top__block:hover {
    box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  }
}
.footer-top__number {
  font-family: var(--ff-popins);
  font-weight: 600;
  font-size: 35px;
  line-height: 55px;
  text-align: center;
}
@media (max-width: 450px) {
  .footer-top__number {
    color: var(--color-secondary);
  }
}
.footer-top__text {
  font-family: var(--ff-popins);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.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 */