/* common css *************************************************/
:root {
    --white: #fff;
    --black: #010101;
    --yellow: #F5C545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bevan-Regular';
    src: url("../fonts/Bevan-Regular.ttf");
}

@font-face {
    font-family: 'BaiJamjuree-Medium';
    src: url("../fonts/BaiJamjuree-Medium.ttf");
}

@font-face {
    font-family: 'BaiJamjuree-SemiBold';
    src: url("../fonts/BaiJamjuree-SemiBold.ttf");
}

@font-face {
    font-family: 'BaiJamjuree-Bold';
    src: url("../fonts/BaiJamjuree-Bold.ttf");
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

body {
    background: var(--black);
    width: 100%;
    height: 100%;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1;
}

p:last-child {
    margin-bottom: 0;
}

.small {
    font-size: 16px;
}

a {
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

section {
    padding: 50px 0;
    overflow-x: clip;
}

.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-dots .owl-dot span {
    background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.owl-nav {
    margin-top: 0;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.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;
    padding: 30px 0 0;
    backdrop-filter: blur(15px);
} */

#header {
    background-color: transparent;
    padding: 30px 0;
    transition: .5s all;
    position: relative;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(82, 82, 82, 0.577);
}

#header .logo-box h2 {
    font-family: 'Bevan-Regular';
    color: var(--yellow);
    font-size: 26px;
}

#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(--yellow);
    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 .button-box {
    margin-left: 12px;
    padding-top: 0;
}

.button-box .login-btn {
    font-size: 16px;
    font-family: 'BaiJamjuree-SemiBold';
    border: 1px solid var(--yellow);
    padding: 10px 32px;
    border-radius: 8px;
    color: var(--yellow);
    text-transform: capitalize;
}

.button-box .join-btn {
    background-color: var(--yellow);
    font-size: 16px;
    font-family: 'BaiJamjuree-SemiBold';
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--black);
    text-transform: capitalize;
}

#header .main-nav nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

#header .main-nav nav ul li a {
    color: white;
    padding: 5px;
    font-size: 16px;
    font-family: 'BaiJamjuree-Medium';
}
#header .main-nav nav ul li a:hover{
    color: var(--yellow);
}
#header .main-nav nav ul li a:active {
    color: var(--yellow);
}

/* homeBanner css  ******************************************/
#homeBanner .homeBanner-part {
    background: url("../images/bannerBg.png") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#homeBanner .homeBanner-box {
    background: url("../images/main_sec_bg.png") no-repeat;
    background-size: contain;
    background-position: center;
}

.homeBanner-box .box2 {
    margin-top: 20%;
}

.homeBanner-box .box2 .tour-txt {
    font-family: 'BaiJamjuree-SemiBold';
    color: var(--white);
    font-size: 40px;
    letter-spacing: 1px;
}

.homeBanner-box .box2 .year {
    font-family: 'BaiJamjuree-Bold';
    color: var(--yellow);
    font-size: 60px;
    margin-top: 30px;
}

.homeBanner-box .getid-btn {
    background: url("../images/btn_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 40px 30px;
    filter: drop-shadow(rgba(245, 197, 69, 0.5) 0px 10px 20px);
    text-transform: uppercase;
}
.homeBanner-box .getid-btn p {
    color: var(--black);
    font-family: 'BaiJamjuree-Medium';
}

.homeBanner-box .box2{
    position: relative;
}
.homeBanner-box .box2 .img_left{
    position: absolute;
    left: -60px;
    top: -40px;
}
.homeBanner-box .box2 .img_right{
    position: absolute;
    right: -50px;
    top: -40px;
}


.bg-blur {
	width: 30%;
	height: 100%;
	max-height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: -20%;
	left: -200px;
	z-index: -1;
	border-radius: 100%;
	filter: blur(800px);
    -moz-filter: blur(800px);
    -ms-filter: blur(800px);
    -o-filter: blur(800px);
}

.bg-blur2 {
    width: 30%;
	height: 100%;
	max-height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
    content: "";
	top: -20%;
	right: -200px;
	z-index: -1;
	border-radius: 100%;
	filter: blur(800px);
    -moz-filter: blur(800px);
    -ms-filter: blur(800px);
    -o-filter: blur(800px);

}

/* match tour carousel css ******************************************************************************/

#tour-carousel{
    padding: 20px 0;
}

#tour-carousel .owl-item.active.center {
    z-index: 1;
    opacity: 1;
    transform: scale(1.2);
}

#tour-carousel .owl-item.active {
    opacity: 0.7;
    z-index: -1;
    transform: scale(1);
    transition: .5s all;
}

/* #tour-carousel .owl-item.active {
} */

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #ffffff !important;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav {
    margin-top: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

#tour-carousel .slider {
    position: relative;
}

#tour-carousel .owl-carousel .owl-stage-outer{
    padding: 60px 0;
}

.matches {
    background-color: var(--black);
    border: 1px solid var(--yellow);
    border-radius: 14px;
}

#tour-carousel .matches .dates {
    padding: 0;
    font-family: 'BaiJamjuree-SemiBold';
    color: var(--white);
}

#tour-carousel .matches .dates p {
    font-size: 12px;
}

.matches .dates .won {
    background-color: var(--yellow);
    color: var(--black);
    padding: 10px 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1.5px solid var(--yellow);
}

#tour-carousel .matches .title {
    padding: 10px 10px;
}

.matches .title p {
    font-family: 'BaiJamjuree-SemiBold';
    font-size: 12px;
    color: white;
}

.matches .title .finish {
    background-color: #1A1A1A;
    padding: 12px 20px;
    border-radius: 20px;
}

.country {
    padding: 10px 10px;
    border-top: 1px solid rgba(54, 54, 54, 0.563);
    border-bottom: 1px solid rgba(54, 54, 54, 0.563);
}

.country .bottom {
    margin-top: 20px;
}

.country .top img {
    max-width: 50px;
}

.country .top p {
    color: white;
}

.country .top .runs .cn-name {
    font-family: 'BaiJamjuree-Bold';
    font-size: 16px;
    margin-bottom: 10px;
}

.country .top .runs .score {
    font-family: 'BaiJamjuree-SemiBold';
    font-size: 12px;
    line-height: 1.1;
}

.country .vs img {
    width: 100%;
    max-width: 30px;
}

.stat-link p {
    font-family: 'BaiJamjuree-Bold';
    font-size: 14px;
}

.stat-link .telegram p{
    color: white;
}
.stat-link .statics p{
    color: var(--black);
}

.matches .stat-link .link-img {
    width: 100%;
    max-width: 20px;
}

.matches .stat-link .star {
    width: 100%;
    max-width: 26px;
}

.stat-link {
    padding: 12px 10px;
}

.stat-link .telegram {
	background-color: #24A3E3;
	border-radius: 30px;
	padding: 9px 30px;
	padding-left: 10px;
    text-transform: uppercase;
}

.stat-link .statics {
    background-color: var(--yellow);
	border-radius: 30px;
	padding: 9px 30px;
	padding-left: 10px;
    color: var(--black);
    text-transform: uppercase;
}



/* gonzo hunt banner css ******************************************************************************/



/* blog section css ******************************************************************************/

.blogs {
    background-color: #100E0D;
    border-radius: 14px;
    height: 100%;
}

.blog-image {
    width: 100%;
    height: 180px;
}

#blogSection .blog-box .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	border-radius: 14px;
}

.blog-box .blog-text h3 {
    font-family: 'BaiJamjuree-Bold';
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
}

.blog-box .blog-text p {
    color: var(--white);
    font-family: 'BaiJamjuree-SemiBold';
    font-size: 18px;
}
.blog-part{
    position: relative;
}
#blogSection .blog-part .blog-blur{
	width: 30%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: 0;
	filter: blur(800px);
	right: -12%;
	z-index: -1;
	border-radius: 100%;
}



/* popular game slider section css ******************************************************************************/

.game-title.text-center {
	margin-bottom: 40px;
}
.game-title h3 {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 40px;
}

.popular-game img {
    max-width: 200px;
}
#game-slider .owl-carousel .owl-stage-outer{
    max-height: 200px !important;
}

#game-slider .gameslide-box .owl-carousel {
    height: 170px;
}

/* qa-secrtion css ***********************************************/

.qa-part .model-img{
    height: 100%;
}

.qa-part .detail-qa{
    padding-left: 30px;
}

#qa-secrtion .qa-detail {
    margin-bottom: 30px;
}

#qa-secrtion .qa-detail .title {
    font-family: 'BaiJamjuree-Bold';
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
}

#qa-secrtion .qa-detail .paragraph {
    font-family: 'BaiJamjuree-Medium';
    color: var(--white);
    font-size: 18px;
}
#qa-secrtion .qa-part{
    position: relative;
}
#qa-secrtion .qa-part .qapart-blur{
	width: 30%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: 10%;
	filter: blur(800px);
	right: -10%;
	z-index: -1;
	border-radius: 100%;
}

/* our premium site section css ****************************************/
.site-title.text-center {
	margin-bottom: 40px;
}
.site-title h3 {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 40px;
    font-weight: 400;
}

.premium-site img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

#premiumsite-slider .owl-carousel .owl-item img {
	display: block;
	width: 100%;
	aspect-ratio: 3/2;
	max-width: 200px;
	object-fit: contain;
	/* align-items: center; */
	max-height: 90px;
}


/* ipl get your id css ****************************************/

#ipl-id{
    border-top: 1px solid rgba(74, 74, 74, 0.362);
}

#ipl-id .iplid-text h3 {
    font-family: 'BaiJamjuree-Bold';
    color: var(--white);
    margin-bottom: 20px;
}

.iplid-text .verify-county {
    font-family: 'BaiJamjuree-SemiBold';
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.iplid-text .qa-ans {
    font-family: 'BaiJamjuree-Medium';
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.iplid-text {
    margin: auto 0;
}

.iplid-box .getid-btn,
.iplid-box .telegramid-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.id-btn img {
    max-width: 180px;
}

.getid-btn img {
    filter: drop-shadow(rgba(245, 197, 69, 0.5) 0px 10px 20px);
}

#ipl-id .id-btn .getid-btn p {
    background: url("../images/btn_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 40px;
    filter: drop-shadow(rgba(245, 197, 69, 0.5) 0px 10px 20px)
}

#ipl-id .getid-btn p {
    color: var(--black);
    font-family: 'BaiJamjuree-Medium';
}

#ipl-id .id-btn .telegramid-btn{
    background: url("../images/btn_tele_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 30px;
    filter: drop-shadow(rgba(245, 197, 69, 0.5) 0px 10px 20px);
    text-transform: uppercase;
}
#ipl-id .telegramid-btn p {
    color: var(--yellow);
    font-family: 'BaiJamjuree-Medium';
}

#ipl-id .iplid-part{
    position: relative;
}
#ipl-id .iplid-part .iplid-blur{
	width: 30%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: -8%;
	filter: blur(800px);
	left: -10%;
	z-index: -1;
	border-radius: 100%;
}

#ipl-id .iplvector-box img {
    width: 100%;
    max-width: 90%;
}

/* gonzo-banner three css **********************/

#gonzo-three .banner-part{
    position: relative;
}

#gonzo-three .banner-part .gthree-blur{
	width: 30%;
	height: 700px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: -60%;
	filter: blur(800px);
	right: -8%;
	z-index: -1;
	border-radius: 100%;
}


/* process section css  **********************/

#process-section .process-title h3 {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 40px;
    font-weight: 400;
}

.process-box .process-detail {
    background-color: #100E0D;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}

.process-box .process-detail .head-text {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 24px;
    padding: 14px;
}

.process-box .process-detail .head-para {
    color: var(--white);
    font-family: 'BaiJamjuree-SemiBold';
    font-size: 18px;
    font-weight: 400;
    padding: 14px;

}

#process-section .process-part{
    position: relative;
}
#process-section .process-part .proces-blur{
	width: 30%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: 0px;
	filter: blur(800px);
	left: -10%;
	z-index: -1;
	border-radius: 100%;
}

/* Frequently asked qa css */

#ask-qna .askqa-box {
    padding: 80px 0;
    background-color: #0D0D0D;
    border-radius: 20px;
}

.qna-answer {
    width: 80%;
    margin-top: 30px;
}

#ask-qna .askqa-title h3 {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 40px;
    font-weight: 400;
}

.qna-answer .accordion-item {
    margin-bottom: 20px;
    border-radius: 20px;
    border: none;
}

.qna-answer .accordion-item h2 {
    font-family: 'BaiJamjuree-SemiBold';
    color: var(--black);
    font-size: 24px;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
}

.qna-answer .accordion-item .accordion-body {
    font-family: 'BaiJamjuree-Medium';
    color: var(--black);
    font-size: 18px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-item .accordion-button {
    border-radius: 20px !important;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 197, 69, 1) 100%);
}

.accordion-button::after {
    content: "";
    background-image: url("../images/qna_btn.png");
    background-repeat: no-repeat;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("../images/qna_btn.png");
	transform: rotate(-180deg);
}


#ask-qna .askqa-part{
    position: relative;
}

#ask-qna .askqa-part .askqa-blur{
	width: 30%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: 50%;
	filter: blur(800px);
	right: -200px;
	z-index: -1;
	border-radius: 100%;
}

/* new and blog css ***************************************/
#newsSection {
    padding-top: 0;
}
#newsSection .news-title h3 {
    color: var(--white);
    font-family: 'BaiJamjuree-Bold';
    font-size: 40px;
    font-weight: 400;
}

.news {
    background-color: #100E0D;
    border-radius: 14px;
}

.news-box .news-post {
    margin-top: 30px;
}

#newsSection .news-box .news-image img {
    width: 100%;
    border-radius: 14px;
}
.news-post .news-text{
    margin: 16px 0;
}
.news-box .news-text h3 {
    font-family: 'BaiJamjuree-Bold';
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
}

.seemore-btn {
    margin-top: 40px;
}

.see-btn img {
    max-width: 180px;
}

#newsSection .seemore-btn .see-btn{
    background: url("../images/btn_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 30px;
    filter: drop-shadow(rgba(245, 197, 69, 0.5) 0px 10px 20px);
    text-transform: uppercase;
}

#newsSection .seemore-btn p {
    color: var(--black);
    font-family: 'BaiJamjuree-Medium';
}

#newsSection .news-part{
    position: relative;
}

#newsSection .news-part .news-blur{
	width: 40%;
	height: 600px;
	background-color: #F5C545BF;
	opacity: 0.3;
	position: absolute;
	top: -10%;
	filter: blur(800px);
	left: -20%;
	z-index: -1;
	border-radius: 100%;
}


/* footer css *******************************************/

#footer .footer-part {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 197, 69, 1) 100%);
    padding-top: 60px;
}


#footer .logo-box h2 {
    font-family: 'Bevan-Regular';
    color: var(--black);
    font-size: 26px;
}

#footer .top-box h5 {
    margin-bottom: 30px;
    font-family: 'BaiJamjuree-Bold';
    color: var(--black);
}

#footer .top-box .list-box ul li a {
    color: var(--black);
    font-family: 'BaiJamjuree-Medium';
    font-size: 16px;
}

#footer .top-box .list-box li:not(:last-child) {
    margin-bottom: 20px;
}

#footer .top-box .link-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 20px;
}

#footer .top-box .link-box ul img {
    max-width: 40px;
}

#footer .center-box {
    padding: 30px 0;
    border-top: 1px solid #4f4f4f53;
    border-bottom: 1px solid #4f4f4f53;
}


#footer .center-box .payment-opt {
    background-color: rgba(255, 255, 255, 0.475);
    width: 86%;
    padding: 10px 0;
    border-radius: 20px;
}
.payment-opt .payimg-box{
    max-width: 100px;
    padding: 10px;
    margin: 3px;
}
.payment-opt .payimg-box img{
    max-width: 80px;
}


#footer .end-box {
    padding: 30px 0;
}

#footer .end-box .link-box ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

#footer .end-box .text-box p {
    font-family: 'BaiJamjuree-Medium';
    font-size: 18px;
    color: 020024;
}
.end-box .link-box img{
    max-width: 38px;
    filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 3px 2px);
}
#footer .end-box .link-box ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    line-height: 1;
}