@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
:root {
  --ff-raleway: 'Raleway', sans-serif;
  --color-primary: #FAFAFA;
  --color-link: #E7DA11;
  --color-grey: #ECECEC;
  --bg-main: #1C1B2E;
  --bg-secondary: #0B0121;
}

* {
  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-raleway);
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main) url(../img/bg1.jpg) no-repeat top center;
  background-size: contain;
  overflow-x: hidden;
}
@media (max-width: 1440px) {
  body {
    background-size: auto;
  }
}
body.hidden {
  overflow-y: hidden;
}

p {
  color: var(--color-grey);
}

.container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 15px;
  }
}

.arrow-btn-up {
  width: 45px;
  height: 45px;
  background: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 3px;
  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;
}
.arrow-btn-up:hover {
  background: url(../img/arrow-hover.svg);
  background-position: center;
}

.article {
  padding-bottom: 70px;
}
@media (max-width: 590px) {
  .article {
    padding-bottom: 50px;
  }
}

picture img {
  border-radius: 20px;
  margin: 30px auto;
}
.article p {
  margin-bottom: 24px;
  line-height: 32px;
}
.article p > a {
  color: var(--color-link);
}
.article p > a:visited {
  color: #11E7BC;
}
.article h1 {
  margin: 50px 0;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  font-family: var(--ff-raleway);
  font-weight: 500;
  color: var(--color-link);
}
@media (max-width: 590px) {
  .article h1 {
    margin: 30px 0;
    font-size: 32px;
    line-height: 44px;
  }
}
.article-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 70px;
}
@media (max-width: 890px) {
  .article-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
  }
}
.article .article-block-container {
  position: relative;
}
.article .article-block {
  background: #0B0121;
  padding: 15px;
  border-radius: 3px;
  backface-visibility: hidden;
  transform: rotateY(0deg);
  transition: 0.8s ease;
}
.article .article-block p {
  margin-bottom: 10px;
}
.article .article-block h3 {
  margin: 10px 0;
  text-align: left;
}
.article-block-back {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 3px;
  overflow: hidden;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, var(--bg-main), #fff);
}
.article .article-block-container:hover .article-block {
  transform: rotateY(-180deg);
}
.article .article-block-container:hover .article-block-back {
  transform: rotateY(0deg);
}
.article h2 {
  margin: 40px 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  font-family: var(--ff-raleway);
  text-align: center;
  color: var(--color-link);
}
@media (max-width: 590px) {
  .article h2 {
    margin: 30px 0;
    font-size: 24px;
    line-height: 34px;
  }
}
.article h3 {
  margin: 30px 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  text-align: left;
  font-family: var(--ff-raleway);
  color: var(--color-link);
}
@media (max-width: 590px) {
  .article h3 {
    margin: 30px 0;
    font-size: 20px;
    line-height: 28px;
  }
}
.article ol,
.article ul {
  /* background: var(--bg-main); */
  /* max-width: 400px; */
  width: 100%;
  display: block;
  margin: 30px auto;
  list-style: none;
}
@media (max-width: 590px) {
  .article ol,
  .article ul {
    margin: 15px auto 50px;
  }
}
.article ol li,
.article ul li {
  margin-bottom: 15px;
  padding-left: 30px;
}

.article-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 30px;
  margin-bottom: 20px;
  background: var(--bg-secondary);
}
/* .article-content:nth-child(2) {
  margin-bottom: 0;
  flex-wrap: wrap-reverse;
} */
.article-content h3 {
  text-align: left;
  margin: 0 0 15px;
}
@media (max-width: 1280px) {
  .article-content picture {
    margin: 0 auto;
  }
}
@media (max-width: 1280px) {
  .article-content {
    padding: 25px 15px;
  }
}
.article-text {
  max-width: 665px;
}
@media (max-width: 1280px) {
  .article-text {
    max-width: 100%;
  }
}
.article button {
  width: 146px;
  padding: 12px 0;
  border: 2px solid #E7DA11;
  border-radius: 3px;
  color: var(--color-primary);
}
.article ul li {
  background: url(../img/star.svg) no-repeat left;
}
.article ol {
  list-style-type: decimal;
  padding-left: 40px;
}
.article ol li::marker {
  font-family: var(--ff-noto-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 45px;
  color: #E7DA11;
  margin-left: 15px;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0 70px;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  text-align: center;
  border-width: 1px 0;
  border-style: solid;
  border-color: #4E4B80;
}
.article tbody td {
  padding: 22px 0;
}
.article tbody td:first-child {
  border-right: 1px solid #4E4B80;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    border: none;
  }
}
@media (max-width: 590px) {
  .article tbody td {
    word-break: break-all;
  }
}
.article .table-1 tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template: auto/repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .article .table-1 td {
    padding: 20px 0 5px;
  }
  .article .table-1 td:last-child {
    padding: 0 0 25px;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template: auto/repeat(2, 1fr);
  }
}
.article .table-2 td:last-child {
  border-left: 1px solid #4E4B80;
}
@media (max-width: 768px) {
  .article .table-2 td {
    padding: 0 10px 10px;
  }
  .article .table-2 td:first-child {
    grid-column: 1/3;
    padding: 10px 0 5px;
  }
  .article .table-2 td:last-child {
    border: none;
  }
}
.article .table-3 {
  margin: 70px 0 0;
}
.article .table-3 tr {
  grid-template: auto/repeat(4, 1fr);
}
@media (max-width: 768px) {
  .article .table-3 tr {
    grid-template: auto/repeat(3, 1fr);
  }
}
.article .table-3 td:nth-child(3) {
  border-left: 1px solid #4E4B80;
  border-right: 1px solid #4E4B80;
}
@media (max-width: 768px) {
  .article .table-3 td {
    padding: 0 10px 10px;
  }
  .article .table-3 td:first-child {
    grid-column: 1/4;
    padding: 10px 0 5px;
  }
  .article .table-3 td:nth-child(3) {
    border: none;
  }
}

.footer {
  padding: 30px 0;
  background: var(--bg-secondary);
}
.footer p {
  color: var(--color-primary);
  text-align: center;
}

.header-top {
  height: 80px;
}
.header-fixed {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 0;
  transition: 0.3s ease;
  background: var(--bg-secondary);
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 17px 15px;
  }
}
.header-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 890px) {
  .header-wrapper {
    justify-content: space-between;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    width: 40px;
    height: 40px;
    z-index: 5;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
.header-logo {
  display: block;
  cursor: pointer;
  font-size: 22px;
  line-height: 36px;
  color: #0D0F24;
  padding: 5px 0;
  text-align: center;
  width: 110px;
  background: var(--color-link);
  font-family: var(--ff-raleway);
  border-radius: 4px;
}
.header .nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    gap: 197px;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    background-size: cover;
    padding-top: 125px;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header ul {
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 890px) {
  .header ul {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }
}
.header ul a {
  cursor: pointer;
}
.header ul a:hover {
  color: #E7DA11;
}
.header-container {
  display: flex;
  gap: 5px;
}
@media (max-width: 890px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.header button {
  width: 136px;
  padding: 12px 0;
  background: #E7DA11;
  color: #0B0121;
  border-radius: 3px;
}
.header button:hover {
  background: rgba(231, 218, 17, 0.19);
  border: 2px solid #E7DA11;
  color: var(--color-primary);
}
.header button:first-child {
  width: 85px;
  background: transparent;
  border: 2px solid #E7DA11;
  color: var(--color-primary);
}
.header button:first-child:hover {
  background: rgba(231, 218, 17, 0.19);
}
.header-bottom {
  padding-top: 70px;
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 70px 15px 0;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 50px 15px 0;
  }
}/*# sourceMappingURL=main.css.map */