/*============================================
# Template Name: Bajipot
# Version: 1.0
# Date: 09/01/2024
# Author:
# Author URI:
# Developed By:
# Description:
============================================*/
/*============================================
======== Table of Css Content =========
# Typography
# Normalize
# Global style
# Header Area
# Banner Area
# Section Area
# Footer Area
===================================f=========*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
}
:root {
  --body-font: "Poppins", sans-serif;
  --lato-font: "Lato", sans-serif;
  --body-color: #000;
  --body-alt-color: #212121;
  --bg-color: #052532;
  --golden-color: #0095ff;
  --white-color: #fff;
  --border-color: #fff;
  --border-rad-5: 5px;
  --font-28: 28px;
  /* --hover-color: #571ce0;
  --hover-alt-color: #291b6b; */
  /* --h1: ;
  --h2: #291b6b;
  --h3: #291b6b;
  --h4: #291b6b;
  --h5: #291b6b;
  --h6: #291b6b;
  --heading-2: #291b6b;  */
	--size:64px;
	--bg: #0b1220;
	--accent: #06f;
	--muted: rgba(255,255,255,0.9);
	--shadow: 0 6px 18px rgba(2,6,23,0.45);
}

/* Button wrapper */
.scroll-top {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    width: var(--size);
    height: var(--size);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.9));
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: transform .25s ease, opacity .25s ease;
    opacity: 0.7;
    backdrop-filter: blur(6px);
}


.scroll-top[hidden]{
opacity:0; pointer-events:none; transform: translateY(12px);
}


/* SVG ring sits behind the arrow */
.progress-ring { position:absolute; inset:0; }
.progress-ring svg { width:100%; height:100%; display:block; }


.btn-inner{
position:relative; /* on top of ring */
z-index:2;
width:56%;
height:56%;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background: linear-gradient(180deg,var(--golden-color) 0%, var(--golden-color) 100%);
box-shadow: 0 4px 12px rgba(6,102,255,0.18), inset 0 -2px 6px rgba(255,255,255,0.06);
color:white;
transition: transform .12s ease;
}


.btn-inner:active{ transform: scale(.96); }


.arrow{
width:18px; height:18px; display:block; transform: translateY(-1px);
}


/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
.scroll-top, .btn-inner{ transition:none; }
}


/* small screens */
@media (max-width:728px){
:root{ --size:40px; }
}
.collapsing {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

.cockfight_wrapper {
  background: url(../images/banner_web.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  font-size: 14px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  font-family: var(--body-font);
  color: var(--bs-white);
  font-weight: 600;
  text-transform: initial;
  transition: all 0.3s;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
  color: var(--golden-color);
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  color: var(--golden-color);
  transition: all 1s;
}

img {
  max-width: 100%;
  height: auto;
}

.d-rtl {
  direction: rtl;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #fff;
}

button {
  border: none;
  cursor: pointer;
}

input,
textarea {
  padding: 10px 20px;
  color: var(--bs-white);
  width: 100%;
  font-family: var(--body-font);
  height: 50px;
  background: var(--bg-color);
  border: 2px solid var(--border-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="password"] {
  font-family: initial;
}

input[type="checkbox"] {
  width: initial;
  height: initial;
}

select {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

span {
  display: inline-block;
}

.table thead th,
.table td,
.table th {
  border: none;
}

.d-grid {
  display: grid !important;
}

.b-none {
  border: none !important;
}

.ovf-unset {
  overflow-x: unset !important;
}

iframe {
  border: 0;
  width: 100%;
}

.shadow-none {
  -webkit-box-shadow: none;
  box-shadow: none;
}

h1.m-none,
h2.m-none,
h3.m-none,
h4.m-none,
h5.m-none {
  margin: 0;
}

table thead tr th {
  font-size: 18px;
  line-height: 30px;
}

a {
  display: inline-block;
  color: var(--para-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

p,
span,
li,
label {
  margin: 0;
  /* font-family: var(--body-font); */
  font-size: 14px;
  font-weight: 400;
  color: var(--bs-white);
  line-height: 24px;
}

.section-text {
  margin-bottom: 34px;
}

.section-header {
  margin-bottom: 55px;
}

.sub-title {
  color: var(--white-color);
  /* margin-top: 40px; */
  line-height: 40px;
  font-size: 30px;
  text-align: center;
  position: relative;
}

.title {
  font-weight: 700;
  margin-bottom: 14px;
}

.xxlr {
  font-size: 26px;
  line-height: 36px;
  margin-top: -7px;
}

.xlr {
  font-size: 24px;
  line-height: 36px;
  margin-top: -7px;
}

.mdr {
  font-size: 16px;
  line-height: 22px;
}

.z-1 {
  z-index: 1;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

*::-webkit-scrollbar-track {
  background: var(--bg-color);
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-thumb {
  background-color: var(--golden-color);
}

::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--hover-color);
  border-radius: 5px;
  color: #fff;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer;
  transition: all 1s;
  transform: translateY(100%);
}
.scrollToTop.active {
  bottom: 30px;
  transform: translateY(0%);
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999999;
  overflow: visible;
  background: url(../images/preloader.gif) no-repeat center center;
  background-size: 20%;
  background-color: #e5eff1;
}

.color-golden,span.golden_color {
  color: var(--golden-color);
}

.header-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--golden-color);
}

.selected_language img {
  width: 30px;
  height: 30px;
}

.sidenav-menu {
  width: 30%;
  display: none;
  background: var(--body-color);
  height: 100vh;
  position: fixed;
  overflow-y: scroll;
  z-index: 100;
}

.sidenav-menu.show {
  display: block;
}

.sidenav-wrapper {
  padding: 40px;
}

.hide-sidenav {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--golden-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}

.sidenav-heading {
  margin-bottom: 30px;
}

.sidenav-heading p,
.sidenav-heading p span {
  font-size: 20px;
}

#sidenav {
  cursor: pointer;
}

.sidenav-menu-wrapper ul {
  list-style: none;
}

.sidenav-menu-wrapper ul li {
  margin: 8px 0;
}

.sidenav-menu-wrapper ul li a{
  font-size: 16px;
}

.sidenav-menu-wrapper ul li.login a,
.sidenav-menu-wrapper ul li.register a {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.sidenav-menu-wrapper ul li.login a {
  margin-top: 30px;
  background: var(--golden-color);
  color: var(--body-color);
}

.sidenav-menu-wrapper ul li.register a {
  margin-top: 10px;
  background: var(--white-color);
  color: var(--body-color);
}


div#languageModal .modal-header {
  justify-content: center;
  text-align: center;
  border: 0;
}

div#languageModal .modal-header .btn-close {
  float: right;
  margin: 0;
  position: absolute;
  top: 14px;
  right: 20px;
  color: #fff;
  background: none;
}


div#languageModal .modal-body {
  background-color: var(--body-color);
}

div#languageModal .modal-content {
  background: var(--body-alt-color);
  border-radius: 8px;
}

div#languageModal.modal {
  top: 50px;
}

.countrylang {
  text-align: center;
  background: var(--body-alt-color);
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 10px 0px;
}

.countrylang img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.countrylang h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.countrylang .btn-group {
  display: block;
  position: relative;
}

.countrylang .btn-group a.btn {
  display: inline-block;
  position: relative;
  width: 49%;
  background: #424242;
  /* float: left; */
  border: 10px;
  color: #fff;
}

.page-heading {
  background: var(--body-alt-color);
  display: block;
  text-align: center;
  padding: 35px 0px;
  border-radius: var(--border-rad-5);
  margin: 50px 0 0px 0px;
}

.page-heading p,
.page-heading span {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: var(--font-28);
  line-height: 1.2;
}


.bitjili-content h2 {
  font-size: 28px;
  font-family: var(--body-font) !important;
  color: var(--golden-color) !important;
  font-weight: 700 !important;
}

.padding-desktop.bitjili-content {
  padding: 80px 50px;
}

.bitjili-content h3 {
  font-size: 22px;
  line-height: 60px;
}

.bitjili-content p {
  text-align: justify;
  margin: 10px 0;
}


.bitjili-content a {
  color: var(--golden-color);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.bitjili-content a:hover {
  color: var(--golden-color);
  border-bottom: 3px solid var(--golden-color);
}


/* Faq */
.faq-page .nav-item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.faq-page .nav-pills .nav-link {
  background: var(--body-alt-color);
  color: #fff;
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.faq-page .nav-pills .nav-link.active {
  background-color: var(--golden-color);
  color: var(--bg-color);
}

li.faq-item {
  line-height: 32px;
}


/*  */
.bitjili-content h2.faq-title {
  margin-bottom: 32px;
}
.bitjili-content h4 {
  font-size: 18px;
  line-height: 24px;
}

.bitjili-content .related-faqs h2 {
  font-size: 18px !important;
  color: var(--white-color) !important;
  font-weight: 700 !important;
  margin-bottom: 20px;
}


/* Footer Area */

footer.footer-wrapper {
  background-color: var(--body-alt-color);
  margin-top: 40px;
  padding: 60px 0;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo a img {
  width: 180px;
}

.footer-menu-wrapper {
  margin-bottom: 40px;
}

.footer-menu ul {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}

.footer-menu li {
  flex-basis: 33.33%;
  box-sizing: border-box;
  margin-bottom: 10px;
}



p.copyright {
  /* margin-top: 30px; */
}


.social_links {
  margin-top: 10px;
  margin-bottom: 20px;
}

.social_links ul li {
  display: inline-block;
  margin-right: 5px;
}

.navigation-menu {
  float: right;
}

a.login_btn, a.sign_up_btn {
  padding: 10px 40px;
  border-radius: 8px;
  text-align: center;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 600;
  /* text-transform: uppercase; */
}

a.login_btn {
  background: var(--golden-color);
}

a.sign_up_btn {
  background: #fff;
}


@media only screen and (max-width: 767px) {

a.login_btn {
	display: none;
}
}
