/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fontsERCKntn7/dmsans-variablefontERCKntn7.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.heroERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.heroERCKntn7__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.heroERCKntn7__left {
  max-width: 640px;
}

.heroERCKntn7__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;

  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 16px;
  font-weight: 500;

  border-radius: 100px;
  border: 1px solid var(--Color_f, #7c7afd);

  backdrop-filter: blur(3px);

  margin-bottom: 30px;
}

.heroERCKntn7__badge img {
  width: 14px;
}

.heroERCKntn7__title {
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;

  margin: 0 0 20px;
}

.heroERCKntn7__text {
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 16px;
  font-weight: 400;

  margin-bottom: 40px;
  max-width: 520px;
}

.heroERCKntn7__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 18px 36px;

  border-radius: 30px;
  border: 1px solid var(--white, #fcfcfc);

  background: var(--feol, linear-gradient(180deg, #7c7afd 0%, #13294e 100%));

  color: var(--white, #fcfcfc);
  text-align: center;
  font-family: 'DM Sans';
  font-size: 24px;
  font-weight: 500;

  text-decoration: none;
}

.heroERCKntn7__btn img {
  width: 32px;
}

.heroERCKntn7__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroERCKntn7__image-wrap {
  position: relative;
  width: 420px;
}

.heroERCKntn7__image-wrap img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .heroERCKntn7__inner {
    flex-direction: column;
    justify-content: center;
  }

  .heroERCKntn7__left {
    max-width: 100%;
  }

  .heroERCKntn7__image-wrap {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .heroERCKntn7 {
    padding: 50px 0;
  }

  .heroERCKntn7__badge {
    font-size: 12px;
    display: flex;
    width: max-content;
  }

  .heroERCKntn7__title {
    font-size: 32px;
    text-align: left;
  }

  .heroERCKntn7__text {
    font-size: 16px;
    text-align: left;
  }

  .heroERCKntn7__btn {
    width: 100%;
    justify-content: center;
    font-size: 22px;
  }

  .heroERCKntn7__image-wrap {
    width: 280px;
    margin: 30px auto 0;
  }
}

.prizesERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.prizesERCKntn7__title {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.prizesERCKntn7__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.prizesERCKntn7__card {
  border-radius: 30px;
  border: 1px solid #7c7afd;
  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );
  padding: 30px;
  min-height: 320px;

  display: flex;
  flex-direction: column;
}

.prizesERCKntn7__top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 16px;
}

.prizesERCKntn7__top img {
  width: 14px;
}

.prizesERCKntn7__name {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 32px;
  font-weight: 500;
  margin: 10px 0 60px;
}

.prizesERCKntn7__img {
  margin-top: auto;
  display: block;
  max-width: 170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .prizesERCKntn7__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prizesERCKntn7 {
    padding: 50px 0;
  }

  .prizesERCKntn7__title {
    font-size: 24px;
  }

  .prizesERCKntn7__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prizesERCKntn7__card {
    position: relative;
    min-height: 120px;
    padding: 22px 24px;
  }

  .prizesERCKntn7__name {
    font-size: 20px;
    max-width: 200px;
    margin-bottom: 36px;
  }

  .prizesERCKntn7__img {
    position: absolute;
    right: 18px;
    bottom: 16px;
    max-width: 100px;
    margin: 0;
  }
}

.howERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.howERCKntn7__box {
  border-radius: 30px;
  border: 1px solid #7c7afd;
  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );
  padding: 40px;
}

.howERCKntn7__title {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.howERCKntn7__step {
  margin-bottom: 28px;
}

.howERCKntn7__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.howERCKntn7__num {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #7c7afd 0%, #13294e 100%);
  color: #fff;
  font-family: 'DM Sans';
  font-size: 20px;
  font-weight: 700;
}

.howERCKntn7__step h3 {
  color: #7c7afd;
  font-family: 'DM Sans';
  font-size: 24px;
  font-weight: 500;
}

.howERCKntn7__step p {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  line-height: 1.6;
}

.howERCKntn7__list {
  margin: 10px 0 10px 20px;
}

.howERCKntn7__list li {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  margin-bottom: 6px;
  list-style: none;
  position: relative;
  padding-left: 26px;
}

.howERCKntn7__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url('/imagesERCKntn7/select-handERCKntn7.webp') no-repeat
    center/contain;
}

.howERCKntn7__payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.howERCKntn7__pay {
  border-radius: 16px;
  border: 1px solid #7c7afd;
  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );
  padding: 20px;
  text-align: center;
}

.howERCKntn7__pay span {
  display: block;
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  margin-bottom: 10px;
}

.howERCKntn7__pay img {
  width: 48px;
  height: 48px;
}

@media (max-width: 900px) {
  .howERCKntn7__payments {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .howERCKntn7 {
    padding: 40px 0;
  }

  .howERCKntn7__box {
    padding: 24px;
  }

  .howERCKntn7__title {
    font-size: 24px;
  }

  .howERCKntn7__step h3 {
    font-size: 20px;
  }
}

.legalERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.legalERCKntn7__title {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

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

  border-radius: 16px;
  border: 1px solid #7c7afd;
  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );

  padding: 26px 30px;
}

.legalERCKntn7__logo {
  width: 80px;
  height: auto;
}

.legalERCKntn7__text {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .legalERCKntn7__card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .legalERCKntn7__logo {
    width: 90px;
  }
}

@media (max-width: 768px) {
  .legalERCKntn7 {
    padding: 50px 0;
  }

  .legalERCKntn7__title {
    font-size: 26px;
  }

  .legalERCKntn7__text {
    font-size: 20px;
  }
}

.weeklyERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.weeklyERCKntn7__inner {
  display: flex;
  align-items: center;

  gap: 170px;
}

.weeklyERCKntn7__content {
  max-width: 720px;
  width: 100%;
}

.weeklyERCKntn7__title {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.weeklyERCKntn7__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.weeklyERCKntn7__list li {
  position: relative;
  padding: 18px 22px 18px 56px;

  border-radius: 16px;
  border: 1px solid #7c7afd;
  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );

  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.weeklyERCKntn7__list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url('/imagesERCKntn7/cupERCKntn7.webp') no-repeat center/contain;
}

.weeklyERCKntn7__image img {
  max-width: 240px;
  height: auto;
}

@media (max-width: 1000px) {
  .weeklyERCKntn7__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .weeklyERCKntn7__image {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .weeklyERCKntn7 {
    padding: 50px 0;
  }

  .weeklyERCKntn7__title {
    font-size: 26px;
  }

  .weeklyERCKntn7__list li {
    font-size: 18px;
    padding: 16px 20px 16px 50px;
  }

  .weeklyERCKntn7__image img {
    max-width: 200px;
  }
}

.winnersERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.winnersERCKntn7__title {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.winnersERCKntn7__inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.winnersERCKntn7__image img {
  max-width: 260px;
  height: auto;
}

.winnersERCKntn7__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.winnersERCKntn7__card {
  padding: 28px 32px;

  border-radius: 16px;
  border: 1px solid #7c7afd;

  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );
}

.winnersERCKntn7__card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.winnersERCKntn7__card-title img {
  width: 28px;
  height: 28px;
}

.winnersERCKntn7__card-title h3 {
  color: #7c7afd;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.winnersERCKntn7__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.winnersERCKntn7__list li {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.winnersERCKntn7__card p {
  color: #fcfcfc;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  margin: 8px 0;
}

@media (max-width: 1000px) {
  .winnersERCKntn7__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .winnersERCKntn7__image {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .winnersERCKntn7 {
    padding: 50px 0;
  }

  .winnersERCKntn7__title {
    font-size: 24px;
  }

  .winnersERCKntn7__card {
    padding: 22px;
  }

  .winnersERCKntn7__card-title h3 {
    font-size: 20px;
  }

  .winnersERCKntn7__list li {
    font-size: 15px;
  }

  .winnersERCKntn7__image img {
    max-width: 220px;
  }
}
.free-entryERCKntn7 {
  background: #0b0c0b;
  padding: 80px 0;
}

.free-entryERCKntn7__title {
  text-align: center;
  margin-bottom: 40px;

  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.free-entryERCKntn7__box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;

  padding: 60px;

  border-radius: 30px;
  border: 1px solid #7c7afd;

  background: linear-gradient(
    180deg,
    rgba(117, 117, 241, 0.34) 0%,
    rgba(32, 51, 100, 0.34) 100%
  );
}

.free-entryERCKntn7__subtitle {
  color: #7c7afd;
  font-family: 'DM Sans';
  font-size: 22px;
  font-weight: 600;

  margin-bottom: 30px;
}

.free-entryERCKntn7__form {
  display: grid;
  gap: 24px;
  max-width: 501px;
}

.free-entryERCKntn7__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.free-entryERCKntn7__field label {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  text-align: left;
}

.free-entryERCKntn7__form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #7c7afd;

  padding: 10px 0;

  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
}

.free-entryERCKntn7__form input::placeholder {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
}

.free-entryERCKntn7__btn {
  margin-top: 10px;

  width: 200px;
  height: 56px;

  border-radius: 30px;
  border: 1px solid #ffffff;

  background: linear-gradient(180deg, #7c7afd 0%, #13294e 100%);

  color: #fff;
  font-family: 'DM Sans';
  font-size: 18px;
  font-weight: 500;

  cursor: pointer;
  margin: auto;
}

.free-entryERCKntn7__btn:hover {
  opacity: 0.9;
}

.free-entryERCKntn7__message {
  color: #7c7afd;
  font-family: 'DM Sans';
  font-size: 14px;

  min-height: 20px;
}

.free-entryERCKntn7__image img {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 1000px) {
  .free-entryERCKntn7__box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .free-entryERCKntn7__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .free-entryERCKntn7 {
    padding: 50px 0;
  }

  .free-entryERCKntn7__title {
    font-size: 24px;
  }

  .free-entryERCKntn7__box {
    padding: 40px 24px;
    gap: 40px;
  }
}

.footerERCKntn7 {
  background: #0b0c0b;
  padding: 70px 0 40px;
}

.footerERCKntn7__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footerERCKntn7 h2 {
  color: #7c7afd;
  font-family: 'DM Sans';
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footerERCKntn7 p {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  line-height: 120%;
}

.footerERCKntn7__logos {
  list-style: none;
  padding: 0;
  margin: 40px 0;

  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.footerERCKntn7__logos li a img {
  max-height: 50px;
  width: auto;
  display: block;
}

.footerERCKntn7__text {
  margin: 20px 0 30px;
}

.footer_logoERCKntn7 {
  margin-bottom: 20px;
}

.footerERCKntn7__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footerERCKntn7__nav a {
  color: #fcfcfc;
  font-family: 'DM Sans';
  font-size: 14px;
  text-decoration: none;
}

.footerERCKntn7__nav a:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footerERCKntn7__top {
    grid-template-columns: 1fr;
  }

  .footerERCKntn7__logos {
    justify-content: center;
  }

  .footerERCKntn7__nav ul {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footerERCKntn7__logos {
    gap: 25px;
  }

  .footerERCKntn7__logos li a img {
    max-height: 40px;
  }

  .footerERCKntn7__nav ul {
    gap: 20px;
    justify-content: center;
  }
}

.terms {
  background: #0b0c0b;
  padding: 80px 0;
  word-wrap: break-word;
}

.terms h1 {
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.terms p {
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms a {
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.terms ul {
  list-style: disc;
  margin-bottom: 20px;
}

.terms ul li {
  list-style-type: disc;
  margin-left: 10px;
  color: var(--white, #fcfcfc);
  font-family: 'DM Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 600px) {
  .terms {
    padding: 40px 0;
  }
  .terms h1 {
    color: var(--white, #fcfcfc);
    font-family: 'DM Sans';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
}
