:root {
  --clr-accent-1: #dcb920;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 520px) {
  html {
    font-size: 1.923vw;
  }
}
body,
html {
  height: 100%;
}
.container {
  max-width: 160rem;
  padding: 0 1rem;
  margin: 0 auto;
}
.body--scroll-disabled {
  overflow: hidden;
}
.clr1 {
  color: var(--clr-accent-1);
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  border-style: none;
}
ul {
  list-style: none;
  text-decoration: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  appearance: button;
  -webkit-appearance: button;
  outline: 0;
  border: none;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000;
  font-size: 2rem;
  line-height: normal;
  cursor: default;
  display: flex;
  flex-direction: column;
}
a {
  font-weight: 600;
  color: var(--clr-accent-1);
}
a:hover {
  text-decoration: underline;
}
* {
  transition: all 0.3s;
}
h1 {
  font-size: 4rem;
  line-height: 6rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
    line-height: 4rem;
  }
}
.pop-up-age {
  display: none;
  visibility: hidden;
  transition: none;
  padding: 1rem;
  opacity: 0;
}
.pop-up-age--active {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9998;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: pop-up--in 0.4s forwards;
  animation: pop-up--in 0.4s forwards;
  visibility: visible;
  opacity: 1;
}
.pop-up-age__title {
  color: #fff;
  background: #f01a1a;
  border-radius: 1rem;
  text-align: center;
  line-height: 7rem;
  font-size: 6.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  width: fit-content;
  margin: 0 auto 1rem;
}
.pop-up-age__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 5rem;
  border-radius: 2.5rem;
  background: #fff;
  color: #474747;
  max-width: 74rem;
  width: 100%;
  line-height: 2.6rem;
  font-size: 2rem;
  -webkit-animation: pop-up__modal--in 0.4s forwards;
  animation: pop-up__modal--in 0.4s forwards;
}
@media (max-width: 767px) {
  .pop-up-age__modal {
    padding: 2rem 3rem;
  }
}
.pop-up-age__list p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pop-up-age__list ul {
  margin-left: 2rem;
}
.pop-up-age__list ul li {
  list-style: disc;
}
.pop-up-age__list ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.pop-up-age__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.pop-up-age__buttons .btn {
  font-size: 2.6rem;
  line-height: 3rem;
  text-transform: capitalize;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  color: #fff;
  max-width: unset;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.pop-up-age__buttons .pop-up-age__btn--yes {
  background: #15d525;
}
.pop-up-age__buttons .pop-up-age__btn--yes:hover {
  background: #10a31c;
  color: #fff;
}
.pop-up-age__buttons .pop-up-age__btn--no {
  background: #f01a1a;
}
.pop-up-age__buttons .pop-up-age__btn--no:hover {
  background: #bb1515;
  color: #fff;
}
.pop-up-restrict {
  display: none;
}
.pop-up-restrict--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: pop-up--in 0.4s forwards;
  animation: pop-up--in 0.4s forwards;
}
.pop-up-restrict__desc {
  font-size: 3.2rem;
  padding: 5rem;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #fff;
  white-space: nowrap;
  -webkit-animation: pop-up__modal--in 0.4s forwards;
  animation: pop-up__modal--in 0.4s forwards;
}
@-webkit-keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
  }
  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }
}
@keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    background: 0 0;
    backdrop-filter: blur(0) opacity(0);
  }
  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }
}
@-webkit-keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }
  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    background: 0 0;
    display: none;
  }
}
@keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }
  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    display: none;
  }
}
@-webkit-keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}
@keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}
@-webkit-keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
  }
}
@keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
  }
}
.body--scroll-disabled {
  overflow: hidden;
}
.pop-up--out {
  -webkit-animation: pop-up--out 0.2s forwards;
  animation: pop-up--out 0.2s forwards;
}
.pop-up__modal--out {
  -webkit-animation: pop-up__modal--out 0.2s forwards;
  animation: pop-up__modal--out 0.2s forwards;
}
.cookie {
  position: fixed;
  max-width: 50rem;
  right: -100%;
  bottom: 3rem;
  background: #fff;
  border-radius: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 4rem;
  opacity: 0;
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #474747;
  text-align: center;
  box-shadow: 1px 0 13px rgba(0, 0, 0, 0.4);
}
.cookie--visible {
  animation: cookie-show 0.6s 0.5s ease-out forwards;
}
@media screen and (max-width: 820px) {
  .cookie--visible {
    animation: cookie-show--mobile 0.5s ease-out forwards;
  }
}
.cookie--hidden {
  animation: cookie-hide 0.5s ease-out forwards;
}
@media screen and (max-width: 560px) {
  .cookie--hidden {
    animation: cookie-hide--mobile 0.5s ease-out forwards;
  }
}
.cookie__buttons {
  display: flex;
  gap: 1.5rem;
}
.cookie__btn {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  max-width: unset;
  width: 100%;
  background: 0 0;
  border: 0.2rem solid var(--clr-accent-1);
  text-transform: none;
  cursor: pointer;
  color: var(--clr-accent-1);
  border-radius: 1rem;
}
.cookie__btn:active,
.cookie__btn:hover {
  background: var(--clr-accent-1);
  color: #fff;
}
.cookie__btn--accept {
  background: var(--clr-accent-1);
  color: #fff;
}
.cookie__btn--accept:active,
.cookie__btn--accept:hover {
  background: 0 0;
  color: var(--clr-accent-1);
}
@keyframes cookie-show {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 2rem;
    opacity: 1;
  }
}
@keyframes cookie-show--mobile {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes cookie-hide {
  0% {
    right: 2rem;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
@keyframes cookie-hide--mobile {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
.logo {
  font-size: 2.2rem;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span {
  color: #fff;
  background: var(--clr-accent-1);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 3.2rem;
  border-radius: 1rem;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
}
body.main .header {
  background: 0 0;
  position: absolute;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  body.main .header {
    padding: 1rem 0;
    background: #000;
  }
}
.header {
  z-index: 100;
  width: 100%;
  padding: 2rem 0;
  background: #000;
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
    position: fixed;
    background: #000;
    top: 0;
    width: 100%;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .header .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
}
.header::before {
  content: "";
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  transition: all 0.2s;
}
.header--active::before {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99;
}
.header--active .logo {
  color: #fff;
}
.header--active .logo span {
  color: #000;
  background: #fff;
}
.header .logo {
  z-index: 999;
  font-size: 2rem;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .header .logo {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 12rem 2rem 6rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: #121210;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .header__nav--active {
    max-height: 60rem;
    height: fit-content;
    padding: 8rem 1rem 4rem;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
}
.nav__link {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  text-transform: capitalize;
}
.nav__link--active,
.nav__link:hover {
  color: var(--clr-accent-1);
  text-decoration: none;
}
.burger {
  display: none;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .burger {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
  }
}
.burger__bottom,
.burger__middle,
.burger__top {
  width: 100%;
  height: 0.4rem;
  background-color: #fff;
  border-radius: 1rem;
  transition: all 0.2s;
  position: relative;
}
.burger.burger--active {
  align-items: center;
}
.burger.burger--active * {
  background-color: #fff;
}
.burger.burger--active .burger__top {
  rotate: 45deg;
  top: 0.4rem;
}
.burger.burger--active .burger__bottom {
  rotate: -45deg;
  bottom: 0.4rem;
}
.burger.burger--active .burger__middle {
  scale: 0;
}
.footer {
  padding: 2.5rem 0;
  color: #000;
  margin-top: auto;
  text-align: center;
  background-color: #d1d1d1;
}
.footer__nav {
  justify-content: center;
  flex-wrap: wrap;
  margin: 4rem 0;
}
.footer__nav .nav__link {
  color: #000;
  font-size: 2rem;
}
.footer__nav .nav__link:hover {
  color: var(--clr-accent-1);
  text-decoration: none;
}
.footer__nav .nav__link--active {
  color: var(--clr-accent-1);
  text-decoration: none;
}
.address {
  line-height: 4rem;
}
.copy {
  text-align: center;
}
.terms {
  padding: 3rem 1rem;
}
@media (max-width: 768px) {
  .terms {
    padding-top: 10rem;
  }
}
.terms__article {
  padding: 3rem;
  line-height: 3.6rem;
}
@media (max-width: 768px) {
  .terms__article {
    padding: 3rem 1rem;
  }
}
@media (max-width: 768px) {
  .terms__article {
    line-height: 2.8rem;
  }
}
.terms__article h1 {
  color: var(--clr-accent-1);
}
.terms__article div {
  border-radius: 1rem;
  border: 0.2rem solid var(--clr-accent-1);
  padding: 4rem;
}
@media (max-width: 768px) {
  .terms__article div {
    padding: 3rem;
  }
}
.terms__article a {
  word-break: break-word;
}
.terms__article ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
}
.terms__article ul li {
  list-style-type: disc;
}
.terms__article ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.hero {
  background: url(../img/hero-bg.jpg) no-repeat top center/cover;
  padding: 19rem 0 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 15rem;
  }
}
.hero h1 {
  font-weight: 700;
  font-size: 5.2vw;
  line-height: 5.6vw;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 7vw;
    line-height: 8vw;
  }
}
.hero h2 {
  font-size: 1.5vw;
  line-height: 2vw;
  margin-bottom: 4vw;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 3vw;
    line-height: 3.4vw;
  }
}
.hero .btn {
  max-width: 30rem;
  display: inline-block;
  margin-bottom: 5.2vw;
}
@media (max-width: 1200px) {
  .hero .btn {
    margin-bottom: 10vw;
    max-width: 20rem;
    font-size: 1.6rem;
  }
}
.hero__age {
  background: var(--clr-accent-1);
  color: #000;
  font-weight: 600;
  font-size: 1.5vw;
  line-height: 2vw;
  text-align: center;
  padding: 1.5rem;
}
@media (max-width: 1200px) {
  .hero__age {
    font-size: 2.2vw;
    line-height: 3vw;
  }
}
.casino {
  background: #d1d1d1;
  padding: 5rem 0 2.5rem;
}
.card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(35rem, 1fr));
  gap: 2rem;
}
.card-list__item {
  border: 0.3rem solid var(--clr-accent-1);
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .card-list {
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  }
}
.card-list__item:hover {
  box-shadow: 1px 0 13px rgba(0, 0, 0, 0.4);
}
.card-list__image {
  width: 100%;
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-list__title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
  margin-bottom: 3.6rem;
}
.card-list__description {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #474747;
  margin-bottom: 4rem;
  flex: 1;
}
.card-list__rating {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 3.6rem;
}
.card-list__rating span {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3rem;
}
.card-list__stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.card-list__bonus {
  background: rgba(224, 181, 64, 0.1019607843);
  color: #c37e0e;
  border-radius: 0.8rem;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  margin-bottom: 2rem;
}
.card-list__bonus p {
  font-size: 1.2rem;
}
.card-list__payment {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.card-list__payment li {
  border-radius: 0.6rem;
  background: rgba(237, 237, 237, 0.6);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn {
  background: var(--clr-accent-1);
  font-weight: 700;
  color: #0d1b2a;
  border-radius: 2rem;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.8rem;
  padding: 1.4rem;
  border: 0.2rem solid var(--clr-accent-1);
}
.btn:hover {
  background: #fff;
  color: var(--clr-accent-1);
  text-decoration: none;
}
.help {
  padding: 2.5rem 0 5rem;
  background-color: #d1d1d1;
}
.help-block__list {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1460px) {
  .help-block__list {
    justify-content: space-around;
  }
}
.help-block__item {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  width: 32%;
  background-color: #fff;
  border-radius: 2rem;
}
@media (max-width: 1460px) {
  .help-block__item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .help-block__item {
    width: 100%;
  }
}
.help-block__item h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
}
.help-block__item a {
  color: var(--clr-accent-1);
}
.help-block__item ul li {
  display: block;
}
.article {
  padding: 4rem 0;
  background: var(--clr-accent-1);
  text-align: center;
}
.article__item {
  max-width: 120rem;
  margin: 0 auto 2rem;
  font-size: 2rem;
  line-height: 3rem;
}
.note {
  color: red;
}
