@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:wght@300;400;500;600;700&display=swap');
:root {
  --ff-victor: 'Victor Mono', monospace;
  --color-primary: #0D3B66;
  --color-black: #241F1F;
  --color-footer: #D1C7C7;
  --bg-main: #FAF0CA;
  --bg-header: #FAFAFA;
  --bg-footer: #282727;
}

* {
  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-victor);
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  background: var(--bg-main);
  color: var(--color-primary);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#0b0c0f, #151517) padding-box, linear-gradient(to bottom, #5e565f, #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: 76px;
  color: #F95738;
}
@media (max-width: 590px) {
  .header {
    height: 74px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  padding: 24px 0;
  background: var(--bg-footer);
}
@media (max-width: 1250px) {
  .header-fixed {
    padding: 24px 10px;
  }
}
@media (max-width: 590px) {
  .header-fixed {
    padding: 20px 10px;
  }
}
.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: 160px 30px;
  }
}
.header .menu .item {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.4px;
  cursor: pointer;
}
.header .menu .item:hover {
  color: #70D34E;
}
.header-logo {
  display: block;
  font-weight: 700;
  width: 120px;
  height: 28px;
  font-size: 32px;
  line-height: 28px;
  text-transform: uppercase;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    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: 76px;
    bottom: 0;
    height: 100vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: #6E6868;
    color: #D1C7C7;
    background-size: contain;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
@media (max-width: 590px) {
  .header .nav {
    top: 72px;
  }
}

.hero {
  padding: 20px 0 60px;
  background: #F4D35E;
}
@media (max-width: 1280px) {
  .hero {
    padding: 20px 10px 50px;
  }
}
@media (max-width: 590px) {
  .hero {
    padding: 20px 20px 50px;
  }
}
.hero-block {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.hero-text {
  max-width: 640px;
  width: 100%;
}
.hero-img {
  max-width: 300px;
  width: 100%;
}
.hero img {
  margin: 0 auto;
  /* box-shadow: 0px 40px 120px 0px rgba(163, 73, 73, 0.2); */
}
.hero h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: 0.8px;
  margin-bottom: 40px;
  color: var(--color-black);
  text-align: center;
}
@media (max-width: 590px) {
  .hero h1 {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: 0.64px;
  }
}

.article {
  padding-bottom: 160px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 10px 160px;
  }
}
@media (max-width: 590px) {
  .article {
    padding: 0 10px 120px;
  }
}
.article ul {
  list-style: disc;
}
.article img {
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 40px 120px 0px rgba(163, 73, 73, 0.2);
}
.article ul,
.article ol {
  margin-left: 105px;
  margin-bottom: 20px;
}
@media (max-width: 590px) {
  .article ul,
  .article ol {
    margin-left: 56px;
  }
}
.article p {
  margin-bottom: 24px;
}
.article p:last-of-type {
  margin-bottom: 0;
  margin-top: 40px;
}
.article span {
  display: block;
}
.article h2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.56px;
  margin: 60px 0 40px;
  color: var(--color-black);
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 24px;
    line-height: 28px;
    margin: 30px 0;
  }
}
.article h3 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
  margin: 30px 0;
  color: var(--color-black);
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 20px;
    line-height: 23px;
  }
}
.article-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}
.article-img {
  max-width: 600px;
  width: 100%;
}
.article-text {
  max-width: 560px;
  width: 100%;
}
.article-text p:last-of-type {
  margin-top: 0;
}
@media (max-width: 1280px) {
  .article-text {
    max-width: 100%;
  }
}
.article table {
  margin: 40px auto;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 800px;
  width: 100%;
  color: var(--color-black);
}
.article table tr {
  border-bottom: 1px solid #D1C7C7;
  display: grid;
  word-break: break-all;
}
.article table td {
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.article table td:first-child {
  font-weight: 400;
}
.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-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;
}
.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;
}

.footer {
  padding: 140px 0 60px;
  background: var(--bg-footer);
}
@media (max-width: 1280px) {
  .footer {
    padding: 140px 10px 60px;
  }
}
@media (max-width: 590px) {
  .footer {
    padding: 60px 10px 60px;
  }
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 590px) {
  .footer-wrapper {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
  }
}
.footer-logo {
  display: block;
  font-weight: 700;
  width: 120px;
  height: 28px;
  font-size: 32px;
  line-height: 28px;
  color: #F95738;
  text-transform: uppercase;
}
@media (max-width: 590px) {
  .footer-logo {
    text-align: center;
  }
}
.footer p {
  text-align: center;
  color: var(--color-footer);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}/*# sourceMappingURL=main.css.map */