:root {
  --color-black: #181818;
  --color-white: #fff;
  --color-text: #272626;
  --color-yellow: #eea535;
  --color-bg: #fffef0
}

*,
: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: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 27px;
  margin: 0;
  min-width: 320px;
  position: relative;
  text-rendering: optimizeLegibility
}

img,
picture {
  display: block;
  height: auto;
  max-width: 100%
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:hover {
  color: var(--color-yellow)
}

@media screen and (max-width:992px) {
  body {
    font-size: 15px
  }
}

h1 {
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 30px
}

h2 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 30px
}

h2,
h3,
h4 {
  margin-top: 0
}

h3,
h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1070px
}

.header {
  background: var(--color-yellow)
}

.header .container {
  align-items: center;
  display: flex;
  height: 65px;
  justify-content: space-between
}

.header__burger {
  display: none
}

.header__logo {
  flex-shrink: 0
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0
}

.button,
.header__menu {
  align-items: center;
  display: flex
}

.button {
  color: var(--color-yellow);
  flex-direction: column;
  text-align: center;
  margin: 50px 0;
}

.button img {
  transition: all .3s ease
}

.button:hover {
  color: var(--color-text)
}

.button:hover img {
  opacity: .7
}

.btn {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 16px;
  justify-content: center;
  line-height: 25px
}

.btn:hover {
  color: var(--color-text)
}

.img-cov {
  max-width: 800px;
  margin: 15px auto !important;
  width: 100%;
}

.img-text {
  margin: 0 auto 25px;
  max-width: 1024px
}

.img-text img {
  width: 100%
}

.table {
  margin-bottom: 35px;
  overflow-x: auto
}

.table table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 100%;
  width: auto
}

.table td {
  border: 1px solid;
  padding: 10px
}

.content {
  padding: 60px 0 30px
}

.footer {
  background: var(--color-yellow);
  color: #fffef0;
  padding: 15px 0
}

.page-404 {
  text-align: center
}

@media screen and (max-width:992px) {
  .header__burger {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    height: 30px;
    padding: 2.5px 0;
    width: 30px;
    z-index: 101
  }

  .header__burger span {
    background: #fff;
    border-radius: 30px;
    display: block;
    height: 3px;
    transition: all .3s ease;
    width: 30px
  }

  .header__burger.active span:first-child {
    transform: translateY(4px) rotate(45deg)
  }

  .header__burger.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg)
  }

  .header__burger.active span:nth-child(3) {
    display: none
  }

  .header__menu {
    background: var(--color-yellow);
    display: block;
    height: auto;
    left: 0;
    opacity: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 50px;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 1
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible
  }

  .header__menu a {
    border: 0;
    display: block;
    font-size: 12px;
    padding: 10px 0;
    text-align: center
  }

  .header {
    position: relative;
    z-index: 1000
  }

  .header .container {
    height: 50px
  }

  h1 {
    font-size: 36px;
    line-height: 43px
  }

  h2 {
    font-size: 28px;
    line-height: 36px
  }

  h3,
  h4 {
    font-size: 26px;
    line-height: 34px
  }

  .img-cov img {
    margin: 0 auto
  }

  .img-float {
    float: none;
    margin: 0 auto 20px
  }

  .button{
    margin: 30px 0;
  }

  .img-cov{
    margin: 0 auto 20px;
  }
}