@import url("https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap");
:root {
  --ff-inter: "Inter", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --ff-roboto: "Roboto", sans-serif;
  --color-primary: #1F2130;
  --color-black: #0D0F24;
  --color-orange: #F8B22A;
  --color-white: #FFFFFF;
  --bg-main: #f2fdff;
  --bg-header: #f62af8;
  --bg-white: #f27777;
  --bg-footer: #f62af8;
}

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

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

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

.container {
  max-width: 1100px;
  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 6px rgba(123, 42, 248, 0.2);
  border-radius: 5px;
  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) no-repeat;
  background-position: center;
}

.article {
  padding-bottom: 30px;
}
@media (max-width: 1150px) {
  .article {
    padding: 0 20px 30px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 20px 30px;
  }
}
.article p {
  margin-bottom: 23px;
}
.article p > a {
  color: var(--color-orange);
}
.article p > a:visited {
  color: #7B2AF8;
}
.article h1 {
  margin: 35px 0 35px;
  font-size: 38px;
  line-height: 55px;
  text-align: center;
  font-family: var(--ff-montserrat);
  color: var(--color-black);
}
@media (max-width: 590px) {
  .article h1 {
    margin: 50px 0 25px;
    font-size: 32px;
    line-height: 32px;
  }
}
.article h2 {
  margin: 37px 0 37px;
  font-size: 33px;
  line-height: 50px;
  font-family: var(--ff-montserrat);
  color: var(--color-black);
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    margin: 50px 0 25px;
    font-size: 24px;
    line-height: 24px;
  }
}

.article h3 {
  margin: 32px 0 32px;
  font-size: 27px;
  line-height: 45px;
  font-family: var(--ff-montserrat);
  color: var(--color-black);
  text-align: center;
}

.article ol,
.article ul {
  padding-left: 30px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
  list-style: none;
}
@media (max-width: 590px) {
  .article ol,
  .article ul {
    margin-top: 25px;
    padding: 25px 30px;
  }
}
.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 ul li {
  background: url(../img/ellipse.png) no-repeat left;
}
.article ol {
  list-style: auto;
}
.article ol li {
  padding-left: 10px;
}
.article ol li::marker {
  color: #7B2AF8;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
.article-block-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px;
  margin-bottom: 29px;
}
@media (max-width: 450px) {
  .article-block-content {
    gap: 20px;
  }
}
.article-block-content figure {
  width: 343px;
}
@media (max-width: 1130px) {
  .article-block-content figure {
    width: 100%;
  }
}
.article-block-content figure img {
  height: 100%;
}
.article-block-content.alternative {
  margin-bottom: 0px;
}
.article-block-content.alternative figure {
  width: 530px;
}
@media (max-width: 1130px) {
  .article-block-content.alternative figure {
    width: 100%;
  }
}
.article-block {
  width: 722px;
}
@media (max-width: 1130px) {
  .article-block {
    width: 100%;
  }
}
.article-block h2 {
  margin: 0 0 35px;
}
.article-block p:last-child {
  margin-bottom: 0;
}
.article-block-right {
  width: 533px;
}
@media (max-width: 1130px) {
  .article-block-right {
    width: 100%;
  }
}
.article-block-right h2 {
  margin: 0 0 35px;
}
.article .table-block {
  background: var(--bg-white);
  box-shadow: inset 0px 4px 10px #E1E5ED;
  padding: 35px 0;
}
.article .table-block:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 1150px) {
  .article .table-block {
    padding: 35px 5px;
  }
}
@media (max-width: 450px) {
  .article .table-block {
    padding: 35px 10px;
  }
}
.article .table {
  max-width: 1106px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  background: var(--bg-white);
}
@media (max-width: 768px) {
  .article .table {
    padding: 10px;
  }
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  text-align: center;
}
.article tbody tr:nth-child(even) {
  background: var(--bg-main);
}
.article tbody td {
  padding: 22px 0;
}
@media (max-width: 590px) {
  .article tbody td {
    word-break: break-all;
  }
}
.article tbody td:first-child {
  font-weight: 600;
}
.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-footer);
  text-align: center;
}
.footer p {
  color: var(--color-white);
}

.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-header);
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 17px 20px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    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 {
  cursor: pointer;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-black);
  padding: 5px 12px;
  background: var(--bg-white);
  font-family: var(--ff-inter);
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    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);
    padding-top: 70px;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--color-white);
}
@media (max-width: 890px) {
  .header ul {
    flex-direction: column;
    gap: 50px;
    color: var(--color-primary);
    align-items: center;
  }
}
.header ul a {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  cursor: pointer;
}
.header ul a:first-child:hover {
  color: #7B2AF8;
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 0 20px;
  }
}/*# sourceMappingURL=main.css.map */