@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700&display=swap');
:root {
  --ff-fs: 'Fira Sans', sans-serif;
  --color-primary: #FAFAFA;
  --color-link: #0059DF;
  --color-grey: #ECECEC;
  --bg-main: #0B0121;
  --bg-gradient: linear-gradient(270deg, #753360 0%, #2b396e 100%);
}

* {
  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: 15px auto;
}

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

body {
  font-family: var(--ff-fs);
  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;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

.container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}

.arrow-btn-up {
  width: 45px;
  height: 45px;
  background: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  box-shadow: 0px -2px 7px rgb(246 181 0);
  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 {
  box-shadow: 0px -2px 7px rgba(2, 213, 27, 0.7);
}

main {
  background: url(../img/bg2.jpg) no-repeat top 18% center, url(../img/bg3.jpg) no-repeat top 40% center, url(../img/bg4.jpg) no-repeat top 65% center;
  background-size: contain;
}
@media (max-width: 1440px) {
  main {
    background-size: auto;
  }
}

.article {
  padding-bottom: 30px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 15px 30px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 15px 30px;
  }
}
.article p {
  margin-bottom: 15px;
}
.article p > a {
  color: var(--color-link);
}
.article p > a:visited {
  color: #04DF00;
}
.article h1 {
  margin: 30px 0 30px;
  font-size: 44px;
  line-height: 58px;
  text-align: center;
  font-family: var(--ff-fs);
  font-weight: 700;
}
@media (max-width: 590px) {
  .article h1 {
    margin: 30px 0 30px;
    font-size: 36px;
    line-height: 46px;
  }
}
.article .text {
  max-width: 570px;
  width: 100%;
  margin: 0 auto 23px;
  text-align: center;
}
.article-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 70px;
}
@media (max-width: 890px) {
  .article-wrapper {
    flex-wrap: wrap;
    gap: 7px;
  }
}
@media (max-width: 590px) {
  .article-wrapper {
    margin-top: 50px;
  }
}
.article .article-block-container {
  position: relative;
}
.article .article-block {
  max-width: 239px;
  width: 100%;
  padding: 5px;
  box-shadow: 0px -2px 7px rgba(2, 213, 27, 0.7);
  border-radius: 15px;
  backface-visibility: hidden;
  transform: rotateY(0deg);
  transition: 0.8s ease;
}
@media (max-width: 450px) {
  .article .article-block {
    max-width: 175px;
  }
}
.article .article-block p {
  margin: 0;
  text-align: center;
}
.article .article-block h3 {
  margin: 10px 0;
}
.article-block-back {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 15px;
  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, #f403d1, #64b5f6);
}
.article .article-block-container:hover .article-block {
  transform: rotateY(-180deg);
}
.article .article-block-container:hover .article-block-back {
  transform: rotateY(0deg);
}
.article h2 {
  margin: 30px 0 30px;
  font-weight: 600;
  font-size: 38px;
  line-height: 46px;
  font-family: var(--ff-fs);
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    margin: 30px 0 30px;
    font-size: 32px;
    line-height: 43px;
  }
}
.article h3 {
  margin: 70px 0 15px;
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  text-align: center;
  font-family: var(--ff-fs);
}
@media (max-width: 590px) {
  .article h3 {
    margin: 50px 0 15px;
    font-size: 20px;
    line-height: 28px;
  }
}
.article ol,
.article ul {
  padding: 20px 100px;
  background: var(--bg-main);
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 25px auto;
  list-style: none;
  box-shadow: 0px -2px 7px rgba(213, 2, 21, 0.7);
}
@media (max-width: 590px) {
  .article ol,
  .article ul {
    margin: 20px auto 20px;
    padding: 20px;
  }
}
.article ol li,
.article ul li {
  margin-bottom: 15px;
  padding-left: 15px;
}
.article ol li:last-child,
.article ul li:last-child {
  margin-bottom: 0;
}
.article-content {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
  margin-bottom: 70px;
}
.article-content h3 {
  text-align: left;
  margin: 0 0 15px;
}
.article-content button {
  width: 146px;
  padding: 12px 26px;
  border: 2px solid #04DF00;
  border-radius: 25px;
  color: var(--color-primary);
}
@media (max-width: 1280px) {
  .article-content picture {
    margin: 0 auto;
  }
}
.article-text {
  max-width: 515px;
}
@media (max-width: 1280px) {
  .article-text {
    max-width: 100%;
  }
}
.article ul li {
  background: url(../img/ellipse.png) no-repeat left;
}
.article .list-figure li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.article .list-figure li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 24px;
  background: url(../img/icon-list.svg) no-repeat center;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0 70px;
}
.article .table:last-of-type {
  margin: 70px 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  text-align: center;
  border: 1px solid #0B0121;
  box-shadow: 0px -2px 7px rgba(2, 213, 27, 0.7);
}
.article tbody td {
  padding: 22px 0;
}
@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: 30px 0 5px;
  }
  .article .table-1 td:last-child {
    padding: 0 0 30px;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template: auto/repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .article .table-2 td {
    padding: 0 20px 15px;
  }
  .article .table-2 td:first-child {
    grid-column: 1/3;
    padding: 15px 0 5px;
  }
}
.article .table-3 tr {
  grid-template: auto/repeat(4, 1fr);
}
@media (max-width: 768px) {
  .article .table-3 tr {
    grid-template: auto/repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .article .table-3 td {
    padding: 0 15px 15px;
  }
  .article .table-3 td:first-child {
    grid-column: 1/4;
    padding: 15px 0 5px;
  }
}

.footer {
  padding: 30px 0;
  background: var(--bg-gradient);
  text-align: center;
  box-shadow: 0px 0px 6px #D20121;
}
.footer p {
  color: var(--color-primary);
}

.header-top {
  height: 80px;
}
.header-fixed {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  transition: 0.3s ease;
  background: var(--bg-gradient);
  box-shadow: 0px 0px 6px #D20121;
}
@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: 20px;
  line-height: 26px;
  color: #0D0F24;
  padding: 5px 0;
  text-align: center;
  width: 110px;
  background: #FAFAFA;
  font-family: var(--ff-fs);
  text-transform: uppercase;
  font-weight: 700;
}
.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: 96px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: url(../img/bg-nav.jpg) no-repeat center;
    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: #DF0005;
}
.header-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 890px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }
}
.header button {
  width: 136px;
  padding: 12px 0;
  background: #f6b500;
  color: var(--color-primary);
  border-radius: 25px;
}
.header button:hover {
  box-shadow: 0px -2px 7px rgba(213, 2, 21, 0.7);
  background: #735c1b;
}
.header button:first-child {
  width: 85px;
  background: transparent;
  border: 2px solid #f6b500;
}
.header button:first-child:hover {
  color: #987a26;
  filter: drop-shadow(0px -2px 7px rgba(213, 2, 21, 0.7));
}
.header-bottom {
  padding-top: 30px;
}
.header-bottom img {
  filter: drop-shadow(0px -2px 7px rgba(213, 2, 21, 0.7));
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 30px 15px 0;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 30px 15px 0;
  }
}/*# sourceMappingURL=main.css.map */