:root {
  --color-black: #1e2220;
  --color-white: #fff;
  --color-green: #49b17a;
  --color-bg: #0e3e29
}

*,
:after,
:before {
  box-sizing: inherit
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth
}

body,
html {
  max-width: 100%
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #fff;
  font-family: Open Sans, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  min-width: 320px;
  position: relative;
  text-rendering: optimizeLegibility
}

img,
picture {
  display: block;
  height: auto;
  max-width: 100%
}

a {
  color: #fff;
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:hover {
  color: var(--color-green)
}

h1 {
  font-size: 38px
}

h1,
h2 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center
}

h2 {
  font-size: 32px
}

h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 0
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1295px
}

.header {
  padding: 20px
}

.header .container {
  align-items: center;
  display: flex;
  justify-content: space-between
}

.header__logo {
  flex-shrink: 0;
  width: 120px
}

.header__btn {
  display: flex;
  gap: 20px
}

.content {
  background: var(--color-bg);
  border-radius: 10px;
  margin-top: 30px;
  padding: 50px 30px
}

.btn {
  align-items: center;
  border-radius: 150px;
  display: flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1;
  padding: 12px 45px
}

.btn-black {
  background-color: var(--color-black);
  color: #fff
}

.btn-black:hover,
.btn-green {
  background: var(--color-green);
  color: #fff
}

.btn-green:hover {
  background: var(--color-black);
  color: #fff
}

.img-text {
  margin: 0 auto 25px;
  max-width: 100%
}

.img-text img {
  border-radius: 10px;
  width: 100%
}

.img-ver {
  max-width: 500px
}

.table {
  margin-bottom: 35px;
  overflow-x: auto
}

.table table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 100%;
  width: auto
}

.table td,
.table th {
  font-weight: 400;
  padding: 10px 15px
}

.table td {
  border: 1px solid #fff
}

.title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px
}

.footer,
.title {
  text-align: center
}

.footer {
  background: #000;
  font-size: 14px;
  margin-top: 30px;
  padding: 30px 0
}

.page-404 {
  text-align: center
}

.page-404 .btn {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content
}

@media screen and (max-width:992px) {
  .header {
    padding: 20px 0
  }

  .header .container {
    flex-direction: column;
    gap: 10px
  }

  .content {
    margin-top: 25px;
    padding: 40px 25px
  }

  .title {
    font-size: 24px
  }

  h1 {
    font-size: 30px
  }

  h2,
  h3 {
    font-size: 24px
  }

  .footer {
    margin-top: 25px
  }
}