.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
}
.header__wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-gap: 15px;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 990px) {
  .header__wrap {
    grid-template-columns: 47px 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 500px) {
  .header__wrap {
    grid-template-columns: 40px 1fr;
  }
}
.header__wrap-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header__wrap-2 .header__call {
  display: none;
}
@media (max-width: 990px) {
  .header__wrap-2 .header__call {
    display: flex;
  }
}
@media (max-width: 990px) {
  .header__wrap-2 .header__nav {
    display: none;
  }
}
.header__left {
  display: flex;
  align-items: center;
}
.header__call {
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 25px;
}
@media (max-width: 990px) {
  .header__call {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .header__call svg {
    height: 20px;
    width: 20px;
  }
}
.header__nav {
  margin-right: 25px;
}
@media (max-width: 990px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header__nav li {
  margin-right: 10px;
}
.header__nav a {
  font-size: 16px;
  line-height: 21px;
  display: block;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}
.header__nav a::after {
  position: absolute;
  content: "";
  bottom: 0;
  display: inline-block;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  transition: width 0.3s linear;
}
.header__prize {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  width: auto;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 990px) {
  .header__prize {
    display: none;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__logo {
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .header__logo {
    justify-content: flex-end;
  }
}
.header__logo img {
  max-width: 100%;
  height: 75px;
  width: 100%;
  box-sizing: border-box;
  object-fit: contain;
}
@media (max-width: 990px) {
  .header__logo img {
    height: 50px;
    width: auto;
  }
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .header__right {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
.header__right a, .header__right button {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 400;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}
@media (max-width: 500px) {
  .header__right a, .header__right button {
    max-width: 100%;
    margin: 0;
  }
}

main {
  margin-top: 70px;
}
@media (max-width: 990px) {
  main {
    margin-top: 130px;
  }
}

.header-menu {
  width: 320px;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  padding: 15px;
  overflow-x: auto;
  z-index: 999;
  display: none;
}
.header-menu__close {
  margin-left: auto;
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
}
.header-menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.header-menu__logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 70px;
}
.header-menu__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-bottom: 35px;
  padding-bottom: 35px;
}
.header-menu__btn a, .header-menu__btn button {
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}
.header-menu__category-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}
.header-menu__category {
  margin-bottom: 35px;
  padding-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}
.header-menu__category a, .header-menu__category button {
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: auto;
  width: auto;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
}
.header-menu__category a img, .header-menu__category button img {
  margin: 0 auto 5px auto;
  display: block;
}
.header-menu__nav {
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding-bottom: 35px;
}
.header-menu__nav img {
  object-fit: contain;
  margin-right: 10px;
}
.header-menu__nav a, .header-menu__nav button {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
.header-menu__app {
  margin-bottom: 35px;
  display: grid;
  padding-bottom: 35px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 20px;
}
.header-menu__app a, .header-menu__app button {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.header-menu__app-img {
  padding: 15px;
  border-radius: 6px;
  margin: 0 auto 10px auto;
  max-width: 65px;
}
.header-menu__link {
  margin-bottom: 45px;
}
.header-menu__link a, .header-menu__link button {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.header-menu__link a::after, .header-menu__link button::after {
  position: absolute;
  content: "";
  bottom: 0;
  display: inline-block;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  transition: width 0.3s linear;
}
.header-menu__link a:last-child {
  margin-bottom: 0;
}

.header-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0.85;
  bottom: 0;
  display: none;
  z-index: 99;
}

.header-menu-active {
  display: block;
}

.update-block {
  display: flex;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.author-block {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.author-block img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}

.author {
  margin-bottom: 20px;
}

/*# sourceMappingURL=header.css.map */
