@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Text:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Parkinsans:wght@300..800&display=swap");
* {
  margin-bottom: 0;
  margin-top: 0;
}

:root {
  --common-section-padding: 3rem 5rem;
  --common-heading-size: 4rem;
}

html,
body {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -196px;
  }
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  animation: animate 4s linear infinite;
  background-image: url("../media/inspiration-geometry.png");
  color: #fff;
}

.gap-10px {
  gap: 10px;
}

.btn:focus,
button:focus {
  box-shadow: unset;
  outline: none;
}

.btn-submit {
  background-color: #08571c;
  color: #fff;
}
.btn-submit:hover {
  background-color: #00a72f;
  color: #fff;
}

.btn-gradient {
  background: linear-gradient(120deg, rgb(0, 18, 18) 0%, #08571c 100%);
  color: #fff !important;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: 0px;
  outline: unset !important;
  box-shadow: unset !important;
  transition: all 0.2s ease-in;
}
.btn-gradient:hover {
  background: linear-gradient(0deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
}

.btn-white {
  background-color: #fff;
  color: #000 !important;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: 1px solid #fff;
  outline: unset !important;
  box-shadow: unset !important;
  transition: all 0.5s ease-in;
}
.btn-white:hover {
  background-color: #00fa47;
  border-color: #00fa47;
}

.btn-white-outline {
  background-color: transparent;
  padding: 20px 30px;
  color: #fff !important;
  font-weight: 400;
  font-size: 1.15rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: 2px solid #fff;
  outline: unset !important;
  box-shadow: unset !important;
  transition: all 0.5s ease-in;
}
.btn-white-outline:hover {
  color: #00fa47 !important;
  border-color: #00fa47;
}

.divider {
  margin-top: 5px;
  width: 100%;
  height: 5px;
  background-color: rgb(49, 113, 50);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
a:hover {
  color: #00fa47;
}

#joinNowModal .btn-gradient,
#signInModal .btn-gradient {
  padding: 15px 25px;
  font-size: 1rem;
}

.banner {
  position: relative;
  background-image: url("../media/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: inset 0px -600px 600px 5px rgba(0, 0, 0, 0.85);
  min-height: 90vh;
  padding: var(--common-section-padding);
}
.banner .particles-js-canvas-el {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.banner nav {
  position: relative; /* Or 'fixed' if you want the navbar fixed at the top */
  z-index: 10;
  padding: 0;
}
.banner nav a {
  color: #fff;
}
.banner nav a:hover {
  color: #00fa47;
}
.banner nav .navbar-brand {
  font-size: 3rem;
  font-weight: 600;
  align-items: center;
}
.banner nav .navbar-nav {
  gap: 1rem;
}
.banner nav .nav-item {
  line-height: 1em;
}
.banner nav .nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: 25px;
}
.banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 300px;
  margin-bottom: 5rem;
}
.banner .images .image {
  background-color: #000;
  width: 65px;
  height: 65px;
  border: 4px solid #000;
  border-radius: 50%;
  overflow: hidden;
}
.banner .images .image:first-child img {
  transition: all 0.5s ease-in-out;
  animation: pulse 2s infinite ease-in alternate;
}
.banner .images .image:nth-child(2) {
  z-index: 1;
}
.banner .images .image:nth-child(2) img {
  transition: all 0.5s ease-in-out;
  animation: pulse 2s infinite ease-in alternate;
  animation-delay: 2s;
}
.banner .images .image:nth-child(3) {
  z-index: 1;
}
.banner .images .image:nth-child(3) img {
  transition: all 0.5s ease-in-out;
  animation: pulse 2s infinite ease-in alternate;
  animation-delay: 3s;
}
.banner .images .image:nth-child(4) {
  z-index: 1;
}
.banner .images .image:nth-child(4) img {
  transition: all 0.5s ease-in-out;
  animation: pulse 2s infinite ease-in alternate;
  animation-delay: 4s;
}
.banner .images .image:nth-child(5) {
  z-index: 1;
}
.banner .images .image:nth-child(5) img {
  transition: all 0.5s ease-in-out;
  animation: pulse 2s infinite ease-in alternate;
  animation-delay: 5s;
}
.banner .images .image:not(:first-child) {
  margin-left: -20px;
}
.banner .images .image:last-child {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .images .image .circle {
  border: 1px solid #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
}
.banner h1 {
  margin-top: 2rem;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 6rem;
  line-height: 1em;
  color: #fff;
  font-weight: 900;
  margin-bottom: 0;
  min-height: 288px;
  max-width: 900px;
}
.banner h1 span {
  display: block;
}
.banner.small-banner {
  min-height: unset;
}
.banner.small-banner .banner-content {
  align-items: flex-start;
  margin-top: 150px;
}
.banner.small-banner h1 {
  font-size: 3rem;
}
.banner.smallest-banner {
  box-shadow: inset 0px -400px 400px 5px rgba(0, 0, 0, 0.85);
  min-height: unset;
}
.banner.smallest-banner .banner-content {
  align-items: flex-start;
  margin-top: 150px;
}
.banner.smallest-banner h1 {
  font-size: 3rem;
  min-height: unset;
}

.sweepstakes {
  background-image: url("../media/sweepstakes-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: var(--common-section-padding);
  box-shadow: inset 0px -70px 100px 5px rgba(0, 0, 0, 0.75);
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00a72f;
  background-blend-mode: multiply;
  color: #fff;
}
.sweepstakes h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  margin-bottom: 0;
}
.sweepstakes p {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.sweepstakes .btns {
  gap: 1rem;
}

@keyframes gradientmove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.services {
  padding: var(--common-section-padding);
  padding-top: 10rem;
  padding-bottom: 8rem;
  position: relative;
  box-shadow: inset 0px -120px 50px 5px rgba(0, 0, 0, 0.95);
}
.services h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.services .bg-img {
  position: absolute;
  right: 0%;
  top: 2%;
  max-width: 900px;
  filter: brightness(0.5);
  z-index: -1;
}
.services .service-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, rgb(3, 60, 18), rgb(0, 4, 0), rgb(3, 60, 18));
  background-size: 250% 250%;
  animation: gradientmove 7s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  padding-left: 4rem;
  padding-right: 4rem;
  line-height: 1em;
  text-align: center;
  height: 400px;
  border-bottom: 1px solid #08571c;
}
.services .service-card::before {
  content: "";
  position: absolute;
  height: inherit;
  top: 0;
  left: 0;
  height: 400px;
  width: 2px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #08571c 100%);
}
.services .service-card::after {
  content: "";
  position: absolute;
  height: inherit;
  top: 0;
  right: 0;
  height: 400px;
  width: 1px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #08571c 100%);
}

.external-games {
  padding: var(--common-section-padding);
  padding-top: 2rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #606060;
}
.external-games h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.external-games .e-games-item-card {
  margin-bottom: 3rem;
}
.external-games .e-games-item-card img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.external-games .e-games-item-card h3 {
  font-family: "Big Shoulders Text", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15ch;
  font-size: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.external-games .e-games-item-card a {
  padding: 1rem 3rem;
  font-size: 1rem;
}

@keyframes pulseLarge {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.games {
  padding: var(--common-section-padding);
  padding-top: 5rem;
  padding-bottom: 8rem;
  position: relative;
  border-bottom: 1px solid #606060;
}
.games::after {
  content: "";
  width: 400px;
  height: 500px;
  background-color: #00a72f;
  border-radius: 50%;
  filter: blur(105px);
  position: absolute;
  animation: pulseLarge 2s ease-in-out infinite alternate;
  z-index: -1;
  top: 30%;
  left: 40%;
}
.games h2 {
  text-align: center;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.games .categories {
  gap: 1rem;
  margin-bottom: 5rem;
}
.games .slick-slide {
  margin: 0 15px;
}
.games .slick-list {
  margin: 0 -15px;
}
.games .game-slide {
  position: relative;
  text-align: center;
}
.games .game-slide .wheel-box,
.games .game-slide .bingo-box {
  background: linear-gradient(45deg, rgb(3, 60, 18), rgb(0, 4, 0), rgb(3, 60, 18));
  animation: gradientmove 7s ease infinite;
  padding: 1.5rem;
  min-height: 485px;
  border-bottom: 1px solid #08571c;
  border-left: 1px solid #08571c;
  border-right: 1px solid #08571c;
}
.games .game-slide .bingo-box {
  min-height: 350px;
  background-size: 150% 150%;
  animation: gradientmove 4s ease infinite;
}
.games .game-slide .image-holder {
  margin: 0 auto;
  height: 530px;
  width: 315px;
  position: relative;
}
.games .game-slide .image-holder .frame-img {
  width: inherit;
  height: inherit;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.games .game-slide .image-holder .game-img {
  position: absolute;
  width: 260px;
  height: 475px;
  top: 40px;
  left: 37px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-top-right-radius: 30px;
}
.games .game-slide .btn {
  position: absolute;
  top: 50%;
  left: 55%;
  z-index: 3;
  transform: translate(-55%, -70%);
  padding: 1rem 2rem;
  min-width: 200px;
}
.games .game-slide .description p {
  font-family: "Big Shoulders Text", sans-serif;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15ch;
  font-weight: 700;
  font-size: 1rem;
}
.games .game-slide .description h4 {
  font-family: "Big Shoulders Text", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.25ch;
  font-weight: 700;
}
.games .game-slide .description .prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1em;
}
.games .game-slide .description .prices p {
  color: #00fa47;
  margin: 0px;
  position: relative;
  font-weight: 400;
}
.games .game-slide .description .prices p:not(:last-child)::after {
  content: ",";
}
.games .game-slider-navigation {
  gap: 1rem;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.85;
}
.games .game-slider-navigation .next,
.games .game-slider-navigation .prev {
  top: 45%;
  transform: translateY(-50%);
  position: absolute;
  background: linear-gradient(0deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  width: 80px;
  height: 80px;
  padding: 0 1.5rem;
  border: 1px solid #08571c;
  border-top-color: transparent;
  border-radius: 50%;
}
.games .game-slider-navigation .next:hover,
.games .game-slider-navigation .prev:hover {
  border-top-color: #08571c;
  background: linear-gradient(180deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
}
@media (max-width: 600px) {
  .games .game-slider-navigation .next,
  .games .game-slider-navigation .prev {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.games .game-slider-navigation .next {
  right: 0;
}
.games .slider {
  position: relative;
}
.games .slider .loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.games .slider .loader svg {
  width: 150px;
  height: 150px;
}
.games .game-slider .slick-slide:not(.slick-current) {
  opacity: 0.35;
  pointer-events: none;
}
.games .game-slider .slick-slide:not(.slick-current) img {
  filter: grayscale(1);
}
.games .game-badge {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgb(0, 4, 0) 12%, #333333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 40px;
  padding: 0 1.5rem;
  border-bottom: 1px solid #606060;
}
.games .game-badge h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 0;
  text-transform: capitalize;
}
.games .game-badge::before {
  content: "";
  position: absolute;
  height: inherit;
  left: 0;
  top: 0;
  height: 40px;
  width: 2px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #606060 100%);
}
.games .game-badge::after {
  content: "";
  position: absolute;
  height: inherit;
  right: 0;
  top: 0;
  height: 40px;
  width: 1px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #606060 100%);
}
.games .game-badge.active, .games .game-badge:hover {
  cursor: pointer;
  background: linear-gradient(0deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
  border-color: #08571c;
}
.games .game-badge.active::before, .games .game-badge.active::after, .games .game-badge:hover::before, .games .game-badge:hover::after {
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #08571c 100%);
}
.games .btns {
  margin-top: 5rem;
  gap: 1.5rem;
}

.store {
  padding: var(--common-section-padding);
  padding-top: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #606060;
}
.store h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.store .store-item-card {
  display: block;
  margin-bottom: 2rem;
  color: #fff;
}
.store .store-item-card:hover {
  text-decoration: none !important;
  color: #fff;
}
.store .store-item-card > .d-flex {
  gap: 10px;
}
.store .store-item-card .image-btn-holder {
  position: relative;
}
.store .store-item-card .image-btn-holder .bg-overlay {
  background-color: rgba(52, 58, 64, 0.4);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.store .store-item-card .image-btn-holder .btns {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translate(-50%, -50%);
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
  opacity: 0;
}
.store .store-item-card:hover {
  transform: translateY(-0.3rem);
  cursor: pointer;
}
.store .store-item-card:hover .bg-overlay,
.store .store-item-card:hover .btns {
  opacity: 1;
}
.store .store-item-card p.badge {
  font-family: "Big Shoulders Text", sans-serif;
  padding: 0;
  margin-top: 1rem;
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #606060;
}
.store .store-item-card h3 {
  font-family: "Big Shoulders Text", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15ch;
  font-size: 2rem;
  text-transform: uppercase;
}
.store .store-item-card h5 {
  font-family: "Big Shoulders Text", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  color: #00fa47;
  text-align: right;
}

.testimonials {
  padding: var(--common-section-padding);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.testimonials h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  font-family: "Big Shoulders Text", sans-serif;
  text-transform: uppercase;
}
.testimonials .testimonials-slider-navigation {
  gap: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.testimonials .testimonials-slider-navigation .next,
.testimonials .testimonials-slider-navigation .prev {
  position: relative;
  background: linear-gradient(0deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  width: 60px;
  height: 60px;
  padding: 0 1.5rem;
  border: 1px solid #08571c;
  border-top-color: transparent;
  border-radius: 50%;
}
.testimonials .testimonials-slider-navigation .next:hover,
.testimonials .testimonials-slider-navigation .prev:hover {
  transform: scale(1.2);
  border-top-color: #08571c;
  background: linear-gradient(180deg, rgb(0, 4, 0) 12%, rgb(3, 60, 18) 100%);
}
.testimonials .slick-slide {
  margin: 0 15px;
}
.testimonials .slick-list {
  margin: 0 -15px;
}
.testimonials .testimonial-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(-45deg, rgb(3, 60, 18), rgb(0, 4, 0), rgb(3, 60, 18));
  background-size: 250% 250%;
  animation: gradientmove 4s ease infinite;
  text-align: center;
  height: 400px;
  border-bottom: 1px solid #08571c;
  padding: 2rem 3rem;
}
.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  height: inherit;
  left: 0;
  top: 0;
  height: 400px;
  width: 2px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #08571c 100%);
}
.testimonials .testimonial-card::after {
  content: "";
  position: absolute;
  height: inherit;
  top: 0;
  right: 0;
  height: 400px;
  width: 1px;
  background: linear-gradient(180deg, rgb(0, 18, 18) 0%, #08571c 100%);
}
.testimonials .testimonial-card .images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 1rem;
}
.testimonials .testimonial-card .images .left img,
.testimonials .testimonial-card .images .right img {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(5);
}
.testimonials .testimonial-card .images .right img {
  transform: rotate(-180deg);
}
.testimonials .testimonial-card .images .middle img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonials .testimonial-card p {
  font-family: "Parkinsans", sans-serif;
  font-size: 1rem;
  color: #606060;
  margin: 0;
}
.testimonials .testimonial-card h4 {
  font-family: "Parkinsans", sans-serif;
  margin-top: 2.5rem;
}
.testimonials .testimonial-card .meta {
  gap: 1rem;
  font-size: 0.95rem;
  color: #606060;
}
.testimonials .testimonial-card .meta p {
  font-family: "Parkinsans", sans-serif;
  font-size: 0.95rem;
  color: #606060;
}

.content {
  padding: var(--common-section-padding);
  padding-bottom: 5rem;
}

.contact-form {
  background: linear-gradient(0deg, rgb(0, 18, 18) 0%, #08571c 100%);
  padding: 3rem 4rem;
}

@keyframes rotate {
  0% {
    transform: rotate(-30deg) scale(1.2);
  }
  100% {
    transform: rotate(30deg) scale(1);
  }
}
.btn-review {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(120deg, rgb(0, 18, 18) 0%, #08571c 100%);
  color: #fff;
  border-radius: 50px;
  padding: 0.5rem 2rem;
  text-transform: capitalize;
  border: none;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  background-size: 150% 150%;
  animation: gradientmove 3s ease infinite;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.btn-review .icon {
  animation: rotate 2s ease infinite alternate;
  color: #ffcc00;
}
.btn-review:hover {
  color: #fff;
  transform: scale(1.2);
}

.modal .modal-header {
  background: linear-gradient(0deg, rgb(0, 18, 18) 0%, #08571c 100%);
  border-radius: 0;
}

footer .wrapper {
  border-bottom: 1px solid #606060;
}
footer nav {
  padding: var(--common-section-padding) !important;
}
footer nav a {
  color: #fff;
}
footer nav .navbar-brand {
  font-size: 3rem;
  font-weight: 600;
  align-items: center;
}
footer nav .navbar-nav {
  gap: 1rem;
}
footer nav .nav-item {
  line-height: 1em;
}
footer nav .nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: 25px;
}
footer .bottom {
  text-align: center;
  margin-top: 2rem;
}
footer .bottom p {
  text-align: center;
  color: #929292;
  font-size: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
footer .bottom ul {
  margin: 2rem auto 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
footer .bottom ul li a {
  font-size: 1.125rem;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
footer .bottom ul li a:hover {
  text-decoration: none;
}
footer .bottom small {
  text-align: center;
  color: #929292;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  display: block;
}

.navbar-toggler {
  font-size: 2rem;
  outline: unset !important;
  box-shadow: unset !important;
}
.navbar-toggler i {
  color: #fff;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.canvas-holder {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.canvas-holder .wheel-canvas.no-rotate {
  transform: rotate(180deg) !important;
}
.canvas-holder .wheel-canvas:not(.no-rotate) {
  animation: rotating 20s linear infinite;
}
.canvas-holder .frame-holder {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 295px;
  height: 295px;
}
.canvas-holder .spin {
  background: rgb(255, 90, 16);
  color: rgb(51, 51, 51);
  font: 10px "Lato", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 45%;
  width: 10%;
  height: 10%;
  box-shadow: 0 0 0 5px currentColor, 0 0px 10px 10px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: not-allowed;
  pointer-events: none;
}
.canvas-holder .spin::after {
  content: "";
  position: absolute;
  top: -13px;
  border: 10px solid transparent;
  border-bottom-color: currentColor;
  border-top: none;
}

.tutorial-slider img {
  height: 800px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tutorial-slider video {
  height: 800px;
}
.tutorial-slider .carousel-control-next,
.tutorial-slider .carousel-control-prev {
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.tutorials {
  padding: var(--common-section-padding);
  padding-bottom: 8rem;
  position: relative;
}
.tutorials h2 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: var(--common-heading-size);
  font-weight: 800;
  letter-spacing: 0.15ch;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.tutorials .accordion .card {
  border-radius: 0 !important;
  border-color: #00a72f;
  background-color: transparent;
}
.tutorials .accordion .card .card-header {
  padding: 0;
  background-color: #000;
  border-radius: 0 !important;
  border-color: #00a72f;
}
.tutorials .accordion .card .card-header button {
  border-radius: 0;
  font-size: 1.35rem;
  padding: 1.25rem 1.75rem;
  color: #00a72f;
  width: 100%;
  text-align: left;
  font-weight: 500;
}
.tutorials .accordion .card .card-header button:hover {
  text-decoration: none;
}
.tutorials .accordion .card .card-header button:not(.collapsed) {
  background-color: #00a72f;
  color: #fff;
  text-decoration: none;
}
.tutorials .accordion .card .card-body {
  background-color: transparent;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  :root {
    --common-section-padding: 3rem 3rem;
    --common-heading-size: 2.5rem;
  }
  .services {
    padding-bottom: 2rem;
  }
  .services .service-card {
    font-size: 2rem;
    padding: 2rem;
    height: 200px;
    line-height: 1.5em;
  }
  .services .service-card::before, .services .service-card::after {
    height: 200px;
  }
  .services .bg-img {
    width: 500px;
  }
  .testimonials .testimonial-card {
    padding: 2rem;
    height: 550px;
  }
  .testimonials .testimonial-card::before, .testimonials .testimonial-card::after {
    height: 600px;
  }
  .testimonials .testimonial-card .meta {
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 10px;
  }
  .external-games .e-games-item-card h3 {
    font-size: 1.35rem;
  }
  .external-games .e-games-item-card a {
    padding: 0.5rem 1.65rem;
    font-size: 0.95rem;
  }
  .tutorial-slider img {
    height: 400px;
  }
  .tutorial-slider video {
    height: 400px;
  }
  .tutorials .accordion .card .card-header button {
    font-size: 1.25rem;
  }
}
@media (max-width: 800px) {
  .banner h1 {
    font-size: 4rem;
  }
  .sweepstakes .btns {
    margin-top: 2rem;
    justify-content: start !important;
  }
  .games::after {
    width: 200px;
  }
  .services {
    padding-bottom: 2rem;
  }
  .services .service-card {
    font-size: 1.5rem;
  }
  .store .store-item-card {
    margin-bottom: 2rem;
  }
  .contact-form {
    margin-top: 3rem;
    padding: 2rem;
  }
  footer .bottom {
    padding: 0 2rem;
  }
}
@media (max-width: 600px) {
  .banner h1 {
    font-size: 3rem;
  }
  .services .service-card {
    margin-bottom: 2rem;
  }
  .games::after {
    width: 150px;
  }
  .testimonials .testimonial-card {
    height: 500px;
  }
  .testimonials .testimonial-card::before, .testimonials .testimonial-card::after {
    height: 500px;
  }
  .tutorial-slider img {
    height: 300px;
  }
  .tutorial-slider video {
    height: 300px;
  }
  .tutorials .accordion .card .card-header button {
    font-size: 1rem;
  }
  .tutorials .accordion .card .card-body {
    font-size: 0.75rem;
    line-height: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */