@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@400;500;600;700&display=swap');
:root {
  --ff-Sofia-Sans-Condensed: "Sofia Sans Condensed", sans-serif;

  --color-primary: #fff;
  --color-orange: #FFA048;
  --color-pink: #ff5e8b;
  --bg-main: #561433;
  --bg-pink: #ff5e8b;
  --bg-button: #000000;
  --bg-nav: #22242F;
}

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

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}

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

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

body {
  font-family: var(--ff-Sofia-Sans-Condensed);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}
@media (max-width: 590px) {
  body {
    font-size: 500;
  }
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#412644, #572748) padding-box, var(--bg-button);
  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: 2;
}

.head {
  height: 100px;
}
@media (max-width: 590px) {
  .head {
    height: 230px;
  }
}
.head-fix {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 50px;
  transition: 0.3s ease-in-out;
  background: var(--bg-pink);
}
@media (max-width: 1240px) {
  .head-fix {
    padding: 28px 15px;
  }
}
@media (max-width: 590px) {
  .head-fix {
    padding: 0 15px 30px;
    background: var(--bg-main);
  }
}
.head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 590px) {
  .head-wrap {
    flex-direction: column;
  }
}
.head .burger {
  display: none;
}
@media (max-width: 890px) {
  .head .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background: url(../img/burger.svg) no-repeat center;
    z-index: 4;
    transition: 0.3s ease;
  }
  .head .burger.active {
    background: url(../img/burger2.svg) no-repeat center;
  }
}
@media (max-width: 590px) {
  .head .burger {
    position: absolute;
    top: 30px;
    left: 30px;
  }
}
.head-logotype {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--ff-Sofia-Sans-Condensed);
  text-transform: uppercase;
}
@media (max-width: 590px) {
  .head-logotype {
    margin-top: 30px;
  }
}
@media (max-width: 890px) {
  .head .nav {
    position: absolute;
    left: 0;
    right: 20%;
    top: 0;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-nav);
    background-size: contain;
  }
  .head .nav.open {
    transform: translateX(0);
  }
}
.head .menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media (max-width: 890px) {
  .head .menu {
    flex-direction: column;
    gap: 50px;
    padding: 170px 0 0 30px;
  }
}
.head .menu .item {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 890px) {
  .head .menu .item {
    font-weight: 500;
  }
}
.head-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 890px) {
  .head-container {
    align-items: center;
  }
}
@media (max-width: 590px) {
  .head-container {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
@media (max-width: 390px) {
  .head-container {
    width: 100%;
  }
}
.head-btn {
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: 148px;
  padding: 10px 0;
  background: var(--bg-button);
  color: var(--color-primary);
}
.head-btn:first-child {
  width: 81px;
}
@media (max-width: 590px) {
  .head-btn:first-child {
    width: 250px;
  }
}
@media (max-width: 330px) {
  .head-btn:first-child {
    width: 100%;
  }
}
@media (max-width: 590px) {
  .head-btn {
    width: 250px;
    line-height: 22px;
    letter-spacing: 0.2px;
  }
}
@media (max-width: 330px) {
  .head-btn {
    width: 100%;
  }
}

.article {
  padding: 50px 0 100px;
}
@media (max-width: 1300px) {
  .article {
    padding: 0px 15px 20px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 15px 20px;
  }
}
.article ul {
  list-style: disc;
}
@media (max-width: 450px) {
  .article img {
    border-radius: 30px;
  }
}
.article ul,
.article ol {
  margin-left: 50px;
  margin-bottom: 30px;
}
.article p > a {
  color: var(--color-orange);
  text-decoration: underline;
}
.article p {
  margin-bottom: 30px;
  text-indent: 20px;
}
.article p:last-of-type {
  margin: 30px 0 0;
}
@media (max-width: 590px) {
  .article p {
    text-indent: 0;
  }
}
.article h2 {
  margin: 40px 0;
  font-size: 44px;
  line-height: 44px;
  font-weight: 700;
  color: var(--color-pink);
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 30px 0;
  }
}
.article h3 {
  margin: 40px 0;
  font-size: 32px;
  line-height: 34px;
  font-weight: 700;
  word-wrap: break-word;
  color: var(--color-pink);
  text-align: center;
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 28px;
    line-height: 34px;
    margin: 30px 0;
    text-align: center;
  }
}
.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;
  border-top: 1px solid #FFFFFF;
}
.article tbody tr:last-child {
  border-bottom: 1px solid #FFFFFF;
}
@media (max-width: 768px) {
  .article tbody tr {
    padding: 0;
  }
}
.article tbody td {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}
.article tbody td:first-child {
  text-align: left;
  padding-left: 18px;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    padding-left: 0;
  }
}
.article tbody td:last-child {
  text-align: right;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .article tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article tbody td {
    line-height: 20px;
    padding: 0;
  }
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .article tbody td {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .article .table-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article .table-1 tbody tr td:nth-child(odd) {
    text-align: left;
    padding: 20px 0 20px 0;
  }
  .article .table-1 tbody tr td:nth-child(even) {
    text-align: right;
    padding: 20px 0 20px 0;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .article .table-2 tr td {
    grid-column: 2/4;
    grid-row: 3/-3;
  }
  .article .table-2 tr td:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .article .table-2 tr td:last-child {
    grid-column: 4/5;
  }
}
.article .table-3 {
  grid-template: auto/repeat(2, 1fr);
}
.article .table-3 td:last-child {
  grid-column: 4/5;
}
@media (max-width: 768px) {
  .article .table-3 tr {
    padding: 20px 0;
  }
}

.footer {
  padding: 46px 0;
}
@media (max-width: 590px) {
  .footer {
    padding: 40px 0;
  }
}
.footer p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 590px) {
  .footer p {
    letter-spacing: 0.01em;
  }
}

.hero-block {
  padding-top: 30px;
}
.hero-block h1 {
  margin: 50px 0;
  font-size: 44px;
  line-height: 64px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 590px) {
  .hero-block h1 {
    margin: 30px 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    word-wrap: break-word;
  }
}
@media (max-width: 450px) {
  .hero-block img {
    border-radius: 30px;
  }
}
.hero-block ul {
  background: var(--bg-pink);
  padding: 50px;
  border-radius: 10px;
}
.hero-block ul li {
  line-height: 40px;
}
@media (max-width: 590px) {
  .hero-block ul {
    padding: 0 0 30px;
    background: var(--bg-main);
    border-radius: 0;
  }
}
@media (max-width: 1240px) {
  .hero-block {
    padding: 30px 15px 0;
  }
}
@media (max-width: 590px) {
  .hero-block {
    padding: 0 15px;
  }
}/*# sourceMappingURL=main.css.map */