/* Font Family ***********************************************************************/
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Microsoft Sans Serif';
  src: url('../fonts/MicrosoftSansSerif.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --white: #FFFFFF;
  --black: #000000;
  --gray: #181818;
  --light-gray: #7A7A7A;
  --theme-blue: #29559B;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins" , sans-serif;
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

.container {
  max-width: 1466px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--white);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--white);
}

p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 16px;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

a:hover {
  color: inherit;
}

span {
  display: inline-block;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  text-transform: capitalize;
}

.btn-common {
  font-size: 18px;
  padding: 12px 40px;
  background: var(--theme-blue);
  color: var(--white);
  border-radius: 50px;
  border: 1px solid var(--theme-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn-common:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-common-black {
  font-size: 18px;
  padding: 12px 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 50px;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn-common-black:hover {
  background-color: #00000080;
  color: var(--white);
}

.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

img,
video {
  max-width: 100%;
}

.button-box {
  padding-top: 20px;
}

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-nav {
  margin-top: 30px;
}

.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
  background-color: transparent;
}

.owl-theme .owl-nav .owl-prev {
  margin-right: 15px;
}

.owl-theme .owl-nav .owl-next {
  margin-left: 15px;
}

.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 30px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}

#header {
  background: var(--black);
  padding: 15px 0;
  transition: .5s all;
  position: relative;
}

#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo-box img {
  max-width: 220px;
  width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: .5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}

#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}

#header .main-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .button-box {
  margin-left: 20px;
  padding-top: 0;
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

#header .main-nav nav ul li a {
  font-family: 'Microsoft Sans Serif';
  color: var(--white);
  padding: 5px;
  font-size: 20px;
}

#header .main-nav nav ul li a.rewards {
  color: var(--theme-blue);
}

/* footer css ******************************************************************************/
#footer .top-box .logo-box img {
  max-width: 220px;
  margin-bottom: 30px;
}

#footer .top-box h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 5px;
}

#footer .top-box .list-box li a {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}

#footer .top-box .box.box2,
#footer .top-box .box.box3 {
  padding-left: 100px;
}

#footer .top-box .list-box.news-box ul {
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 10px;
}

#footer .top-box .list-box.news-box ul a {
  width: 100%;
}

#footer .top-box .list-box.news-box ul img {
  width: 100%;
  height: 70px;
  border-radius: 15px;
  object-fit: cover;
}

#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin-top: 20px;
}

#footer .top-box .link-box ul img {
  max-width: 40px;
}

#footer .end-box {
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #000;
}

#footer .end-box .link-box ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#footer .end-box .link-box ul li:not(:last-child) {
  padding-right: 10px;
  border-right: 2px solid var(--white);
  line-height: 1;
}

.footer .footer-part .footer-box .top-box {
  padding: 80px 0 0;
}

/* .footer .footer-part .footer-box .top-box .text-box {
  margin-bottom: 30px;
} */

.footer .footer-part .footer-box .top-box .text-box p span {
  font-weight: 700;
}

.footer .footer-part .footer-box .end-box .link-box a {
  font-size: 18px;
  color: var(--white);
}

.black-bg {
  background-color: var(--black);
}

.blue-bg {
  background-color: var(--theme-blue);
}

.gray-bg {
  background-color: var(--gray);
}

/* Banner Section Start */

.banner-section {
  padding-top: 40px;
}

.banner-section .homeBanner-part .homeBanner-box {
  padding: 35px 100px;
  border-radius: 20px;
}

.banner-section .homeBanner-part .homeBanner-box .row {
  justify-content: space-between;
}

.banner-section .homeBanner-part .homeBanner-box .box.box2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.banner-section .homeBanner-part .homeBanner-box h1 {
  font-weight: 800;
}

.banner-section .homeBanner-part .homeBanner-box p {
  font-weight: 500;
  margin-bottom: 30px;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box a .text-box {
  text-align: left;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box a img {
  width: 30px;
  height: 30px;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box a p {
  text-transform: capitalize;
  font-size: 12px;
  margin-bottom: 5px;
}

.banner-section .homeBanner-part .homeBanner-box .btn-box a h6 {
  text-transform: capitalize;
  font-size: 16px;
}

/* Banner Section End */

/* Control Section Start */

.control-section {
  padding-top: 0;
}

.control-section .section-heading h2{
  color: var(--white);
  text-transform: uppercase;
}

.control-section .box {
  border-radius: 40px;
  padding: 15px 15px 50px 15px;
  height: 100%;
}

.control-section .box .image-box {
  margin-bottom: 20px;
  text-align: center;
}

.control-section .box .content-box {
  text-align: center;
  padding: 0 30px;
}

.control-section .box .content-box h3{
  color: var(--white);
}

.control-section .box .content-box p{
  color: var(--light-gray);
}

/* Control Section End */

/* Why us Section Start */

.why-us-section .content-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.why-us-section .section-heading {
  text-align: left;
  margin-bottom: 20px;
}

.why-us-section .section-heading h2 {
  margin-bottom: 20px;
}

.why-us-section .section-heading p {
  font-size: 20px;
  margin-bottom: 0;
}

/* .why-us-section .content-box .text-box {
  margin-bottom: 50px;
} */

.why-us-section .content-box .whyus-list {
  list-style: disc;
  margin-bottom: 20px;
}

.why-us-section .content-box .whyus-list .whyus-list-item {
  color: var(--white);
  list-style-position: inside;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.why-us-section .content-box .whyus-list .whyus-list-item span{
  font-weight: 700;
}

.why-us-section .image-box img {
  mix-blend-mode: lighten;
}

/* Why us Section End */

/* Slider Section Start  */

.slider-section .image-slider .owl-item {
  transition: all 0.3s ease-in-out;
  transform: scale(0.8);
  opacity: 0.5;
}
.slider-section .image-slider .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
}

/* Slider Section End  */

/* Steps Section Start */

.steps-section .row {
  justify-content: space-between;
}

.steps-section .row .box {
  padding: 40px 60px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-section .row .box .content-box p {
  font-size: 16px;
}

.steps-section .image-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Steps Section End */

/* Free Spin Section Start */

.free-spin-section .image-box {
  text-align: center;
}

.free-spin-section .content-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.free-spin-section .section-heading {
  text-align: left;
}

.free-spin-section .section-heading h2 {
  margin-bottom: 20px;
}

.free-spin-section .section-heading p {
  font-size: 20px;
  margin-bottom: 0;
}

/* Free Spin Section End */

/* About Us Section Start */

.about-us-section .content-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-us-section .image-box img {
  mix-blend-mode: lighten;
}

.about-us-section .section-heading {
  text-align: left;
  margin-bottom: 20px;
}

.about-us-section .section-heading h2 {
  margin-bottom: 20px;
}

.about-us-section .content-box .text-box {
  margin-bottom: 50px;
}

.about-us-section .content-box p span {
  font-weight: 800;
}

/* About Us Section End */

/* How To Play Modal Start */

.modal .modal-dialog {
  max-width: 60%;
}

.howto-play-modal .modal-content {
  background-color: var(--gray);
  border-radius: 15px;
}

.howto-play-modal .modal-header {
  border: none;
}

.howto-play-modal .modal-header button {
  background: transparent url("/lp_assets/images/close.png") center / 1em auto no-repeat;
}

.howto-play-modal .howto-nav-tabs {
  justify-content: center !important;
  margin-bottom: 50px;
}

.howto-play-modal .howto-nav-tabs .nav {
  gap: 30px;
  border: none;
}

.howto-play-modal .howto-nav-tabs .nav .nav-link {
  background-color: transparent;
  border: none;
}

.howto-play-modal .howto-nav-tabs .nav .nav-link h5 {
  position: relative;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.howto-play-modal .howto-nav-tabs .nav .nav-link h5:hover,
.howto-play-modal .howto-nav-tabs .nav .nav-link.active h5 {
  color: var(--theme-blue);
}

.howto-play-modal .howto-nav-tabs .nav .nav-link h5::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--theme-blue);
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translate(-50% , 0);
  transition: all 0.3s ease-in-out;
}

.howto-play-modal .howto-nav-tabs .nav .nav-link h5:hover::after,
.howto-play-modal .howto-nav-tabs .nav .nav-link.active h5::after{
  width: 70%;
}

.howto-tabContent {
  margin-bottom: 50px;
}

.howto-tabContent .thumbnail-box {
  max-width: 500px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-tabContent .thumbnail-box img{
  object-fit: contain;
    max-width: 500px;
  max-height: 500px;
}

.howto-tabContent .image-box {
  width: 500px;   /* zoom area size */
  height: 100%;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  display: none;
  border-radius: 15px;
}

/* How To Play Modal End */

/* How To Play Section Start */

.howto-play-setion .section-heading h2 {
  margin-bottom: 30px;
}

.howto-play-setion .section-heading p {
  max-width: 60%;
  margin: 0 auto;
}

.howto-play-setion .box .image-box {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--black);
}

.howto-play-setion .box .image-box .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  opacity: 0.5;
  border-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-play-setion .box .image-box .image-overlay .img-wrap {
  width: 50px;
  height: 50px;
  background-color: #000000;
  opacity: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.howto-play-setion .box .image-box .image-overlay .img-wrap img {
  width: 30px;
  height: 30px;
  object-fit: unset;
  object-position: unset;
  border-radius: 0;
}

.howto-play-setion .box .image-box:hover .image-overlay {
  transform: translateY(0);
}

.howto-play-setion .box .image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.howto-play-setion .box .text-box {
  text-align: center;
}

.howto-play-setion .box .text-box h4 {
  text-transform: capitalize;
}

.howto-play-modal .popup-img-wrap {
  text-align: center;
}

.howto-play-modal .popup-img-wrap img {
  max-width: 600px;
  width: 100%;
}

/* How To Play Section End */