@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700&display=swap');
:root {
  --ff-bitter: 'Bitter', serif;
  --color-primary: #FFFFFF;
  --color-footer: #121418;
  --bg-main: #c2c58a;
  --bg-blue: #11256b;
  --bg-footer: #11256b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 450px) {
  img {
    border-radius: 6px;
  }
}

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

body {
  font-family: var(--ff-bitter);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#1b0f56, #130828) padding-box, linear-gradient(to bottom, #ffffff, #a4a4a4) border-box;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 50%;
  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/chip1.png) no-repeat top 2% left 6%, url(../img/chip2.png) no-repeat top 22% right 20%, url(../img/chip3.png) no-repeat top 35% right 8%, url(../img/chip3.png) no-repeat bottom 36% left 4%, url(../img/chip4.png) no-repeat bottom 2% left 1%, url(../img/chip3.png) no-repeat bottom 1% right 2%;
}
@media (max-width: 1200px) {
  main {
    background: none;
  }
}

.article {
  padding-bottom: 42px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 15px 42px;
  }
}
.article ul {
  list-style: disc;
}
.article img {
  border-radius: 16px;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 16px;
  line-height: 34px;
}
.article p {
  margin-bottom: 16px;
}
.article .table-3 + p {
  margin-bottom: 0;
  margin-top: 50px;
}
.article h1 {
  margin: 43px 0 43px;
  font-weight: 700;
  font-size: 43px;
  line-height: 56px;
  text-align: center;
}
@media (max-width: 450px) {
  .article h1 {
    margin: 16px 0;
  }
}
.article h2 {
  margin: 28px 0 28px;
  font-weight: 700;
  font-size: 38px;
  line-height: 60px;
  text-align: center;
}
.article h3 {
  margin: 24px 0 23px;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
}
.article-p.right {
  margin-left: 0;
  margin-right: 11px;
}
@media (max-width: 1280px) {
  .article-p.right {
    max-width: 100%;
    margin-right: 0;
  }
}
.article-p {
  max-width: 524px;
  width: 100%;
  line-height: 34px;
  display: inline-block;
  vertical-align: top;
  margin-left: 11px;
}
@media (max-width: 1280px) {
  .article-p {
    max-width: 100%;
    display: block;
    margin-left: 0;
  }
}
.article picture {
  display: block;
  vertical-align: top;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .article picture {
    display: block;
  }
  .article picture img {
    margin: 0 auto;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 50px 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
  padding: 20px 0;
}
.article tbody tr:nth-child(odd) {
  border-radius: 10px;
  background: var(--bg-blue);
}
.article tbody tr:nth-child(even) {
  margin: 15px 0;
}
@media (max-width: 768px) {
  .article tbody tr:nth-child(even) {
    margin: 0;
  }
}
.article tbody tr:nth-child(even):last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .article tbody tr {
    padding: 15px;
  }
}
.article tbody td {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .article tbody td {
    font-size: 14px;
    line-height: 17px;
    padding: 0;
  }
}
.article tbody td:first-child {
  font-weight: 700;
}
@media (max-width: 590px) {
  .article tbody td:first-child {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
  }
  .article .table-1 tr td:first-child {
    grid-column: 1/4;
    margin-bottom: 15px;
  }
}
.article .table-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .table-2 tbody tr td:first-child {
    grid-column: 1/3;
    margin-bottom: 15px;
  }
}
.article .table-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .table-3 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(1, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .table-3 tbody tr td:first-child {
    grid-column: 1/3;
    margin-bottom: 15px;
  }
}

.footer {
  background: var(--bg-footer);
  padding: 30px 0;
}
.footer p {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  opacity: 0.5;
  color: #FFFFFF;
}

.header {
  height: 71px;
}
@media (max-width: 890px) {
  .header {
    height: 73px;
  }
}
@media (max-width: 450px) {
  .header {
    height: 210px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  transition: 0.3s ease;
  background: var(--bg-blue);
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 16px 15px;
  }
}
@media (max-width: 450px) {
  .header-fixed {
    padding: 0 15px 19px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 450px) {
  .header-wrapper {
    flex-direction: column;
  }
}
.header-wrapper.container {
  max-width: 1070px;
  margin: 0 auto;
}
.header-block {
  display: flex;
  align-items: center;
  gap: 64px;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 450px) {
  .header .burger {
    position: absolute;
    top: 20px;
    right: 15px;
  }
}
.header-logo {
  cursor: pointer;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 450px) {
  .header-logo {
    position: absolute;
    top: 30px;
    left: 15px;
  }
}
@media (max-width: 890px) {
  .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) url(../img/chip2.png) no-repeat bottom 25% center;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 65px;
}
@media (max-width: 890px) {
  .header .menu {
    flex-direction: column;
    align-items: center;
    padding: 116px 24px 0;
  }
}
.header .menu .item {
  line-height: 22px;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 14px;
}
@media (max-width: 890px) {
  .header .menu .item {
    width: 100%;
    color: #D77A23;
    max-width: 342px;
    font-size: 18px;
    line-height: 25px;
    padding: 16px 0;
    text-align: center;
  }
  .header .menu .item:hover {
    border: 1px solid #D77A23;
    border-radius: 12px;
    color: var(--color-primary);
  }
}
.header-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 450px) {
  .header-container {
    flex-direction: column;
    margin-top: 85px;
    justify-content: center;
    width: 100%;
  }
}
.header button {
  width: 127px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 0;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: aliceblue;
  color: #130828;
}
@media (max-width: 450px) {
  .header button {
    width: 100%;
  }
}
.header button:first-child {
  width: 68px;
  border: 1px solid #FFFFFF;
}
@media (max-width: 450px) {
  .header button:first-child {
    width: 100%;
  }
}

.hero {
  padding-top: 24px;
}
@media (max-width: 1280px) {
  .hero {
    padding: 24px 15px 0;
  }
}
@media (max-width: 450px) {
  .hero {
    padding: 0 15px 0;
  }
}
.hero ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  gap: 16px;
}
@media (max-width: 450px) {
  .hero ul {
    margin-top: 16px;
  }
}
.hero ul li {
  border: 1px solid #D77A23;
  border-radius: 12px;
  padding: 16px;
}
@media (max-width: 450px) {
  .hero ul li {
    width: 100%;
    text-align: center;
  }
}
.hero ul a {
  font-weight: 600;
  line-height: 28px;
  color: #FFF9F6;
}
.hero img {
  border-radius: 8px;
}/*# sourceMappingURL=main.css.map */