:root {
  --color-black: #001021;
  --color-white: #fff;
  --color-orange: #f70;
  --color-yellow: #faab00;
  --color-bg: #01203a;
  --color-blue: #005096
}

*,
: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: #fff;
  font-family: Arial, -apple-system, sans-serif;
  font-size: 19px;
  line-height: 24px;
  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-yellow)
}

h1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 20px
}

h2,
h3 {
  margin-top: 0
}

h3 {
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 15px
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1220px
}

.header {
  padding: 15px 15px 0
}

.header .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.header__logo {
  flex-shrink: 0;
  max-width: 50%;
  width: 500px
}

.header__btn {
  display: flex;
  gap: 20px
}

.header__burger {
  display: none
}

.header__menu {
  background: var(--color-orange);
  border-radius: 4px;
  border-top: 1px solid #00204c;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 15px 0 0;
  padding: 0 12px;
  width: 100%
}

.header__menu a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 13px;
  text-transform: uppercase
}

.header__menu a:hover {
  background: #fff;
  color: #005096
}

.intro {
  border-bottom: 1px solid var(--color-orange);
  padding: 20px 0
}

.content {
  background: var(--color-bg);
  padding: 50px 40px
}

.content .btn {
  margin: 0 auto 25px
}

.content p {
  margin-bottom: 25px;
  margin-top: 0
}

.btn {
  align-items: center;
  border-radius: 4px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 5px;
  justify-content: center;
  line-height: 1;
  padding: 15px;
  text-transform: uppercase
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: #fff
}

.btn-yellow:hover {
  background: var(--color-orange);
  color: #fff
}

.img-text {
  margin: 0 auto 25px;
  max-width: 465px
}

.img-text img {
  border-radius: 4px;
  margin: 0 auto;
  width: auto
}

.img-ver {
  max-width: 500px
}

.table {
  margin-bottom: 25px;
  overflow-x: auto
}

.table table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 100%;
  width: auto
}

.table td,
.table th {
  font-weight: 400;
  padding: 3px 25px
}

.table tr:nth-child(odd) td {
  background: #001021
}

.table tr:nth-child(2n) td {
  background: #003266
}

.footer {
  font-size: 12px;
  line-height: 15px;
  padding: 30px 0;
  text-transform: uppercase
}

.footer .container {
  padding: 0 55px
}

.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: 45px 0;
    position: relative;
    z-index: 100
  }

  .header__btn {
    display: none
  }

  .header__menu {
    background: var(--color-black);
    border-radius: 0;
    display: block;
    height: auto;
    left: 0;
    opacity: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 105px;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 1
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible
  }

  .header__menu a {
    padding: 10px 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.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__logo {
    width: 185px
  }

  .intro {
    border-top: 1px solid #043d7b
  }

  .container-content {
    padding: 0
  }

  .content {
    padding: 50px 20px
  }

  .footer {
    text-align: center
  }

  .footer .container {
    padding: 0 20px
  }

  .img-text {
    max-width: 100%
  }

  h2,
  h3 {
    word-wrap: break-word;
    line-height: 1
  }

  h3 {
    font-size: 32px
  }
}