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

body::-webkit-scrollbar {
  background-color: initial;
  border: 1px solid #1b1e29;
  height: 0.5rem;
  width: 0.5rem;
}

::-webkit-scrollbar {
  background: transparent;
  height: 4px;
  width: 4px;
}

body::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #f8d6e5;
  border: 2px solid transparent;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 2px;
}

body {
  background-color: rgb(1, 4, 12);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

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

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  transition: 0.3s;
}
header.active {
  background-color: rgb(20, 22, 31);
}
header .container {
  height: 100%;
}

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

.logo {
  display: flex;
  width: 99px;
  aspect-ratio: 99/56;
}
.logo img {
  width: 100%;
  height: 100%;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu {
  display: flex;
  gap: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lg {
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  height: 3rem;
  background-color: rgb(27, 30, 41);
  border-radius: 100px;
  gap: 2px;
}
.lg img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.lg svg {
  fill: rgba(255, 225, 0, 0.6);
}

.header__btns {
  display: flex;
}
.header__btns a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  background-color: rgb(66, 13, 31);
}
.header__btns a:nth-child(2) {
  background-color: rgb(216, 4, 0);
}

.banner {
  padding-top: 4.5rem;
  height: 612px;
  margin-bottom: 3rem;
  position: relative;
}
.banner::after {
  content: "";
  background-image: linear-gradient(to top, #01040c, transparent);
  height: 60%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.banner .container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__1 {
  left: 370px;
  bottom: 80px;
  position: absolute;
  z-index: 2;
  width: 523px;
}

.banner__2 {
  right: 300px;
  bottom: 30px;
  position: absolute;
  z-index: 2;
  width: 571px;
}

.banner__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  transform: translateY(-20px);
}
.banner__info div:nth-child(1) {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.8;
}
.banner__info div:nth-child(2) {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  font-size: 64px;
  line-height: 1.15;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner__info div:nth-child(2) span:nth-child(2) {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}
.banner__info div:nth-child(4) {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
  margin-top: 0.5rem;
}
.banner__info a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: rgb(216, 4, 0);
  border-radius: 100px;
  animation: bounceIn 1.5s ease infinite;
  animation-delay: 1s;
}

@keyframes bounceIn {
  0% {
    font-size: 15px;
    line-height: 17px;
    transform: scale(1);
  }
  5% {
    font-size: 17px;
    line-height: 20px;
    transform: scale(1.2);
  }
  25% {
    font: 16px;
    line-height: 18px;
    transform: scale(1.1);
  }
  55% {
    font-size: 17px;
    line-height: 20px;
    transform: scale(1.2);
  }
  100% {
    font-size: 15px;
    line-height: 17px;
    transform: scale(1);
  }
}
.banner__list {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  display: flex;
  gap: 1.5rem;
}
.banner__list a {
  display: flex;
  align-items: center;
}
.banner__list a img {
  width: 64px;
  aspect-ratio: 1/1;
}
.banner__list a div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.banner__list a div p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
.banner__list a div p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
}

.top {
  padding: 0.75rem;
  border-radius: 24px;
  margin-bottom: 2.5rem;
  background-color: rgb(20, 22, 31);
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.top__1 {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.top__search {
  display: flex;
  align-items: center;
  background-color: rgb(27, 30, 41);
  border-radius: 100px;
  height: 3rem;
  gap: 0.5rem;
  width: 703px;
  padding: 0 0.75rem;
  font-weight: 600;
  font-size: 14px;
}
.top__search span {
  opacity: 0.4;
}
.top__search svg {
  fill: rgba(255, 255, 255, 0.2);
}

.top__losowa {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  background-color: rgb(27, 30, 41);
  border-radius: 100px;
  gap: 0.25rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  height: 3rem;
  width: 242px;
}
.top__losowa svg:last-child {
  margin-left: auto;
}
.top__losowa p {
  display: flex;
  flex-direction: column;
}
.top__losowa p span:nth-child(2) {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  min-width: -moz-max-content;
  min-width: max-content;
}
.top__losowa svg {
  fill: rgba(255, 255, 255, 0.2);
}
.top__losowa:last-child {
  width: 174px;
}
.top__losowa:last-child svg:last-child {
  fill: rgb(255, 225, 0);
}

.top__2 {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.5rem;
}
.top__2::-webkit-scrollbar {
  display: none;
}
.top__2 a {
  display: flex;
  align-items: center;
  padding-right: 0.25rem;
  padding-left: 0.75rem;
  border-radius: 12px;
  background-color: rgb(27, 30, 41);
  gap: 0.25rem;
  min-width: -moz-max-content;
  min-width: max-content;
  height: 48px;
}
.top__2 a img {
  width: 48px;
  aspect-ratio: 1/1;
}
.top__2 a p {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 14px;
}
.top__2 a p span:last-child {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2px;
  text-transform: capitalize;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.cards__top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cards__top img {
  width: 40px;
  aspect-ratio: 1/1;
}
.cards__top span {
  font-size: 22px;
  font-weight: 700;
}

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

.cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cards__item img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), inset 0px 1px 1px hsla(0, 0%, 100%, 0.4);
}
.cards__item div {
  margin-top: 0.25rem;
}
.cards__item div p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.cards__item div p:nth-child(2) {
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
}

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

.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 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer__menu {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.footer__menu__block {
  width: 50%;
  flex-wrap: wrap;
}
.footer__menu__block p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.footer__menu__block ul {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  -moz-columns: 2;
       columns: 2;
  gap: 2rem;
}
.footer__menu__block ul li {
  margin-bottom: 0.25rem;
}

.footer__center {
  gap: 1rem;
  display: flex;
}

.footer__czat {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  padding-right: 1.5rem;
  padding-left: 1rem;
  background-color: rgb(27, 30, 41);
  border-radius: 100px;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  height: 3rem;
}
.footer__czat svg {
  fill: rgba(255, 255, 255, 0.2);
}

.footer__gcb {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer__gcb img {
  border-radius: 8px;
  width: 84px;
  min-width: 84px;
  aspect-ratio: 84/47;
}
.footer__gcb p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.footer__copyright {
  border-radius: 12px;
  background-color: rgb(20, 22, 31);
  padding: 1rem;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.chat {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 55;
  padding: 0.75rem;
  background-color: rgb(216, 4, 0);
  border-radius: 16px;
  border-bottom-right-radius: 0;
  right: 1.25rem;
  bottom: 3rem;
}
.chat svg {
  fill: #fff;
}

.dots {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1919px) {
  .banner__1 {
    left: 180px;
  }
  .banner__2 {
    right: 100px;
  }
}
@media (max-width: 1500px) {
  .banner__1 {
    left: -80px;
  }
  .banner__2 {
    right: -100px;
  }
  .banner {
    overflow: hidden;
  }
  .header__menu li:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
  .header__btns a:nth-child(2) {
    display: none;
  }
  .banner__1 {
    width: 400px;
  }
  .banner__2 {
    width: 500px;
    right: -200px;
  }
  .cards__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  header {
    height: 56px;
  }
  .logo {
    width: 85px;
    aspect-ratio: 85/48;
  }
  .banner__1 {
    display: none;
  }
  .banner {
    height: 462px;
    padding-top: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .banner .container {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .banner__info {
    align-items: flex-start;
    text-align: left;
    margin-top: 50px;
  }
  .banner__info div:nth-child(1) {
    font-size: 16px;
  }
  .banner__info div:nth-child(2) {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 48px;
    text-align: left;
    align-items: flex-start;
  }
  .banner__info div:nth-child(2) span:nth-child(2) {
    font-size: 24px;
  }
  .banner__info a {
    margin-left: 1.25rem;
    font-size: 14px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 3rem;
  }
  .banner__info div:nth-child(4) {
    font-size: 12px;
  }
  .banner__2 {
    bottom: -70px;
  }
  .banner__list {
    width: 100%;
    bottom: -1px;
  }
  .banner__list a {
    padding: 0.75rem;
    backdrop-filter: blur(16px);
    width: 100%;
    height: 106px;
    background-color: hsla(0, 0%, 100%, 0.05);
    border-radius: 16px;
  }
  .banner__list a:nth-child(n+2) {
    display: none;
  }
  .banner__list a div {
    text-align: left;
    gap: 0.25rem;
  }
  .banner::after {
    display: none;
  }
  .banner__list a div p {
    font-size: 20px;
  }
  .banner__list a div p:nth-child(2) {
    font-size: 12px;
  }
  .dots {
    position: absolute;
    display: flex;
    gap: 8px !important;
    justify-content: flex-end;
    left: auto !important;
    position: absolute;
    right: 12px !important;
    top: 12px !important;
    flex-direction: row !important;
  }
  .dots span {
    background: hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    height: 8px;
    opacity: 1;
    transition: background 0.3s;
    width: 8px;
  }
  .dots span:nth-child(1) {
    background: #ffe100;
  }
  .top__1 {
    display: none;
  }
  .top {
    border-radius: 16px;
    margin-bottom: 1.5rem;
    padding: 0;
  }
  .top__2 {
    padding: 0.75rem;
    padding-right: 16px;
    gap: 0.25rem;
  }
  .top__2 a {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .top__2 a img {
    width: 40px;
    order: 0;
    margin-top: -10px;
  }
  .top__2 a p {
    order: 1;
    text-align: center;
    font-size: 12px;
  }
  .top__2 a p span:last-child {
    font-size: 10px;
  }
  .chat {
    display: none;
  }
  .cards__top img {
    width: 32px;
  }
  .cards__top span {
    font-size: 16px;
  }
  .cards__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 8px;
  }
  .cards__item {
    background-color: rgb(27, 30, 41);
    border-radius: 16px;
    padding-bottom: 10px;
  }
  .cards__item img {
    width: 72px;
    margin-top: -7px;
  }
  .content__table {
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100% + 16px);
    padding-right: 16px;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .footer__menu {
    flex-direction: column;
  }
  .cards__item div p {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 101px;
    padding: 0 10px;
  }
  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-image: radial-gradient(50% 110.71% at 50% 0, #202330 0, #01040c 100%);
    z-index: 666;
  }
  .mobile-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .mobile-menu a div:nth-child(1) svg {
    fill: rgba(255, 255, 255, 0.2);
  }
  .mobile-menu a div:nth-child(2) {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 600;
  }
  .mobile-menu a:nth-child(3) div:nth-child(1) {
    margin-top: -11px;
    width: 40px;
    aspect-ratio: 1/1;
    background-color: rgb(216, 4, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .mobile-menu a:nth-child(3) div:nth-child(1) svg {
    fill: #ffe100;
  }
  .mobile-menu a:nth-child(3) div:nth-child(2) {
    color: #ffffff;
  }
}/*# sourceMappingURL=styles.css.map */