@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  --ff-inter: 'Inter', sans-serif;
  --color-primary: #384F66;
  --color-ul: #A3B5C7;
  --color-btn: #FFFFFF;
  --color-logo: #0EAD2C;
  --color-nav: #444D56;
  --bg-main: #F8F8F8;
  --bg-white: #FFFFFF;
  --bg-header: #E4E4E4;
  --bg-btn1: #2E53FD;
  --bg-btn2: #0EAD2C;
  --bg-table1: #F2F2F2;
  --bg-table2: #EDEDED;
}

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

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

ul {
  list-style: none;
}

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

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

body {
  font-family: var(--ff-inter);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
  
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 34px;
  height: 28px;
  background: url(../img/arrow.svg);
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  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;
}

.article {
  padding-bottom: 50px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 20px 50px;
  }
}
@media (max-width: 500px) {
  .article {
    padding: 0 20px 94px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 30px;
  margin-bottom: 12px;
  line-height: 26px;
}
.article p {
  margin-bottom: 22px;
}
.article h1 {
  margin: 60px 0 40px;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-logo);
  text-align: center;
  
}
@media (max-width: 500px) {
  .article h1 {
    word-wrap: break-word;
  }
}
.article h2 {
  margin: 40px 0;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-logo);
}

.article h3 {
  margin: 30px 0;
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  text-align: left;
  color: var(--color-logo);
}

.article picture {
  display: block;
  margin-bottom: 12px;
}
.article picture img {
  margin: 30px auto;
  border-radius: 20px;
  border: var(--color-ul) 1px solid;
  padding: 15px;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 40px 0 80px;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(odd) {
  background: var(--bg-table1);
}
.article tbody tr:nth-child(even) {
  background: var(--bg-table2);
}
.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  word-break: break-all;
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
.article .table-1 tbody tr {
  grid-template-columns: 220px 1fr 1fr;
}
@media (max-width: 768px) {
  .article .table-1 tbody tr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article .table-2 tr:first-child {
  background: var(--bg-white);
}
.article .table-3 tr {
  grid-template-columns: 284px 1fr;
}
@media (max-width: 768px) {
  .article .table-3 tr {
    grid-template-columns: 150px 1fr;
  }
}
.article .table-3 td:first-child {
  font-weight: 700;
}

.footer {
  padding: 24px 0;
  text-align: center;
}
.footer p {
  color: var(--color-ul);
  font-size: 12px;
  line-height: 18px;
}
.footer span {
  display: block;
}
@media (max-width: 500px) {
  .footer {
    padding: 18px 0;
  }
}

.header {
  height: 70px;
}
@media (max-width: 500px) {
  .header {
    height: 62px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 20px 12px 30px;
  transition: 0.3s ease;
  background: var(--bg-header);
}
@media (max-width: 1440px) {
  .header-fixed {
    padding: 12px 20px;
  }
}
@media (max-width: 500px) {
  .header-fixed {
    padding: 8px 20px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper.container {
  max-width: 1390px;
  margin: 0 auto;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: relative;
    z-index: 5;
    width: 46px;
    height: 46px;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
.header-logo {
  cursor: pointer;
  font-size: 24px;
  line-height: 33px;
  font-weight: 800;
  color: var(--color-logo);
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-header);
    padding-top: 122px;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 500px) {
  .header-container {
    gap: 8px;
  }
}
.header button {
  width: 150px;
  font-weight: 400;
  line-height: 20px;
  padding: 13px 0;
  background: var(--bg-btn1);
  color: var(--color-btn);
  border-radius: 32px;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .header button {
    width: 95px;
    font-size: 11px;
  }
}
.header button:first-child {
  width: 108px;
  background: var(--bg-btn2);
}
@media (max-width: 450px) {
  .header button:first-child {
    width: 50px;
  }
}
.header ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media (max-width: 890px) {
  .header ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.header ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-nav);
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header ul li {
    width: 100%;
    padding: 20px 0 20px 80px;
    max-width: 890px;
  }
  .header ul li:nth-child(odd) {
    background: var(--bg-table1);
  }
  .header ul li:nth-child(even) {
    background: var(--bg-table2);
  }
}

.hero {
  padding-top: 70px;
}
@media (max-width: 1280px) {
  .hero {
    padding: 70px 20px 0;
  }
}
@media (max-width: 500px) {
  .hero {
    padding: 0 20px;
  }
}
.hero picture {
  display: block;
  margin-bottom: 70px;
}
@media (max-width: 500px) {
  .hero picture {
    margin-bottom: 41px;
  }
}
.hero picture img {
  border-radius: 8px;
}
.hero ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero ul li {
  background: var(--bg-white);
  color: var(--color-ul);
  border: 1px solid #A3B5C7;
  border-radius: 32px;
  padding: 16px;
  transition: 0.3s linear;
}
.hero ul li:hover {
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.14);
}
@media (max-width: 500px) {
  .hero ul li {
    width: 100%;
    text-align: center;
    padding: 10px;
    line-height: 20px;
  }
}
.hero ul a {
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 390px) {
  .hero ul a {
    line-height: 20px;
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */