header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 90px;
  transition: all 0.5s;
  height: 120px;
  background-color: var(--primary-background-color);
}
@media screen and (max-width: 575px) {
  header {
    height: 60px;
  }
}
header .page-width {
  height: 100%;
  position: relative;
  z-index: 100;
}
header .header-logo {
  height: 55px;
  width: 350px;
  transition: all 0.5s;
}
@media screen and (max-width: 1399px) {
  header .header-logo {
    width: 200px;
  }
}
header .header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.head {
  height: 100%;
  margin-left: auto;
  transition: all 0.2s;
}
@media screen and (max-width: 1299px) {
  .head {
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-background-color);
    flex-direction: column;
    align-items: start;
    justify-content: start;
    overflow-y: scroll;
    padding: 0 5%;
    visibility: hidden;
    opacity: 0;
  }
}

.head.mobile-opened {
  visibility: visible;
  opacity: 1;
}

.nav li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.5s;
}
.nav li .active, .nav li a:hover {
  color: var(--primary-color);
}
.nav li details summary {
  list-style: none;
  cursor: pointer;
}
.nav li details summary svg {
  margin-left: 10px;
}
.nav li details summary .active + svg path {
  stroke: var(--primary-color);
}
.nav li details::before {
  position: absolute;
  top: calc(100% + 6px);
  left: 15px;
  width: 22px;
  height: 14px;
  display: none;
  content: "";
  background-color: var(--primary-color);
  -webkit-clip-path: polygon(0 14px, 11px 0, 22px 14px);
          clip-path: polygon(0 14px, 11px 0, 22px 14px);
}
.nav li details ul {
  top: calc(100% + 20px);
  left: 0;
  padding: 20px;
  background-color: var(--primary-color);
  width: -moz-max-content;
  width: max-content;
  max-width: 350px;
}
.nav li details ul li + li {
  margin-left: 0;
  margin-top: 10px;
}
.nav li details ul li a:hover {
  color: var(--primary-background-color);
}
.nav li details[open]::before {
  display: block;
}
.nav li + li {
  margin-left: 50px;
}
@media only screen and (max-width: 1600px) {
  .nav li a {
    font-size: 16px;
  }
  .nav li + li {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1299px) {
  .nav {
    padding: 50px 0;
    width: 100%;
    flex-direction: column;
    align-items: start;
  }
  .nav li + li {
    margin-left: 0;
    margin-top: 15px;
  }
  .nav li {
    width: 100%;
    border-bottom: 1px solid #1B1B1B;
  }
  .nav li a {
    font-size: 24px;
    display: flex;
    padding: 20px;
  }
  .nav li a:hover, .nav li .active {
    background-color: #1B1B1B;
  }
  .nav li details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav li details ul {
    position: static;
    background-color: transparent;
    max-width: unset;
    width: 100%;
    padding-top: 0;
  }
  .nav li details ul li a {
    padding: 5px 20px 15px;
  }
  .nav li details[open]::before {
    display: none;
  }
  .nav li:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 575px) {
  .nav li a {
    font-size: 18px;
  }
  .nav li details ul li a {
    font-size: 16px;
  }
}

.languages {
  position: relative;
  margin-left: 50px;
}
.languages summary {
  list-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--primary-color);
}
.languages summary svg {
  margin-left: 10px;
}
.languages ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--primary-color);
}
.languages ul li {
  text-align: center;
}
.languages ul li a {
  display: flex;
  justify-content: center;
  color: #fff;
  transition: all 0.5s;
}
.languages ul li .active, .languages ul li a:hover {
  color: var(--primary-background-color);
}
@media screen and (max-width: 1299px) {
  .languages {
    display: none;
  }
}

.languages-mobile {
  display: none;
  margin-left: auto;
  margin-right: 10px;
}
.languages-mobile details {
  position: relative;
}
.languages-mobile details summary {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.languages-mobile details summary svg {
  margin-left: 5px;
}
.languages-mobile ul {
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--primary-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.languages-mobile ul li a {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .languages-mobile ul li a {
    font-size: 16px;
  }
}
.languages-mobile ul li .active {
  color: var(--primary-color);
}
@media screen and (max-width: 1299px) {
  .languages-mobile {
    display: block;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1299px) {
  .hamburger {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  header.small-header {
    height: 80px;
  }
}

.hamb-visible {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1299px) {
  .hamb-visible {
    display: block;
  }
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.mobile-head .hamb-logo {
  width: 300px;
  max-width: 70%;
}
.mobile-head .hamb-logo img {
  width: 100%;
  height: auto;
}

.hamb-contact {
  padding: 20px;
  background-color: #1B1B1B;
}
.hamb-contact p {
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
}
.hamb-contact div {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hamb-social {
  margin: 20px 0 50px;
}
.hamb-social p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

footer {
  background: radial-gradient(50.68% 150.82% at 49.4% 50.09%, #06020C 0%, #41320D 100%);
}

.foot2 {
  padding: 30px 0;
  border-top: 1px solid #fff;
}
.foot2 p {
  font-size: 16px;
  line-height: normal;
}
@media only screen and (max-width: 1600px) {
  .foot2 p {
    font-size: 14px;
  }
}

.foot1 {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}
@media screen and (max-width: 1199px) {
  .foot1 {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 575px) {
  .foot1 {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }
}
.foot1 > div p:first-child {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1600px) {
  .foot1 > div p:first-child {
    font-size: 21px;
  }
}
.foot1 .contact-links a + a {
  margin-top: 25px;
}
.foot1 .foot-nav {
  -moz-columns: 2;
       columns: 2;
  max-width: 315px;
}
.foot1 .foot-nav li a {
  color: #fff;
  font-size: 18px;
  transition: all 0.5s;
}
@media only screen and (max-width: 1600px) {
  .foot1 .foot-nav li a {
    font-size: 16px;
  }
  .foot1 .foot-nav {
  max-width: 280px;
}
}
.foot1 .foot-nav li a:hover, .foot1 .foot-nav li .active {
  color: var(--primary-color);
}
.foot1 .foot-nav li + li {
  margin-top: 25px;
}
@media screen and (max-width: 1299px) {
  .foot1 .foot-nav {
    /* -moz-columns: 1;
         columns: 1; */
    max-width: 100%;
  }
}
.foot1 .foot-best {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin-top: 25px;
}
@media only screen and (max-width: 1600px) {
  .foot1 .foot-best {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .foot1 .foot-best {
    font-size: 20px;
  }
}

a[href^=mailto], a[href^=tel] {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.5s;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 24px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding-left: 34px;
}
@media only screen and (max-width: 1600px) {
  a[href^=mailto], a[href^=tel] {
    font-size: 16px;
  }
}

a[href^=mailto] {
  background-image: url("../images/send.svg");
}

a[href^=tel] {
  background-image: url("../images/phone-call.svg");
  font-weight: 700;
}

a[href^=mailto]:hover, a[href^=tel]:hover {
  color: var(--primary-color);
}

.social a + a {
  margin-left: 20px;
}

.newsletter-wrap {
  padding: 170px 0 100px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #1B1134;
}
@media only screen and (max-width: 1600px) {
  .newsletter-wrap {
    padding: 150px 0 70px;
  }
}
@media screen and (max-width: 991px) {
  .newsletter-wrap {
    background-image: none !important;
    padding: 70px 0;
  }
}
@media screen and (max-width: 575px) {
  .newsletter-wrap {
    padding: 50px 0;
  }
}

.newsletter {
  padding-left: 17%;
  display: flex;
  align-items: end;
}
.newsletter h2 {
  max-width: 580px;
  margin-right: 50px;
  margin-bottom: 0;
}
.newsletter form {
  display: flex;
  align-items: center;
  width: 100%;
}
.newsletter form input, .newsletter form button {
  width: 100%;
  height: 60px;
}
.newsletter form input::-moz-placeholder {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.newsletter form input, .newsletter form input::placeholder {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.newsletter form input {
  background-color: #fff;
  border: none;
  margin-right: 10px;
  padding: 10px;
}
@media only screen and (max-width: 1600px) {
  .newsletter form input::-moz-placeholder {
    font-size: 16px;
  }
  .newsletter form input, .newsletter form input::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 1299px) {
  .newsletter {
    flex-direction: column;
    align-items: start;
    padding-left: 40%;
  }
  .newsletter h2 {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .newsletter {
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .newsletter form {
    flex-direction: column;
    align-items: start;
  }
  .newsletter form input, .newsletter form button {
    height: 45px;
  }
  .newsletter form input {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.main-banner {
  height: calc(100vh - 90px);
  height: calc(100svh - 90px);
  max-height: 900px;
}
@media screen and (max-width: 1299px) {
  .main-banner {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 250px;
  }
}
.main-banner img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.main-banner .page-width {
  padding: 200px 0 100px;
}
@media screen and (max-width: 575px) {
  .main-banner .page-width {
    padding: 120px 0 20px;
  }
}
.main-banner .page-width .btn-primary {
  margin: 50px auto 0;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
}
.main-banner .page-width .btn-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.main-banner .page-width h1 {
  font-weight: 900;
  font-size: 70px;
  margin-bottom: 0;
}
.main-banner .page-width h1 span {
  color: #FCB720;
}
@media only screen and (max-width: 1600px) {
  .main-banner .page-width h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1399px) {
  .main-banner .page-width h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1199px) {
  .main-banner .page-width h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 575px) {
  .main-banner .page-width h1 {
    font-size: 28px;
  }
}

.welcome-section .welcome-image img {
  position: absolute;
  top: 0;
  left: 0;
}
.welcome-section .welcome-image p {
  position: absolute;
  z-index: 2;
  right: -100px;
  bottom: 20px;
  background-color: var(--primary-color);
  font-size: 55px;
  font-weight: 800;
  padding: 50px;
  max-width: 430px;
  line-height: normal;
}
@media only screen and (max-width: 1600px) {
  .welcome-section .welcome-image p {
    font-size: 40px;
    max-width: 360px;
  }
}
.welcome-section .welcome-text p {
  color: #2A2C35;
}
.welcome-section .welcome-text ol.custom-counter {
  list-style: none;
  counter-reset: my-counter;
  margin: 30px 0;
}
.welcome-section .welcome-text ol.custom-counter li {
  counter-increment: my-counter;
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #C0C0C0;
  padding-left: 55px;
  font-weight: 600;
  color: var(--secondary-color);
}
.welcome-section .welcome-text ol.custom-counter li:last-child {
  border-bottom: none;
}
.welcome-section .welcome-text ol.custom-counter li::before {
  content: counter(my-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  color: #09593C;
  font-weight: 700;
}
.welcome-section .welcome-text ol.custom-counter li, .welcome-section .welcome-text ol.custom-counter li::before {
  font-size: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1600px) {
  .welcome-section .welcome-text ol.custom-counter li, .welcome-section .welcome-text ol.custom-counter li::before {
    font-size: 20px;
  }
}
@media screen and (max-width: 1299px) {
  .welcome-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  /* .welcome-section .welcome-image picture, .welcome-section .welcome-image img {
    display: none;
  } */
   .welcome-section .welcome-image {
    height: 480px;
    margin-bottom: 50px;
   }
  .welcome-section .welcome-image p {
    /* position: static; */
    width: 100%;
    max-width: 90%;
    bottom: -50px;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
  .welcome-section .welcome-text h1, .welcome-section .welcome-text h2 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .welcome-section {
    gap: 25px;
  }
  .welcome-section .welcome-image p {
    padding: 30px 20px;
    font-size: 30px;
  }
  .welcome-section .welcome-text ol.custom-counter li {
    padding-left: 40px;
  }
}

.club-slide h3, .game h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 0;
  margin: 0 20px;
}
.club-slide h3::after, .game h3::after {
  width: 34px;
  height: 34px;
  content: "";
  background-image: url("../images/arrow-right-circle.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}
@media only screen and (max-width: 1600px) {
  .club-slide h3, .game h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1299px) {
  .club-slide h3, .game h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .club-slide h3, .game h3 {
    font-size: 16px;
    padding: 10px 0;
    margin: 0 10px;
  }
  .club-slide h3::after, .game h3::after {
    width: 26px;
    height: 26px;
  }
}

.game h3 {
  padding: 10px 0;
}
.game h3::after {
  display: none;
}
.game .image2 {
  height: 400px;
  overflow: hidden;
}
@media only screen and (max-width: 1600px) {
  .game .image2 {
    height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .game .image2 {
    height: 140px;
  }
}
.game .image2 img {
  transition: all 0.5s;
}

.game:hover .image2 img {
  transform: scale(1.1);
}

.clubSwiper {
  padding-bottom: 50px;
}
.clubSwiper .club-slide .clubimg {
  height: 47vh;
  max-height: 500px;
}
@media screen and (max-width: 575px) {
  .clubSwiper .club-slide .clubimg {
    height: 45vh;
  }
}
.clubSwiper .club-slide h3 {
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}
.clubSwiper .swiper-slide-active .club-slide h3 {
  border-bottom: 1px solid #fff;
}
.clubSwiper .swiper-pagination {
  bottom: 0;
  top: unset;
}

.general-slider .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  opacity: 1;
  border: 1px solid #fff;
  background-color: transparent;
  position: relative;
  margin: 0 8px;
}
.general-slider .swiper-pagination .swiper-pagination-bullet::after {
  width: 10px;
  height: 10px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s;
  border-radius: 50%;
  background-color: var(--primary-color);
  content: "";
}
@media screen and (max-width: 575px) {
  .general-slider .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 5px;
  }
  .general-slider .swiper-pagination .swiper-pagination-bullet::after {
    width: 7px;
    height: 7px;
  }
}
.general-slider .swiper-pagination .swiper-pagination-bullet-active::after {
  transform: translate(-50%, -50%) scale(1);
}

.monthly-winnners-wrap {
  background: linear-gradient(90deg, #4B0040 0%, #450036 41.08%, #06020C 100%);
  padding: 120px 0;
}
.monthly-winnners-wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: right;
}
.monthly-winnners-wrap .winner-text {
  position: relative;
  max-width: 65%;
  margin-top: 80px;
}
.monthly-winnners-wrap .winner-text h3, .monthly-winnners-wrap .winner-text h4 {
  color: #fff;
}
.monthly-winnners-wrap .winner-text h3 span, .monthly-winnners-wrap .winner-text h4 span {
  color: var(--primary-color);
}
.monthly-winnners-wrap .winner-text h3 {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
}
.monthly-winnners-wrap .winner-text h4 {
  font-size: 55px;
  font-weight: 800;
  margin: 10px 0 30px;
}
.monthly-winnners-wrap .winner-text .btn-primary {
  color: #fff;
  border: 1px solid var(--primary-color);
  background-color: transparent;
}
@media only screen and (max-width: 1600px) {
  .monthly-winnners-wrap .winner-text {
    max-width: 55%;
  }
  .monthly-winnners-wrap .winner-text h3 {
    font-size: 50px;
  }
  .monthly-winnners-wrap .winner-text h4 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1399px) {
  .monthly-winnners-wrap .winner-text {
    max-width: 50%;
  }
  .monthly-winnners-wrap .winner-text h3 {
    font-size: 40px;
  }
  .monthly-winnners-wrap .winner-text h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1299px) {
  .monthly-winnners-wrap {
    padding: 50px 0;
  }
}
@media screen and (max-width: 991px) {
  .monthly-winnners-wrap {
    background: linear-gradient(94.66deg, #4B0040 2.88%, #9F1487 49.17%, #4B0038 95.39%);
    padding-bottom: 350px;
  }
  .monthly-winnners-wrap img {
    width: 100%;
    top: unset;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .monthly-winnners-wrap .winner-text {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .monthly-winnners-wrap .winner-text {
    margin-top: 20px;
  }
  .monthly-winnners-wrap .winner-text h3 {
    font-size: 25px;
  }
  .monthly-winnners-wrap .winner-text h4 {
    font-size: 28px;
  }
}

.game-brands {
  display: grid;
  gap: 15px;
  grid-auto-rows: 100px;
  grid-template-columns: 1fr 1fr 1fr;
}
.game-brands .brand {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-brands .brand img {
  width: 100%;
  height: 100%;
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.game-brands .brand {
  grid-row: span 2;
}
.game-brands .brand:nth-child(7n+1), .game-brands .brand:nth-child(7n+5) {
  grid-row: span 3;
}
.game-brands .brand:nth-child(7n+4) {
  grid-column: span 2;
}
@media only screen and (max-width: 1600px) {
  .game-brands {
    grid-auto-rows: 70px;
  }
}
@media screen and (max-width: 575px) {
  .game-brands {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-auto-rows: 110px;
  }
  .game-brands .brand, .game-brands .brand:nth-child(7n+1), .game-brands .brand:nth-child(7n+5) {
    grid-row: span 1;
  }
  .game-brands .brand:nth-child(7n+4) {
    grid-column: span 1;
  }
  .game-brands .brand:nth-child(7n+5) {
    grid-column: span 2;
  }
}

.slotjackpot-wrap {
  background: linear-gradient(282.2deg, #4A1B07 59.9%, #3D0205 105.04%);
}
.slotjackpot-wrap .page-width {
  padding-right: 40%;
}
@media screen and (max-width: 991px) {
  .slotjackpot-wrap .page-width {
    padding-right: 0;
  }
  .slotjackpot-wrap .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .slotjackpot-wrap * {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .slotjackpot-wrap img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}

.privacy-cookies {
  background-color: #1C2124;
  padding: 50px;
}
.privacy-cookies h2, .privacy-cookies h3 {
  font-weight: 700;
  color: var(--primary-color);
}
.privacy-cookies h2 {
  font-size: 28px;
}
.privacy-cookies h3 {
  font-size: 22px;
}
.privacy-cookies ul, .privacy-cookies p {
  margin: 20px 0 !important;
}
.privacy-cookies li {
  color: #C0C0C0;
}
.privacy-cookies a {
  color: var(--primary-color);
}
.privacy-cookies a[href^=mailto], .privacy-cookies a[href^=tel] {
  background-image: none;
  padding: 0;
  display: inline;   
}
@media only screen and (max-width: 1600px) {
  .privacy-cookies h2 {
    font-size: 24px;
  }
  .privacy-cookies h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .privacy-cookies {
    padding: 20px;
  }
}

.promo-jackpot {
  height: 75vh;
  position: relative;
}
@media screen and (max-width: 575px) {
  .promo-jackpot {
    height: 65vh;
  }
}
.promo-jackpot::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 8px solid transparent;
  display: block;
  z-index: 3;
  transition: all 0.5s;
}
.promo-jackpot .promo-jackpot-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background-color: #251B07;
  transition: all 0.5s;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.promo-jackpot .promo-jackpot-text p, .promo-jackpot .promo-jackpot-text span {
  display: block;
  text-align: center;
  color: #fff;
}
.promo-jackpot .promo-jackpot-text p {
  font-size: 28px;
  font-weight: 700;
}
.promo-jackpot .promo-jackpot-text span {
  font-size: 18px;
}
@media only screen and (max-width: 1600px) {
  .promo-jackpot .promo-jackpot-text p {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .promo-jackpot .promo-jackpot-text {
    padding: 20px 10px;
  }
  .promo-jackpot .promo-jackpot-text p {
    font-size: 20px;
  }
  .promo-jackpot .promo-jackpot-text span {
    font-size: 16px;
  }
}
.promo-jackpot .image2 {
  height: 100%;
}

.promo-jackpot:hover::after {
  border-color: var(--primary-color);
}
.promo-jackpot:hover .promo-jackpot-text {
  height: 100%;
  background-color: rgba(37, 27, 7, 0.9);
}

.jackpots-swiper-wrap .jackpot-next, .jackpots-swiper-wrap .jackpot-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}
.jackpots-swiper-wrap .jackpot-next svg path:first-child, .jackpots-swiper-wrap .jackpot-prev svg path:first-child {
  transition: all 0.5s;
}
.jackpots-swiper-wrap .jackpot-next {
  right: -25px;
}
.jackpots-swiper-wrap .jackpot-prev {
  left: -25px;
}
@media screen and (max-width: 575px) {
  .jackpots-swiper-wrap .jackpot-next {
    right: 5px;
  }
  .jackpots-swiper-wrap .jackpot-prev {
    left: 5px;
  }
}
.jackpots-swiper-wrap .swiper-button-disabled svg path:first-child {
  fill: #A0A0A0;
}

.promotion {
  padding: 20px;
  background-color: #251B07;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .promotion {
    padding: 10px;
  }
}
.promotion .promotionimg {
  height: 40vh;
  max-height: 435px;
}
.promotion .promotion-info {
  display: grid;
  gap: 20px;
  padding-top: 20px;
  min-height: 227px;
}
.promotion .promotion-info .promotion-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
}
.promotion .promotion-info .promotion-description p {
  line-height: normal;
}
.promotion .promotion-info .date {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: auto;
}
@media only screen and (max-width: 1600px) {
  .promotion .promotion-info .promotion-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .promotion .promotion-info .date {
    font-size: 16px;
  }
}

.promotion:hover .promotion-info .btn-primary-2 {
  background-color: var(--primary-color);
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: all 0.5s;
  border: 1px solid var(--primary-color);
}
.pagination a span {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
}
.pagination li + li {
  margin-left: 20px;
}
.pagination .next a, .pagination .prev a {
  background-color: var(--primary-color);
}
.pagination .active {
  background-color: #fff;
  border-color: #fff;
}
.pagination .active span {
  color: #251B07;
}
@media screen and (max-width: 575px) {
  .pagination a {
    width: 40px;
    height: 40px;
  }
  .pagination a span {
    font-size: 16px;
  }
  .pagination li + li {
    margin-left: 10px;
  }
}

.promotion-main-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}
.promotion-main-text h4 {
  font-size: 24px;
  line-height: 180%;
  font-weight: 500;
  color: #fff;
  padding: 50px;
  background-color: #654F1B;
  margin: 20px 0;
}
.promotion-main-text ul {
  list-style: disc;
  list-style-position: inside;
}
@media only screen and (max-width: 1600px) {
  .promotion-main-text h2 {
    font-size: 24px;
  }
  .promotion-main-text h4 {
    font-size: 22px;
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .promotion-main-text h4 {
    font-size: 20px;
    padding: 20px;
  }
}

.share {
  padding: 10px 30px;
  border: 1px solid var(--primary-color);
  border-radius: 50vh;
}
.share p {
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
}
.share a {
  margin-left: 20px;
}

.prev-next-links a p, .prev-next-links a div {
  transition: all 0.5s;
}
.prev-next-links a p {
  font-weight: 500;
}
.prev-next-links a div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 50%;
}
@media screen and (max-width: 575px) {
  .prev-next-links a div {
    width: 40px;
    height: 40px;
  }
}
.prev-next-links a div + p, .prev-next-links a p + div {
  margin-left: 20px;
}
.prev-next-links a + a {
  margin-left: 20px;
}
.prev-next-links a:hover p {
  color: var(--primary-color);
}
.prev-next-links a:hover div {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.monthly img {
  height: 60vh;
  max-height: 680px;
}
@media screen and (max-width: 575px) {
  .monthly img {
    height: 30vh;
    max-height: 260px;
  }
}
.blog {
  height: 100%;
  background-color: #251B07;

}
.blog .blogimg {
  height: 40vh;
  max-height: 420px;
}
.blog .bloginfo {
  background-color: #251B07;
  padding: 40px;
  display: grid;
  gap: 25px;
}
.blog .bloginfo * {
  text-align: center;
}
.blog .bloginfo .date {
  color: var(--primary-color);
  display: block;
}
.blog .bloginfo .blog-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 108px;
}
.blog .bloginfo .blog-desc { 
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog .bloginfo .read-more {
  transition: all 0.5s;
}
.blog .bloginfo .read-more p {
  font-weight: 700;
  position: absolute;
  transform: translateX(50%);
  opacity: 0;
  transition: all 0.5s;
}
.blog .bloginfo .read-more svg, .blog .bloginfo .read-more svg path {
  transition: all 0.5s;
}
@media screen and (max-width: 1199px) {
  .blog {
    gap: 20px;
  }
  .blog .bloginfo {
    padding: 20px;
  }
  .blog .bloginfo .blog-title {
    font-size: 20px;
    min-height: 90px;
  }
}

.blog:hover .bloginfo .read-more p {
  position: static;
  transform: translateX(0);
  opacity: 1;
  margin-right: 10px;
}
.blog:hover .bloginfo .read-more svg path:first-child {
  fill: var(--primary-color);
}
.blog:hover .bloginfo .read-more svg path:nth-child(2), .blog:hover .bloginfo .read-more svg path:nth-child(3) {
  stroke: #fff;
}

.location {
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .location {
    padding: 30px 20px;
  }
}
.location .location-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .location .location-title {
    font-size: 20px;
  }
}
.location .location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 1600px) {
  .location .location-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 1399px) {
  .location .location-list {
    grid-template-columns: 1fr;
  }
}
.location .location-list li a {
  color: #484848;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.location .location-list li a::before, .location .location-list li a::after {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.location .location-list li a::before {
  width: 24px;
  height: 24px;
  background-image: url("../images/location.svg");
  margin-right: 12px;
}
.location .location-list li a::after {
  background-image: url("../images/arrow-right-grey.svg");
  margin-left: auto;
}
@media screen and (max-width: 575px) {
  .location .location-list li a {
    font-size: 16px;
  }
  .location .location-list li a::before, .location .location-list li a::after {
    width: 20px;
    height: 20px;
  }
  .location .location-list li a::before {
    margin-right: 5px;
  }
}
.location .location-list li a:hover {
  color: var(--primary-color);
}

.locationSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.locationSwiper .swiper-slide .location {
  height: 100%;
}
.locationSwiper .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.locationSwiper .swiper-pagination .swiper-pagination-bullet {
  border-color: #C0C0C0;
}
.locationSwiper .location-prev, .locationSwiper .location-next {
  cursor: pointer;
}
.locationSwiper .location-prev svg path, .locationSwiper .location-next svg path {
  transition: all 0.5s;
}
.locationSwiper .swiper-button-disabled svg path {
  stroke: #C0C0C0;
}

.general-slider:has(.locationSwiper) {
  padding: 0 50px;
}
@media screen and (max-width: 575px) {
  .general-slider:has(.locationSwiper) {
    padding: 0 10px;
  }
}

.locations-nav-pag {
  margin: 25px 0;
}
.locations-nav-pag .location-pagination {
  margin: 0 20px;
}

.multipin-map {
  width: 100%;
  height: 540px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: -100px;
}
.multipin-map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .multipin-map {
    /* height: 200px; */
    margin-bottom: -40px;
  }
}

.locations2 {
  padding: 0 50px;
}
.locations2 .location {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.locations2 .location .title-link {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.locations2 .location .title-link .btn-primary-2 {
  color: var(--primary-color);
  padding: 10px 20px;
}
.locations2 .location .title-link .location-title {
  margin-bottom: 0;
}
.locations2 .location .title-link .btn-primary-2:hover {
  color: #fff;
  background-color: var(--primary-color);
  transform: none;
}
@media screen and (max-width: 575px) {
  .locations2 {
    padding: 0 20px;
  }
}

.club-title h1 {
  font-weight: 900;
  font-size: 80px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1600px) {
  .club-title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1399px) {
  .club-title h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1199px) {
  .club-title h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 575px) {
  .club-title h1 {
    font-size: 28px;
  }
}

.location-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
.location-buttons .locBtn {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 10px 30px;
  color: #fff;
  border: 1px solid #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 7px;
  transition: all 0.5s;
  background-color: transparent;
}
.location-buttons .activeBtn, .location-buttons .locBtn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .location-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .location-buttons .locBtn {
    margin: 0;
    height: 100%;
    padding: 10px 5px;
  }
  .location-buttons .locBtn:first-child {
    grid-column: span 3;
  }
}
@media screen and (max-width: 575px) {
  .location-buttons .locBtn {
    font-size: 16px;
  }
}

.club-location {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.club-location img {
  height: 300px;
}
.club-location .club-location-text {
  padding: 25px;
}
.club-location .club-location-text p {
  text-align: center;
  color: #484848;
}
@media screen and (max-width: 1399px) {
  .club-location img {
    height: 260px;
  }
}
@media screen and (max-width: 575px) {
  .club-location .club-location-text {
    padding: 20px;
  }
  .club-location img {
    height: 220px;
  }
}

@media screen and (min-width: 576px) {
  .game-brands-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
  }
  .game-brands-details .brand {
    width: 250px;
    height: 110px;
  }
}
@media screen and (min-width: 1400px) {
  .game-brands-details .brand {
    width: 300px;
    height: 150px;
  }
}

.loc-details-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 275px;
  height: 570px;
  overflow: hidden;
}
.loc-details-gallery a {
  position: relative;
}
.loc-details-gallery a::after {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: block;
  content: "";
  background-image: url("../images/maximize.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s;
  opacity: 0;
}
.loc-details-gallery a:hover::after {
  opacity: 1;
}
.loc-details-gallery a:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
.more-images {
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;

}
@media only screen and (max-width: 1600px) {
  .loc-details-gallery {
    grid-auto-rows: 240px;
    height: 500px;
  }
  .loc-details-gallery a::after {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .loc-details-gallery {
    grid-template-columns: 1fr 1fr;
    height: 1020px;
  }
}
@media screen and (max-width: 767px) {
  .loc-details-gallery {
    grid-auto-rows: 135px;
    gap: 10px;
    height: 570px;
  }
}

.details-title h1 {
  font-size: 42px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .details-title h1 {
    font-size: 20px;
  }
  .more-images {
    font-size: 50px;
  }
}

.details-contact {
  padding: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .details-contact {
    padding: 20px 10px;
  }
}

.thankyou-wrap, .contact-form-wrap {
  background-color: #3C2C08;
  border-radius: 15px;
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .thankyou-wrap, .contact-form-wrap {
    padding: 30px 20px;
  }
}

.thankyou-wrap {
  max-width: 960px;
}
.thankyou-wrap h1 {
  font-family: "Pacifico";
  font-weight: 400;
  font-size: 90px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--primary-color);
  text-align: center;
}
.thankyou-wrap p {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: normal;
}
@media screen and (max-width: 991px) {
  .thankyou-wrap h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .thankyou-wrap {
    flex-direction: column;
  }
  .thankyou-wrap h1 {
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--primary-color);
    border-right: none;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .thankyou-wrap p, .thankyou-wrap a {
    text-align: center;
  }
  .thankyou-wrap a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 575px) {
  .thankyou-wrap h1 {
    font-size: 45px;
  }
}
.contact-form-wrap input:-webkit-autofill,
.contact-form-wrap textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form-wrap {
  max-width: 1300px;
}
.contact-form-wrap input::-moz-placeholder, .contact-form-wrap textarea::-moz-placeholder {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
}
.contact-form-wrap input, .contact-form-wrap textarea, .contact-form-wrap input::placeholder, .contact-form-wrap textarea::placeholder {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
}
.contact-form-wrap input::-moz-placeholder, .contact-form-wrap textarea::-moz-placeholder {
  color: #C0C0C0;
}
.contact-form-wrap input::placeholder, .contact-form-wrap textarea::placeholder {
  color: #C0C0C0;
}
.contact-form-wrap input, .contact-form-wrap textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid #C0C0C0;
  padding: 15px;
  color: #fff;
  padding-left: 35px;
  background-position: left 16px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 100%;
}
.contact-form-wrap textarea {
  grid-column: span 2;
  height: 100px;
}
.contact-form-wrap .name {
  background-image: url("../images/user.svg");
}
.contact-form-wrap .email {
  background-image: url("../images/send-grey.svg");
}
.contact-form-wrap .message {
  background-image: url("../images/edit.svg");
}
@media screen and (max-width: 991px) {
  .contact-form-wrap form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-form-wrap textarea {
    grid-column: span 1;
  }
  .contact-form-wrap .btn-primary {
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .contact-form-wrap input::-moz-placeholder, .contact-form-wrap textarea::-moz-placeholder {
    font-size: 16px;
  }
  .contact-form-wrap input, .contact-form-wrap textarea, .contact-form-wrap input::placeholder, .contact-form-wrap textarea::placeholder {
    font-size: 16px;
  }
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.iti__arrow {
  border-top: 4px solid #fff;
}

.iti__arrow--up {
  border-bottom: 4px solid #fff;
}

.about-welcome .welcome-text p, .about-welcome .welcome-text ol.custom-counter li {
  color: #fff;
}
.about-welcome .welcome-text ol.custom-counter li::before {
  color: var(--primary-color);
}
.about-welcome .welcome-text ol:last-child {
  margin-bottom: 0;
}

.about img {
  position: absolute;
  top: 0;
  left: 0;
}
.about .text {
  padding: 50px 0;
}
@media screen and (max-width: 1399px) {
  .about .text {
    padding: 0;
  }
}

.about-numbers {
  padding: 50px 0;
}
.about-numbers .num {
  position: relative;
}
.about-numbers .num span, .about-numbers .num p {
  display: block;
  text-align: center;
}
.about-numbers .num span {
  font-size: 100px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 100%;
}
.about-numbers .num p {
  font-weight: 800;
  font-size: 32px;
  line-height: normal;
}
.about-numbers .num + .num::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  display: block;
  background-image: url("../images/line.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1399px) {
  .about-numbers .num span {
    font-size: 70px;
  }
  .about-numbers .num p {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .about-numbers .num span {
    font-size: 60px;
  }
  .about-numbers .num p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-numbers {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-numbers .num + .num::before {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */

.main-banner .main-video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.mute-video {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index: 10;
  background-image: url("../images/volume-mute.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1199px) {
  .mute-video {
    bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .mute-video {
    width: 35px;
    height: 35px;
    right: unset;
    left: 0;
  }
}
.mute-video.mute {
  background-image: url("../images/volume-unmute.png");
}