@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');
:root {
  --ff-amiro: 'Arimo', sans-serif;
  --color-primary: #0D0F24;
  --color-link: #41ff0e;
  --color-black: #1F2130;
  --bg-main: #d9e7ed;
  --bg-secondary: #2c9a35;
}

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

a {
  color: inherit;
  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-amiro);
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
body.hidden {
  overflow-y: hidden;
}

p {
  color: var(--color-grey);
}

.container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 15px;
  }
}

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

.article {
  padding-bottom: 30px;
}
@media (max-width: 590px) {
  .article {
    padding-bottom: 30px;
  }
}
.article p {
  margin-bottom: 15px;
}
.article p > a {
  color: var(--color-link);
}
.article p > a:visited {
  color: #12ABEE;
}
.article h1 {
  margin: 30px 0 30px;
  font-size: 47px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  font-family: var(--ff-amiro);
}
@media (max-width: 590px) {
  .article h1 {
    margin: 25px 0 25px;
    font-size: 36px;
    line-height: 52px;
  }
}
.article h2 {
  margin: 30px 0 30px;
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  font-family: var(--ff-amiro);
  text-align: center;
}
@media (max-width: 890px) {
  .article h2 {
    margin: 25px 0 25px;
    font-size: 30px;
    line-height: 45px;
  }
}
.article h3 {
  margin: 25px 0 25px;
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  text-align: center;
  font-family: var(--ff-amiro);
}
@media (max-width: 590px) {
  .article h3 {
    margin: 25px 0 25px;
    font-size: 25px;
    line-height: 35px;
  }
}
.article ol, .article ul {
  background: var(--bg-main);
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 20px auto;
}
@media (max-width: 590px) {
  .article ol, .article ul {
    margin: 25px auto 25px 10px;
  }
}
.article ol li, .article ul li {
  margin-bottom: 15px;
  padding-left: 15px;
}
.article ol li:last-child, .article ul li:last-child {
  margin-bottom: 0;
}
}
@media (max-width: 590px) {
  .article ul {
    margin: 15px 0 50px;
  }
}
.article-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 23px;
  margin-bottom: 70px;
  background: var(--bg-secondary);
}
.article-content:nth-child(2) {
  margin: 70px 0 0;
  padding: 0 0 70px;
  flex-wrap: wrap-reverse;
}
.article-content h3 {
  text-align: left;
  margin: 0 0 15px;
}
@media (max-width: 1280px) {
  .article-content picture {
    margin: 0 auto;
  }
}
@media (max-width: 1280px) {
  .article-content {
    padding: 0 15px 35px;
    margin-bottom: 50px;
  }
  .article-content:nth-child(2) {
    padding: 0 15px 35px;
  }
}
.article-text {
  max-width: 665px;
}
@media (max-width: 1280px) {
  .article-text {
    max-width: 100%;
  }
}
.article button {
  width: 145px;
  padding: 12px 0;
  background: #EEE712;
  box-shadow: 2px 2px 3px rgba(238, 160, 18, 0.58);
  border-radius: 3px;
  color: var(--color-primary);
}
.article ul li {
  background: url(../img/ellipse.svg) no-repeat left;
}
.article ol {
  padding-left: 40px;
}
.article ol li::marker {
  font-weight: 400;
  font-family: var(--ff-amiro);
  font-size: 32px;
  line-height: 45px;
  color: #E7DA11;
  margin-left: 15px;
  border: 1px solid #1F2130;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0 20px;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  text-align: center;
  background: #aafcdc;
  border-width: 1px 0px;
  border-style: solid;
  border-color: #1F2130;
}
.article tbody td {
  padding: 22px 0;
}
.article tbody td:first-child {
  border-right: 1px solid #1F2130;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    border: none;
  }
}
@media (max-width: 590px) {
  .article tbody td {
    word-break: break-all;
  }
}
.article .table-1 tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template: auto/repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .article .table-1 td {
    padding: 20px 0 5px;
  }
  .article .table-1 td:last-child {
    padding: 0 0 25px;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template: auto/repeat(3, 1fr);
  }
}
.article .table-2 td:last-child {
  border-left: 1px solid #1F2130;
}
@media (max-width: 768px) {
  .article .table-2 td {
    padding: 0 10px 10px;
  }
  .article .table-2 td:first-child {
    padding: 10px 0 5px;
  }
  .article .table-2 td:last-child {
    border: none;
  }
}
.article .table-3 {
  margin: 70px 0 0;
}
@media (max-width: 590px) {
  .article .table-3 {
    margin: 50px 0 0;
  }
}
.article .table-3 tr {
  grid-template: auto/repeat(4, 1fr);
}
@media (max-width: 768px) {
  .article .table-3 tr {
    grid-template: auto/repeat(3, 1fr);
  }
}
.article .table-3 td:nth-child(3) {
  border-left: 1px solid #1F2130;
  border-right: 1px solid #1F2130;
}
@media (max-width: 768px) {
  .article .table-3 td {
    padding: 0 10px 10px;
  }
  .article .table-3 td:first-child {
    grid-column: 1/4;
    padding: 10px 0 5px;
  }
  .article .table-3 td:nth-child(3) {
    border: none;
  }
}

.footer {
  padding: 30px 0;
  background: var(--bg-secondary);
}
.footer p {
  color: var(--color-primary);
  text-align: center;
}

.header-top {
  height: 80px;
}
.header-fixed {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 0;
  background: var(--bg-main);
  transition: 0.3s ease;
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 17px 15px;
  }
}
.header-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 890px) {
  .header-wrapper {
    justify-content: space-between;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    width: 40px;
    height: 40px;
    z-index: 5;
    background: url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
.header-logo {
  display: block;
  cursor: pointer;
  font-size: 23px;
  line-height: 25px;
  color: #0D0F24;
  padding: 5px 0;
  text-align: center;
  width: 110px;
  background: #3ecf97;
  font-family: var(--ff-amiro);
  text-transform: uppercase;
  font-weight: 700;
}
.header .nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    gap: 197px;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    background-size: cover;
    padding-top: 125px;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header ul {
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 890px) {
  .header ul {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }
}
.header ul a {
  cursor: pointer;
}
.header ul a:hover {
  color: #1251EE;
}
.header-container {
  display: flex;
  gap: 5px;
}
@media (max-width: 890px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.header button {
  width: 136px;
  padding: 12px 0;
  background: #3ecf97;
  color: #FFF;
  border-radius: 3px;
}
.header button:hover {
  background: rgba(70, 211, 92, 0.6);
  border: 2px solid #3ecf97;
  color: #FAFAFA;
}
.header button:first-child {
  width: 84px;
  background: transparent;
  border: 2px solid #3ecf97;
  color: var(--color-primary);
}
.header button:first-child:hover {
  background: rgba(70, 211, 92, 0.6);
}
.header-bottom {
  padding-top: 20px;
}
@media (max-width: 1280px) {
  .header-bottom {
    padding: 20px 15px 0;
  }
}
@media (max-width: 590px) {
  .header-bottom {
    padding: 10px 15px 0;
  }
}/*# sourceMappingURL=main.css.map */