* {
  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 {
  display: none;
}

body {
  font-family: "Roboto", sans-serif;
  color: hsla(0, 0%, 100%, 0.65);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  background-color: #11111b;
}

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

header {
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #1b1b2c;
}

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

.burger {
  display: none;
}

.header__menu {
  display: flex;
  gap: 8px;
}
.header__menu li a {
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  text-transform: capitalize;
  gap: 8px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.header__menu li:nth-child(1) a {
  background: #2a2a3f;
  font-weight: 700;
}
.header__menu li:nth-child(1) a i {
  background: #607dfc;
  -webkit-background-clip: text;
}
.header__menu li:nth-child(5) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242438;
}
.header__menu li:nth-child(5) i {
  color: hsla(0, 0%, 100%, 0.65);
}

.header__right {
  display: flex;
  gap: 12px;
}
.header__right a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.header__right a:nth-child(2) {
  background: linear-gradient(180deg, #607dfc 0%, #3855f1 100%);
}

.sidebar {
  position: fixed;
  left: 0;
  top: 64px;
  height: calc(100vh - 64px);
  z-index: 999;
  background: #1b1b2c;
  border-bottom: 12px solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid transparent;
  width: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  border-top-width: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar__list:nth-child(5) a {
  overflow: hidden;
}
.sidebar__list:nth-child(5) a img {
  height: 54px;
  inset-inline-end: 0;
  position: absolute;
  top: 0;
  width: 54px;
  z-index: 1;
}
.sidebar__list a {
  display: flex;
  align-items: center;
  background: #242438;
  border-radius: 8px;
  height: 44px;
  padding: 0 12px;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.sidebar__list a span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar__list a i:nth-child(3) {
  margin-left: auto;
}

.sidebar__list-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.sidebar__list-2 a {
  background: #242438;
  border-radius: 8px;
  height: 44px;
  overflow: hidden;
  padding: 0 24px 0 12px;
  position: relative;
  display: flex;
  align-items: center;
}
.sidebar__list-2 a:nth-child(1) {
  background: radial-gradient(103.48% 96.21% at 100% 100%, rgba(255, 73, 18, 0.4) 0%, rgba(255, 73, 18, 0) 100%);
}
.sidebar__list-2 a:nth-child(2) {
  background: radial-gradient(72.78% 127.27% at 100% 100%, rgba(222, 185, 0, 0.6) 0%, rgba(222, 185, 0, 0.1) 78%, rgba(222, 185, 0, 0.04) 88.5%, rgba(222, 185, 0, 0) 100%);
}
.sidebar__list-2 a:nth-child(3) {
  background: radial-gradient(72.78% 127.27% at 100% 100%, rgba(255, 77, 138, 0.6) 0%, rgba(255, 77, 138, 0.1) 78%, rgba(255, 77, 138, 0) 100%);
}
.sidebar__list-2 a:nth-child(4) {
  background: radial-gradient(72.78% 127.27% at 100% 100%, rgba(47, 169, 228, 0.6) 0%, rgba(47, 169, 228, 0.1) 78%, rgba(47, 169, 228, 0.04) 88.5%, rgba(47, 169, 228, 0) 100%);
}
.sidebar__list-2 a span {
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.4;
  max-width: 140px;
  text-transform: uppercase;
}
.sidebar__list-2 a img {
  bottom: -18px;
  height: 50px;
  inset-inline-end: -11px;
  position: absolute;
  width: 50px;
}

.header__lg img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.circles {
  display: none;
}

.banners {
  margin-top: 24px;
  position: relative;
}

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

.banners__item {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 528/312;
  padding: 42px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banners__item:nth-child(1) {
  background-image: url(../images/b1.webp);
}
.banners__item:nth-child(2) {
  background-image: url(../images/b2.webp);
}
.banners__item:nth-child(3) {
  background-image: url(../images/b3.webp);
}
.banners__item a {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  padding: 0 24px;
  border-radius: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(180deg, #607dfc 0%, #3855f1 100%);
  text-transform: uppercase;
}

.banners__item__text p:nth-child(1) {
  color: #fff;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.banners__item__text p:nth-child(2) {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
  width: 100%;
}
.dots a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.65);
}
.dots a:nth-child(1) {
  background: #607dfc;
}

.menu {
  margin-top: 24px;
  background: #1b1b2c;
  border-radius: 12px;
  padding: 16px;
}

.menu__list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.menu__list a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  gap: 8px;
  padding: 0 16px;
  min-width: -moz-max-content;
  min-width: max-content;
  color: #fff;
}

.cards {
  margin-top: 32px;
}

.cards__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cards__title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.cards__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cards__nav p {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.cards__arrow {
  display: flex;
  gap: 8px;
}
.cards__arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 40px;
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  color: #fff;
  width: 40px;
}

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

.cards__item {
  aspect-ratio: 188/252;
  display: flex;
}
.cards__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

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

.content__item {
  color: #fff;
  font-size: 18px !important;
  line-height: 1.5;
  font-weight: 400;
}
.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;
  font-size: 18px !important;
}
.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 !important;
  text-align: left;
  vertical-align: top;
  color: #fff !important;
  font-size: 18px !important;
}
.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;
}

.faq h2,
.faq h3,
.faq p {
  margin: 0;
}

.faq__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item.active .faq__text {
  margin-top: 20px;
}
.faq__item.active .faq__title {
  opacity: 0.5;
}
.faq__item.active .faq__title svg {
  transform: rotate(180deg);
}

.faq__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}
.faq__title:hover {
  opacity: 0.5;
}
.faq__title h3,
.faq__title p {
  max-width: 90%;
}
.faq__title svg {
  width: 32px;
  min-width: 32px;
  transition: 0.3s;
}
.faq__title svg path {
  fill: #efe7f9;
}

.faq__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

footer {
  padding: 40px 0;
}

.footer {
  border-top: 1px solid hsla(0, 0%, 100%, 0.12);
  padding-top: 48px;
}

.footer__text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  color: hsla(0, 0%, 100%, 0.4);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

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

.footer__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__icons img:nth-child(1) {
  width: 56px;
}
.footer__icons img:nth-child(2) {
  height: 32px;
}
.footer__icons img:nth-child(3) {
  height: 32px;
}

.footer__lg {
  display: flex;
  align-items: center;
  background: #242438;
  padding: 0 16px;
  border-radius: 8px;
  height: 48px;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.footer__lg img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__lg i {
  margin-left: auto;
}

.mobile-menu {
  display: none;
}

.chat {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  right: 16px;
  bottom: 16px;
  position: fixed;
  z-index: 77;
}
.chat i {
  color: #000;
}

@media (max-width: 1919px) {
  .banners__item {
    aspect-ratio: 400/312;
  }
  .cards__list {
    grid-template-columns: repeat(6, 1fr);
  }
  .cards__item:nth-child(n+13) {
    display: none;
  }
}
@media (max-width: 1530px) {
  .banners__list {
    display: flex;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .banners__item {
    width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #242438;
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
  .footer__text {
    grid-template-columns: repeat(1, 1fr);
  }
  .sidebar {
    display: none;
  }
  main,
  footer {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  header {
    height: 56px;
    padding: 0 16px;
  }
  .header__left {
    gap: 8px;
  }
  .logo {
    width: 36px;
    height: 36px;
  }
  .logo img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .header__right {
    gap: 8px;
  }
  .header__right a {
    height: 36px;
    padding: 0 12px;
  }
  .circles {
    display: flex;
    margin-top: 8px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100% + 16px);
    padding-right: 16px;
  }
  .circles a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #607dfc;
  }
  .circles a img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
  }
  .banners__item {
    width: 336px;
    min-width: 336px;
    height: 216px;
    aspect-ratio: unset;
    padding: 16px;
  }
  .banners__item__text p:nth-child(1) {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .banners__item__text p:nth-child(2) {
    font-size: 14px;
    margin-top: 0;
  }
  .banners__item a {
    padding: 0 16px;
  }
  .menu {
    border-radius: 0;
    padding: 0;
    width: calc(100% + 16px);
    background: none;
  }
  .menu__list {
    padding-right: 16px;
    gap: 1px;
  }
  .menu__list a {
    height: 40px;
    border-radius: 100px;
    padding: 0 12px;
    background: #242438;
    font-size: 14px;
  }
  .cards__title {
    font-size: 16px;
    gap: 0;
  }
  .cards__arrow {
    display: none;
  }
  .cards__list {
    display: flex;
    gap: 8px;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .cards__item {
    width: 110px;
    min-width: 110px;
  }
  .cards__top {
    margin-bottom: 12px;
  }
  .content__table {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #1b1b2c;
    bottom: 0;
    height: 56px;
    left: 0;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu a:nth-child(1) i {
    -webkit-text-fill-color: transparent;
    background: #607dfc;
    -webkit-background-clip: text;
  }
  .mobile-menu a span {
    color: hsla(0, 0%, 100%, 0.65);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.4;
    text-align: center;
    text-transform: capitalize;
  }
  .chat {
    bottom: 65px;
  }
}/*# sourceMappingURL=styles.css.map */