* {
  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: 8px;
  height: 13px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 100%, 0.2);
}

::-webkit-scrollbar-thumb {
  border: 2px solid #040c1c;
  border-radius: 0;
}

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

body {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background: #1e1450;
  font-family: "Roboto", sans-serif;
}

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

.sidebar {
  width: 60px;
  padding: 12px 3px;
  background: #372873;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.sidebar__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #16103d;
  border-radius: 8px;
}
.sidebar__burger img {
  width: 24px;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 24px 0 0;
}
.sidebar__menu div {
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sidebar__menu div img {
  filter: grayscale(1) contrast(0);
  opacity: 0.8;
  width: 24px;
}
.sidebar__menu div:nth-child(1) {
  margin: 5px 0 7px;
  height: auto;
}
.sidebar__menu div:nth-child(1) img {
  filter: none;
  opacity: 1;
  width: 38px;
}
.sidebar__menu div:nth-child(10) {
  background: #433282;
  gap: 10px;
  height: auto;
  border-radius: 10px;
  padding-bottom: 10px;
}
.sidebar__menu div:nth-child(10) img:nth-child(1) {
  filter: none;
  opacity: 1;
  width: 40px;
}
.sidebar__menu div:nth-child(12) {
  margin-top: 10px;
}
.sidebar__menu div:nth-child(12) img:nth-child(1) {
  filter: none;
  opacity: 1;
  width: 34px;
}

.wrap {
  padding-left: 60px;
}

header {
  background-color: #463296;
  height: 60px;
}
header .container {
  height: 100%;
}

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

.header__logo {
  width: 140px;
  aspect-ratio: 140/32;
  display: flex;
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  background: #ffdc41;
  border-radius: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  color: #1e1e28;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
}
.header__btn:nth-child(1) {
  color: #beb9ff;
  background: none;
  border: 1px solid #beb9ff;
}

.top {
  position: relative;
  display: flex;
  align-items: center;
  margin: 24px auto 0;
}

.top__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

.top__item {
  position: relative;
  aspect-ratio: 387/286;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
}
.top__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.arrows {
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arrows a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 40px;
  cursor: pointer;
  background: #1e1450;
  border: 1px solid rgba(190, 185, 255, 0.2);
}
.arrows a img {
  width: 12px;
}
.arrows a:nth-child(1) {
  border-left: 0;
  border-radius: 0 12px 12px 0;
}
.arrows a:nth-child(2) {
  border-right: 0;
  border-radius: 12px 0 0 12px;
}

.top__item__info {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.top__item__info div:nth-child(1) p:nth-child(1) {
  max-width: 300px;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
.top__item__info div:nth-child(1) p:nth-child(2) {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.top__item__info div:nth-child(2) {
  font-size: 24px;
  line-height: 28px;
}
.top__item__info a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  background: #ffdc41;
  border-radius: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  color: #1e1e28;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 44px;
}

.rows {
  margin: 24px auto 0;
}

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

.rows-1__item {
  height: 80px;
  padding: 24px 0 12px 16px;
  overflow: hidden;
  background: #372873;
  border-radius: 12px;
  position: relative;
}
.rows-1__item div:nth-child(1) p:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.045rem;
}
.rows-1__item div:nth-child(1) p:nth-child(2) {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  opacity: 0.75;
}
.rows-1__item div:nth-child(1) p:nth-child(2) img {
  width: 20px;
  height: 20px;
  margin-left: 12px;
}
.rows-1__item div:nth-child(2) {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
  background: #ff64a5;
  border-radius: 4px;
}

.rows-2 {
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 40px 0 16px;
  gap: 120px;
}
.rows-2::-webkit-scrollbar {
  display: none;
}
.rows-2 img {
  height: 32px;
  opacity: 0.25;
  width: auto;
}

.rows-3 {
  gap: 6px;
  padding-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.rows-3__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 8px 24px;
  background: #372873;
  border-radius: 12px;
  position: relative;
}
.rows-3__item div {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rows-3__item div p:nth-child(1) {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.rows-3__item div p:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.rows-3__item img {
  position: absolute;
  top: -32px;
  width: 80px;
  height: 80px;
  animation: jump 1s linear infinite alternate;
}
.rows-3__item:nth-child(1) img {
  animation-duration: 3s;
}
.rows-3__item:nth-child(2) img {
  animation-duration: 2.8s;
}
.rows-3__item:nth-child(3) img {
  animation-duration: 2.6s;
}
.rows-3__item:nth-child(4) img {
  animation-duration: 2.4s;
}
.rows-3__item:nth-child(5) img {
  animation-duration: 2.2s;
}

@keyframes jump {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translate(0);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translate(0);
  }
}
.cards {
  padding: 65px 0 0;
}

.cards__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.cards__top:before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 322px;
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 77, 151, 0.5) 0, rgba(255, 100, 165, 0) 100%);
  opacity: 0.2;
  transform: translateY(-50%);
}
.cards__top div:nth-child(1) {
  background: #1e1450;
  position: relative;
  display: flex;
  flex-basis: calc(50% - 60px);
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 51px;
  padding: 12px 0 8px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}
.cards__top div:nth-child(1):first-child:before {
  right: -120px;
  background-image: url(../images/corner.svg);
  position: absolute;
  bottom: -21px;
  width: 120px;
  height: 72px;
  content: "";
}
.cards__top div:nth-child(1):after {
  background: linear-gradient(270.09deg, #8a34a9 30%, #dd56a6 70%);
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
}
.cards__top div:nth-child(2) {
  position: relative;
  display: flex;
  flex-basis: calc(50% - 60px);
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 51px;
  padding: 12px 0 8px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: hsla(0, 0%, 100%, 0.5);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.cards__top div:nth-child(2):after {
  background: linear-gradient(270.09deg, #3713ae 30%, #742baa 70%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
}

.cards__block {
  background: #1e1450;
  padding-top: 40px;
}

.cards__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.cards__title img {
  width: 18px;
  height: 18px;
}

.cards__list {
  position: relative;
  align-items: center;
  display: flex;
}

.cards__list__row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.cards__list__row a {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__list__row a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__list__row--2 a {
  background-color: #372873;
  flex-direction: column;
  gap: 12px;
}
.cards__list__row--2 a:nth-child(2) img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(29%) saturate(2036%) hue-rotate(193deg) brightness(102%) contrast(103%);
}
.cards__list__row--2 a img {
  width: 88px;
  height: auto;
}
.cards__list__row--2 a p {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
}

footer {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #16103d;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__left {
  width: 420px;
}

.footer__lg {
  display: flex;
  align-items: center;
}
.footer__lg img:nth-child(1) {
  width: 40px;
  height: 30px;
  border-radius: 5px;
  margin: 0 13px 0 0;
}
.footer__lg img:nth-child(3) {
  width: 8px;
}
.footer__lg p {
  font-size: 12px;
  line-height: 18px;
  color: #beb9ff;
  margin: 0 13px 0 0;
}

.footer__left__text {
  margin-top: 30px;
}
.footer__left__text p:nth-child(1) {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.footer__left__text p:nth-child(2) {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: hsla(0, 0%, 100%, 0.5);
}
.footer__left__text img {
  width: 111px;
  margin-top: 24px;
}

.footer__menu {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  -moz-column-gap: 56px;
       column-gap: 56px;
}
.footer__menu li {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  white-space: nowrap;
  list-style-type: none;
  color: #beb9ff;
}

.footer__rating {
  display: flex;
  align-items: center;
}
.footer__rating div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  margin-right: 12px;
  font-weight: 700;
  border: 4px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 100%;
}
.footer__rating div:nth-child(2) {
  width: 197px;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer__right {
  width: 300px;
}

.footer__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.footer__media__item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 6px;
  color: #beb9ff;
  border: 1px solid #beb9ff;
  border-radius: 8px;
  font-size: 12px;
  color: #beb9ff;
}
.footer__media__item p {
  width: 56px;
}
.footer__media__item img {
  width: 24px;
}

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

.content__item {
  font-size: 18px;
  line-height: 1.5;
}
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 600;
}
.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 td {
  padding: 12px;
  border: 1px solid rgb(255, 255, 255);
  text-align: left;
  vertical-align: top;
}
.content__table td:first-child {
  font-weight: bold;
}
.content__table tr:first-child td {
  font-weight: bold;
}

.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);
}

.burger--mobile,
.menu--mobile {
  display: none;
}

@media (max-width: 1919px) {
  .container {
    width: calc(100% - 64px);
  }
  .top__item {
    aspect-ratio: 347/286;
    padding: 24px;
  }
  .footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .sidebar__menu,
  .sidebar__burger {
    display: none;
  }
  .wrap {
    padding-left: 0;
  }
  .sidebar {
    width: 100%;
    height: 64px;
    left: 0;
    top: auto;
    padding: 0;
  }
  .menu--mobile {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    height: 100%;
  }
  .menu--mobile div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu--mobile div img {
    filter: brightness(0) invert(1);
    opacity: 0.5;
  }
  .menu--mobile div span {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: rgba(190, 185, 255, 0.5);
  }
  .menu--mobile div:nth-child(1) img {
    filter: none;
    opacity: 1;
  }
  .menu--mobile div:nth-child(1) span {
    color: #fff;
  }
  .burger--mobile {
    display: flex;
    width: 20px;
    height: 16px;
    margin-right: 24px;
  }
  .burger--mobile img {
    width: 100%;
    height: 100%;
  }
  .header {
    justify-content: flex-start;
  }
  .header__right {
    margin-left: auto;
  }
  .container {
    width: calc(100% - 16px);
  }
  .top__list {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .top__list::-webkit-scrollbar {
    display: none;
  }
  .top__item {
    aspect-ratio: unset;
    height: 184px;
    width: 40%;
    min-width: 40%;
  }
  .arrows {
    display: none;
  }
  .rows-1 {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .rows-1::-webkit-scrollbar {
    display: none;
  }
  .rows-1__item {
    width: 30%;
    min-width: 30%;
  }
  .rows-2 {
    gap: 80px;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .rows-3 {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .rows-3::-webkit-scrollbar {
    display: none;
  }
  .rows-3__item {
    width: 30%;
    min-width: 30%;
  }
  .cards__list__row {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .cards__list__row::-webkit-scrollbar {
    display: none;
  }
  .cards__list__row a {
    width: 40%;
    min-width: 40%;
  }
  footer {
    padding-bottom: 90px;
  }
  .footer {
    flex-direction: column;
    gap: 30px;
  }
  .content__table {
    overflow-x: auto;
    width: calc(100% + 8px);
    padding-right: 8px;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
  .footer__menu {
    grid-auto-flow: row;
  }
  .footer__right {
    width: 100%;
  }
  .footer__rating div:nth-child(2) {
    width: -moz-max-content;
    width: max-content;
  }
  .header__logo {
    width: 85px;
    aspect-ratio: 85/32;
  }
  .top__item {
    width: 95%;
    min-width: 95%;
    padding: 16px;
  }
  .top__item__info div:nth-child(1) p:nth-child(1) {
    font-size: 16px;
  }
  .top__item__info div:nth-child(1) p:nth-child(2) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 16px;
  }
  .top__item__info div:nth-child(2) {
    font-size: 16px;
    line-height: 20px;
  }
  .rows-1__item {
    width: 70%;
    min-width: 70%;
  }
  .rows-2 {
    gap: 40px;
  }
  .rows-3__item {
    width: 60%;
    min-width: 60%;
  }
  .cards__list__row {
    gap: 4px;
  }
  .cards__list__row--2 a img {
    width: 44px;
  }
}/*# sourceMappingURL=styles.css.map */