* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
button,
textarea {
  border: 0;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::-webkit-scrollbar {
  height: 13px;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #174572;
  border: 2px solid #080b10;
  border-radius: 0;
}

::-webkit-scrollbar-track {
  background: #080b10;
  border-radius: 0;
  box-shadow: inset -10px -10px 0 -30px #f0f0f0;
}

body {
  background: #080b10;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.container {
  width: calc(100% - 64px);
  margin: 0 auto;
}

header {
  background-color: #022244;
  position: sticky;
  z-index: 999;
  height: 64px;
  top: 0;
}
header .container {
  height: 100%;
}

.header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004180;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.header__menu {
  display: flex;
  gap: 12px;
  margin-left: 80px;
}
.header__menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #799fc4;
}

.header__right {
  gap: 8px;
  display: flex;
}
.header__right a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ecb928, #ef7a0e);
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  padding: 13px 32px;
}
.header__right a:nth-child(2) {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #ecb928;
}

aside {
  background: #001529;
  height: calc(100vh - 64px);
  left: 0;
  padding: 8px 8px 24px;
  position: fixed;
  top: 64px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 240px;
  z-index: 107;
}
aside::-webkit-scrollbar {
  display: none;
}

.aside__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
  padding: 12px 0;
}
.aside__btns a {
  background: #022244;
  border: 1px solid #01b4ef;
  border-radius: 8px;
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: end;
  overflow: hidden;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.aside__btns a img {
  position: absolute;
  inset: 50% 0 0;
  height: 100%;
  transform: translateY(-50%);
}
.aside__btns a span {
  position: relative;
  z-index: 2;
}
.aside__btns a:nth-child(1) {
  width: calc(50% - 2px);
}
.aside__btns a:nth-child(2) {
  width: calc(50% - 2px);
}
.aside__btns a:nth-child(3) {
  width: 100%;
  min-width: 100%;
  justify-content: center;
}

.aside__list {
  display: flex;
  flex-direction: column;
}

.aside__item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  margin-top: 8px;
  padding-top: 8px;
}
.aside__item:nth-child(1) a:nth-child(2) span:nth-child(1) {
  mask: url("../images/m2.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m2.svg") no-repeat center/contain;
}
.aside__item:nth-child(1) a:nth-child(3) span:nth-child(1) {
  mask: url("../images/m3.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m3.svg") no-repeat center/contain;
}
.aside__item:nth-child(1) a:nth-child(4) span:nth-child(1) {
  mask: url("../images/m4.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m4.svg") no-repeat center/contain;
}
.aside__item:nth-child(2) a:nth-child(1) span:nth-child(1) {
  mask: url("../images/m5.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m5.svg") no-repeat center/contain;
}
.aside__item:nth-child(2) a:nth-child(2) span:nth-child(1) {
  mask: url("../images/m6.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m6.svg") no-repeat center/contain;
}
.aside__item:nth-child(2) a:nth-child(3) span:nth-child(1) {
  mask: url("../images/m7.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m7.svg") no-repeat center/contain;
}
.aside__item:nth-child(3) a:nth-child(1) span:nth-child(1) {
  mask: url("../images/m8.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m8.svg") no-repeat center/contain;
}
.aside__item:nth-child(3) a:nth-child(2) span:nth-child(1) {
  mask: url("../images/m9.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m9.svg") no-repeat center/contain;
}
.aside__item:nth-child(3) a:nth-child(3) span:nth-child(1) {
  mask: url("../images/m10.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m10.svg") no-repeat center/contain;
}
.aside__item a {
  align-items: center;
  display: flex;
  color: #799fc4;
  font-weight: 500;
  font-size: 14px;
  gap: 8px;
  height: 40px;
  position: relative;
  width: 100%;
}
.aside__item a img:nth-child(3) {
  margin-left: auto;
}
.aside__item a span:nth-child(1) {
  mask: url("../images/m1.svg") no-repeat center/contain;
  -webkit-mask: url("../images/m1.svg") no-repeat center/contain;
  width: 24px;
  height: 24px;
  background: #799fc4;
}
.aside__item a span:nth-child(3) {
  margin-left: auto;
  background: #81baff;
  border-radius: 6px;
  color: #101214;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  padding: 2px 3px;
}

main,
footer {
  margin-left: 240px;
}

.banners {
  margin-top: 32px;
}

.banners__list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
}
.banners__list::-webkit-scrollbar {
  display: none;
}

.banners__item {
  width: 417px;
  min-width: 417px;
  position: relative;
  aspect-ratio: 417/241;
  border: 0.5px solid rgba(0, 0, 0, 0);
  border-radius: 16px;
  padding: 20px 24px;
}
.banners__item:nth-child(2) .banners__info p:nth-child(1) span {
  color: rgb(66, 255, 32);
}
.banners__item:nth-child(2) .banners__info p:nth-child(2) span {
  color: rgb(66, 255, 32);
}
.banners__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.banners__item:before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.6));
  border-radius: inherit;
  content: "";
  height: calc(100% + 2px);
  left: -1px;
  position: absolute;
  top: -1px;
  width: calc(100% + 2px);
  z-index: -1;
}

.banners__info {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.banners__info p:nth-child(1) {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  max-width: 242px;
  position: relative;
  text-transform: uppercase;
}
.banners__info p:nth-child(1) span {
  color: rgb(0, 255, 238);
}
.banners__info p:nth-child(2) {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  max-width: 178px;
}
.banners__info p:nth-child(2) span {
  color: rgb(0, 255, 238);
}
.banners__info a {
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_m.025f4d6.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: calc(100% - 30px) 100%;
  background-size: calc(100% - 22px) 100%;
  color: #674632;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  position: relative;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  border-radius: 8px;
}
.banners__info a:before {
  background-size: 22px 100%;
  width: 22px;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_l.37a6bc8.png);
  background-position: 0;
  left: 0;
}
.banners__info a::after {
  background-size: 22px 100%;
  width: 22px;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_r.76d6b64.png);
  background-position: 100%;
  right: 0;
}

.dots {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.dots a {
  background-color: #799fc4;
  border-radius: 4px;
  height: 4px;
  width: 8px;
}
.dots a:nth-child(1) {
  width: 32px;
}

.search {
  margin-top: 40px;
}

.top-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-title {
  font-size: 24px;
  font-weight: 600;
  gap: 4px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
}
.top-title:before {
  background: #ecb928;
  border-radius: 4px;
  content: "";
  height: 28px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.search__row {
  margin-top: 80px;
  align-items: center;
  display: flex;
  background: #022244;
  border-radius: 8px;
  gap: 12px;
  width: 328px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
  font-weight: 500;
}

.cards {
  margin-top: 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-nav p {
  color: #ecb928;
  font-size: 14px;
  font-weight: 400;
}

.top-nav__arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cards__list {
  margin-top: 24px;
  gap: 16px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.cards__list::-webkit-scrollbar {
  display: none;
}

.cards__item {
  width: 260px;
  min-width: 260px;
  aspect-ratio: 260/320;
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 0 16px 12px;
}
.cards__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.cards__item__top {
  position: absolute;
  backdrop-filter: blur(2px);
  background: rgba(39, 21, 0, 0.6);
  border-radius: 0 0 6px 6px;
  color: #ecb928;
  font-size: 12px;
  font-weight: 500;
  height: 16px;
  left: 50%;
  overflow: hidden;
  padding: 0 8px;
  text-align: center;
  top: 0;
  transform: translateX(-50%);
}

.cards__item__info {
  position: relative;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cards__item__info p:nth-child(1) {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.cards__item__info p:nth-child(2) {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}
.cards__item__info p:last-child {
  margin-top: 10px;
  color: #674632;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0 30px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_m.025f4d6.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: calc(100% - 30px) 100%;
}
.cards__item__info p:last-child:before {
  background-repeat: no-repeat;
  background-size: 30px 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_l.37a6bc8.png);
  background-position: 0;
  left: 0;
}
.cards__item__info p:last-child:after {
  background-repeat: no-repeat;
  background-size: 30px 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_r.76d6b64.png);
  background-position: 100%;
  right: 0;
}

.content {
  padding: 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content__item {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.content__item a {
  text-decoration: underline;
}
.content__item strong,
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 900;
}
.content__item h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content__item h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.content__item h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.content__item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.content__item p,
.content__item .content__table,
.content__item ul,
.content__item ol {
  margin-bottom: 20px;
}
.content__item ol,
.content__item ul {
  padding-left: 50px;
  list-style: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.content__item ul {
  list-style: disc;
}
.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child,
.content__item ul:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table td {
  padding: 12px;
  border: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}
.content__table tr:first-child td {
  text-align: center;
  font-weight: 900;
}

.table-left-bold td:first-child {
  font-weight: 900;
}

.table-not-head tr:first-child td {
  text-align: left;
  font-weight: 400;
}

.table-color-head tr:first-child td {
  font-weight: 400;
  background: linear-gradient(180deg, #ecb928, #ef7a0e);
}

.mobile-menu {
  display: none;
}

footer {
  margin-top: 40px;
  padding-bottom: 40px;
}

.footer {
  width: 701px;
}
.footer p:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer p:nth-child(2) {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
  margin: 8px 0 20px;
}
.footer img {
  width: 82px;
}

.vip-banner {
  margin-top: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  height: 350px;
  outline: 1px solid rgba(255, 255, 255, 0.1019607843);
  overflow: hidden;
  padding: 30px 56px;
  position: relative;
  background: url(../images/vip-banner-desktop.3439a9c.webp) no-repeat top;
  background-size: cover;
  border-radius: 14px;
}

.vip-banner__info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vip-banner__info p:nth-child(1) {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
}
.vip-banner__info p:nth-child(1) span {
  color: #ecb928;
}
.vip-banner__info p:nth-child(2) {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.vip-banner__info a {
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_m.025f4d6.png);
  background-position: 50%;
  background-repeat: no-repeat;
  text-transform: uppercase;
  background-size: calc(100% - 30px) 100%;
  color: #674632;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  width: -moz-max-content;
  width: max-content;
  padding: 18px 30px;
  position: relative;
  text-align: center;
}
.vip-banner__info a:before {
  background-repeat: no-repeat;
  background-size: 30px 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_l.37a6bc8.png);
  background-position: 0;
  left: 0;
}
.vip-banner__info a::after {
  background-repeat: no-repeat;
  background-size: 30px 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../images/button_r.76d6b64.png);
  background-position: 100%;
  right: 0;
}

@media (max-width: 1024px) {
  aside {
    display: none;
  }
  main,
  footer {
    margin-left: 0px;
  }
  .burger {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .footer {
    width: 100%;
  }
  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 75px;
    width: 100%;
    left: 0;
    bottom: 0;
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 21, 41, 0.8);
  }
  .mobile-menu a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #799fc4;
    font-size: 12px;
    font-weight: 400;
  }
  .mobile-menu a:nth-child(2) span:nth-child(1) {
    -webkit-mask: url(../images/mm2.svg) no-repeat center/contain;
            mask: url(../images/mm2.svg) no-repeat center/contain;
  }
  .mobile-menu a:nth-child(3) span:nth-child(1) {
    -webkit-mask: url(../images/mm3.svg) no-repeat center/contain;
            mask: url(../images/mm3.svg) no-repeat center/contain;
  }
  .mobile-menu a:nth-child(4) span:nth-child(1) {
    -webkit-mask: url(../images/mm4.svg) no-repeat center/contain;
            mask: url(../images/mm4.svg) no-repeat center/contain;
  }
  .mobile-menu a span:nth-child(1) {
    -webkit-mask: url(../images/mm1.svg) no-repeat center/contain;
            mask: url(../images/mm1.svg) no-repeat center/contain;
    background: #799fc4;
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  header {
    height: 56px;
  }
  .container {
    width: calc(100% - 24px);
  }
  .content__table {
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100% + 12px);
    padding-right: 12px;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .logo {
    display: flex;
    width: 116px;
    height: 26px;
  }
  .logo img {
    width: 100%;
    height: 100%;
  }
  .header__right {
    gap: 4px;
  }
  .header__right a {
    padding: 0 16px;
    height: 34px;
    font-weight: 700;
  }
  .banners {
    margin-top: 20px;
  }
  .banners__item {
    width: 298px;
    min-width: 298px;
    aspect-ratio: 298/175;
    padding: 14px;
  }
  .banners__info p:nth-child(1) {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    max-width: 160px;
  }
  .banners__info p:nth-child(2) {
    font-size: 10px;
    margin-top: 6px;
    max-width: 124px;
  }
  .banners__info a {
    font-size: 14px;
    padding: 11px 20px;
  }
  .banners__list {
    gap: 14px;
    width: calc(100% + 12px);
    padding-right: 12px;
  }
  .top-title {
    font-size: 20px;
  }
  .search {
    margin-top: 30px;
  }
  .dots a:nth-child(1) {
    background-color: #81baff;
  }
  .search__row span {
    display: none;
  }
  .search__row {
    width: -moz-max-content;
    width: max-content;
    margin-top: 60px;
  }
  .cards {
    margin-top: 60px;
  }
  .top-nav__arrows {
    display: none;
  }
  .cards__list {
    gap: 8px;
    width: calc(100% + 12px);
    padding-right: 12px;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  footer {
    padding-bottom: 90px;
  }
  .mobile-menu {
    border-radius: 36px 36px 0 0;
  }
  .vip-banner {
    background: url(../images/vip-banner-mobile.d37f229.webp) no-repeat top;
    height: 370px;
    padding: 0 0 20px;
    background-size: cover;
    align-items: flex-end;
    justify-content: center;
  }
  .vip-banner__info {
    height: auto;
    text-align: center;
    align-items: center;
  }
  .vip-banner__info p:nth-child(1) {
    font-size: 48px;
  }
  .vip-banner__info p:nth-child(2) {
    font-size: 16px;
  }
  .vip-banner__info a {
    margin-top: 10px;
  }
}/*# sourceMappingURL=styles.css.map */