:root {
  --color-black: #1e1e1e;
  --color-white: #fff;
  --color-text: #fff;
  --color-bg: #5e5e5e
}

*,
: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-black);
  color: var(--color-text);
  font-family: Roboto, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 23px;
  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: #ff0
}

h1 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center
}

h2,
h3 {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 0
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1200px
}

.header {
  padding: 20px 0
}

.header .container {
  align-items: center;
  display: flex;
  justify-content: space-between
}

.header__btn {
  align-items: center;
  display: flex;
  gap: 15px
}

.header__burger {
  display: none
}

.header__logo {
  flex-shrink: 0
}

.header__logo img {
  width: 90px
}

.btn {
  align-items: center;
  border-radius: 100px;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 12px 40px;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content
}

.btn-green {
  background: linear-gradient(180deg, #489400, hsla(0, 0%, 100%, 0));
  background-color: #ff0;
  box-shadow: 0 0 10px 0 rgba(225, 255, 0, .5);
  color: #fff
}

.btn-green:hover {
  background-color: #489400;
  color: #fff
}

.btn-blue {
  background: linear-gradient(180deg, #004f94, hsla(0, 0%, 100%, 0));
  background-color: #00fff2;
  box-shadow: 0 0 10px 0 rgba(0, 225, 255, .5);
  color: #fff
}

.btn-blue:hover {
  background-color: #004f94;
  color: #fff
}

.img-text img {
  border-radius: 20px;
  width: 100%
}

.table-responsive {
  margin-bottom: 25px;
  overflow-x: auto;
  width: 100%
}

.table-responsive table {
  border-collapse: collapse;
  width: 100%
}

.table-responsive table td {
  border: 1px solid var(--color-text);
  padding: 10px
}

.content {
  padding-bottom: 20px
}

.footer {
  background: var(--color-bg);
  padding: 20px 0
}

.footer__menu {
  border-bottom: 1px solid #303036;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 20px
}

.footer__bottom {
  flex-wrap: wrap;
  justify-content: space-between
}

.footer__bottom,
.footer__info {
  align-items: center;
  display: flex;
  gap: 60px
}

.footer__info span {
  max-width: 440px
}

.title {
  color: #ff4141;
  font-size: 18px;
  margin-bottom: 25px;
  text-align: center
}

.title__image {
  margin: 0 auto 50px;
  width: 400px
}

.title__info {
  margin: 0 auto 40px;
  width: 400px
}

.title__body {
  background: #fff;
  margin-top: -1px;
  padding: 15px 15px 30px;
  text-align: center
}

.title__body span {
  color: #505050;
  display: block;
  font-size: 14px;
  margin: 15px 0
}

.title__body a {
  display: flex;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content
}

.not-found{
  padding: 100px 0;
  text-align: left;
}

.not-found h1 {
  font-size: 50px;
}

.not-found p{
  text-align: center;
}

.not-found .btn {
  margin: 0 auto;
}

@media screen and (max-width:992px) {
  .header {
    padding: 20px 0;
    position: relative;
    z-index: 1000
  }

  .header__logo {
    display: none
  }

  .header__btn {
    justify-content: center;
    width: 100%
  }

  .header__btn .btn:last-child {
    display: none
  }

  .title__image {
    width: 100%
  }

  .title__image img {
    margin: 0 auto;
    max-height: 230px
  }

  .title__info {
    max-width: 100%
  }

  .footer__menu {
    gap: 5px 30px
  }

  .footer__bottom {
    gap: 20px
  }

  .footer__bottom,
  .footer__info {
    align-items: center;
    flex-direction: column-reverse
  }

  .footer__info {
    gap: 30px
  }

  .footer__info span {
    max-width: 100%;
    text-align: center
  }
}