@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root {
  --ff-roboto: 'Roboto', sans-serif;
  --color-primary: #171111;
  --color-footer: #DDD4CE;
  --bg-main: #F1F1F1;
  --bg-footer: #F8F8F8;
  --color-title: #ef233c;
}

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

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

ul {
  list-style: none;
}

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

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

body {
  background: var(--bg-main);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: var(--ff-roboto);
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#252118, #524a41) padding-box, linear-gradient(to bottom, #b4460f, #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: 73px;
}
@media (max-width: 890px) {
  .header {
    height: 72px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  padding: 22px 0;
}
@media (max-width: 1250px) {
  .header-fixed {
    padding: 22px 10px;
  }
}
@media (max-width: 890px) {
  .header-fixed {
    padding: 20px 10px;
  }
}
.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 20px;
  }
}
.header .menu .item {
  font-weight: 700;
  line-height: 19px;
  cursor: pointer;
}
.header .menu .item:hover {
  color: #F1F1F1;
  background: #F4516C;
  filter: blur(20px);
}
.header-logo {
  font-size: 29px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-title);
}
.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: 10px;
    right: 10px;
    top: 88px;
    bottom: 10px;
    height: 100vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    background-size: contain;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}

.hero {
  background: url(../img/bg.png) no-repeat;
  
}
@media (max-width: 1200px) {
  .hero {
    background-size: contain;
  }
}
@media (max-width: 390px) {
  .hero {
    background: url(../img/bg-mini.png) no-repeat;
    background-size: auto;
  }
}
.hero-block {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
}
@media (max-width: 1280px) {
  .hero-block {
    padding: 40px 10px;
  }
}
@media (max-width: 450px) {
  .hero-block {
    padding: 40px 10px;
  }
}
.hero-content {
  max-width: 540px;
  width: 100%;
}
.hero-img {
  max-width: 600px;
  width: 100%;
}
.hero img {
  filter: drop-shadow(0px 40px 120px rgba(163, 73, 73, 0.4));
  border-radius: 10px;
}
@media (max-width: 890px) {
  .hero img {
    margin: 0 auto;
  }
}
.hero h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
  margin-bottom: 40px;
  color: var(--color-primary);
}
@media (max-width: 590px) {
  .hero h1 {
    font-size: 32px;
    line-height: 38px;
  }
}

.article {
  padding: 30px 0 100px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 10px 100px;
  }
}
.article ul {
  list-style: disc;
}
.article img {
  filter: drop-shadow(0px 20px 60px rgba(163, 73, 73, 0.1));
  border-radius: 10px;
}
.article span {
  display: block;
}
.article ul,
.article ol {
  margin-left: 118px;
  margin-bottom: 20px;
}
@media (max-width: 590px) {
  .article ul,
  .article ol {
    margin-left: 56px;
  }
}
.article ol {
  margin-bottom: 16px;
}
.article p {
  margin-bottom: 20px;
}

.article h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 40px;
  color: var(--color-title);
}
@media (max-width: 590px) {
  .article h2 {
    font-size: 24px;
    line-height: 29px;
  }
}
.article h3 {
  font-size: 24px;
  line-height: 29px;
  margin: 160px 0 40px;
}
@media (max-width: 590px) {
  .article h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.article-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.article-img {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 890px) {
  .article img {
    margin: 0 auto;
  }
}
.article-content {
  max-width: 760px;
  width: 100%;
}
.article .table-block {
  padding: 80px 100px;
  background: var(--bg-main);
  box-shadow: 0px 20px 60px rgba(163, 73, 73, 0.1);
  border-radius: 10px;
  margin: 40px 0 80px;
}
@media (max-width: 768px) {
  .article .table-block {
    padding: 0;
  }
}
.article table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 1000px;
  width: 100%;
}
.article table tr {
  border-bottom: 1px solid #DDD4CE;
  display: grid;
}
.article table td {
  padding: 10px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.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: 20px;
  }
  .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;
}
@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);
    padding: 20px;
  }
  .article .table-2-mobile td {
    font-weight: 400;
  }
  .article .table-2-mobile td:first-child {
    grid-column: 1/4;
    text-align: center;
    font-weight: 700;
  }
  .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/3;
    grid-row: 3/4;
  }
  .article .table-2-mobile td:last-child {
    grid-column: 3/4;
    grid-row: 3/4;
    text-align: right;
  }
}
.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);
    padding: 20px;
  }
  .article .table-3-mobile td {
    font-weight: 400;
  }
  .article .table-3-mobile td:first-child {
    grid-column: 1/5;
    text-align: center;
    font-weight: 700;
  }
  .article .table-3-mobile td:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .article .table-3-mobile td:nth-child(3) {
    grid-column: 3/5;
    grid-row: 2/3;
    text-align: right;
  }
  .article .table-3-mobile td:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .article .table-3-mobile td:nth-child(5) {
    grid-column: 1/3;
    grid-row: 4/5;
  }
  .article .table-3-mobile td:nth-child(6) {
    grid-column: 3/5;
    grid-row: 3/4;
    text-align: right;
  }
  .article .table-3-mobile td:last-child {
    grid-column: 3/5;
    grid-row: 4/5;
    text-align: right;
  }
}

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