* {
  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 {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background: #3b3d54;
  border-radius: 100px;
  border: 5px solid #111217;
}

::-webkit-scrollbar-track {
  background: #111217;
}

svg {
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
}
svg path {
  fill: rgba(162, 165, 175, 0.8);
}

body {
  background-color: #111217;
  color: #f3f4fd;
  font-weight: 500;
  font-family: "Saira", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

header {
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.24), 0px 0px 1px 0px rgba(0, 0, 0, 0.32);
  background-color: #111217;
}
header .container {
  height: 100%;
  max-width: none;
}

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

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

.logo {
  width: 104px;
  aspect-ratio: 104/20;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header__left__menu {
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 32px;
}
.header__left__menu li {
  height: 100%;
  color: #a3a5ba;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__right div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__right div:nth-child(1) {
  background: #5d7ce8;
  border-radius: 8px;
  box-shadow: 0 0 16px #433ca7, inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  gap: 4px;
  height: 28px;
  line-height: 1.6;
  padding: 0 8px;
}
.header__right div:nth-child(1) img {
  width: 24px;
  aspect-ratio: 1/1;
}
.header__right div:nth-child(2) {
  width: 24px;
  aspect-ratio: 1/1;
}
.header__right div:nth-child(2) svg {
  width: 100%;
}
.header__right div:nth-child(2) svg path {
  fill: rgb(166, 168, 189);
}
.header__right div:nth-child(3) {
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px #35374b;
  font-size: 12px;
  font-weight: 600;
  height: 32px;
  padding: 0 12px;
  color: #ffffff;
}
.header__right div:nth-child(4) {
  height: 32px;
  padding: 0 12px;
  background: #faff00;
  border-radius: 16px;
  color: #111217;
  font-size: 12px;
  font-weight: 600;
}
.header__right div:nth-child(4) span:nth-child(2) {
  position: absolute;
  font-size: 8px;
  line-height: 1;
  padding: 2px 3px;
  color: #f3f4fd;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: #355be2;
  right: -5px;
  top: -5px;
}
.header__right div:nth-child(4) span:nth-child(2) img {
  width: 10px;
  aspect-ratio: 1/1;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 64px;
  z-index: 99;
  background: #1b1d2d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__burger {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1d2d;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.24), 0px 0px 1px 0px rgba(0, 0, 0, 0.32);
}
.sidebar__burger svg {
  width: 24px;
}
.sidebar__burger svg path {
  fill: #a3a5ba;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  gap: 4px;
}
.sidebar__menu li {
  aspect-ratio: 1/1;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidebar__menu li:nth-child(1):after {
  background: #2d3045;
  bottom: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(2) {
  margin-top: 12px;
}
.sidebar__menu li:nth-child(6) {
  margin-top: 12px;
}
.sidebar__menu li:nth-child(6)::before {
  background: #2d3045;
  top: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(6) svg path {
  fill: #09e41f;
}
.sidebar__menu li img {
  width: 40px;
  aspect-ratio: 1/1;
}
.sidebar__menu li svg {
  width: 24px;
}
.sidebar__menu li svg path {
  fill: #a3a5ba;
}

.wrap {
  padding-left: 64px;
}

.banner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 161px 0 102px;
  text-align: center;
  margin: 16px auto 0 auto;
  overflow: hidden;
}

.banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.banner__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner__content p:nth-child(1) {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  color: #ffffff;
  text-transform: uppercase;
}
.banner__content p:nth-child(2) {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.2;
  color: #f6da24;
}
.banner__content p:nth-child(3) {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1.4;
  color: #f6da24;
  font-weight: 600;
}
.banner__content a {
  animation: banner-button-pulse 1.9s infinite;
  text-transform: capitalize;
  border-radius: 1000px;
  background: #faff00;
  color: #111217;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 53px;
}
.banner__content a span:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
}
.banner__content a span:nth-child(2) {
  opacity: 0.8;
  text-transform: none;
}

@keyframes banner-button-pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.welcomepack {
  background: linear-gradient(269.49deg, #111217 20.62%, rgba(6, 14, 42, 0) 69.67%), linear-gradient(-269.49deg, #111217 20.62%, rgba(6, 14, 42, 0) 69.67%), #1b1d2d;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 8px 0;
}
.welcomepack img {
  width: 25px;
  aspect-ratio: 1/1;
}

.welcomepack__info {
  font-size: 10px;
  font-weight: 600;
  color: #a3a5ba;
  text-transform: capitalize;
  text-align: center;
}
.welcomepack__info p:nth-child(2) {
  font-size: 16px;
  font-weight: 700;
  color: #f3f4fd;
}

.top__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.top__list img {
  width: 72px;
  height: 100px;
}

.cards {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 56px;
}

.cards__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cards__item {
  position: relative;
  aspect-ratio: 260/347;
  overflow: hidden;
  border-radius: 14px;
}
.cards__item:nth-child(1) p {
  background: linear-gradient(180deg, rgba(0, 110, 221, 0) 0%, #004080 100%);
}
.cards__item:nth-child(2) p {
  background: linear-gradient(180deg, rgba(234, 0, 93, 0) 0%, #8c0038 100%);
}
.cards__item:nth-child(3) p {
  background: linear-gradient(180deg, rgba(232, 0, 16, 0) 0%, #8f000a 100%);
}
.cards__item:nth-child(4) p {
  background: linear-gradient(180deg, rgba(109, 0, 216, 0) 0%, #47008d 100%);
}
.cards__item:nth-child(5) p {
  background: linear-gradient(180deg, rgba(46, 235, 0, 0) 0%, #105200 100%);
}
.cards__item:nth-child(6) p {
  background: linear-gradient(180deg, rgba(46, 235, 0, 0) 0%, #105200 100%);
}
.cards__item:nth-child(7) p {
  background: linear-gradient(180deg, rgba(0, 110, 221, 0) 0%, #004080 100%);
}
.cards__item:nth-child(8) p {
  background: linear-gradient(180deg, rgba(232, 0, 16, 0) 0%, #8f000a 100%);
}
.cards__item:nth-child(9) p {
  background: linear-gradient(180deg, rgba(232, 0, 16, 0) 0%, #8f000a 100%);
}
.cards__item:nth-child(10) p {
  background: linear-gradient(180deg, rgba(109, 0, 216, 0) 0%, #47008d 100%);
}
.cards__item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards__item svg {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  opacity: 0.8;
}
.cards__item svg path {
  fill: #fff;
}
.cards__item p {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px 8px 8px;
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cards__item p span:nth-child(1) {
  text-transform: uppercase;
  color: #fff;
  line-height: 110%;
  font-weight: 700;
  font-size: 14px;
}
.cards__item p span:nth-child(2) {
  text-transform: uppercase;
  color: #fff;
  line-height: 110%;
  opacity: 0.7;
  font-weight: 700;
  font-size: 8px;
}

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

.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 700;
}
.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__item.faq .faq__item {
  margin-bottom: 25px;
}
.content__item.faq .faq__item p,
.content__item.faq .faq__item ol,
.content__item.faq .faq__item ul,
.content__item.faq .faq__item .content__table {
  margin-bottom: 15px;
}
.content__item.faq .faq__item p:last-child,
.content__item.faq .faq__item ol:last-child,
.content__item.faq .faq__item ul:last-child,
.content__item.faq .faq__item .content__table:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item p:first-child {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 900;
}
.content__item.faq .faq__item:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table th,
.content__table td {
  padding: 12px;
  border: 1px solid #f3f4fd;
  text-align: left;
  vertical-align: top;
}

.table--style tr:first-child td {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}
.table--style th {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}

footer {
  padding: 24px 0 54px;
  position: relative;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(88, 92, 131, 0.3019607843);
  margin-bottom: 40px;
  padding: 30px 0 40px;
}

.footer__top__left .logo {
  margin-bottom: 33px;
}

.footer__top__list p {
  color: #e3e5f5;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.footer__top__list ul {
  display: flex;
  gap: 8px;
}
.footer__top__list ul li {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #35374b;
}
.footer__top__list ul li svg {
  width: 20px;
}

.footer__left__title {
  margin-top: 30px;
  color: #e3e5f5;
  font-size: 18px;
  font-weight: 500;
}

.footer__menu {
  grid-gap: 14px;
  align-items: start;
  display: grid;
  flex: 0 0 55%;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  --rowsCount: 4;
  --colsCount: 4;
  font-weight: 600;
  color: #8889a0;
  font-size: 12px;
}

.footer__top__right div:nth-child(1) {
  color: #f3f4fd;
  font-weight: 600;
  font-size: 18px;
}
.footer__top__right div:nth-child(1) p:nth-child(2) {
  color: #b1b3c8;
  font-weight: 500;
  font-size: 14px;
}
.footer__top__right div:nth-child(2) {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}
.footer__top__right div:nth-child(2) svg {
  width: 18px;
}
.footer__top__right div:nth-child(2) svg path {
  fill: #faff00;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.footer-row div {
  display: flex;
  align-items: center;
  position: relative;
}
.footer-row div:nth-child(1) {
  background: #282b40;
  overflow: hidden;
  border-radius: 4px;
  height: 32px;
  font-weight: 700;
  font-size: 12px;
  gap: 4px;
  padding: 0 8px 0 0;
}
.footer-row div:nth-child(1) img {
  width: 28px;
  aspect-ratio: 1/1;
}
.footer-row div:nth-child(1):before {
  background: #1a799f;
  content: "";
  filter: blur(30px);
  height: 45px;
  left: -15px;
  opacity: 1;
  position: absolute;
  top: -15px;
  width: 45px;
}
.footer-row div:nth-child(2) {
  gap: 16px;
}
.footer-row div:nth-child(3) {
  gap: 4px;
  height: 32px;
  background: #35374b;
  border-radius: 16px;
  padding: 0 12px;
  font-weight: 600;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 17px;
}
.footer-disclaimer div {
  display: flex;
  align-items: center;
  color: #869dee;
  font-size: 14px;
  gap: 4px;
}
.footer-disclaimer div svg path {
  fill: #869dee;
}
.footer-disclaimer p {
  margin: 16px 0 0;
  color: #a3a5ba;
  font-weight: 500;
  font-size: 14px;
}

.suport {
  position: fixed;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3019607843);
  width: 60px;
  aspect-ratio: 1/1;
  bottom: 16px;
  right: 0px;
  background: #35374b;
}
.suport svg {
  width: 32px;
}
.suport svg path {
  fill: #fff;
}

.burger {
  display: none;
}

@media (max-width: 1279px) {
  .sidebar {
    display: none;
  }
  .wrap {
    padding-left: 0px;
  }
  .top__list {
    overflow-x: auto;
  }
  .top__list::-webkit-scrollbar {
    display: none;
  }
  .logo {
    aspect-ratio: 27/24;
    width: 27px;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    aspect-ratio: 1/1;
  }
  .burger svg {
    width: 100%;
  }
  .burger svg path {
    fill: #a3a5ba;
  }
  .header__left {
    gap: 8px;
  }
  .header__left__menu {
    display: none;
  }
  .header__right div:nth-child(2) {
    display: none;
  }
  .header__right div:nth-child(1) {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9;
  }
  .suport {
    right: 16px;
    bottom: 60px;
    width: 48px;
  }
  .suport svg {
    width: 26px;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__top__left .logo {
    display: none;
  }
  .footer__menu {
    width: 100%;
    margin-top: 30px;
  }
  .footer__top__right {
    margin-top: 30px;
  }
  .footer-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  header {
    height: 54px;
  }
  .header__right {
    gap: 4px;
  }
  .top {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .banner {
    padding: 80vw 0 70px;
  }
  .banner__content p:nth-child(1) {
    font-size: 14px;
  }
  .banner__content p:nth-child(2) {
    font-size: 50px;
  }
  .banner__content p:nth-child(3) {
    margin-bottom: 17px;
    font-size: 18px;
  }
  .banner__content a {
    font-size: 10px;
    padding: 8px 53px;
  }
  .banner__content a span:nth-child(1) {
    font-size: 18px;
  }
  .banner__img img {
    height: auto;
  }
  .welcomepack {
    background: #1b1d2d;
  }
  .top__list {
    gap: 18px;
    position: relative;
  }
  .top__list:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    background: linear-gradient(-90deg, rgba(6, 14, 43, 0) 0%, transparent 1.88%, #111217 100%, rgba(6, 14, 43, 0) 100%);
    pointer-events: none;
  }
  .top__list:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, rgba(6, 14, 43, 0) 0%, transparent 1.88%, #111217 100%, rgba(6, 14, 43, 0) 100%);
    pointer-events: none;
  }
  .top__list img {
    width: 72px;
    height: 48px;
  }
  .cards__title {
    font-size: 24px;
  }
  .cards {
    gap: 24px;
  }
  .cards__list {
    display: flex;
    gap: 8px;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .cards__list::-webkit-scrollbar {
    display: none;
  }
  .cards__item {
    width: 35vw;
    min-width: 35vw;
  }
  .content__table {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .footer__menu {
    --rowsCount: 8;
    --colsCount: 2;
    flex: 0 0 100%;
    grid-template-rows: repeat(8, auto);
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-row div:nth-child(1) {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */