@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:wght@400;500;600;700&display=swap');
:root {
  --ff-brygada: 'Brygada 1918', serif;
  --color-primary: #d8d6d6;
  --color-white: #FFFFFF;
  --bg-main: #0c005a;
  --bg-header: #104fef;
}

* {
  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-brygada);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background-color: var(--bg-main);
  background-image: url(../img/bg1.png), url(../img/bg2.png);
  background-repeat: no-repeat;
  background-position: left top, right top 60px;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}
@media (max-width: 590px) {
  body {
    background: var(--bg-main);
  }
}

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

.arrow-btn-up {
  width: 33px;
  height: 33px;
  background: url(../img/arrow.svg);
  filter: drop-shadow(0px 0px 24px #FA4E00);
  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;
}

.article {
  padding-bottom: 13px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 20px 13px;
  }
}
@media (max-width: 500px) {
  .article {
    padding: 0 20px 20px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 20px;
  line-height: 32px;
}
.article p {
  margin-bottom: 24px;
}
.article h2 {
  margin: 35px 0 35px;
  font-size: 42px;
  line-height: 54px;
  text-align: center;
}
.article-p.right {
  margin-left: 0;
  margin-right: 35px;
}
@media (max-width: 1280px) {
  .article-p.right {
    max-width: 100%;
    margin-right: 0;
  }
}
.article-p {
  max-width: 609px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-left: 40px;
}
@media (max-width: 1280px) {
  .article-p {
    max-width: 100%;
    display: block;
    margin-left: 0;
  }
}
.article picture {
  display: block;
  vertical-align: top;
  padding: 20px;
}
@media (max-width: 1280px) {
  .article picture {
    display: block;
    margin-bottom: 5px;
  }
  .article picture img {
    margin: 0 auto;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 80px 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(even) {
  background: #212121;
}
.article tbody tr:nth-child(odd) {
  background: #2E2E2E;
}
.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  word-break: break-all;
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
.article .table-1 tr:first-child {
  background: #606060;
}
.article .table-2 tbody tr {
  grid-template-columns: 220px 1fr 1fr;
}
@media (max-width: 768px) {
  .article .table-2 tbody tr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article .table-3 tbody tr {
  grid-template-columns: 284px 1fr;
}
@media (max-width: 768px) {
  .article .table-3 tbody tr {
    grid-template-columns: 1fr 1fr;
  }
}
.article .table-3 tbody td:first-child {
  font-weight: 700;
}

.footer {
  padding: 24px 0;
}
.footer p {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.footer span {
  display: block;
}

@media (max-width: 1280px) {
  .header {
    padding: 0 20px;
  }
}
.header-top {
  height: 56px;
}
@media (max-width: 500px) {
  .header-top {
    height: 145px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 6px 36px 8px 36px;
  transition: 0.3s ease;
  background: var(--bg-header);
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 6px 20px 8px 20px;
  }
}
@media (max-width: 500px) {
  .header-fixed {
    padding: 0 20px 30px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .header-wrapper {
    flex-direction: column;
  }
}
.header-wrapper.container {
  max-width: 1370px;
  margin: 0 auto;
}
.header .burger {
  position: relative;
  z-index: 5;
  display: flex;
  width: 46px;
  height: 46px;
  background: url(../img/burger.svg) no-repeat center;
}
.header .burger.active {
  background: url(../img/closed.svg) no-repeat center;
}
@media (max-width: 500px) {
  .header .burger {
    position: fixed;
    top: 10px;
    left: 20px;
  }
}
.header-logo {
  cursor: pointer;
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
  font-family: var(--ff-brygada);
  color: var(--color-white);
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .header-logo {
    position: absolute;
    top: 13px;
    right: 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: var(--bg-main);
  padding-top: 122px;
}
.header .nav.open {
  transform: translateX(0);
}
.header-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 500px) {
  .header-container {
    margin-top: 73px;
  }
}
.header button {
  width: 163px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  padding: 13px 0;
  background: #2bdfaf;
  color: var(--color-white);
  border-radius: 4px;
  text-transform: uppercase;
}
.header button:first-child {
  width: 102px;
  background: #00ff72;
}
.header picture {
  margin-top: 53px;
  display: block;
}
@media (max-width: 500px) {
  .header picture {
    margin-top: 30px;
  }
}
.header picture img {
  border-radius: 8px;
}
.header ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-white);
}
.header ul li {
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  padding: 20px 0 20px 80px;
  max-width: 1920px;
  background: #00991f;
}
.header ul li:nth-child(even) {
  background: #77be28;
}

@media (max-width: 1280px) {
  .hero {
    padding: 0 20px;
  }
}
.hero h1 {
  margin: 40px 0 40px;
  font-size: 48px;
  line-height: 58px;
  color: var(--color-white);
  text-align: center;
}
@media (max-width: 890px) {
  .hero h1 {
    margin: 30px 0 30px;
    line-height: 56px;
  }
}
.hero ul {
  display: inline-block;
  vertical-align: top;
  max-width: 404px;
  width: 100%;
  list-style: disc;
  line-height: 32px;
  margin: 0 16px 0 50px;
}
@media (max-width: 1280px) {
  .hero ul {
    margin: 0 0 40px 20px;
  }
}
@media (max-width: 450px) {
  .hero ul {
    max-width: 100%;
  }
}
.hero p {
  margin-bottom: 24px;
}
.hero-text {
  display: inline-block;
  vertical-align: top;
  max-width: 606px;
  width: 100%;
}
@media (max-width: 1280px) {
  .hero-text {
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */