
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol[class] {
  padding: 0;
}

body {
  background: #010017;
  font-family: Verdana;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button:hover {
  opacity: 0.8;
}
input,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
}
figure {
  margin-bottom: 20px;
  text-align: center;
}
figcaption {
  color: inherit;
}
.general-image {
  display: block;
  border-radius: 15px;
  max-height: 400px;
  max-width: 800px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}
.logoBuild {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.logo-container button {
  background: none;
}

.logoBuild a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logoBuild .buttons {
  display: flex;
  gap: 10px;
}

.btn-basic {
  padding: 15px 44px;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: .3s;
}

.btn-basic:hover {
  opacity: .8;
}

.btn-basic.btn-reg {
  background: rgba(103, 26, 245, 1);
  border: 1px rgba(103, 26, 245, 1) solid;
}

.btn-basic.btn-log {
  background: none;
  border: 1px rgba(245, 245, 245, 1) solid;
}

.logoBuild .burger {
  cursor: pointer;
}

.content-block {
  padding: 0 10px;
}
header.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 1);
}

#fix-button.footer-block-btn {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  justify-content: center;
}
.content {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 100px;
}
#scrollToTop.scrollToTop {
  position: fixed;
}
.logo-controls {
  display: none;
}
@media (max-width: 1250px) {

  footer.footer {
    padding-bottom: 100px;
  }
  .content {
    padding-top: 70px;
    max-width: 100%;
  }
}

.header--4 {
  height: 80px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

@media (max-width: 1250px) {
  .header--4 {
  height: 60px;
  }
  .header-inner--4 {
  justify-content: center;
  }
}


    .footer--3 {
  padding: 16px 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer--3 p {
  margin-bottom: 0;
  color: #fff;
}

.components .copy__text--3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1250px) {
  .footer--3 {
  padding: 20px 0;
  }
  .components .copy__text--3 {
  font-size: 14px;
  }
}

.components {
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.general-h1 {
  background: transparent;
  color: #fff;
  padding: 0;
  border-radius: 0;
  text-align: center;
  margin-bottom: 20px;
}

.general-h2, .general-h3, .general-h4, .general-h5, .general-h6 {
  background: transparent;
  color: #fff;
  padding: 0;
  border-radius: 0;
  text-align: center;
  margin-bottom: 20px;
}

.general-p {
  margin-bottom: 20px;
}

.button-block {
  text-align: center;
  margin: 15px 0;
}

.button-block-btn {
  color: #fff;
  background: #ff2400;
  box-shadow: 0px 0px 12px 0px rgba(11, 54, 0, 0.16);
  border-radius: 8px;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.general-link {
  color: rgba(16, 0, 251, 1);
}

.general-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 20px;
}

.general-ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  counter-reset: counter-ol;
  position: relative;
  margin-bottom: 20px;
}

.general-ul-li {
  padding-left: 20px;
  position: relative;
}

.general-ul-li::before {
  background: rgba(16, 0, 251, 1);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  top: 6url(../../burger.svg)px;
  position: absolute;
  content: no-open-quote;
}

.general-ol-li {
  counter-increment: counter-ol;
  padding-left: 30px;
  position: relative;
}

.general-ol-li::before {
  background: rgba(16, 0, 251, 1);
  color: #fff;
  width: 25px;
  left: 0px;
  top: 0px;
  height: 25px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: counter(counter-ol);
}

.general-table-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
}

.general-table {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.general-tr {
  background: linear-gradient(180deg, #020042 0%, #000001 100%);
}

.general-td {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(109, 108, 108, 0.5);
  box-shadow: 0px 0px 4px 3px rgba(109, 108, 108, 0.25);
}

.general-th {
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 10px;
}

.faq-item {
  border: 1px solid rgba(109, 108, 108, 0.5);
  border-radius: 6px;
  position: relative;
  min-height: 54px;
  margin: 0 auto 20px;
  transition: 0.4s;
}

.components .faq-question {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  position: relative;
  padding-bottom: 0;
  top: 15px;
  padding-right: 25px;
  padding-left: 20px;
}

.components .faq-answer {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  padding: 16px 0 22px;
  height: 0;
  top: 10px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  z-index: -1;
}

.icon {
  height: 24px;
  position: absolute;
  width: 24px;
  right: 16px;
  top: 16px;
  background: linear-gradient(to right, #0800FF, #C91AF5);
  border-radius: 50%;
}

.icon:before {
  background: #fff;
  content: no-open-quote;
  height: 1px;
  right: 5px;
  top: 12px;
  width: 12px;
  transition: transform 0.4s;
  position: absolute;
}

.icon:after {
  background: #fff;
  content: no-open-quote;
  height: 1px;
  right: 5px;
  top: 12px;
  width: 12px;
  transition: transform 0.4s;
  position: absolute;
}

.toggle {
  margin: 0;
  cursor: pointer;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
}

.toggle:not(:checked) ~ .icon:before {
  transform: rotate(180deg);
}

.toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
  padding-left: 20px;
  padding-right: 20px;
}

.toggle:not(:checked) ~ .icon:after {
  transform: rotate(90deg);
}

.toggle:checked ~ .icon:before {
  background: #fff;
}

.toggle:checked ~ .icon:after {
  background: #fff;
}

.scrollToTop {
  background: rgba(16, 0, 251, 1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 15%;
  right: 20px;
  opacity: 0;
  cursor: pointer;
}

.scrollToTop svg {
  fill: #fff;
  width: 50%;
  height: 50%;
}

@media (max-width: 1250px) {
  .general-table-wrapper {
  overflow: auto;
  }
  .icon {
  right: 10px;
  }
}

  .components h1 {
    font-size: 28px;
    background: #0026BF;
    padding: 12px 0;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .components h2 {
    padding: 12px 0;
    font-size: 28px;
    border-top: 1px rgba(26, 70, 245, 1) solid;
    border-bottom: 1px rgba(26, 70, 245, 1) solid;
  }
  .components h3 {
    font-size: 24px;
    line-height: 39px;
  }
  .components h4 {
    font-size: 22px;
    line-height: 27px;
  }
  .components h5 {
    font-size: 20px;
    line-height: 25px;
  }
  .components p,
  .components span,
  .components li,
  .components a {
    font-size: 18px;
    line-height: 22px;
  }

  

.errorPage {
  height: 100vh;
  background: #eee;
}
.errorPageInner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 0 20px;
}
.errorPageInner .logo img {
  max-height: 60px;
  width: auto;
}
.errorPageInner span {
  font-size: 120px;
  line-height: 120px;
  font-weight: 700;
  font-family: Verdana, sans-serif;
}
.errorPageInner h1 {
  font-size: 50px;
  line-height: 70px;
  font-family: Verdana, sans-serif;
  text-align: center;
}
.errorPageInner .errorLink a {
  background:rgba(243, 77, 104, 1);
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  border-radius: 50px;
  padding: 20px 50px;
  font-family: Verdana, sans-serif;
  transition: 0.4s;
}
.errorPageInner .errorLink a:hover {
  background: rgba(78, 22, 63, 1);
}

.overlay[hidden] {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 111;
  display: block;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 111;
  background: linear-gradient(135deg, #272638 0, #1e1e24 100%);
  width: 100%;
  min-height: 100vh;
  max-width: 320px;
  padding: 10px;
  transition: right 0.8s;
}
.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}
.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}
.mobileMenu[hidden] {
  right: -200%;
}
.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}
.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobileMenu .mobileMenuLinks a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.banner {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.banner > div {
  flex-grow: 1;
  width: 100%;
  height: 210px;
  padding: 32px 0 0 32px;
}

.banner .left {
  background: rgba(5, 6, 10, 1) url(/banner-left.png)no-repeat;
  background-position: right center;
}

.banner .right {
  background: rgba(5, 6, 10, 1) url(/banner-right.png)no-repeat;
  background-position: right center;
}

.banner .text {
  max-width: 284px;
}

.banner .text p {
  margin-bottom: 24px;
  max-width: 184px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.15;
}

.banner .text button {
  background: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  border-radius: 8px;
  text-transform: uppercase;
}

.fixedButtons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  padding: 12px;
  justify-content: center;
  gap: 10px;
  background: #000;
}

.fixedButtons button {
  flex-grow: 1;
  width: 49%;
  padding: 15px 0;
  font-size: 13px;
}

@media (max-width: 968px) {

  .header.header--4 {
    padding: 0 10px;
  }

  .header.header--4 img {
    max-height: 40px;
  }

  .banner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header .buttons {
    display: none;
  }

  .fixedButtons {
    display: flex;
  }

}

@media (max-width: 480px) {

  .banner {
    margin-bottom: 24px;
  }

  .banner > div {
    padding: 20px 0 0 20px;
    border-radius: 8px;
  }

  .banner > div {
    height: 150px;
  }

  .banner .text p {
    max-width: 242px;
  }

  .components h1 {
    font-size: 24px;
  }

  .components h2 {
    font-size: 21px;
  }

  .banner .left {
    background: rgba(5, 6, 10, 1) url(/banner-left-mobile.png)no-repeat;
    background-position: right center;
  }

  .banner .right {
    background: rgba(5, 6, 10, 1) url(/banner-right-mobile.png)no-repeat;
    background-position: right center;
  }

  .components p, .components span, .components li, .components a {
    font-size: 16px;
    line-height: 1.2;
  }

}