:root {
  --color-black: #080a30;
  --color-white: #fff;
  --color-blue: #507eff
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 15px
}

.header {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 15px 0
}

.header__logo {
  margin-bottom: 15px;
  width: 190px
}

.header__menu {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0
}

.header__menu a {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px
}

.header__menu a.active,
.header__menu a:hover {
  color: #507eff
}

.header__burger {
  display: none
}

.content {
  padding-bottom: 100px;
  padding-top: 100px
}

.content .btn {
  margin: 0 auto 50px
}

h1 {
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 50px;
  margin-top: 0;
  text-align: center
}

h2 {
  font-size: 33px;
  line-height: 42px
}

h2,
h3 {
  margin-bottom: 40px;
  margin-top: 50px;
  text-align: center
}

h3 {
  font-size: 28px;
  line-height: 37px
}

p {
  margin-bottom: 20px;
  margin-top: 0
}

.btn {
  align-items: center;
  border-radius: 150px;
  display: flex;
  font-size: 15px;
  justify-content: center;
  line-height: 21px;
  padding: 20px 80px;
  text-align: center;
  width: -moz-max-content;
  width: max-content
}

.btn-blue {
  background: #296bff;
  box-shadow: 0 0 25px 0 rgba(32, 72, 191, .6);
  color: #fff
}

.btn-blue:hover {
  box-shadow: none;
  color: #fff
}

.img-text {
  margin-bottom: 25px
}

.img-text img {
  margin: 0 auto
}

.table {
  margin-bottom: 20px;
  overflow-x: auto;
  width: 100%
}

.table table {
  border-collapse: collapse;
  width: 100%
}

.table td {
  border-bottom: 1px solid #507eff;
  padding: 10px
}

.footer {
  padding: 70px 0 90px
}

.footer,
.page-404 {
  text-align: center
}

.img-small {
  margin: 0 auto 20px;
  width: 200px
}

@media screen and (max-width:992px) {
  .header {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    position: relative
  }

  .header__logo {
    margin: 0
  }

  .header__menu {
    background: var(--color-black);
    display: block;
    left: 0;
    opacity: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 70px;
    transition: all .3s ease;
    visibility: hidden
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible
  }

  .header__menu a {
    display: block;
    padding: 5px 0
  }

  .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 span:nth-child(3) {
    width: 50%
  }

  .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
  }

  .content {
    padding-bottom: 65px;
    padding-top: 90px
  }

  h1 {
    font-size: 33px;
    line-height: 40px;
    margin-bottom: 35px
  }

  h2 {
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 30px
  }

  h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px
  }

  .footer {
    padding: 40px 15px 60px
  }
}