@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');
:root {
  --ff-alegreya: 'Alegreya', serif;
  /* color */
  --color-primary: #ffb546;
  --color-secondary: #4c5458;
  --color-yellow-lt: #b8860b;
  --color-dark: #222222;
  --color-orange: #FF4E00;
  --color-white: #FFFFFF;
  --color-white-lt:#FDFBF5;
  /* bg-color */
  --bg-primary: #ffb546;
  --bg-secondary: #4c5458;
  --bg-yellow-lt: #b8860b;
  --bg-dark: #222222;
  --bg-orange: #FF4E00;
  --bg-white: #FFFFFF;
  --bg-white-lt:#FDFBF5;
}

/* default style */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

li {
  font-size: 18px;
  line-height: 34px;
}

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

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

picture > img {
  border-radius: 30px;
}

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

/* main style */
body {
  font-family: var(--ff-alegreya);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #ffecd0;
  background: var(--bg-black);
  overflow-x: hidden;
}

.hidden {
  overflow-y: hidden;
}

main {
  background: var(--bg-secondary);
}

.wrapper {
  background: var(--bg-yellow-lt);
}

.article-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  height: 102px;
}
@media (max-width: 768px) {
  .header {
    height: 243px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  padding: 25px 0px;
  background: var(--bg-dark);
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 30px 0px;
  }
}
.header-wrapper__block {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 980px) {
  .header-wrapper__block {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .header-wrapper__block {
    flex-direction: column;
    gap: 30px;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 768px) {
  .header .burger {
    position: absolute;
    z-index: 4;
    top: 30px;
    left: 30px;
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../images/burger.svg) no-repeat center;
    z-index: 4;
    transition: 0.3s ease-in-out;
  }
  .header .burger.active {
    background: url(../images/close.svg) no-repeat center;
  }
}
.header-logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-primary);
  text-transform: uppercase;
  cursor: pointer;
}
.header-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .header .nav {
    position: absolute;
    background: var(--bg-dark);
    top: 0;
    left: 0;
    right: 30%;
    bottom: 0;
    min-height: 110vh;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
  }
  .header .nav.active {
    transform: translateX(0%);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 29px;
}
@media (max-width: 768px) {
  .header .menu {
    flex-direction: column;
    padding: 180px 0px 0px 30px;
    gap: 50px;
  }
}
.header .menu li {
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
.header-block {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.header-btn {
  border-radius: 6px;
  border: 1px solid var(--bg-primary);
  background: var(--bg-primary);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 0;
  width: 150px;
  transition: 0.3s ease;
}
.header-btn:first-child {
  background: transparent;
  width: 82px;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .header-btn:first-child {
    width: 250px;
  }
}
.header-btn:hover {
  box-shadow: 2px 2px 2px 0px #fff;
  background: var(--bg-orange);
}
@media (max-width: 768px) {
  .header-btn {
    width: 250px;
  }
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 100px 1px;
  background-color: #b8860b;
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px 1px;
  }
}
@media (max-width: 590px) {
  .hero {
    padding: 30px 15px 1px;
  }
}
.hero h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: #bde1f3;
  text-align: center;
  max-width: 1063px;
  margin: 40px auto 40px;
}
@media (max-width: 768px) {
  .hero h1 {
    margin: 30px auto;
  }
}
@media (max-width: 590px) {
  .hero h1 {
    word-wrap: break-word;
    word-break: break-all;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
  }
}
.hero ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero li {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 40px;
  border: 1px solid #58544C;
  border-radius: 4px;
}
@media (max-width: 450px) {
  .hero li {
    width: 100%;
  }
}
@media (max-width: 395px) {
  .hero li {
    line-height: 28px;
    font-size: 16px;
  }
}
.hero li a {
  display: block;
  padding: 9px 18px;
  text-align: center;
  color: var(--color-secondary);
  transition: 0.3s ease;
}
.hero li a:hover {
  color: var(--color-white);
  background: var(--bg-secondary);
}

.article {
  max-width: 1800px;
  width: 100%;
  padding: 38px 34px 20px 34px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 980px) {
  .article {
    margin-left: 0;
    padding: 38px 20px 20px 20px;
  }
}
@media (max-width: 768px) {
  .article {
    padding: 38px 20px 20px 20px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 30px 15px 20px 15px;
  }
}
.article p {
  font-size: 18px;
  line-height: 34px;
  text-indent: 20px;
  margin-bottom: 30px;
}
.article picture + p {
  margin-top: 30px;
}
.article picture + p + p {
  margin-bottom: 20px;
}
.article p > a {
  text-decoration: underline;
  color: var(--color-orange);
}
.article ol {
  margin-left: 40px;
  margin-bottom: 30px;
}
.article ul {
  list-style: disc;
  margin-bottom: 30px;
  margin-left: 40px;
}
.article h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  margin: 40px 0;
  text-align: center;
}
@media (max-width: 590px) {
  .article h2 {
    margin: 30px 0;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
  }
}
.article h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  margin: 40px 0;
  text-align: center;
}
@media (max-width: 590px) {
  .article h3 {
    margin: 30px 0;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
  }
}
.article table {
  width: 100%;
  margin: 0 auto 50px;
  border-collapse: collapse;
  border-spacing: 0px;
  background: var(--bg-black);
}
.article table:last-child {
  margin: 0 auto;
}
.article tbody tr {
  border-top: 1px solid var(--color-primary);
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
}
.article tbody tr:last-child {
  border-bottom: 1px solid var(--color-primary);
}
.article tbody td {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .article tbody td {
    padding: 20px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .article tbody td {
    font-size: 12px;
  }
}
.article tbody td:first-child {
  text-align: left;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    padding-left: 0;
  }
}
.article tbody td:last-child {
  text-align: right;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .article tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article .tabl-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article .tabl-1 tbody tr td:first-child {
    padding-bottom: 20px;
  }
  .article .tabl-1 tbody tr td:nth-child(2) {
    padding-bottom: 20px;
    text-align: right;
  }
  .article .tabl-1 tbody tr td:nth-child(3) {
    padding-top: 20px;
    text-align: left;
  }
  .article .tabl-1 tbody tr td:last-child {
    padding-top: 20px;
  }
}
.article .tabl-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
.article .tabl-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  padding: 36px 0;
  background: #000000;
}
@media (max-width: 450px) {
  .footer {
    padding: 40px 0;
  }
}
.footer p {
  margin: 0;
  padding: 0;
  text-indent: 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}/*# sourceMappingURL=main.css.map */