/*********************  Default-CSS  *********************/
:root {
  scroll-behavior: smooth;
  --lightblue: #F9BB22;
  --white: #ffffff;
  --gray: #21262a;
  --mediumBlue: #3fa0b2;
  --darkblue: #005363;
  --black: #000;
}
html {
  -webkit-text-size-adjust: none;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: var(--white);
  background-color: var(--black);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}
svg path {
  -webkit-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
}
a,
span,
a:hover,
a:active,
button {
  text-decoration: none;
}
a,
div a:hover,
div a:active,
div a:focus,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
input:focus {
  outline: none;
}
button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
p {
  margin: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--gray);
  border-radius: 30px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #ccc;
}
body::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.common_input {
  width: 100%;
  padding: 10px;
  color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--lightblue);
  background: #000;
  outline: none;
}
.common_input::-webkit-input-placeholder {
  color: #a4b5b9;
}
.common_input::-moz-placeholder {
  color: #a4b5b9;
}
.common_input:-ms-input-placeholder {
  color: #a4b5b9;
}
.common_input::-ms-input-placeholder {
  color: #a4b5b9;
}
.common_input::placeholder {
  color: #a4b5b9;
}
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1000;
  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;
}
.page-loader img {
    width: 310px;
    filter: invert(1);
}
.common_btn {
  color: var(--gray);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 4px;
  border: unset;
  background: var(--lightblue);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 19px 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  transition: all 0.5s;
}
.common_btn:hover {
  background-color: #dba10d;
}
.common_btn:active {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.main_wrapper {
  padding-top: 80px;
}
.gradient_bg {
  /* min-height: 100vh; */
  /* background-color: #071619; */
  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;
  position: relative;
  z-index: 1;
  background: -o-linear-gradient(28deg, #071619, #194c58, #243a3f, #071619);
  background: linear-gradient(62deg, #071619, #194c58, #243a3f, #071619);
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gradientBall.right {
  position: absolute;
  right: 0;
  bottom: 30px;
}
.gradientBall.left {
  position: absolute;
  left: 0;
  top: 30px;
}
.gradientBall {
  width: 390px;
  height: 390px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 100%;
  background: rgba(249, 187, 34, 0.18);
  -webkit-filter: blur(132px);
  filter: blur(132px);
  animation: gradientBall infinite 2s alternate-reverse;
  z-index: -1;
}
@-webkit-keyframes gradientBall {
  0% {
    -webkit-filter: blur(80px);
    filter: blur(80px);
  }
  100% {
    -webkit-filter: blur(140px);
    filter: blur(140px);
  }
}
@keyframes gradientBall {
  0% {
    -webkit-filter: blur(80px);
    filter: blur(80px);
  }
  100% {
    -webkit-filter: blur(140px);
    filter: blur(140px);
  }
}
#back_to_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--lightblue);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  right: 30px;
  -webkit-transition: 0.5s, opacity 0.5s, visibility 0.5s;
  -o-transition: 0.5s, opacity 0.5s, visibility 0.5s;
  transition: 0.5s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-shadow: 0px 0px 48px -8px #000;
  box-shadow: 0px 0px 48px -8px #000;
}
#back_to_top img {
  max-width: 20px;
  -webkit-filter: invert(1);
  filter: invert(1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#back_to_top.show {
  opacity: 1;
  visibility: visible;
}
/* .image_animation{
	-webkit-animation: mover 1s infinite  alternate;
	animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-30px); }
}
@keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-30px); }
} */
.common_title {
  color: var(--white);
  font-size: 44px;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
}
.common_title span {
  color: var(--lightblue);
}
p.common-paragraph {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  margin-top: 10px;
  font-weight: 400;
}
.italic_text {
  color: var(--white);
  margin-top: 10px;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
}
.assetbg{
  background-image: url('../images/game_api_page/normalbg.png') !important;
}
.gradient_bgs {
  background-color: #000;
  overflow: hidden;
  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;
  position: relative;
  z-index: 1;
}
/*********************  Default-CSS  End *********************/
/* Header Section */
.header_wrapper {
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #000;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  height: 80px;
  background: var(--black);
}
.header_wrapper header {
  width: 100%;
}
.allmenus ul.mymenu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
.dropdown-toggle {
  background-color: transparent !important;
  border: unset;
}
.dropdown-toggle:active,
.dropdown-toggle:hover {
  background-color: transparent !important;
}
.allmenus ul.mymenu_list > li > a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.dropdown-menu {
  background-color: #2b2b2b;
  min-width: 40px;
}
.dropdown-menu li a {
  color: #fff;
}
.dropdown-menu li a:hover {
  color: #fff;
}
.dropdown-item:hover {
  background-color: var(--lightblue) !important;
}
.humberger {
  display: none;
}
.allmenus select {
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--lightblue);
  padding: 2px 4px;
  background: #005363;
}
.allmenus ul li a:hover {
  border-bottom-color: #fff;
}
.allmenus ul li a.active {
  border-bottom-color: #fff;
}
.header_inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo_block a{
	display:flex;
	max-width: 205px;
height: 55px;
}
.banner_image1 {
  background-color: #000;
  background-image: url(../images/banner_bg2.png) !important;
}
.banner_image {
  height: calc(100vh - 80px);
  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;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 30px; */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.banner_titles {
  max-width: 650px;
}
.banner_titles h1 {
  color: var(--lightblue);
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
}
.banner_titles p {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  margin-top: 20px;
  font-weight: 400;
  line-height: normal;
}
.email_inputbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.email_inputbox button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.email_inputbox button:active {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.email_inputbox input {
  padding: 18px 20px;
  border-radius: 4px;
  width: 58%;
  border: 1px solid var(--lightblue);
  background: #000;
  color: #a4b5b9;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  outline: none;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.email_inputbox input::-webkit-input-placeholder {
  color: #a4b5b9;
}
.email_inputbox input::-moz-placeholder {
  color: #a4b5b9;
}
.email_inputbox input:-ms-input-placeholder {
  color: #a4b5b9;
}
.email_inputbox input::-ms-input-placeholder {
  color: #a4b5b9;
}
.email_inputbox input::placeholder {
  color: #a4b5b9;
}
.cm_pedding {
  padding: 116px 0;
}
.cm_height {
  height: calc(100vh - 80px);
}
.contact_section {
  position: relative;
  background: radial-gradient(49.04% 73.82% at 50% 50%, #282828 0%, #ffffff00 100%);
  overflow: hidden;
}
.contact_svg {
  position: absolute;
  top: 0;
  z-index: 0;
  height: 100%;
}
.contact_inner {
  z-index: 1;
  position: relative;
}
.neon_icon .neon_light {
  -webkit-animation: neonGlow 1s infinite alternate;
  animation: neonGlow 1s infinite alternate;
}
.neon_icon {
  position: absolute;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.neon_icon.tree_neon {
  left: 0px;
}
.neon_icon.heart_neon {
  right: 20px;
}
.neon_icon.black_neon {
  right: 18%;
}
.neon_icon.rect_icon {
  left: 18%;
  bottom: -80px;
}
@-webkit-keyframes neonGlow {
  0% {
    -webkit-filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    opacity: 0.25;
  }
  100% {
    -webkit-filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    opacity: 1;
  }
}
@keyframes neonGlow {
  0% {
    -webkit-filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    opacity: 0.25;
  }
  100% {
    -webkit-filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.75));
    opacity: 1;
  }
}
.contact_inner h5 {
  color: var(--white);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.contact_btn {
  text-align: center;
  margin-top: 40px;
}
.solution_blocks {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}
.solution_box {
  width: 302px;
  height: 242px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  padding: 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 6px;
  border: 2px solid #7E5A00;
  background: #1C1B1A;
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.solution_box svg,
.solution_box .solution_icon svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.solution_box:hover svg {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.solution_box:hover svg path {
  fill: #fff;
}
.solution_box:hover {
  box-shadow: 0px 0px 28px 0px #F9BB22A8, 0px 0px 18px 0px #F9BB2233 inset;
}
.solution_box p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.game_partner_inner .all_partner_image {
  margin-top: 30px;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all_partner_image .partner_image {
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 5px;
}
.all_partner_image .partner_image:hover {
  border-color: var(--lightblue);
  background-color: #000;
}
.game_partner {
  background: #000;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('../images/game_api_page/normalbg.png') !important;
}
.discover_inner p {
  margin-top: 20px;
  max-width: 80%;
}
.discover_inner button {
  margin-top: 50px;
}
.homefooter footer{
  padding: 250px 0 80px;
}
footer {
  padding: 80px 0 80px;
  background-color: #161616;
}
.footer_logo a{
  display: flex;
  max-width: 50%;
}
.footer_right_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_cols li a {
  color: var(--white);
  padding: 5px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.footer_cols li a::after {
  content: "";
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  opacity: 0;
}
.footer_cols li a:hover::after {
  opacity: 1;
}
.footer_cols li a:hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.footer_cols h4 {
  color: var(--lightblue);
  margin-bottom: 18px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer_cols p {
  color: var(--white);
  font-size: 16px;
  margin-top: 0;
  line-height: 2;
  font-style: normal;
  font-weight: 400;
}
.bothsection .bgbox{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  z-index: -1;
  height: 100%;
}
.contact_form {
  max-width: 1075px;
  margin: 0 auto;
  margin-bottom: -200px;
  padding: 50px;
  border-radius: 6px;
  border: 2px solid #F9BB22;
  background-color: #000;
  -webkit-box-shadow: 0px -14px 50px 0px rgba(249, 188, 34, 0.5),
    0px 0px 18px 0px rgba(249, 188, 34, 0.5) inset;
  box-shadow: 0px -14px 50px 0px rgba(249, 188, 34, 0.5),
    0px 0px 18px 0px rgba(249, 188, 34, 0.5) inset;
  /* margin-top: -340px; */
  position: relative;
  z-index: 1;
}
/* .footer_section {
	margin-top: 70px;
} */
.contact_box .common_input {
  margin-bottom: 30px;
}
.contact_box textarea {
  margin-bottom: 0 !important;
  min-height: 160px;
}
.contact_send_btn {
  margin-top: 30px;
}
.contact_box {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.contact_titles p {
  text-align: center;
  padding-top: 15px;
  font-style: italic;
}
.copyright {
  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;
  padding: 23px 0;
  background-color: var(--black);
}
.copyright p {
  font-size: 16px;
  margin-top: 0;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: var(--white);
}
.selectbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.selectbox select {
  padding: 10px;
  color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--lightblue);
  outline: unset;
  font-size: 18px;
  background: #000;
}
/* turnkey Page */
.common_banner {
  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: 400px;
  background-position: center;
  background-size: cover;
}
.turnkeybanner {
  background-image: url(../images/sport_banner.png);
}
.casino_banner {
  background-image: url(../images/banner2.png);
}
.common_banner .banner_center h1 {
  color: var(--lightblue);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.common_banner .banner_center p {
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.turnkey_solution .gradient_content .common-paragraph {
  margin-bottom: 40px;
}
.common_long_box_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.common_long_box {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  border-radius: 6px;
  border: 2px solid var(--lightblue);
  width: 48.8%;
  background: #1C1B1A;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.common_long_box:hover {
  box-shadow: 0px 0px 28px 0px rgba(249, 188, 34, 0.699),
    0px 0px 18px 0px rgba(249, 188, 34, 0.699) inset;
}
.common_long_box_icon {
  width: 90px;
  height: 90px;
  background-color: var(--lightblue);
  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-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 100px;
}
.common_long_box_icon svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.common_long_box:hover .common_long_box_icon {
  background-color: var(--gray);
}
.common_long_box:hover .common_long_box_icon svg path {
  fill: #fff;
}
.common_long_box .common_long_box_info {
  width: calc(100% - 100px);
}
.common_long_box .common_long_box_info h3 {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
.common_long_box .common_long_box_info p {
  color: #a4b5b9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.launch_section .common_btn {
  margin-top: 30px;
}
.tukcasino_box {
  max-width: 23.3%;
  position: relative;
}
.tukcasino_box:hover .step_circle_icon svg path {
  fill: var(--white);
}
.tukcasino_box:hover .step_circle .step_pin {
  background-color: var(--white);
}
.tukcasino_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 150px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 100px;
}
.step_circle .step_pin {
  position: absolute;
  min-width: 80px;
  top: -10px;
  left: 50%;
  padding: 3px 12px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 18.5px;
  background: var(--lightblue);
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.step_circle .step_pin p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.step_circle {
  background-color: #1C1B1A;
  border: 2px solid var(--lightblue);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.step_over_circle {
  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;
  background-color: #1C1B1A;
  border: 2px solid var(--lightblue);
  border-top-color: transparent;
  border-right-color: transparent;
  height: 160px;
  width: 160px;
  position: absolute;
  border-radius: 100px;
  top: -80px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%) rotate(315deg);
  -ms-transform: translateX(-50%) rotate(315deg);
  transform: translateX(-50%) rotate(315deg);
}
.step_box h3 {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
.step_box p {
  color: #a4b5b9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.step_box {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 30px 15px;
  text-align: center;
  height: 250px;
  border-radius: 8px;
  background-color: #1C1B1A;
  border: 2px solid var(--lightblue);
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.tukcasino_section{
  background-image: url('../images/game_api_page/normalbg.png') !important;
}
.white_lable_section {
  background-image: url(../images/banner3.png);
  background-size: cover;
  background-position: center;
}
.white_lable_inner h3 {
  color: var(--white);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
}
.legal_section {
  background-image: url(../images/legal_bg.png);
  background-position: center;
  background-size: cover;
}
.legal_section .common_title {
  text-align: center;
}
.legal_section .text-center.btns {
  margin-top: 30px;
}
.sport_banner {
  background-image: url(../images/sport_banner.png);
}
.margin_top {
  margin-top: 110px;
}
.gradientBall.left_bottom {
  bottom: 0;
  top: unset;
}
.gradientBall.right_center {
  top: 40%;
}
.sport_three .row .common-paragraph {
  max-width: 615px;
}
.benifit_section {
  background: #000;
}
.benifit_wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.benifit_cards {
  width: 31.7%;
  height: 224px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 6px;
  border: 2px solid var(--lightblue);
  background: #1C1B1A;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.benifit_icon {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.benifit_cards:hover {
  box-shadow:0px 0px 28px 0px rgba(249, 188, 34, 0.699),
  0px 0px 18px 0px rgba(249, 188, 34, 0.699) inset
}
.benifit_cards:hover .benifit_icon {
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
}
.benifit_cards:hover svg path {
  fill: var(--white);
}
.benifit_cards h6 {
  margin-top: 30px;
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
/* Tushar */
.game_api_image {
  background-image: url(../images/game_api_page/casino_Images.png);
  background-size: cover;
  background-position: bottom;
}
.game_api_image .banner_inner {
  padding: 100px 0;
}
.sub_p {
  font-size: 24px;
}
.gmae_api_titles h1 {
  color: var(--lightblue);
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.advantage_blocks {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}
.advantage_box {
  width: 302px;
  height: 242px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  padding: 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 6px;
  border: 2px solid var(--lightblue);
  background: #000;
}
.advantage_box svg,
.advantage_box .advantage_icon svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.advantage_box:hover svg {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.advantage_box:hover svg path {
  fill: #fff;
}
.advantage_box:hover {
  box-shadow: 0px 0px 28px 0px rgb(249 187 34), 0px 0px 18px 0px rgb(249 187 34) inset
}
.advantage_box p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.choose_section{
  background-image: url('../images/game_api_page/normalbg.png') !important;
}
/* why_choose_section */
.why_choose_section {
  padding: 80px 0;
  background-color: #022e37;
}
/* cta section */
.cta_section {
  background-image: url(../images/game_api_page/cta_image.png);
  background-size: cover;
}
.cta_section.live {
  background-image: url(../images/live_casino_img/cta_image.png);
}
.cta_inner {
  font-size: 44px;
  z-index: 1;
  position: relative;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* New Page Css */
.live_casino_image.common_banner {
  background-image: url(../images/live_casino_img/live_casino.png);
}
.banner_inner .live_casino_titles h1 {
  color: #05cbfd;
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  text-align: center;
}
.gradient_content p {
  line-height: 28px;
}
hr {
  border: 1px solid #1b4047;
  margin-top: 110px;
  margin-bottom: 0;
}
.benefits_blocks,
.fantastic_blocks,
.bundle_blocks {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}
.benefits_box {
  width: 302px;
  height: 306px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  padding: 15px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 6px;
  border: 2px solid var(--lightblue);
  background: #1C1B1A;
}
.benefits_box svg,
.benefits_box .benefits_icon svg path,
.bundle_box:hover svg,
.bundle_box .bundle_icon svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.benefits_box:hover svg,
.bundle_box:hover svg {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.benefits_box:hover svg path,
.bundle_box:hover svg path {
  fill: #fff;
}
.benefits_box:hover {
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.benefits_blocks .common_long_box_info h3,
.bundle_box .common_long_box_info h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.benefits_box .common_long_box_info p,
.bundle_box .common_long_box_info p {
  color: #a4b5b9;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* Fantastic Online Casino Solutions */
.fantastic_box,
.bundle_box {
  width: 412px;
  height: 244px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  padding: 17px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 6px;
  border: 2px solid var(--lightblue);
  background: #1C1B1A;
}
.fantastic_box:hover {
  box-shadow: 0px 0px 28px 0px #F9BB2233, 0px 0px 18px 0px #F9BB22A8 inset;
}
.fantastic_blocks .common_long_box_info h1 {
  color: var(--lightblue);
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.fantastic_box .common_long_box_info p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.fantastic_section {
  background-color: #0a1f23;
}
.bundle_box {
  height: 306px;
}
.text-capitalise{
  text-transform: capitalize;
}