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

svg-icon-sprite {
  aspect-ratio: 1/1;
  display: block;
  width: 20px;
}
svg-icon-sprite svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: rgb(255, 255, 255);
}

body {
  font-family: "Inter", sans-serif;
  background: rgb(3, 16, 31);
  color: rgb(255, 255, 255);
}
body.hidden {
  overflow: hidden;
}

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

header {
  height: 68px;
  background: rgba(15, 32, 52, 0.6);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  transition-duration: 0.3s;
  z-index: 99;
}
header .container {
  max-width: none;
  height: 100%;
}
header.active .header__right a:nth-child(2) {
  background: rgb(35, 255, 176);
  color: rgb(26, 50, 79);
}

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

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

.header__burger {
  width: 20px;
  aspect-ratio: 1/1;
  display: flex;
}
.header__burger svg-icon-sprite {
  width: 100%;
}
.header__burger svg-icon-sprite svg {
  fill: rgb(255, 255, 255);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__menu li a {
  text-transform: uppercase;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.header__logo {
  display: flex;
  width: 176px;
  aspect-ratio: 176/24;
  transform: translateX(-230px);
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__right a,
.header__right div {
  transition-duration: 0.3s;
}
.header__right a:nth-child(1),
.header__right div:nth-child(1) {
  line-height: 19px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.02em;
}
.header__right a:nth-child(2),
.header__right div:nth-child(2) {
  line-height: 19px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: rgb(35, 255, 176);
  border: 2px solid rgb(35, 255, 176);
  padding: 0 12px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.header__right a:nth-child(3),
.header__right div:nth-child(3) {
  width: 20px;
  display: flex;
  aspect-ratio: 1/1;
}
.header__right a:nth-child(3) svg-icon-sprite,
.header__right div:nth-child(3) svg-icon-sprite {
  width: 100%;
}
.header__right a:nth-child(3) svg-icon-sprite svg,
.header__right div:nth-child(3) svg-icon-sprite svg {
  fill: rgb(255, 255, 255);
}

.top {
  height: 622px;
  background-image: url(../images/bg-main.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .container {
  align-self: flex-start;
}
.top::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: rgba(3, 16, 31, 0.5);
  inset: 0;
}
.top:after {
  content: "";
  position: absolute;
  z-index: 2;
  background: linear-gradient(0deg, rgb(3, 16, 31) 12.43%, rgba(3, 16, 31, 0) 100%);
  inset: 0;
}

.top__block {
  position: relative;
  z-index: 4;
  padding: 92px 0 114px;
}

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

.top__block__text__item {
  display: flex;
  flex-direction: column;
  font-size: 80px;
  line-height: 130%;
  font-weight: 900;
  text-shadow: 0 4px 6px rgba(3, 16, 31, 0.3);
  font-style: italic;
  text-transform: uppercase;
}
.top__block__text__item:nth-child(1) p:nth-child(1) {
  -webkit-text-decoration: underline rgb(35, 255, 176) 8px;
          text-decoration: underline rgb(35, 255, 176) 8px;
}
.top__block__text__item:nth-child(2) {
  line-height: 120%;
  transform: translateX(-270px);
}
.top__block__text__item:nth-child(2) p:nth-child(1) {
  font-size: 150px;
  color: rgb(35, 255, 176);
}
.top__block__text__item:nth-child(2) p:nth-child(2) {
  margin-top: -26px;
}
.top__block__text__item p {
  display: flex;
  flex-direction: column;
}

.top__img {
  position: absolute;
  width: 440px;
  aspect-ratio: 440/432;
  transform: translateY(-50px);
}

.top__block__btn {
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  height: 80px;
  background-color: rgb(35, 255, 176);
  border-radius: 100px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgb(26, 50, 79);
  font-style: italic;
  font-size: 32px;
  letter-spacing: 0.02em;
}

.top__arrow {
  position: absolute;
  z-index: 6;
  width: 48px;
  height: 48px;
  display: flex;
}
.top__arrow svg {
  width: 100%;
  height: 100%;
  fill: rgb(255, 255, 255);
}
.top__arrow.arrow--left {
  transform: rotate(-270deg);
  left: 40px;
}
.top__arrow.arrow--right {
  transform: rotate(-90deg);
  right: 40px;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__left__item {
  width: 320px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(16, 34, 56);
  border: 2px solid rgb(42, 64, 89);
  border-radius: 100px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  color: rgb(169, 183, 199);
}
.nav__left__item svg-icon-sprite {
  width: 18px;
}
.nav__left__item svg-icon-sprite svg {
  fill: rgb(169, 183, 199);
}
.nav__left__item:nth-child(2) svg-icon-sprite {
  width: 16px;
}

.nav__right {
  display: flex;
  gap: 40px;
}
.nav__right li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 138%;
  font-weight: 600;
  text-align: center;
  gap: 8px;
  min-width: 90px;
  max-width: 120px;
}
.nav__right li a svg path {
  fill: rgb(255, 255, 255);
}

.cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cards__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cards__top p,
.cards__top a {
  display: flex;
  align-items: center;
}
.cards__top p:nth-child(1),
.cards__top a:nth-child(1) {
  align-items: flex-end;
  gap: 6px;
}
.cards__top p:nth-child(1) span:nth-child(1),
.cards__top a:nth-child(1) span:nth-child(1) {
  font-size: 36px;
  line-height: 130%;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
}
.cards__top p:nth-child(1) span:nth-child(2),
.cards__top a:nth-child(1) span:nth-child(2) {
  font-size: 24px;
  line-height: 130%;
  font-weight: 900;
  color: rgb(124, 180, 245);
  text-transform: uppercase;
  font-style: italic;
}
.cards__top p:nth-child(2),
.cards__top a:nth-child(2) {
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  color: rgb(124, 180, 245);
  gap: 2px;
}
.cards__top p:nth-child(2) svg-icon-sprite,
.cards__top a:nth-child(2) svg-icon-sprite {
  transform: rotate(-90deg);
  width: 11px;
}
.cards__top p:nth-child(2) svg-icon-sprite svg,
.cards__top a:nth-child(2) svg-icon-sprite svg {
  fill: rgb(124, 180, 245);
}

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

.cards__item {
  aspect-ratio: 228/342;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.cards__item img {
  width: 100%;
  height: 100%;
}
.cards__item:last-child {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgb(16, 34, 56);
  font-style: italic;
  gap: 16px;
}
.cards__item:last-child svg-icon-sprite {
  width: 50px;
}
.cards__item:last-child svg-icon-sprite svg {
  fill: rgb(54, 119, 196);
}
.cards__item:last-child:before {
  top: 0;
  left: 0;
  width: 92px;
  height: 72px;
  background: url(../images/card-more-icon1.svg) no-repeat center center/cover;
  content: "";
  position: absolute;
}
.cards__item:last-child:after {
  bottom: 0;
  right: 0;
  background: url(../images/card-more-icon2.svg) no-repeat center center/cover;
  width: 128px;
  height: 113px;
  content: "";
  position: absolute;
}

footer {
  background-color: rgb(16, 34, 56);
  border-radius: 25px 25px 0 0;
  margin-top: 50px;
  padding: 32px 0;
}
footer .container {
  max-width: 1440px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__top {
  display: flex;
  gap: 24px;
}
.footer__top a {
  display: flex;
  align-items: center;
  height: 40px;
  width: 180px;
  border-radius: 100px;
  padding: 0 5px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  background: rgb(3, 16, 31);
  font-size: 14px;
  gap: 10px;
}
.footer__top a img {
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__top a:nth-child(2) {
  justify-content: center;
  width: 134px;
  background: rgb(16, 34, 56);
  border: 2px solid rgb(35, 255, 176);
  color: rgb(35, 255, 176);
}
.footer__top a:nth-child(2) svg-icon-sprite {
  width: 24px;
  aspect-ratio: 24/20;
}
.footer__top a:nth-child(2) svg-icon-sprite svg {
  fill: rgb(35, 255, 176);
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
  width: 100%;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
}
.footer__column ul li:nth-child(1) {
  line-height: 120%;
  font-weight: 700;
}
.footer__column:last-child ul:nth-child(n+2) li:nth-child(1) {
  color: rgb(255, 255, 255);
}

.footer__pay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-bottom: 1px solid rgba(54, 119, 196, 0.2);
  border-top: 1px solid rgba(54, 119, 196, 0.2);
  padding: 12px 0;
}
.footer__pay div {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-style: italic;
  line-height: 120%;
  font-weight: 600;
  text-decoration: underline;
  gap: 4px;
}
.footer__pay div svg {
  width: auto;
  height: 25px;
}
.footer__pay div svg path {
  fill: rgb(124, 180, 245);
}
.footer__pay div:last-child {
  padding: 0;
}
.footer__pay div:last-child svg-icon-sprite {
  transform: rotate(-90deg);
  width: 12px;
}
.footer__pay div:last-child svg-icon-sprite svg {
  width: 100%;
  height: 100%;
}

.footer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 39px;
}
.footer__media img {
  height: 34px;
  width: auto;
}

.footer__copyright {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 500;
  color: rgb(124, 180, 245);
}

.up {
  position: fixed;
  bottom: 90px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 9;
  border: 2px solid rgb(35, 255, 176);
}
.up svg-icon-sprite {
  width: 24px;
  aspect-ratio: 24/22;
}
.up svg-icon-sprite svg {
  fill: rgb(35, 255, 176);
}

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

.content__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
.content__item h1,
.content__item h2,
.content__item h3 {
  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 p,
.content__item .content__table {
  margin-bottom: 20px;
}
.content__item ol,
.content__item ul {
  padding-left: 50px;
  list-style: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.content__item ul {
  list-style: disc;
}
.content__item ul:last-child,
.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table th,
.content__table td {
  padding: 12px;
  border: 1px solid rgb(255, 255, 255);
  font-weight: 400;
  text-align: left;
}

.table--style tr:first-child td {
  text-align: center;
  font-weight: 900;
}
.table--style th {
  color: rgb(26, 50, 79);
  background-color: rgb(35, 255, 176);
}

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

@media (max-width: 1919px) {
  .top__block__text__item {
    font-size: 68px;
  }
  .top__block__text__item:nth-child(2) p:nth-child(1) {
    font-size: 130px;
  }
  .top {
    height: 575px;
  }
  .top__block {
    padding: 92px 100px 114px;
  }
  .top__block__text__item:nth-child(2) {
    transform: translateX(-120px);
  }
  .header__menu li:nth-child(n+5) {
    display: none;
  }
  .header__logo {
    transform: translateX(-120px);
  }
  .nav__left {
    gap: 12px;
  }
  .nav__left__item {
    width: 220px;
  }
  .nav__right {
    gap: 30px;
  }
  .nav {
    margin-top: 0px;
  }
  footer .container {
    max-width: none;
  }
}
@media (max-width: 1440px) {
  .nav__right {
    gap: 20px;
  }
}
@media (max-width: 1366px) {
  .nav__right {
    gap: 10px;
  }
}
@media (max-width: 1279px) {
  .content {
    padding: 40px 0 0;
  }
  .header__menu {
    display: none;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header__logo {
    transform: translateX(0px);
    width: 162px;
  }
  .header__right a:nth-child(1) {
    display: none;
  }
  .header__right a:nth-child(2) {
    display: none;
  }
  header {
    height: 56px;
  }
  .top__block__text__item {
    font-size: 40px;
  }
  .top__block__text__item:nth-child(2) p:nth-child(1) {
    font-size: 76px;
  }
  .top {
    height: 392px;
  }
  .top__block {
    padding: 63px 60px 69px;
  }
  .top__block__text__item:nth-child(2) {
    transform: translateX(0px);
  }
  .top__img {
    width: 320px;
    transform: translateY(0px);
  }
  .top__block__text__item:nth-child(2) p:nth-child(2) {
    margin-top: -10px;
  }
  .top__arrow {
    width: 24px;
    height: 24px;
  }
  .top__arrow.arrow--left {
    left: 20px;
  }
  .top__arrow.arrow--right {
    right: 20px;
  }
  .nav__left {
    display: none;
  }
  .nav__right {
    gap: 0px;
    justify-content: space-between;
    width: 100%;
  }
  .cards__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .cards__item:nth-child(n+9) {
    display: none;
  }
  .cards__top p:nth-child(1) span:nth-child(1) {
    font-size: 24px;
  }
  .cards__top p:nth-child(1) span:nth-child(2) {
    font-size: 16px;
  }
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 100px;
  }
  .footer__column:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav__right li:nth-child(n+5) {
    display: none;
  }
  .top__block__text {
    flex-direction: column;
    text-align: center;
  }
  .top {
    height: 313px;
  }
  .top__block {
    padding: 15px 10px 31px;
  }
  .top__block__text__item p {
    flex-direction: row;
  }
  .top__block__text__item {
    font-size: 24px;
    text-align: center;
  }
  .top__block__text__item:nth-child(1) p:nth-child(1) br {
    display: none;
  }
  .top__block__text__item p {
    justify-content: center;
  }
  .top__block__text__item:nth-child(2) p:nth-child(1) {
    font-size: 45px;
  }
  .top__block__text__item:nth-child(2) p:nth-child(2) br {
    display: none;
  }
  .top__block__text__item:nth-child(2) p:nth-child(2) {
    margin-top: 10px;
    padding: 0 10px;
  }
  .top__block__text__item:nth-child(2) {
    margin-top: 20px;
  }
  .top__img {
    width: 96px;
    aspect-ratio: 96/116;
    bottom: -6px;
    z-index: 3;
  }
  .top__block__text__item:nth-child(1) p:nth-child(2) {
    margin-top: 5px;
  }
  .top__block__btn {
    font-size: 24px;
    height: 60px;
    margin-top: 30px;
  }
  .cards__top p:nth-child(1) span:nth-child(1) {
    font-size: 20px;
  }
  .cards__top p:nth-child(1) span:nth-child(2) {
    font-size: 14px;
  }
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards__item:nth-child(n+9) {
    display: none;
  }
  .footer__menu {
    padding: 0;
  }
  .footer__pay {
    flex-wrap: wrap;
  }
  .footer__media {
    flex-direction: column;
  }
  footer {
    padding: 32px 0 90px;
    margin-top: 40px;
  }
  .nav__right li a {
    min-width: auto;
    max-width: none;
  }
  .nav__right {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .nav {
    margin-top: 20px;
  }
  .cards {
    margin-top: 20px;
    gap: 18px;
  }
  .cards__list {
    margin-top: 5px;
  }
  .footer__top {
    gap: 12px;
  }
  .footer__top a:nth-child(2) {
    width: 140px;
  }
  .content {
    padding: 30px 0 0;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  .content__item {
    font-size: 16px;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
}
@media (max-width: 360px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__top a {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */