/* 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: 'Montserrat';
  src: url('/fontsVkhorf/montserrat-variablefontVkhorf.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%;
}

.headerVkhorf {
  background: #0d4770;
}

.headerVkhorf__container {
  display: grid;
  grid-template-columns: 103px 1fr auto;
  align-items: center;
  min-height: 72px;
}

.headerVkhorf__dots,
.headerVkhorf__icon,
.headerVkhorf__btn,
.headerVkhorf__list button {
  cursor: pointer;
}

.headerVkhorf__dots,
.headerVkhorf__icon,
.headerVkhorf__list button {
  padding: 0;
  border: 0;
  background: transparent;
}

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

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

.headerVkhorf__logo {
  display: flex;
  justify-content: center;
}

.headerVkhorf__logo img {
  display: block;
  width: 200px;
  height: 47px;
  object-fit: contain;
}

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

.headerVkhorf__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.headerVkhorf__btn {
  min-width: 103px;
  height: 43px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: none;
}

.headerVkhorf__btn--white {
  background: #fff;
  color: #0d4770;
}

.headerVkhorf__nav {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 24px;
  -webkit-overflow-scrolling: touch;
}

.headerVkhorf__nav::-webkit-scrollbar {
  display: none;
}

.headerVkhorf__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  min-width: max-content;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.headerVkhorf__list button {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

/* modal */

.modalVkhorf {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 12px 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.modalVkhorf.activeVkhorf {
  opacity: 1;
  visibility: visible;
}

.modalVkhorf__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modalVkhorf__body {
  position: relative;
  z-index: 2;
  width: 395px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.modalVkhorf__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: #0d4770;
}

.modalVkhorf__top img {
  display: block;
  width: 200px;
  height: 47px;
  object-fit: contain;
}

.modalVkhorf__close {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.modalVkhorf__content {
  padding: 26px 22px 28px;
}

.modalVkhorf__title {
  margin: 0 0 22px;
  color: #0d4770;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.modalVkhorf__form {
  display: flex;
  flex-direction: column;
}

.modalVkhorf input {
  width: 100%;
  height: 58px;
  margin: 0 0 16px;
  padding: 0 18px;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  outline: none;
}

.modalVkhorf input::placeholder {
  color: #4f7fa2;
}

.modalVkhorf__link {
  align-self: flex-end;
  margin: 0 0 18px;
  color: #0d4770;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: underline;
}

.modalVkhorf__submit {
  width: 100%;
  min-height: 58px;
  margin: 0 0 20px;
  border: 0;
  border-radius: 999px;
  background: #0d4770;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.modalVkhorf__text {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.modalVkhorf__text a {
  color: #0d4770;
  text-decoration: underline;
}

.modalVkhorf__bottom {
  align-self: center;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0d4770;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .headerVkhorf__container {
    grid-template-columns: 40px 1fr 82px;
    gap: 10px;
    min-height: 78px;
    padding: 0;
  }

  .headerVkhorf__dots img,
  .headerVkhorf__icon img {
    width: 30px;
    height: 30px;
  }

  .headerVkhorf__actions {
    gap: 14px;
  }

  .headerVkhorf__btn {
    display: none;
  }

  .headerVkhorf__logo img {
    width: 210px;
    height: auto;
  }

  .headerVkhorf__nav {
    padding: 20px 0 22px;
  }

  .headerVkhorf__list {
    justify-content: flex-start;
    gap: 46px;
    padding: 0 20px;
  }

  .headerVkhorf__list button {
    font-size: 20px;
    font-weight: 400;
  }
}

@media (max-width: 430px) {
  .headerVkhorf__container {
    grid-template-columns: 34px 1fr 68px;
    gap: 8px;
    min-height: 64px;
  }

  .headerVkhorf__logo img {
    width: 135px;
    height: auto;
  }

  .headerVkhorf__dots img,
  .headerVkhorf__icon img {
    width: 26px;
    height: 26px;
  }

  .headerVkhorf__actions {
    gap: 10px;
  }

  .headerVkhorf__nav {
    padding: 18px 0 18px;
  }

  .headerVkhorf__list {
    gap: 34px;
    padding: 0 18px;
  }

  .headerVkhorf__list button {
    font-size: 20px;
  }

  .modalVkhorf {
    padding: 44px 10px 20px;
  }

  .modalVkhorf__body {
    width: 100%;
    border-radius: 16px;
  }

  .modalVkhorf__top {
    padding: 18px;
  }

  .modalVkhorf__top img {
    width: 150px;
    height: auto;
  }

  .modalVkhorf__content {
    padding: 24px 16px 26px;
  }

  .modalVkhorf__title {
    font-size: 25px;
  }
}
.heroVkhorf {
  overflow: hidden;
  background: #f3f3f3;
}

.heroVkhorf__mainTitle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.heroVkhorf__slider {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
}

.heroVkhorf__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bgVkhorf);
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.08);
}

.heroVkhorf__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 71, 112, 0.2);
}

.heroVkhorf__viewport {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 100%;
}

.heroVkhorf__track {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.heroVkhorf__slide {
  position: relative;
  flex: 0 0 1260px;
  width: 1260px;
  height: 394px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

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

/* обычная кнопка на слайдах */
.heroVkhorf__btn {
  --hover: #0d4770;

  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);

  width: 140px;
  height: 40px;
  padding: 0 16px;

  border: 0;
  border-radius: 999px;
  background: #fff;

  color: #0d4770;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  box-shadow: inset 0 0 0 0 var(--hover);
  transition: 0.35s ease;
  cursor: pointer;
}

.heroVkhorf__btn:hover,
.heroVkhorf__btn:focus {
  color: #fff;
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}

/* 5 слайд с текстом */
.heroVkhorf__slide--content .heroVkhorf__btn:not(.heroVkhorf__btn--static) {
  display: none;
}

.heroVkhorf__content {
  position: absolute;
  left: 46px;
  top: 58px;
  z-index: 3;
}

.heroVkhorf__title {
  margin: 0 0 18px;

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

.heroVkhorf__text {
  margin: 0 0 28px;

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

.heroVkhorf__btn--static {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* dots */
.heroVkhorf__dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 28px 0 34px;
  background: #f3f3f3;
}

.heroVkhorf__dots button {
  width: 60px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #a6b0c3;
  cursor: pointer;
}

.heroVkhorf__dots button.activeVkhorf {
  background: #0d4770;
}

@media (max-width: 1320px) {
  .heroVkhorf__slide {
    flex-basis: calc(100vw - 160px);
    width: calc(100vw - 160px);
    height: auto;
    aspect-ratio: 1260 / 394;
  }
}

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

  .heroVkhorf__bg {
    display: none;
  }

  .heroVkhorf__track {
    gap: 0;
  }

  .heroVkhorf__slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 192px;
    border-radius: 0;
    box-shadow: none;
  }

  .heroVkhorf__slide img {
    object-fit: cover;
  }

  .heroVkhorf__btn {
    left: 16px;
    top: auto;
    bottom: 22px;
    transform: none;
    width: 112px;
    height: 32px;
    font-size: 11px;
  }

  .heroVkhorf__content {
    left: 20px;
    top: 28px;
  }

  .heroVkhorf__title {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .heroVkhorf__text {
    max-width: 220px;
    margin-bottom: 14px;
    font-size: 11px;
  }

  .heroVkhorf__btn--static {
    width: 112px;
    height: 32px;
    font-size: 11px;
  }

  .heroVkhorf__dots {
    position: relative;
    z-index: 3;
    gap: 14px;
    margin-top: -26px;
    padding: 0 0 18px;
    background: transparent;
  }

  .heroVkhorf__dots button {
    width: 42px;
    height: 7px;
  }
}

@media (max-width: 430px) {
  .heroVkhorf__slide {
    height: 192px;
  }

  .heroVkhorf__content {
    left: 16px;
    top: 24px;
  }

  .heroVkhorf__title {
    font-size: 14px;
  }

  .heroVkhorf__text {
    max-width: 180px;
    font-size: 10px;
  }

  .heroVkhorf__dots button {
    width: 34px;
    height: 6px;
  }
}

.gamesVkhorf {
  padding: 0px 0 56px;
  background: #f3f3f3;
}

.gamesVkhorf__container {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.gamesVkhorf__section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.gamesVkhorf__title {
  margin: 0;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}

.gamesVkhorf__see {
  padding: 0;

  border: 0;
  background: transparent;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;
}

.gamesVkhorf__grid {
  display: grid;
  gap: 16px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.gamesVkhorf__grid--casino,
.gamesVkhorf__grid--instants {
  grid-template-columns: repeat(6, 1fr);
}

.gamesVkhorf__grid--live,
.gamesVkhorf__grid--sports {
  grid-template-columns: repeat(4, 1fr);
}

.gamesVkhorf__grid--lottery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* CASINO / INSTANTS */

.gameCardVkhorf {
  position: relative;

  height: 131px;

  overflow: hidden;

  border-radius: 8px;
  background: transparent;

  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.gameCardVkhorf img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.gameCardVkhorf__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;

  min-width: 42px;
  padding: 5px 10px;

  border-radius: 999px;
  background: #45e0c6;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

.gameCardVkhorf__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  opacity: 0;

  background: rgba(0, 0, 0, 0.62);

  transition: opacity 0.25s ease;
}

.gameCardVkhorf:hover .gameCardVkhorf__overlay,
.gameCardVkhorf:focus-within .gameCardVkhorf__overlay {
  opacity: 1;
}

.gameCardVkhorf__play,
.liveCardVkhorf__play,
.sportCardVkhorf__btn {
  min-width: 54px;
  height: 30px;
  padding: 0 14px;

  border: 0;
  border-radius: 3px;

  background: #45e0c6;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;

  cursor: pointer;
}

.gameCardVkhorf__overlay span {
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
}

/* LIVE */

.liveCardVkhorf {
  position: relative;

  height: 200px;

  overflow: hidden;

  border-radius: 13px;
  background: transparent;

  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.liveCardVkhorf::after {
  content: '';

  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(100, 44, 138, 0.9) 100%
  );

  pointer-events: none;
}

.liveCardVkhorf img,
.sportCardVkhorf img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.liveCardVkhorf h3 {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 4;

  margin: 0;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.liveCardVkhorf__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  background: rgba(58, 20, 82, 0.68);

  transition: opacity 0.25s ease;
}

.liveCardVkhorf:hover .liveCardVkhorf__overlay,
.liveCardVkhorf:focus-within .liveCardVkhorf__overlay {
  opacity: 1;
}

/* LOTTERY */

.lotteryCardVkhorf {
  position: relative;

  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;

  height: 200px;

  overflow: hidden;

  border-radius: 13px;

  color: #fff;
}

.lotteryCardVkhorf--green {
  background: #5ca000;
}

.lotteryCardVkhorf--blue {
  background: #2176c8;
}

.lotteryCardVkhorf--orange {
  background: #ff7a33;
}

.lotteryCardVkhorf__info {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;

  width: 18px;
  height: 18px;

  object-fit: contain;
}

.lotteryCardVkhorf__left {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;
  padding: 22px 18px;
}

.lotteryCardVkhorf__left::after {
  content: '';

  position: absolute;
  top: 42px;
  right: 0;
  bottom: 42px;

  width: 1px;

  background: rgba(0, 0, 0, 0.14);
}

.lotteryCardVkhorf__logo {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.lotteryCardVkhorf__logo--max {
  max-width: 150px;
  margin-bottom: 22px;
}

.lotteryCardVkhorf__logo--649 {
  max-width: 155px;
  margin-bottom: 24px;
}

.lotteryCardVkhorf__logo--daily {
  max-width: 116px;
  margin-bottom: 24px;
}

.lotteryCardVkhorf__date {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.lotteryCardVkhorf__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;
  padding: 22px 0px;

  text-align: center;
}

.lotteryCardVkhorf__heading {
  margin: 0 0 8px;

  color: #fff;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 1px;
}

.lotteryCardVkhorf--green .lotteryCardVkhorf__heading {
  margin-bottom: 6px;
  white-space: nowrap;
}

.lotteryCardVkhorf--orange .lotteryCardVkhorf__heading {
  margin-bottom: 22px;
  font-size: 30px;
}

.lotteryCardVkhorf__bonus {
  display: inline-block;

  margin-bottom: 12px;
  padding: 2px 6px;

  border-radius: 0 0 20px 0;
  border-top: 1px solid #fff;
  background: #286eb6;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.lotteryCardVkhorf__label {
  display: inline-block;

  margin-bottom: 8px;
  padding: 4px 8px;

  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
}

.lotteryCardVkhorf__note {
  display: block;

  max-width: 210px;
  margin-bottom: 10px;

  color: #fff;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.18;
}

.lotteryCardVkhorf__btn {
  min-width: 126px;
  height: 36px;
  padding: 0 18px;

  border: 0;
  border-radius: 999px;

  background: #fff;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;

  cursor: pointer;
}

/* SPORTS */

.sportCardVkhorf {
  position: relative;

  height: 200px;

  overflow: hidden;

  border-radius: 13px;
  background: #0d4770;

  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.sportCardVkhorf::after {
  content: '';

  position: absolute;
  inset: 0;
  z-index: 2;

  opacity: 0;

  background: rgba(0, 0, 0, 0.62);

  transition: opacity 0.25s ease;
}

.sportCardVkhorf__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  transform: translate(-50%, -50%);

  opacity: 0;

  transition: opacity 0.25s ease;
}

.sportCardVkhorf:hover::after,
.sportCardVkhorf:focus-within::after,
.sportCardVkhorf:hover .sportCardVkhorf__btn,
.sportCardVkhorf:focus-within .sportCardVkhorf__btn {
  opacity: 1;
}

/* TABLET */

@media (max-width: 1024px) {
  .gamesVkhorf__grid--casino,
  .gamesVkhorf__grid--instants {
    grid-template-columns: repeat(3, 1fr);
  }

  .gamesVkhorf__grid--live,
  .gamesVkhorf__grid--sports {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamesVkhorf__grid--lottery {
    grid-template-columns: 1fr;
  }

  .gameCardVkhorf {
    height: 112px;
  }

  .liveCardVkhorf,
  .sportCardVkhorf {
    height: 180px;
  }

  .lotteryCardVkhorf {
    height: 180px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .gamesVkhorf {
    padding: 34px 0 46px;
    padding-top: 0;
  }

  .gamesVkhorf__container {
    max-width: 390px;
    gap: 36px;
  }

  .gamesVkhorf__section {
    gap: 18px;
  }

  .gamesVkhorf__title {
    font-size: 20px;
  }

  .gamesVkhorf__see {
    font-size: 13px;
  }

  .gamesVkhorf__grid {
    gap: 12px;
  }

  .gamesVkhorf__grid--casino,
  .gamesVkhorf__grid--instants {
    grid-template-columns: repeat(3, 1fr);
  }

  .gamesVkhorf__grid--live,
  .gamesVkhorf__grid--sports {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamesVkhorf__grid--lottery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gameCardVkhorf {
    height: auto;
    aspect-ratio: 1.55 / 1;
    border-radius: 7px;
  }

  .gameCardVkhorf__badge {
    top: 6px;
    left: 6px;
    min-width: 38px;
    padding: 4px 8px;
    font-size: 8px;
  }

  .liveCardVkhorf,
  .sportCardVkhorf {
    height: auto;
    aspect-ratio: 1.72 / 1;
    border-radius: 7px;
  }

  .liveCardVkhorf h3 {
    left: 10px;
    bottom: 9px;
    font-size: 11px;
  }

  .lotteryCardVkhorf {
    height: 154px;
    grid-template-columns: 42% 58%;
    border-radius: 7px;
  }

  .lotteryCardVkhorf__info {
    top: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
  }

  .lotteryCardVkhorf__left {
    padding: 14px 12px;
  }

  .lotteryCardVkhorf__left::after {
    top: 28px;
    bottom: 28px;
  }

  .lotteryCardVkhorf__logo--max {
    max-width: 98px;
    margin-bottom: 14px;
  }

  .lotteryCardVkhorf__logo--649 {
    max-width: 105px;
    margin-bottom: 14px;
  }

  .lotteryCardVkhorf__logo--daily {
    max-width: 84px;
    margin-bottom: 14px;
  }

  .lotteryCardVkhorf__date {
    font-size: 10px;
  }

  .lotteryCardVkhorf__right {
    padding: 14px 16px;
  }

  .lotteryCardVkhorf__heading {
    font-size: 22px;
  }

  .lotteryCardVkhorf--orange .lotteryCardVkhorf__heading {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .lotteryCardVkhorf__bonus {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .lotteryCardVkhorf__label {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .lotteryCardVkhorf__note {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .lotteryCardVkhorf__btn {
    min-width: 100px;
    height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .gamesVkhorf__container {
    max-width: 320px;
  }

  .gamesVkhorf__grid--casino,
  .gamesVkhorf__grid--instants {
    gap: 10px;
  }

  .gameCardVkhorf__play,
  .liveCardVkhorf__play,
  .sportCardVkhorf__btn {
    min-width: 46px;
    height: 26px;
    font-size: 10px;
  }

  .gameCardVkhorf__overlay span {
    font-size: 9px;
  }

  .lotteryCardVkhorf {
    height: 144px;
  }

  .lotteryCardVkhorf__logo--max {
    max-width: 86px;
  }

  .lotteryCardVkhorf__logo--649 {
    max-width: 92px;
  }

  .lotteryCardVkhorf__logo--daily {
    max-width: 74px;
  }

  .lotteryCardVkhorf__right {
    padding: 12px 14px;
  }

  .lotteryCardVkhorf__heading {
    font-size: 20px;
  }

  .lotteryCardVkhorf--orange .lotteryCardVkhorf__heading {
    font-size: 20px;
  }

  .lotteryCardVkhorf__btn {
    min-width: 92px;
    height: 28px;
    font-size: 11px;
  }
}

.footerVkhorf {
  padding: 80px 0;
  background: #0d4770;
}

.footerVkhorf__container {
  color: #fff;
}

.footerVkhorf__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 60px;
  margin-bottom: 75px;
}

.footerVkhorf__nav h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

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

.footerVkhorf__nav a,
.footerVkhorf__nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}

.footerVkhorf__nav a:hover,
.footerVkhorf__nav button:hover {
  text-decoration: underline;
}

.footerVkhorf__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.footerVkhorf__socials,
.footerVkhorf__payments {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footerVkhorf__socials button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footerVkhorf__socials img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footerVkhorf__payments img {
  display: block;
  max-width: 74px;
  height: auto;
  object-fit: contain;
}

.footerVkhorf__partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 34px;
}

.footerVkhorf__partners p {
  margin: 0 0 30px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.footerVkhorf__partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 34px;
}

.footerVkhorf__partners-list img {
  display: block;
  max-width: 64px;
  height: 54px;
  object-fit: contain;
}

.footerVkhorf__gamesense {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footerVkhorf__help {
  max-width: 1200px;
  margin: 0 auto 18px;
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.footerVkhorf__help a {
  color: #fff;
  text-decoration: underline;
}

.footerVkhorf__age {
  display: block;
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  .footerVkhorf {
    padding: 70px 0 88px;
  }

  .footerVkhorf__container {
    max-width: 390px;
  }

  .footerVkhorf__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    margin-bottom: 70px;
    text-align: center;
  }

  .footerVkhorf__nav h2 {
    margin-bottom: 8px;
  }

  .footerVkhorf__nav a,
  .footerVkhorf__nav button {
    font-size: 16px;
  }

  .footerVkhorf__right {
    width: 100%;
    align-items: center;
    gap: 28px;
  }

  .footerVkhorf__socials {
    width: 100%;
    justify-content: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  }

  .footerVkhorf__payments {
    justify-content: center;
  }

  .footerVkhorf__partners {
    margin-bottom: 34px;
  }

  .footerVkhorf__partners p {
    margin-bottom: 32px;
    font-size: 16px;
  }

  .footerVkhorf__partners-list {
    gap: 28px;
    margin-bottom: 32px;
  }

  .footerVkhorf__partners-list img {
    max-width: 58px;
    height: 50px;
  }

  .footerVkhorf__help {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .footerVkhorf__age {
    font-size: 40px;
  }
}

@media (max-width: 430px) {
  .footerVkhorf__container {
    max-width: 340px;
  }

  .footerVkhorf__partners-list {
    gap: 22px;
  }

  .footerVkhorf__partners-list img {
    max-width: 52px;
  }

  .footerVkhorf__help {
    max-width: 310px;
  }
}

.terms {
  padding: 80px 0;

  background: #fff;
}

/* H1 */
.terms h1 {
  margin: 0 0 16px;

  color: #0d4770;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* DATE */
.terms-date {
  margin: 0 0 40px;

  color: #0d4770;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* H2 */
.terms h2 {
  margin: 40px 0 18px;

  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* P + A */
.terms p,
.terms a,
.terms li {
  color: #0d4770;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.terms p {
  margin: 0 0 20px;
}

.terms a {
  text-decoration: underline;
}

.terms ul {
  margin: 0 0 24px;
  list-style: disc;
  padding-left: 24px;
}

.terms li {
  list-style-type: disc;
}

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

  .terms h1 {
    font-size: 22px;
  }

  .terms-date,
  .terms p,
  .terms a,
  .terms li {
    font-size: 15px;
  }

  .terms h2 {
    font-size: 18px;
  }
}

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

  .terms h1 {
    font-size: 20px;
  }

  .terms h2 {
    font-size: 17px;
  }

  .terms-date,
  .terms p,
  .terms a,
  .terms li {
    font-size: 14px;
  }
}
