@import url("https://fonts.googleapis.com/css2?family=Arimo&family=Inter+Tight:wght@400;500;700&family=Oxygen:wght@400;700&family=Raleway&display=swap");
:root {
  --ff-inter: "Inter Tight", sans-serif;
  --ff-oxygen: "Oxygen", sans-serif;
  --ff-raleway: "Raleway", sans-serif;
  --ff-arimo: "Arimo", sans-serif;
  --ff-roboto-mono:
  --color-primary: #010001;
  --color-white: #fff;
  --bg-main: #33bf6a;
  --bg-black: #40403f;
  --bg-white: #fff;
}

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

ul {
  list-style: none;
}

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

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

picture img {
  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: 1;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}
@media (max-width: 590px) {
  body {
    font-family: var(--ff-oxygen);
  }
}
body.hidden {
  overflow-y: hidden;
}

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

main {
  background: url(../img/Group\ 17.png) no-repeat right 5% top 95%, url(../img/group20.png) no-repeat left 35% top 1.5%, url(../img/yellow-circle.png) no-repeat right top 12%, url(../img/green-circle.png) no-repeat left top 50%;
}
@media (max-width: 1240px) {
  main {
    background: transparent;
  }
}
@media (max-width: 390px) {
  main {
    background: url(../img/yellow-small.png) no-repeat right top 37%, url(../img/green-small.png) no-repeat left top 59%, url(../img/line-footer.png) no-repeat center bottom 1%;
  }
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #343b7a, #352f2f) 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: 2;
}

.header {
  height: 76px;
}
@media (max-width: 590px) {
  .header {
    height: 254px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 0;
  transition: 0.3s ease;
  background: var(--bg-black);
}
@media (max-width: 590px) {
  .header-fixed {
    padding: 0 0 26px;
    background-color: #40403f;
  }
}
@media (max-width: 390px) {
  .header-fixed {
    background: url(../img/group-mini.png) no-repeat top 40% center var(--bg-main);
  }
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1280px) {
  .header-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 590px) {
  .header-wrap {
    flex-direction: column;
  }
}
.header-block {
  display: flex;
  align-items: center;
  gap: 143px;
}
.header .burger {
  display: none;
}
@media (max-width: 890px) {
  .header .burger {
    display: flex;
    width: 40px;
    height: 40px;
    background: url(../img/burger.svg) no-repeat center;
    position: relative;
    z-index: 5;
  }
  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}
@media (max-width: 590px) {
  .header .burger {
    position: absolute;
    top: 30px;
    right: 15px;
  }
}
.header-logo {
  cursor: pointer;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 590px) {
  .header-logo {
    position: absolute;
    top: 30px;
    left: 15px;
    font-family: var(--ff-raleway);
  }
}
@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: url(../img/line-nav.png) no-repeat center bottom 11%, var(--bg-main);
    background-size: contain;
    font-family: var(--ff-inter);
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 890px) {
  .header .menu {

    gap: 65px;
    align-items: center;
    padding: 109px 15px 0;
  }
}

.nav {
  display: flex;
  gap: 10px;
}
.header .menu .item {
  font-size: 17px;
  line-height: 25px;
  font-weight: 500;
  cursor: pointer;
;
}
.header .menu .item:first-child {
  color: var(--color-white);
}
@media (max-width: 890px) {
  .header .menu .item {
    width: 100%;
    max-width: 360px;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
  }
  .header .menu .item:first-child {
    background: var(--bg-white);
    color: var(--color-primary);
    box-shadow: 2px 2px 0px #000000;
    border-radius: 36px;
    border: 1px solid #1E1F23;
  }
}
.header-container {
  display: flex;
  gap: 13px;
  font-family: var(--ff-inter);
}
@media (max-width: 890px) {
  .header-container {
    align-items: center;
    gap: 15px;
  }
}
@media (max-width: 590px) {
  .header-container {
    flex-direction: column;
    margin-top: 80px;
  }
}
@media (max-width: 390px) {
  .header-container {
    width: 100%;
  }
}
.header-btn {
  border-radius: 36px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  width: 146px;
  padding: 10px 0;
  background: var(--color-white);
  border: 1px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}
.header-btn:first-child {
  width: 94px;
  box-shadow: none;
  color: #000;
}
.header-btn:first-child:hover {
  background: #464646;
  box-shadow: 2px 2px 0px #000000;
}
@media (max-width: 590px) {
  .header-btn:first-child {
    width: 360px;
  }
}
@media (max-width: 390px) {
  .header-btn:first-child {
    width: 100%;
  }
}
.header-btn:hover {
  background: #5A5A5A;
  color: var(--color-white);
}
@media (max-width: 590px) {
  .header-btn {
    width: 360px;
  }
}
@media (max-width: 390px) {
  .header-btn {
    width: 100%;
  }
}

.hero-block {
  padding-top: 60px;
}
@media (max-width: 1240px) {
  .hero-block {
    padding: 25px 15px 0;
  }
}
@media (max-width: 590px) {
  .hero-block {
    padding: 0 15px;
  }
}
.hero-block picture img {
  border-radius: 16px;
}
@media (max-width: 590px) {
  .hero-block picture img {
    border-radius: 6px;
  }
}

.article {
  padding-bottom: 80px;
}
@media (max-width: 1300px) {
  .article {
    padding: 0 15px 40px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.article h1 {
  margin: 32px 0 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
}
.article p > a {
  color: var(--color-white);
}
.article p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.article p:last-of-type {
  margin-bottom: 0;
  margin-top: 20px;
}
.article li {
  font-size: 16px;
  line-height: 34px;
}
.article h3 + p {
  margin-bottom: 15px;
}
.article picture + p {
  margin-top: 15px;
}
.article picture > img {
  border-radius: 16px;
}
@media (max-width: 450px) {
  .article picture > img {
    border-radius: 6px;
  }
}
.article h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  margin: 30px 0;
  text-align: center;
}
.article h3 {
  font-weight: 700;
  font-size: 27px;
  line-height: 40px;
  margin: 25px 0;
  text-align: center;
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 50px 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
  padding: 20px 0;
}
.article tbody tr:nth-child(odd) {
  border-radius: 10px;
  background: var(--bg-white);
  box-shadow: 8px 8px 0px #000000;
}
.article tbody tr:nth-child(even) {
  margin: 15px 0;
}
@media (max-width: 768px) {
  .article tbody tr:nth-child(even) {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .article tbody tr {
    padding: 15px;
  }
}
.article tbody td {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .article tbody td {
    font-size: 15px;
    line-height: 18px;
    padding: 0;
  }
}
.article tbody td:first-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 590px) {
  .article tbody td:first-child {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
.article .tab-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
@media (max-width: 768px) {
  .article .tab-2 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-2 tbody tr td {
    grid-column: 1/3;
  }
  .article .tab-2 tbody tr td:first-child {
    grid-column: 1/5;
    margin-bottom: 15px;
  }
  .article .tab-2 tbody tr td:last-child {
    grid-column: 3/5;
  }
}
.article .tab-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}
@media (max-width: 768px) {
  .article .tab-3 tbody tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(1, 1fr);
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-3 tbody tr td:first-child {
    grid-column: 1/3;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .article .tab-1 tr {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
  }
  .article .tab-1 tr td:first-child {
    grid-column: 1/4;
    margin-bottom: 15px;
  }
}

.footer {
  padding: 30px 0;
  background: var(--bg-black);
}
.footer p {
  font-family: var(--ff-arimo);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  opacity: 0.5;
  color: var(--color-white);
}
@media (max-width: 590px) {
  .footer p {
    font-family: var(--ff-oxygen);
    line-height: 15px;
  }
}/*# sourceMappingURL=main.css.map */