/* 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: 'Lato';
  src: url('/fontsWHJfdhks8j/lato-regularWHJfdhks8j.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/fontsWHJfdhks8j/lato-boldWHJfdhks8j.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('/fontsWHJfdhks8j/worksans-variablefontWHJfdhks8j.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%;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fontsBfdjks7/poppins-regularBfdjks7.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fontsBfdjks7/poppins-boldBfdjks7.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.headerBfdjks7 {
  position: relative;
  z-index: 100;
  background: #052d0e;
}

.headerBfdjks7__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.headerBfdjks7__logo {
  display: inline-flex;
  align-items: center;
  width: 225px;
  flex-shrink: 0;
}

.headerBfdjks7__logo img {
  display: block;
  width: 225px;
  height: auto;
  object-fit: contain;
}

.headerBfdjks7__nav {
  display: flex;
  align-items: center;
}

.headerBfdjks7__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerBfdjks7__link,
.headerBfdjks7__mobile-list a {
  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.25s ease;
}

.headerBfdjks7__link:hover,
.headerBfdjks7__mobile-list a:hover {
  color: #ffffff;
}

.headerBfdjks7__burger {
  display: none;
  width: 80px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerBfdjks7__burger span {
  display: block;
  width: 80px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.headerBfdjks7__burger span:last-child {
  margin-bottom: 0;
}

.headerBfdjks7__burger.active span:nth-child(1) {
  transform: translateY(10.688px) rotate(45deg);
}

.headerBfdjks7__burger.active span:nth-child(2) {
  opacity: 0;
}

.headerBfdjks7__burger.active span:nth-child(3) {
  transform: translateY(-10.688px) rotate(-45deg);
}

.headerBfdjks7__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.headerBfdjks7__overlay.active {
  opacity: 1;
  visibility: visible;
}

.headerBfdjks7__mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(340px, 86vw);
  height: 100vh;
  padding: 120px 28px 32px;
  background: #052d0e;
  transform: translateX(110%);
  transition: transform 0.35s ease;
}

.headerBfdjks7__mobile.active {
  transform: translateX(0);
}

.headerBfdjks7__mobile-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerBfdjks7__mobile-list a {
  font-size: 20px;
}

@media (max-width: 768px) {
  .headerBfdjks7__container {
    min-height: 60px;
  }

  .headerBfdjks7__nav {
    display: none;
  }

  .headerBfdjks7__burger {
    display: block;
    position: relative;
    z-index: 120;
  }

  .headerBfdjks7__logo,
  .headerBfdjks7__logo img {
    width: 225px;
  }

  .headerBfdjks7__burger {
    width: 40px;
    height: 40px;
  }

  .headerBfdjks7__burger span {
    width: 40px;
    height: 2.688px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .headerBfdjks7__container {
    min-height: 60px;
  }

  .headerBfdjks7__logo,
  .headerBfdjks7__logo img {
    width: 210px;
  }

  .headerBfdjks7__burger {
    width: 40px;
    height: 40px;
  }

  .headerBfdjks7__burger span {
    width: 40px;
    height: 2.688px;
    margin-bottom: 8px;
  }

  .headerBfdjks7__burger.active span:nth-child(1) {
    transform: translateY(10.688px) rotate(45deg);
  }

  .headerBfdjks7__burger.active span:nth-child(2) {
    opacity: 0;
  }

  .headerBfdjks7__burger.active span:nth-child(3) {
    transform: translateY(-10.688px) rotate(-45deg);
  }
}

.heroBfdjks7 {
  position: relative;
  min-height: 540px;
  padding: 42px 0 40px;
  overflow: hidden;
  background: linear-gradient(
      0deg,
      rgba(5, 45, 14, 0.5) 0%,
      rgba(5, 45, 14, 0.5) 100%
    ),
    url('/imagesBfdjks7/hero-placeBfdjks7.webp') lightgray 50% / cover no-repeat;
}

.heroBfdjks7__container {
  position: relative;
  z-index: 2;
}

.heroBfdjks7__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.heroBfdjks7__title {
  max-width: 850px;
  margin: 0 auto 24px;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.heroBfdjks7__text {
  max-width: 850px;
  margin: 0 auto 24px;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.heroBfdjks7__timer {
  max-width: 635px;
  margin: 0 auto 18px;
  padding: 38px 36px 36px;
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: rgba(66, 173, 90, 0.3);
  backdrop-filter: blur(10px);
}

.heroBfdjks7__timer-title {
  margin: 0 0 22px;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.heroBfdjks7__timer-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.heroBfdjks7__timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-height: 100px;
  padding: 12px 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, #e3c30c 0%, #6cd51c 100%);
}

.heroBfdjks7__timer-item strong {
  margin-bottom: 6px;
  color: #052d0e;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.heroBfdjks7__timer-item span {
  color: #052d0e;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.heroBfdjks7__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(440px, 100%);
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e3c30c 0%, #6cd51c 100%);
  color: #052d0e;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.heroBfdjks7__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

@media (max-width: 768px) {
  .heroBfdjks7 {
    min-height: auto;
    padding: 40px 0;
  }

  .heroBfdjks7__title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .heroBfdjks7__text {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .heroBfdjks7__timer {
    padding: 32px 16px;
  }

  .heroBfdjks7__timer-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .heroBfdjks7__timer-list {
    gap: 8px;
  }

  .heroBfdjks7__timer-item {
    flex: 1;
    width: auto;
    min-height: 96px;
  }

  .heroBfdjks7__timer-item strong {
    font-size: 32px;
  }

  .heroBfdjks7__button {
    width: 100%;
  }
}

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

  .heroBfdjks7__timer {
    padding: 28px 14px;
  }

  .heroBfdjks7__timer-item {
    min-height: 90px;
    padding: 10px 6px;
  }

  .heroBfdjks7__timer-item strong {
    font-size: 28px;
  }

  .heroBfdjks7__timer-item span {
    font-size: 12px;
  }
}

.reasonsBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.reasonsBfdjks7__title {
  margin: 0 0 32px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.reasonsBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.reasonsBfdjks7__item {
  padding: 24px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: transparent;
}

.reasonsBfdjks7__num {
  display: block;
  margin-bottom: 24px;

  color: #6cd51c;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.reasonsBfdjks7__subtitle {
  margin: 0 0 14px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.reasonsBfdjks7__text {
  margin: 0;

  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

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

  .reasonsBfdjks7__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .reasonsBfdjks7__list {
    gap: 16px;
  }

  .reasonsBfdjks7__item {
    padding: 32px;
    min-height: 220px;
  }

  .reasonsBfdjks7__num {
    margin-bottom: 40px;
  }

  .reasonsBfdjks7__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .reasonsBfdjks7__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.graphicBfdjks7 {
  padding: 42px 0;

  background: linear-gradient(
      0deg,
      rgba(5, 45, 14, 0.5) 0%,
      rgba(5, 45, 14, 0.5) 100%
    ),
    url('/imagesBfdjks7/graphicBfdjks7.webp') center / cover no-repeat;
}

.graphicBfdjks7__title {
  max-width: 980px;
  margin: 0 0 28px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.graphicBfdjks7__box {
  padding: 32px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.graphicBfdjks7__text {
  margin: 0 0 28px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.graphicBfdjks7__text:last-child {
  margin-bottom: 0;
}

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

  .graphicBfdjks7__title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .graphicBfdjks7__box {
    padding: 18px;
  }

  .graphicBfdjks7__text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.worksBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.worksBfdjks7__title {
  margin: 0 0 40px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.worksBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.worksBfdjks7__item {
  position: relative;
}

.worksBfdjks7__card {
  height: 100%;
  min-height: 260px;
  padding: 24px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.worksBfdjks7__subtitle {
  margin: 0 0 18px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.worksBfdjks7__text {
  margin: 0;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.worksBfdjks7__arrow {
  position: absolute;
  top: 50%;
  right: -40px;

  width: 28px;
  height: 28px;

  transform: translateY(-50%);
  object-fit: contain;
}

.worksBfdjks7__item:last-child .worksBfdjks7__arrow {
  display: none;
}

@media (max-width: 1100px) {
  .worksBfdjks7__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 60px;
  }

  .worksBfdjks7__arrow {
    display: none;
  }
}

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

  .worksBfdjks7__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .worksBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .worksBfdjks7__card {
    min-height: auto;
  }

  .worksBfdjks7__arrow {
    display: block;

    position: relative;
    top: auto;
    right: auto;

    margin: 18px auto 0;

    transform: rotate(90deg);
  }

  .worksBfdjks7__item:last-child .worksBfdjks7__arrow {
    display: none;
  }
}

.winBfdjks7 {
  padding: 56px 0 64px;
  background: #052d0e;
}

.winBfdjks7__top {
  margin-bottom: 34px;
}

.winBfdjks7__title {
  margin: 0 0 20px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.winBfdjks7__lead {
  max-width: 1328px;
  margin: 0;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

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

.winBfdjks7__card {
  min-height: 358px;
  height: 100%;
  padding: 28px 26px 24px;
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: transparent;
}

.winBfdjks7__label {
  display: block;
  margin-bottom: 18px;
  color: #6cd51c;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.winBfdjks7__subtitle {
  margin: 0 0 16px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.winBfdjks7__text {
  max-width: 390px;
  margin: 0 0 28px;
  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.winBfdjks7__image {
  display: block;
  object-fit: contain;
}

.winBfdjks7__image--table {
  width: 78px;
  height: auto;
  margin-left: 4px;
}

.winBfdjks7__image--hat {
  width: 70px;
  height: auto;
  margin-left: 8px;
}

.winBfdjks7__image--sweatshot {
  width: 86px;
  height: auto;
  margin-left: 14px;
}

@media (max-width: 1024px) {
  .winBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .winBfdjks7__card {
    min-height: auto;
  }

  .winBfdjks7__text {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .winBfdjks7 {
    padding: 32px 0 40px;
  }

  .winBfdjks7__top {
    margin-bottom: 30px;
  }

  .winBfdjks7__title {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .winBfdjks7__lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .winBfdjks7__list {
    gap: 20px;
  }

  .winBfdjks7__card {
    padding: 24px 20px 28px;
  }

  .winBfdjks7__label {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .winBfdjks7__subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .winBfdjks7__text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.45;
  }

  .winBfdjks7__image--table {
    width: 72px;
  }

  .winBfdjks7__image--hat {
    width: 68px;
  }

  .winBfdjks7__image--sweatshot {
    width: 76px;
  }
}

.predictionBfdjks7 {
  padding: 44px 0;
  background: #052d0e;
}

.predictionBfdjks7__title {
  margin: 0 0 34px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.predictionBfdjks7__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 314px;
  align-items: center;
  gap: 42px;

  padding: 32px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.predictionBfdjks7__text {
  margin: 0 0 22px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.predictionBfdjks7__text:last-child {
  margin-bottom: 0;
}

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

.predictionBfdjks7__image {
  display: block;
  width: 100%;
  max-width: 314px;
  height: auto;

  border-radius: 16px;

  object-fit: contain;
}

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

  .predictionBfdjks7__image-wrap {
    justify-content: flex-start;
  }
}

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

  .predictionBfdjks7__title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .predictionBfdjks7__box {
    padding: 18px;
    gap: 24px;
  }

  .predictionBfdjks7__text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .predictionBfdjks7__image-wrap {
    justify-content: center;
  }

  .predictionBfdjks7__image {
    max-width: 233px;
  }
}

.sportBfdjks7 {
  padding: 56px 0;
  background: #052d0e;
}

.sportBfdjks7__top {
  margin-bottom: 32px;
}

.sportBfdjks7__title {
  margin: 0 0 16px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.sportBfdjks7__lead {
  margin: 0;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sportBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.sportBfdjks7__card {
  height: 100%;
  min-height: 220px;
  padding: 22px 18px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: transparent;
}

.sportBfdjks7__subtitle {
  margin: 0 0 18px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.sportBfdjks7__text {
  margin: 0;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

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

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

  .sportBfdjks7__top {
    margin-bottom: 24px;
  }

  .sportBfdjks7__title {
    font-size: 28px;
  }

  .sportBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sportBfdjks7__card {
    min-height: auto;
    padding: 22px 18px;
  }

  .sportBfdjks7__subtitle {
    margin-bottom: 16px;
  }
}

.eventsBfdjks7 {
  padding: 36px 0 40px;
  background: #052d0e;
}

.eventsBfdjks7__top {
  margin-bottom: 24px;
}

.eventsBfdjks7__title {
  margin: 0 0 14px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.eventsBfdjks7__text {
  margin: 0;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.eventsBfdjks7__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 169px;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eventsBfdjks7__item {
  overflow: hidden;
  border-radius: 8px;
}

.eventsBfdjks7__item--large {
  grid-row: span 2;
}

.eventsBfdjks7__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .eventsBfdjks7__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .eventsBfdjks7__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .eventsBfdjks7__item {
    aspect-ratio: 203 / 169;
  }

  .eventsBfdjks7__item--large {
    aspect-ratio: 430 / 366;
  }
}

@media (max-width: 768px) {
  .eventsBfdjks7 {
    padding: 32px 0 40px;
  }

  .eventsBfdjks7__top {
    margin-bottom: 28px;
  }

  .eventsBfdjks7__title {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.45;
  }

  .eventsBfdjks7__text {
    font-size: 24px;
    line-height: 1.55;
  }

  .eventsBfdjks7__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .eventsBfdjks7__item {
    border-radius: 16px;
  }

  .eventsBfdjks7__item--large {
    grid-column: 1 / -1;
    aspect-ratio: 509 / 297;
  }
}

@media (max-width: 480px) {
  .eventsBfdjks7__grid {
    gap: 16px 14px;
  }

  .eventsBfdjks7__title {
    font-size: 32px;
  }

  .eventsBfdjks7__text {
    font-size: 24px;
  }
}

.faqBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.faqBfdjks7__title {
  margin: 0 0 32px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.faqBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faqBfdjks7__item {
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: rgba(66, 173, 90, 0.3);
  backdrop-filter: blur(10px);
}

.faqBfdjks7__question {
  margin: 0 0 8px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.faqBfdjks7__answer {
  margin: 0;
  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

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

  .faqBfdjks7__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .faqBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faqBfdjks7__item {
    padding: 22px 18px;
  }
}

.fansBfdjks7 {
  padding: 48px 0;
  background: #052d0e;
}

.fansBfdjks7__title {
  margin: 0 0 34px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.fansBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.fansBfdjks7__item {
  min-height: 214px;
  padding: 18px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: transparent;
}

.fansBfdjks7__quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.fansBfdjks7__text {
  margin: 0 0 auto;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.fansBfdjks7__author {
  margin-top: 26px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

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

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

  .fansBfdjks7__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .fansBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fansBfdjks7__item {
    min-height: auto;
    padding: 18px;
  }

  .fansBfdjks7__author {
    margin-top: 24px;
  }
}

.footerBfdjks7 {
  padding: 48px 0;
  background: #052d0e;
}

.footerBfdjks7__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1fr;
  gap: 48px;
}

.footerBfdjks7__age {
  display: block;
  margin-bottom: 22px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.footerBfdjks7__text {
  max-width: 320px;
  margin: 0;

  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.footerBfdjks7__label {
  display: block;
  margin-bottom: 24px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.footerBfdjks7__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerBfdjks7__list li:not(:last-child) {
  margin-bottom: 16px;
}

.footerBfdjks7__list a {
  color: #fefefe;
  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.footerBfdjks7__logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.footerBfdjks7__logo img {
  width: 227px;
  height: auto;
}

.footerBfdjks7__social-list {
  display: flex;
  gap: 18px;

  margin: 0 0 24px;
  padding: 0;

  list-style: none;
}

.footerBfdjks7__social-list img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

  color: #fefefe;
  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.footerBfdjks7__mail img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .footerBfdjks7__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

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

  .footerBfdjks7__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footerBfdjks7__age {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .footerBfdjks7__text {
    max-width: none;
  }

  .footerBfdjks7__logo {
    margin-bottom: 18px;
  }

  .footerBfdjks7__logo img {
    width: 227px;
  }

  .footerBfdjks7__social {
    grid-column: 1 / -1;
  }

  .footerBfdjks7__mail {
    flex-wrap: wrap;
  }
}

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

  .footerBfdjks7__social-list {
    gap: 20px;
  }
}
.finalBfdjks7 {
  padding: 52px 0 60px;
  background: #052d0e;
  overflow: hidden;
}

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

.finalBfdjks7__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 712px;
  min-height: 50px;

  margin: 0 0 42px;
  padding: 12px 24px;

  border-radius: 30px;
  border: 2px solid #6cd51c;

  backdrop-filter: blur(2px);
  box-sizing: border-box;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.finalBfdjks7__title {
  width: 100%;
  max-width: 1260px;

  margin: 0 0 36px;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;

  overflow-wrap: break-word;
  word-break: normal;
}

.finalBfdjks7__text {
  max-width: 760px;
  margin: 0;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2.2vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .finalBfdjks7 {
    padding: 44px 0 48px;
  }

  .finalBfdjks7__badge {
    max-width: 100%;
    min-height: auto;
    margin-bottom: 32px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .finalBfdjks7__title {
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.45;
  }

  .finalBfdjks7__text {
    font-size: 18px;
    line-height: 1.45;
  }
}

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

  .finalBfdjks7__badge {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 28px;
  }

  .finalBfdjks7__title {
    font-size: 28px;
    line-height: 1.38;
  }

  .finalBfdjks7__text {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .finalBfdjks7__title {
    font-size: 24px;
  }

  .finalBfdjks7__badge {
    font-size: 12px;
  }
}

.storyBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.storyBfdjks7__box {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: rgba(66, 173, 90, 0.3);
  backdrop-filter: blur(10px);
}

.storyBfdjks7__box p {
  margin: 0 0 22px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.storyBfdjks7__box p:last-child {
  margin-bottom: 0;
}

.storyBfdjks7__list {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.storyBfdjks7__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.storyBfdjks7__list img {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  object-fit: contain;
}

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

  .storyBfdjks7__box {
    padding: 20px;
  }

  .storyBfdjks7__box p,
  .storyBfdjks7__list li {
    font-size: 14px;
    line-height: 1.55;
  }
}

.smartBfdjks7 {
  padding: 48px 0;
  background: #052d0e;
}

.smartBfdjks7__top {
  margin-bottom: 28px;
}

.smartBfdjks7__title {
  margin: 0 0 16px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.smartBfdjks7__lead {
  margin: 0;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.smartBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;

  margin: 0 0 28px;
  padding: 0;

  list-style: none;
}

.smartBfdjks7__card {
  height: 100%;
  min-height: 230px;

  padding: 22px 32px 28px;

  border-radius: 16px;
  border: 1px solid #6cd51c;
}

.smartBfdjks7__icon {
  display: block;

  width: 24px;
  height: 24px;

  margin-bottom: 34px;

  object-fit: contain;
}

.smartBfdjks7__subtitle {
  margin: 0 0 18px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.smartBfdjks7__text,
.smartBfdjks7__bottom p {
  margin: 0;

  color: #cbcbcb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.smartBfdjks7__bottom p:not(:last-child) {
  margin-bottom: 18px;
}

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

  .smartBfdjks7__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .smartBfdjks7__card {
    min-height: auto;
    padding: 22px 18px;
  }

  .smartBfdjks7__icon {
    margin-bottom: 28px;
  }

  .smartBfdjks7__title {
    font-size: 28px;
  }
}

.locationBfdjks7 {
  padding: 52px 0;
  background: #052d0e;
}

.locationBfdjks7__top {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.locationBfdjks7__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;
  margin: 0 0 28px;
  padding: 8px 22px;

  border-radius: 30px;
  border: 2px solid #6cd51c;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(2px);
}

.locationBfdjks7__title {
  margin: 0 0 24px;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.locationBfdjks7__text {
  margin: 0;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.locationBfdjks7__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 22px;
  align-items: start;
}

.locationBfdjks7__list {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.locationBfdjks7__item {
  padding: 18px 16px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.locationBfdjks7__label {
  display: block;
  margin-bottom: 14px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.locationBfdjks7__value {
  margin: 0;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.locationBfdjks7__map {
  overflow: hidden;
  border-radius: 16px;
}

.locationBfdjks7__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

  .locationBfdjks7__map {
    order: 2;
  }
}

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

  .locationBfdjks7__top {
    margin-bottom: 28px;
  }

  .locationBfdjks7__badge {
    margin-bottom: 22px;
  }

  .locationBfdjks7__title {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.45;
  }

  .locationBfdjks7__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .locationBfdjks7__value {
    font-size: 18px;
  }

  .locationBfdjks7__map img {
    aspect-ratio: 1 / 1.35;
  }
}

.footballEventBfdjks7 {
  padding: 36px 0 48px;
  background: #052d0e;
}

.footballEventBfdjks7__top {
  margin-bottom: 28px;
}

.footballEventBfdjks7__title {
  margin: 0 0 18px;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.footballEventBfdjks7__text {
  max-width: 620px;
  margin: 0;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.footballEventBfdjks7__grid {
  display: grid;
  grid-template-columns: 1fr 226px 226px;
  grid-auto-rows: 192px;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footballEventBfdjks7__item {
  overflow: hidden;
  border-radius: 8px;
}

.footballEventBfdjks7__item--large {
  grid-row: span 2;
}

.footballEventBfdjks7__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .footballEventBfdjks7__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .footballEventBfdjks7__item {
    aspect-ratio: 226 / 192;
  }

  .footballEventBfdjks7__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 478 / 410;
  }
}

@media (max-width: 768px) {
  .footballEventBfdjks7 {
    padding: 32px 0 44px;
  }

  .footballEventBfdjks7__top {
    margin-bottom: 20px;
  }

  .footballEventBfdjks7__title {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.35;
  }

  .footballEventBfdjks7__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .footballEventBfdjks7__grid {
    gap: 12px;
  }

  .footballEventBfdjks7__item {
    border-radius: 8px;
  }
}

.partnersBfdjks7 {
  padding: 52px 0;
  background: #052d0e;
}

.partnersBfdjks7__top {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.partnersBfdjks7__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(456px, 100%);
  min-height: 48px;
  margin: 0 0 34px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid #6cd51c;
  box-sizing: border-box;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.partnersBfdjks7__title {
  margin: 0 0 28px;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.partnersBfdjks7__text {
  margin: 0;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

.partnersBfdjks7__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 356px));
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partnerCardBfdjks7 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px 18px 18px;
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: rgba(66, 173, 90, 0.3);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  overflow: hidden;
}

.partnerCardBfdjks7__label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 138px;
  max-width: 65%;
  padding: 7px 10px;
  border-radius: 14px 0 8px 0;
  background: #e3c30c;
  color: #052d0e;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.partnerCardBfdjks7__online {
  margin: 0;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.partnerCardBfdjks7__left,
.partnerCardBfdjks7__right {
  display: contents;
}

.partnerCardBfdjks7__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 92px;
  margin: 0 auto 12px;
  text-decoration: none;
}

.partnerCardBfdjks7__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partnerCardBfdjks7__bonus {
  display: block;
  min-height: 58px;
  margin: 0 0 18px;
  color: #fefefe;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.partnerCardBfdjks7__rate-row {
  display: block;
  margin-bottom: 8px;
}

.partnerCardBfdjks7__rating {
  display: block;
  margin-bottom: 8px;
  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.partnerCardBfdjks7__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.partnerCardBfdjks7__stars img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.partnerCardBfdjks7__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e3c30c 0%, #6cd51c 100%);
  color: #052d0e;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.partnerCardBfdjks7__payments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.partnerCardBfdjks7__payments img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (min-width: 769px) {
  .partnerCardBfdjks7__online {
    margin: 0 0 8px;
  }
}

@media (max-width: 1100px) {
  .partnersBfdjks7__list {
    grid-template-columns: 1fr;
    max-width: 646px;
    gap: 20px;
    margin: 0 auto;
  }

  .partnerCardBfdjks7 {
    min-height: 310px;
    padding: 17px 23px 16px;
    display: grid;
    grid-template-columns: 44% 56%;
    grid-template-areas:
      'left online'
      'left bonus'
      'left button'
      'left payments';
    align-items: center;
    gap: 8px 14px;
    border-radius: 28px;
  }

  .partnerCardBfdjks7__left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .partnerCardBfdjks7__right {
    grid-area: bonus;
    display: contents;
  }

  .partnerCardBfdjks7__online {
    grid-area: online;
    justify-self: end;
    align-self: start;
    padding-right: 6px;
    font-size: 18px;
  }

  .partnerCardBfdjks7__logo {
    width: 100%;
    height: 120px;
    margin: 0 0 12px;
  }

  .partnerCardBfdjks7__rate-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .partnerCardBfdjks7__rating {
    margin: 0;
    font-size: 42px;
  }

  .partnerCardBfdjks7__stars {
    gap: 2px;
  }

  .partnerCardBfdjks7__stars img {
    width: 28px;
    height: 28px;
  }

  .partnerCardBfdjks7__bonus {
    grid-area: bonus;
    align-self: end;
    margin: 0;
    min-height: auto;
    font-size: 28px;
    line-height: 1.45;
  }

  .partnerCardBfdjks7__button {
    grid-area: button;
    min-height: 80px;
    font-size: 24px;
  }

  .partnerCardBfdjks7__payments {
    grid-area: payments;
    justify-content: space-between;
    margin: 0;
  }

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

  .partnerCardBfdjks7__label {
    min-width: 300px;
    padding: 12px 20px;
    font-size: 24px;
    border-radius: 20px 0 14px 0;
  }
}

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

  .partnersBfdjks7__top {
    margin-bottom: 30px;
  }

  .partnersBfdjks7__badge {
    min-height: 42px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .partnersBfdjks7__title {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.45;
  }

  .partnersBfdjks7__text {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (max-width: 560px) {
  .partnersBfdjks7__list {
    max-width: 100%;
  }

  .partnerCardBfdjks7 {
    min-height: 184px;
    padding: 9px 14px 10px;
    grid-template-columns: 41% 59%;
    gap: 6px 8px;
    border-radius: 16px;
  }

  .partnerCardBfdjks7__label {
    min-width: 164px;
    max-width: 72%;
    padding: 7px 10px;
    font-size: 13px;
    border-radius: 12px 0 8px 0;
  }

  .partnerCardBfdjks7__online {
    font-size: 14px;
  }

  .partnerCardBfdjks7__logo {
    height: 74px;
    margin-bottom: 6px;
  }

  .partnerCardBfdjks7__rating {
    font-size: 32px;
  }

  .partnerCardBfdjks7__stars img {
    width: 17px;
    height: 17px;
  }

  .partnerCardBfdjks7__rate-row {
    gap: 5px;
  }

  .partnerCardBfdjks7__bonus {
    font-size: 16px;
  }

  .partnerCardBfdjks7__button {
    min-height: 44px;
    font-size: 15px;
  }

  .partnerCardBfdjks7__payments {
    gap: 5px;
  }

  .partnerCardBfdjks7__payments img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 380px) {
  .partnerCardBfdjks7 {
    grid-template-columns: 40% 60%;
  }

  .partnerCardBfdjks7__bonus {
    font-size: 14px;
  }

  .partnerCardBfdjks7__button {
    font-size: 14px;
  }

  .partnerCardBfdjks7__payments img {
    width: 22px;
    height: 22px;
  }

  .partnerCardBfdjks7__stars img {
    width: 15px;
    height: 15px;
  }

  .partnerCardBfdjks7__rating {
    font-size: 28px;
  }
}

.worldCupBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.worldCupBfdjks7__title {
  margin: 0 0 32px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.worldCupBfdjks7__box {
  padding: 22px 18px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.worldCupBfdjks7__article h3 {
  margin: 0 0 12px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.worldCupBfdjks7__article p {
  margin: 0 0 24px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.worldCupBfdjks7__article p:last-child {
  margin-bottom: 0;
}

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

  .worldCupBfdjks7__title {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.35;
  }

  .worldCupBfdjks7__box {
    padding: 18px;
  }

  .worldCupBfdjks7__article h3 {
    font-size: 18px;
  }

  .worldCupBfdjks7__article p {
    font-size: 15px;
    line-height: 1.55;
  }
}

.helpCenterBfdjks7 {
  padding: 28px 0;
  background: #052d0e;
}

.helpCenterBfdjks7__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.helpCenterBfdjks7__item {
  flex: 0 1 auto;
}

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

.helpCenterBfdjks7__item img {
  display: block;

  max-width: 100%;
  height: auto;

  object-fit: contain;
}

@media (max-width: 992px) {
  .helpCenterBfdjks7__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 36px;
  }
}

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

  .helpCenterBfdjks7__list {
    gap: 24px;
  }
}

.disclaimerBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.disclaimerBfdjks7__box {
  padding: 30px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.disclaimerBfdjks7__title {
  margin: 0 0 18px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.disclaimerBfdjks7__text {
  margin: 0 0 24px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
}

.disclaimerBfdjks7__text:last-child {
  margin-bottom: 0;
}

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

  .disclaimerBfdjks7__box {
    padding: 20px 18px;
  }

  .disclaimerBfdjks7__title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .disclaimerBfdjks7__text {
    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.6;
  }
}

.brandsInfoBfdjks7 {
  padding: 52px 0;
  background: #052d0e;
}

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

.brandsInfoBfdjks7__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  width: min(312px, 100%);

  margin: 0 0 42px;
  padding: 12px 24px;

  border-radius: 30px;
  border: 2px solid #6cd51c;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.brandsInfoBfdjks7__title {
  margin: 0 0 38px;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.brandsInfoBfdjks7__subtitle {
  margin: 0 0 44px;

  color: #fefefe;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.brandsInfoBfdjks7__box {
  width: 100%;
  padding: 38px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);

  box-sizing: border-box;
}

.brandsInfoBfdjks7__box p {
  margin: 0 0 28px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.brandsInfoBfdjks7__box p:last-child {
  margin-bottom: 0;
}

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

  .brandsInfoBfdjks7__badge {
    min-height: 46px;

    margin-bottom: 28px;
    padding: 10px 18px;

    font-size: 14px;
  }

  .brandsInfoBfdjks7__title {
    margin-bottom: 22px;

    font-size: 32px;
    line-height: 1.35;
  }

  .brandsInfoBfdjks7__subtitle {
    margin-bottom: 28px;

    font-size: 18px;
    line-height: 1.45;
  }

  .brandsInfoBfdjks7__box {
    padding: 22px 18px;
  }

  .brandsInfoBfdjks7__box p {
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.6;
  }
}

.slotGameBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.slotGameBfdjks7__box {
  position: relative;
  width: 100%;
  aspect-ratio: 1125 / 580;
  overflow: hidden;
  border-radius: 12px;
  background: #052d0e;
}

.slotGameBfdjks7__preview {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: block;
  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slotGameBfdjks7__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slotGameBfdjks7__iframe {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: block;
  width: 100%;
  height: 100%;

  border: 0;
  background: #000;
}

.slotGameBfdjks7__box.active .slotGameBfdjks7__preview {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

  .slotGameBfdjks7__box {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .slotGameBfdjks7__box {
    aspect-ratio: 1 / 1;
  }
}

.predictorsBfdjks7 {
  padding: 40px 0;
  background: #052d0e;
}

.predictorsBfdjks7__title {
  margin: 0 0 28px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.predictorsBfdjks7__box {
  padding: 32px 30px;

  border-radius: 16px;
  border: 1px solid #6cd51c;

  background: rgba(66, 173, 90, 0.3);

  backdrop-filter: blur(10px);
}

.predictorsBfdjks7__article h3 {
  margin: 0 0 14px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.predictorsBfdjks7__article p {
  margin: 0 0 24px;

  color: #fefefe;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.predictorsBfdjks7__article p:last-child {
  margin-bottom: 0;
}

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

  .predictorsBfdjks7__title {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.35;
  }

  .predictorsBfdjks7__box {
    padding: 22px 18px;
  }

  .predictorsBfdjks7__article h3 {
    font-size: 17px;
  }

  .predictorsBfdjks7__article p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }
}

.terms {
  background: #052d0e;
  padding: 40px 0;
  word-wrap: break-word;
}

.terms h1 {
  color: #fefefe;
  text-align: center;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.terms p {
  color: #fefefe;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

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

.terms ul li {
  list-style-type: disc;
  color: #fefefe;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 15px;
}

.terms a {
  color: #fefefe;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.terms .terms-content {
  border-radius: 16px;
  border: 1px solid #6cd51c;
  background: rgba(66, 173, 90, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px;
}

@media (max-width: 720px) {
  .terms h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .terms .terms-content {
    padding: 20px;
  }
}
