html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
img {
  display: block;
  max-width: 100%;
}
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 101%;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}
@media screen and (min-width: 1440px) {
  .header_container {
    padding: 12px 108px;
  }
}
.logo-box {
  width: 60px;
  border-radius: 10px;
  overflow: hidden;
}
.header-nav-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header-nav-pc {
    display: block;
    width: 100%;
  }
}
.header-nav-mobile-button {
  display: block;
  width: 50px;
  height: 40px;
}
@media screen and (min-width: 1280px) {
  .header-nav-mobile-button {
    display: none;
  }
}
.header-nav-mobile {
  position: fixed;
  top: 56px;
  right: -1900px;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
}
.header-nav-mobile.is-open {
  position: fixed;
  top: 75px;
  right: 2px;
  z-index: 999;
  pointer-events: painted;
  opacity: 1;
}
.header-nav-mobile-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 100px;
  height: 100%;
  width: 100%;
  gap: 32px;
}
.header-nav-mobile-item > a {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
}
.header-nav-mobile-item {
  transition: transform 0.3s ease;
}
.header-nav-mobile-item:hover,
.header-nav-mobile-item:focus,
.header-nav-mobile-item:active {
  transform: scale(1.05);
}
@media (min-width: 1280px) {
  .header-nav-mobile {
    display: none;
  }
  .header-nav-pc-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
  }
  .header-nav-pc-item > a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #fff;
  }
  .header-nav-pc-item {
    transition: transform 0.3s ease;
  }
  .header-nav-pc-item:hover,
  .header-nav-pc-item:focus,
  .header-nav-pc-item:active {
    transform: scale(1.05);
  }
}
.footer {
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.footer_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 30px; */
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .footer_container {
    padding: 60px 108px;
    /* gap: 50px; */
  }
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 1280px) {
  .footer-links-list {
    gap: 32px;
    flex-direction: row;
    justify-content: center;
  }
}
.footer-text {
  line-height: 1.57143;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  .footer-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.footer-links-list-item > a {
  line-height: 1.57143;
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 1440px) {
  .footer-links-list-item > a {
    font-size: 16px;
    line-height: 1.5;
  }
}
.mb20 {
  margin-bottom: 20px;
}
footer a {
  transition: color 0.35s ease;
}
footer a:hover {
  color: #c3c3c3;
}
.page-margin {
  margin-bottom: 32px;
}
.page-margin-2 {
  margin-bottom: 16px;
}
.page-margin-8,
.page-margin-24 {
  margin-bottom: 8px;
}
.h3-uppercase {
  text-transform: uppercase;
}
.page-text-bold {
  font-weight: 600;
}
.page-text {
  line-height: 1.57143;
}
@media screen and (min-width: 1440px) {
  .page-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}
.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
}
@media screen and (min-width: 1440px) {
  .page-simple-link {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
}
@media screen and (min-width: 1440px) {
  .page-title-h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-title {
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 116px auto 40px;
}
@media screen and (min-width: 1440px) {
  .page-title {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}
.page-content {
  padding: 0 16px 60px;
}
@media screen and (min-width: 1440px) {
  .page-content {
    padding: 0 212px 120px;
  }
}
.faq {
  width: 100%;
}
.faq_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 30px 16px;
}
@media screen and (min-width: 1440px) {
  .faq_container {
    gap: 76px;
    padding: 50px 108px;
  }
}
.faq_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1440px) {
  .faq_list {
    gap: 24px;
  }
}
.faq-item {
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: 12px 12px 20px #0000001a;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.faq-question-button-js {
  color: #fff;
  display: flex;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid black;
}
.faq_question {
  width: 100%;
  border-radius: 8px 8px 0 0;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}
.faq-answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: none;
}
.faq-answer.open {
  max-height: 500px;
  color: #fff;
  transition: max-height 0.3s cubic-bezier(1, 0.5, 0.5, 1);
  font-size: 16px;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  padding: 16px;
  border-radius: 0 0 8px 8px;
}
.faq-title {
  color: #fff;
  text-align: center;
  font-size: 36px;
}
.cards {
  scroll-margin-top: 100px;
  width: 100%;
}
.form-title {
  color: #fff;
  margin-bottom: 10px;
}
.img_company_box {
  min-width: 270px;
}
@media screen and (min-width: 1440px) {
  .img_company_box {
    min-width: 300px;
  }
}
.img_company_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 25px 16px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1440px) {
  .cards_container {
    gap: 76px;
    padding: 25px 16px;
    padding-bottom: 60px;
  }
}
.cards_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.company-item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}
@media screen and (min-width: 1280px) {
  .company-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }
}
.stars-blok {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 150px;
  gap: 20px;
}
.stars-blok p {
  color: #fff;
}
.stars-blok img {
  max-width: 120px;
}
.img_company_box {
  max-width: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.company-bonus-item {
  color: #fff;
}
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
.glow-on-hover:active {
  color: #000;
}
.glow-on-hover:active:after {
  background: transparent;
}
.glow-on-hover:hover:before {
  opacity: 1;
}
.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  to {
    background-position: 0 0;
  }
}
.pay-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  padding: 10px;
  gap: 10px;
  box-shadow: #32325d40 0 30px 60px -12px inset,
    #0000004d 0 18px 36px -18px inset;
}
.position {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 5px #0000004d;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1280px) {
  .position {
    position: absolute;
    top: 6px;
    left: 18px;
  }
}
.company-bonus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero {
  background-image: linear-gradient(90deg, #000000a3, #0d1521b7, #070e18a5),
    url(/assets/h1-624e50f6.webp);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  height: 60vh;
  width: 100%;
  margin-top: 75px;
  padding-top: 20px;
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.hero_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 14px;
}
@media screen and (min-width: 1440px) {
  .hero_container {
    padding: 0 80px;
  }
}
.hero_container h1 {
  color: #fff;
  font-size: 46px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .hero_container h1 {
    font-size: 34px;
  }
}
.hero_container p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .hero_container p {
    font-size: 20px;
  }
}
.rating_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 20px 0;
}
@media screen and (max-width: 1280px) {
  .rating_container {
    flex-direction: column;
  }
}
.rating_container img {
  max-width: 600px;
}
.rating_container h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .rating_container h2 {
    font-size: 30px;
  }
}
.rating_container p {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .rating_container p {
    font-size: 18px;
  }
}
.rating-text-box {
  max-width: 700px;
}
.info-block {
  width: 100%;
  margin-bottom: 50px;
}
.info-block_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 60px 16px;
  overflow: hidden;
  border-radius: 20px;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
@media screen and (min-width: 1440px) {
  .info-block_container {
    padding: 100px 108px;
  }
}
.title-h2-info-block {
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .title-h2-info-block {
    font-size: 30px;
  }
}
.info-block_container h3 {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .info-block_container h3 {
    font-size: 22px;
  }
}
.info-block_container p {
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .info-block_container p {
    font-size: 18px;
  }
}
.info-block-img-block {
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
.cookies-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.cookies-container {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1440px) {
  .cookies-container {
    padding: 40px 108px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookies-text {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.57143;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  .cookies-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 705px;
    text-align: left;
  }
}
.cookies-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
  }
}
.cookies-accept-js {
  background-color: #a9ffcc;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}
.cookies-accept-js:hover {
  background-color: #49db86;
}
.cookies-decline-js {
  background-color: #ff735d;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}
.cookies-decline-js:hover {
  background-color: #ce1b00;
}
.about-info_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 60px 16px;
  overflow: hidden;
  margin: 50px 0;
}
@media screen and (min-width: 1440px) {
  .about-info_container {
    padding: 100px 108px;
  }
}
.about-info_container p {
  color: #fff;
}
.boxes {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  background-image: url(/assets/bg-c02fcb91.png);
  background-repeat: no-repeat;
  background-size: 100% 1%;
  background-position: top;
  animation: bgAnimate 6s infinite alternate-reverse ease-in-out;
  padding-top: 2px;
}
@media screen and (max-width: 1440px) {
  .boxes {
    height: 100vh;
    overflow: hidden;
  }
}
@keyframes bgAnimate {
  0% {
    background-size: 100% 1%;
  }
  to {
    background-size: 100% 150%;
  }
}
.box {
  width: calc((100% - 78px) / 40);
  aspect-ratio: 1;
  background-color: #2a2a2a;
  transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1400px) {
  .box {
    width: calc((100% - 57px) / 20);
  }
}
@media screen and (max-width: 480px) {
  .box {
    width: calc((100% - (10 * 3px)) / 11);
  }
}
.box.active {
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: -webkit-linear-gradient(90deg, #d645d6, #902cb8, #730099);
  background: linear-gradient(90deg, #d645d6, #902cb8, #730099);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  padding: 20px;
  box-shadow: 0 0 10px #0000001a;
  min-width: 800px;
}
@media screen and (max-width: 1440px) {
  .form-container {
    min-width: 300px;
  }
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
input,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 100px;
  resize: vertical;
}
input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}
.btn-1 {
  text-align: center;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
}
.btn-1:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all 0.3s;
  opacity: 0.3;
}
.btn-1:hover:before {
  left: 95%;
}
textarea {
  resize: none;
}
:root {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
  background: -webkit-linear-gradient(90deg, #3d4052, #282a36, #09090c);
  background: linear-gradient(90deg, #3d4052, #282a36, #09090c);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.page-section {
  background-color: #fff;
  padding-top: 100px;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.companies_container {
  border-radius: 10px;
  width: 100%;
  padding: 50px 0;
  background: -webkit-linear-gradient(
    90deg,
    #f0c7ff,
    #c397f0,
    #a874c4,
    #a272cf,
    #6e31a3
  );
  background: linear-gradient(
    90deg,
    #f0c7ff,
    #c89ff1,
    #a874c4,
    #a272cf,
    #9e56dd
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.big-el {
  max-width: 190px;
}

.small-el {
  max-width: 90px;
}

@media screen and (min-width: 1440px) {
  .boxes {
    height: 100vh;
    overflow: hidden;
  }
}
