@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700&display=swap');
:root {
  --ff-mulish: 'Mulish', sans-serif;
  --ff-tinos: "Tinos", serif;
  --color-primary: #817F89;
  --color-secondary: #2C2C2C;
  --bg-main: #F7F7F7;
}

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

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-family: var(--ff-mulish);
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-primary);
  background: linear-gradient(90deg, rgba(220,255,220,1) 17%, rgba(220,232,221,1) 46%, rgba(162,252,251,1) 100%);
  background-size: cover;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(rgba(162,252,251,1), #92e1a2) padding-box, linear-gradient(to bottom, #d6bcda, #201c22) 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;
}

.header {
  height: 98px;
}
@media (max-width: 890px) {
  .header {
    height: 68px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  padding: 35px 0;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-bottom: 1px solid #C3AAED;
}
@media (max-width: 1250px) {
  .header-fixed {
    padding: 35px 20px;
  }
}
@media (max-width: 890px) {
  .header-fixed {
    padding: 20px;
  }
}
.header-fixed.active {
  background: var(--bg-main);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .menu {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 890px) {
  .header .menu {
    flex-direction: column;
    gap: 80px;
    align-items: center;
    padding: 120px 30px;
  }
}
.header .menu .item {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.header .menu .item:hover {
  color: #9868FF;
}
.header-logo {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 3;
    width: 28px;
    height: 28px;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 69px;
    height: 100vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: url(../img/bg-nav.png) no-repeat top center var(--bg-main);
    background-size: cover;
  }
  .header .nav.open {
    transform: translateX(0);
    background: linear-gradient(90deg, rgba(220,255,220,1) 17%, rgba(220,232,221,1) 46%, rgba(162,252,251,1) 100%);
  }
}

.hero {
  padding-top: 40px;
}
@media (max-width: 1280px) {
  .hero {
    padding: 40px 10px 0;
  }
}
@media (max-width: 450px) {
  .hero {
    padding: 40px 10px 0;
  }
}
.hero-block {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 590px) {
  .hero-block {
    gap: 11px;
  }
}
.hero-content {
  max-width: 580px;
  width: 100%;
}
.hero-img {
  max-width: 620px;
  width: 100%;
}
.hero img {
  filter: drop-shadow(0px 10px 40px rgba(191, 207, 217, 0.6));
}
.hero h1 {
  font-family: var(--ff-mulish);
  font-weight: 700;
  font-size: 46px;
  line-height: 50px;
  color: var(--color-secondary);
  padding: 30px;
}
@media (max-width: 590px) {
  .hero h1 {
    font-size: 36px;
    line-height: 36px;
  }
}

.article {
  padding-bottom: 40px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 10px 40px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 10px 60px;
  }
}
.article-block {
  max-width: 930px;
  width: 100%;
}
.article span {
  display: block;
}
.article ul li {
  position: relative;
}
.article ul li::before {
  position: absolute;
  content: "";
  background: url(../img/ul-img.png);
  height: 26px;
  width: 20px;
  top: 0;
  left: -30px;
}
.article img {
  filter: drop-shadow(0px 10px 40px rgba(191, 207, 217, 0.6));
  margin: auto;
  padding-bottom: 20px;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 20px;
}
@media (max-width: 590px) {
  .article ul,
  .article ol {
    margin-left: 56px;
  }
}
.article p {
  margin-bottom: 20px;
}
.article p:last-child {
  margin-bottom: 0;
  margin-top: 30px;
}
.article-content {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.article h2 {
  font-family: var(--ff-mulish);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 37px;
  line-height: 52px;
  margin: 30px 0 30px;
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 28px;
    line-height: 28px;
    margin: 30px 0 30px;
  }
}
.article h3 {
  font-family: var(--ff-mulish);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  margin: 28px 0 28px;
  text-align: center;
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 30px 0 30px;
  }
}
.article table {
  margin: 30px auto;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 800px;
  width: 100%;
}
.article table tr {
  border-bottom: 1px solid #C3AAED;
  display: grid;
}
.article table tr:last-child {
  border-bottom: none;
}
.article table td {
  padding: 10px 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
  color: var(--color-secondary);
}
.article table td:first-child {
  font-weight: 400;
}
@media (max-width: 768px) {
  .article table td {
    padding: 0;
  }
}
.article .table-1 tr {
  grid-template-columns: 260px 1fr;
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 10px 0 10px;
  }
  .article .table-1 tr td {
    padding: 0;
  }
  .article .table-1 tr td:first-child {
    padding-bottom: 4px;
  }
}
.article .table-2 tr {
  grid-template-columns: repeat(3, 1fr);
}
.article .table-2 tr:first-child td {
  font-weight: 700;
}
.article .table-2 td {
  font-weight: 400;
}
@media (max-width: 768px) {
  .article .table-2 {
    display: none;
  }
}
.article .table-2-mobile {
  display: none;
}
@media (max-width: 768px) {
  .article .table-2-mobile {
    display: block;
  }
  .article .table-2-mobile tbody {
    display: block;
  }
  .article .table-2-mobile tr {
    grid-template-columns: repeat(3, 1fr);
  }
  .article .table-2-mobile tr:last-child td:last-child {
    padding: 0;
  }
  .article .table-2-mobile tr:last-child td:nth-child(4) {
    padding: 0;
  }
  .article .table-2-mobile td {
    font-weight: 400;
    padding: 4px 0;
  }
  .article .table-2-mobile td:first-child {
    grid-column: 1/4;
    text-align: center;
    font-weight: 700;
    padding: 10px 0 0;
  }
  .article .table-2-mobile td:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .article .table-2-mobile td:nth-child(3) {
    grid-column: 3/4;
    grid-row: 2/3;
    text-align: right;
  }
  .article .table-2-mobile td:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
    padding: 0 0 10px;
  }
  .article .table-2-mobile td:last-child {
    grid-column: 3/4;
    grid-row: 3/4;
    text-align: right;
    padding: 0 0 10px;
  }
}
.article .table-3 {
  margin-bottom: 0;
}
.article .table-3 tr {
  grid-template-columns: repeat(4, 1fr);
}
.article .table-3 tr:first-child td {
  font-weight: 700;
}
.article .table-3 td {
  font-weight: 400;
}
@media (max-width: 768px) {
  .article .table-3 {
    display: none;
  }
}
.article .table-3-mobile {
  margin-bottom: 0;
  display: none;
}
@media (max-width: 768px) {
  .article .table-3-mobile {
    display: block;
  }
  .article .table-3-mobile tbody {
    display: block;
  }
  .article .table-3-mobile tr {
    grid-template-columns: repeat(4, 1fr);
  }
  .article .table-3-mobile tr:last-child td:last-child {
    padding: 4px 0 0;
  }
  .article .table-3-mobile tr:last-child td:nth-child(5) {
    padding: 4px 0 0;
  }
  .article .table-3-mobile td {
    font-weight: 400;
  }
  .article .table-3-mobile td:first-child {
    grid-column: 2/4;
    text-align: center;
    font-weight: 700;
    padding: 10px 0 0;
  }
  .article .table-3-mobile td:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
    padding: 4px 0 4px;
  }
  .article .table-3-mobile td:nth-child(3) {
    grid-column: 4/5;
    grid-row: 2/3;
    text-align: right;
    padding: 4px 0 4px;
  }
  .article .table-3-mobile td:nth-child(4) {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .article .table-3-mobile td:nth-child(5) {
    grid-column: 1/3;
    grid-row: 4/5;
    padding: 4px 0 10px;
  }
  .article .table-3-mobile td:nth-child(6) {
    grid-column: 4/5;
    grid-row: 3/4;
    text-align: right;
  }
  .article .table-3-mobile td:last-child {
    grid-column: 4/5;
    grid-row: 4/5;
    text-align: right;
    padding: 4px 0 10px;
  }
}

.footer {
  padding: 40px 0 40px;
  border-top: 1px solid #C3AAED;
}
.footer p {
  text-align: center;
  color: var(--color-footer);
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
}/*# sourceMappingURL=main.css.map */