﻿/*
Theme Name: Twenty Twenty-One-Child
Theme URI: https://example.com/twenty-twenty-one-child/
Description: Twenty Twenty-One Child Theme
Author: wordpress
Author URI: https://example.com
Template: twentytwentyone
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-column, responsive-layout
Text Domain: twentytwentyonechild
*/

/* custom style added here */


@import url('css2-Poppinsitalwght010002000300040005000600070008000900110012001300140015001600170018001900_swap.css');

@import url('css2-Montserratitalwght0100..9001100..900_OpenSansitalwght0300..8001300..800_swap.css');

@import url('gilroy-bold.css');

@font-face {
    font-family: 'Gotham';
    src:url('https://www.instantsports.com/de/wp-content/themes/twentytwentyone-child/assets/fonts/Gotham-Light.woff2') format('woff2'),
        url('https://www.instantsports.com/de/wp-content/themes/twentytwentyone-child/assets/fonts/Gotham-Light.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* ----main root---- */

:root {
    --base-color: #13151C;
    --black-color-rgb: 0, 0, 0;
    --black-color: #000000;
    --color-black-50: #13151C;
    --color-black-100: #34383F;
    --color-black-150: #1F2126;
    --color-black-200: #797979;
    --color-black-250: #292F3F;
    --color-black-350: #3B4357;
    --color-black-450: #7F7F7F;
    --color-black-550: #A6A6A6;
    --color-black-650: #E6EAED;

    --white-color: #ffffff;
    --primary-red: #ED1C24;
    --color-secondary-200: #ffde1e;
    
    --color-blue-100: #ed8c21; 
    --color-orange-100: #ed8c21; 
    --color-orange-150: #FFC701; 
    --color-orange-200: #FFDE1E; 
    --color-red-100: #FF0B16; 
    --color-red-150: #FF4E4E; 

    --color-secondary-100: #9BACE9; 


    --text-yellow: #FFC701;

    --p-64: 64px;
    --p-32: 32px;
    --p-40: 40px;
    --bg-opacity-10: 0.1;
    --bg-opacity-20: 0.2;
    --bg-opacity-30: 0.3;
    --bg-opacity-40: 0.4;
    --bg-opacity-50: 0.5;
    --bg-opacity-60: 0.6;
    --bg-opacity-70: 0.7;
    --bg-opacity-80: 0.8;
    --bg-opacity-90: 0.9;
    --bg-opacity-100: 1;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 800;
    --fw-extra-black: 900;
    --Poppins: "Poppins", sans-serif;
    --global--spacing-vertical: 1rem;
    --responsive--aligndefault-width: 100%;
    --responsive--alignwide-width: 100%;

    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: linear-gradient(-180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-optical-sizing: auto;
    font-family: var(--Poppins);
    font-weight: var(--fw-regular);
    font-style: normal;
    background: var(--base-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    color: var(--white-color);
    position: relative;
    isolation: isolate;
  
}

body.home {
    background: var(--base-color);
    background-position: bottom left;
    background-size: auto;
    /* background-size: 410px; */
}

a {
    text-decoration: none;
    color: var(--primary-orange);
}

a:hover {
    color: var(--primary-orange-dark);
}

p {
    font-size: 1rem;
    line-height: 120%;
    font-weight: var(--fw-regular);
    color: var(--color-black-650);
}

p:last-child {
    margin-bottom: 0;
}

/* btn css */
.btn {
    border-radius: 8px;
    border: none;
    font-weight: var(--fw-semibold);
    color: var(--color-black-150);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-md {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

/* btn css ends */
.btn-gradient {
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
}

.theme_btn .btn-gradient:hover {
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
}


.theme_btn .btn:hover svg path,
.header-btn .btn:hover svg path
{
    stroke: var(--white-color);
}

/* font-sizes as per typography */
.fs-24 {
    font-size: 1.5rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-16 {
    font-size: 1rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.text-size-large {
    font-size: 1.5rem;
    line-height: 140%;
}
.text-size-medium {
    font-size: 1.25rem;
    line-height: 140%;
}

.text-size-regular {
    font-size: 1rem;
    line-height: 150%;
}

.text-size-small {
    font-size: 0.875rem;
    line-height: 140%;
}

.text-size-tiny {
    font-size: 0.75rem;
    line-height: 140%;
}
/* new css added 16-10-24 */
/* button {
    color: var(--color-black-150) !important;
    border-radius: 8px !important;
    border: 0 !important;
    margin-bottom: 10px;
    
}
button:hover { 
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
} */
 .gradient-yellow-orange-box {
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
 }
.gradient-yellow-orange {
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
    border-radius: 8px;
    border: 0 !important;
    color: var(--white-color) !important;
    padding: 1.25rem;
    font-size: 1.25rem;
    line-height: 100%;
}
.gradient-yellow-orange:hover {
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    color: var(--white-color) !important;
}
.button-large {
    min-height: 62px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    color: var(--color-black-150) !important;
    border-radius: 8px;
    border: 0;
    display: inline-flex;
    justify-content: center;
    align-items:center;
    font-weight: var(--fw-semibold);
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
}

/* rgular button */
.button-regular {
    height: 48px;
    padding: 1rem 2rem;
    font-size: 1rem;    
    color: var(--color-black-150) !important;
    border-radius: 8px;
    font-weight: var(--fw-semibold);
    border: 0;
    display: inline-flex;
    justify-content: center;
    align-items:center;
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
}
/* small button */
.button-small {
    min-height: 40px;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
    color: var(--color-black-150) !important;
    border-radius: 8px;
    border: 0;
    font-weight: var(--fw-semibold);
    display: inline-flex;
    justify-content: center;
    align-items:center;
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
}

/* hover button large */
.button-large:hover, 
.button-regular:hover,  
.button-small:hover { 
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    color: var(--white-color) !important;
}   


/* outline button css */

.button-large-outline {
    background-color :transparent !important;
    border: 2px solid var(--color-blue-100) ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    font-weight: var(--fw-semibold);
    height: 48px;
    padding: 1rem 2rem;
    font-size: 1.125rem;    
    display: inline-flex;
    justify-content: center;
    align-items:center;
}

.button-regular-outline {
    background-color:transparent !important;
    border: 2px solid var(--color-blue-100) ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    height: 48px;
    padding: 1rem 2rem;
    font-weight: var(--fw-semibold);
    font-size: 1rem;    
    display: inline-flex;
    justify-content: center;
    align-items:center;
}


.button-small-outline {
    background-color:transparent !important;
    border: 2px solid var(--color-blue-100) ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    height: 48px;
    padding: 10px 18px;
    font-size: 14px;    
    font-weight: var(--fw-semibold);
    display: inline-flex;
    justify-content: center;
    align-items:center;
}

/* reverse button */
.button-large-reverse {
    background-color :transparent !important;
    border: 2px solid transparent ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    height: 48px;
    padding: 1rem 2rem;
    font-size: 1.125rem;   
    font-weight: var(--fw-semibold); 
    display: inline-flex;
    justify-content: center;
    align-items:center;
}

.button-regular-reverse {
    background-color:transparent !important;
    border: 2px solid transparent ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    height: 48px;
    padding: 1rem 2rem;
    font-size: 1rem;    
    font-weight: var(--fw-semibold);
    display: inline-flex;
    justify-content: center;
    align-items:center;
}


.button-small-reverse {
    background-color:transparent !important;
    border: 2px solid transparent ;
    color: var(--color-blue-100) !important;
    border-radius: 8px;
    height: 48px;
    padding: 10px 18px;
    font-size: 14px;   
    font-weight: var(--fw-semibold); 
    display: inline-flex;
    justify-content: center;
    align-items:center;
}
/* new css added 16-10-24 ends */

img {
    outline: 0;
    max-width: 100%;
    height: auto;
}


.color-black-50 {
    color:var(--color-black-50)
}
.color-black-100 {
    color:var(--color-black-100);
}
.color-black-150 {
    color:var(--color-black-150);
}
.color-black-200 {
    color:var(--color-black-200);
}
.color-black-250 {
    color:var(--color-black-250);
}
.color-black-350 {
    color:var(--color-black-350);
}
.color-black-450 {
    color:var(--color-black-450);
}
.color-black-550 {
    color:var(--color-black-550);
}
.color-black-650 {
    color:var(--color-black-650);
}
.color-secondary-100 {
    color:var(--color-secondary-100)
}
.color-secondary-200 {
    color:var(--color-secondary-200);
}
.color-blue-100 {
    color:var(--color-blue-100);
}

.color-orange-100 {
    color:var(--color-orange-100);
}
.color-orange-150 {
    color:var(--color-orange-150);
}
.color-orange-200 {
    color:var(--color-orange-200)
}
.color-red-100 {
    color:var(--color-red-100);
}
.color-red-150 {
    color:var(--color-red-150);
}

/* comon heading css */
.heading-style-h1,
h1.page-title,
.h1,
h1 {
    font-size: 4rem;
    line-height: 110%;
    font-weight: var(--fw-bold);
    /* letter-spacing: 2%; */
    letter-spacing: 1.28px;
    margin-bottom: 1rem;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: var(--fw-bold);
    line-height: 120%;
    text-transform: capitalize;
}
.heading-style-h2,
.entry-title,
.h2,
h2 {
    font-size: 3rem;
    line-height: 120%;
    font-weight: var(--fw-bold);
    letter-spacing: 0.96px;
}
.heading-style-h3,
.h3,
h3 {
    font-size: 2rem;
    letter-spacing: 0.64px;
}

.heading-style-h4,
.h4,
h4 {
    font-size: 1.5rem;
}
.heading-style-h5,
.h5,
h5 {
    font-size: 1rem;
}
.heading-style-h6,
.h6,
h6 {
    font-size: 0.75rem;
}

ul li a {
    color: var(--white-color);
}
.site-main {
    padding-top: 0;
}

body:not(.home) .site-main {
    padding-top: 100px;
}

.py-64 {
    --padding: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.search-page-container .entry-title {
    color: var(---white-color);

}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1280px;
    }
}

/* header css */
.header-btn .btn {
    width: 159px;
    height: 48px;
    font-size: 1rem;
    line-height: 1rem;
    padding: 1rem 2rem;
    font-weight: var(--fw-semibold);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}
.header-btn .btn:focus ,
.header-btn .btn-gradient:hover {
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    color: var(--white-color) !important;
    text-decoration: none !important;
}
.header-btn .btn svg {
    width: 7px;
    height: 14px;
}

/* header .navbar {
    padding: 1rem 1.125rem;
    background: rgba(31, 33, 38, 0.5) url("/wp-content/uploads/2024/10/header-bg.png") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
} */
header .navbar {
    padding: 1rem 1.125rem;
   -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #1f212680;
    inset: 0%;
}

header {
    overflow: hidden;
}

header::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 33, 38, 1);
    filter: blur(45px);
    z-index: -1;
    display: none;
}

/* header css ends */
/* hero banner secn */
.hero-banner-secn {
    isolation: isolate;
    background: url("../../willbetgamebettingsa/image/s_hero.jpg") no-repeat;
    background-size: 100%;
    padding: 240px 64px 160px;
    background-position: top center;
}

.hero-banner-secn::before,
.hero-banner-secn::after {
    isolation: isolate;
    z-index: -1;
    position: absolute;
    content: '';
    pointer-events: none;
}

.hero-banner-secn::after {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgb(19, 21, 28);
    background: -moz-linear-gradient(180deg, rgba(19, 21, 28, 0.25) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(19, 21, 28, 0.25) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    background: linear-gradient(180deg, rgba(19, 21, 28, 0.25) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#13151c", endColorstr="#13151c", GradientType=1);
}

.hero-banner-secn::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(19, 21, 28);
    background: -moz-linear-gradient(-90deg, rgba(19, 21, 28, 0) 35%, rgba(19, 21, 28, 0.75) 60%, rgba(19, 21, 28, 0.9) 100%);
    background: -webkit-linear-gradient(-90deg, rgba(19, 21, 28, 0) 35%, rgba(19, 21, 28, 0.75) 60%, rgba(19, 21, 28, 0.9) 100%);
    background: linear-gradient(-90deg, rgba(19, 21, 28, 0) 35%, rgba(19, 21, 28, 0.75) 60%, rgba(19, 21, 28, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#13151c", endColorstr="#13151c", GradientType=1);
}

.hero-banner-content .theme_btn {
    margin-top: 2.5rem;
}

.hero-banner-content .theme_btn .btn {
    width: 206px;
    font-size: 1.5rem;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
	animation: dynamic-class-name_pulse 2s infinite !important;
}

.hero-banner-content .payment-gateways h4 {
    color: var(--color-black-650);
}

.payment-gateways 
{
    margin-top: 64px;
}

.payment-gateways ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.payment-gateways ul li {
    background: var(--color-black-150);
    border-radius: 50px;
    padding: 14px 16px;
}
.payment-gateways img {
    max-height: 28px;
    object-fit: contain;
}
/* join us secn second 2 */
.bg-black-box {
    background: var(--color-black-150);
}

.box-article {
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    transition: all .3s;
    position: relative;
}

.join-us-article {
    margin-top: 64px;
}

.box-article-content {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.box-article-content h3 {
    margin-bottom: 0
}


.secn-title {
    margin-bottom: 2rem;
}

.secn-summary {
    margin: 2rem 0;
}

.payment-logos {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.payment-logos {
    gap: 22px;
}

.withdraws-secn .theme_btn .btn {
    width: 255px;
}
/* welcome secn css edited 18-10-24 */
.welcome-offers-secn .secn-title {padding-bottom: 40px;}
.welcome-offers-secn .box-article {border-radius: 1rem;}
.exclusive .is-glow {
    -webkit-box-shadow: 0 0 4rem 0 #ed8c218c;
    box-shadow: 0 0 4rem 0 #ed8c218c;
}
.exclusive .outline-gold {
    border: .5rem solid var(--color-orange-100);
}

.popular_wrap {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: -3rem 15% auto auto;
}
.popular_icon {
	color: var(--color-orange-100);
	transform-style: preserve-3d;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: auto;
	display: flex;
	transform: rotateX(0)rotateY(180deg)rotate(95deg);
}
.popular_text {
    color: var(--color-orange-100);
    margin-bottom: .5rem;
   font-family: var(--Poppins);
    font-size: 1.5rem;
    font-style: italic;
}
.welcome-offer-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.welcome-offer-list ul li {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    line-height: 120%;
}
.welcome-offer-list img {
	max-height: 24px;
	width: 24px;
	height: 100%;
}
 .card-feature_wrap {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: .75rem;
    justify-content: center;
    align-items: center;
    display: flex;
    top: -1.75rem;
    right: 1rem;
    background-color:  var(--color-orange-100);
    justify-content: center;
     align-items: center;
     margin-right: 1rem;
     padding: .5rem 1rem;
     display: flex;
     position: absolute;
     inset: -1.85rem 0% auto auto;
}

.list-check_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    margin-top: .05rem;
}
.exclusive .box-article.outline-gold.is-glow:hover {
    transform: scale(1.01)translateY(-1rem);
    box-shadow: 0 0 5rem 0 #ed8c21d9;

}
.exclusive .box-article.outline-gold.is-glow .card_flash::after {
    content: "";
    left: -50%;
    opacity: 0.35;
    position: absolute;
    top: -50px;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -10;
    background-image: linear-gradient(90deg,#fff0,#ffc701d9 45%,#ffdd64 50%,#ffc701 55%,#fff0);
    width: 40%;
    height: 140%;
    transform: rotate(20deg);    
    }

  
.card-flash_track {
    z-index: -1;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}
.exclusive .box-article.outline-gold.is-glow:hover .card_flash::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* .card-flash_wrap {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    transform: translate3d(-100%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;
}
.card_flash {
    opacity: .35;
    background-image: linear-gradient(90deg,#fff0,#ffc701d9 45%,#ffdd64 50%,#ffc701 55%,#fff0);
    width: 40%;
    height: 120%;
    transform: rotate(20deg);
}
.box-article.outline-gold.is-glow:hover .card-flash_wrap {
    transform: translate3d(100%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;
}  */


.welcome-offers-secn .container {
	max-width: 1280px;
}


/* welcome secn ends */

/* hero banner css ends */
.mw-1280 {
    max-width: 1280px;
    margin: 0 auto;
}

.gradient-text span {
    background: linear-gradient(90deg, #FFDE1E 0%, #ED8C21 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--fw-bold);
    font-size: inherit;
}

.icon-box {
    border-radius: 12px;
    padding: 13px 11px;
}

.icon-box-64 {
    --width: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
}


/* footer css */
.footer {
    position: relative;
    isolation: isolate;
}
.site-footer {margin-top: 1.25rem;}
.footer::after {
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% + 200px);
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: rgb(19, 21, 28);
    background: -moz-linear-gradient(180deg, rgba(19, 21, 28, 0) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(19, 21, 28, 0) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    background: linear-gradient(180deg, rgba(19, 21, 28, 0) 0%, rgba(19, 21, 28, 0.9) 90%, rgba(19, 21, 28, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#13151c", endColorstr="#13151c", GradientType=1);
}

.footer .powered-by p {
    font-size: 0.875rem;
}

.text-yellow {
    color: var(--text-yellow);
}

footer .social-media {
    margin-top: 2rem;
}

.social-media ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.875rem;
    align-items: center;
    justify-content: center;
}

.social-media ul li .icon-col {
    --width: 40px;
    min-width: var(--width);
    max-width: var(--width);
    min-height: var(--width);
    max-height: var(--width);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: var(--white-color);
    padding: 10px;
    transition: all 0.3s ease;
}

.social-media ul li .icon-col img {
    max-height: 20px;
    max-width: 20px;
    object-fit: contain;
}

.social-media ul li .icon-col:hover {
    background: var(--bs-btn-hover-bg);
}

.social-media ul li .icon-col:hover img {
    filter: brightness(1) invert(1);
}

/* footer css ends */
/* css edited for comon categories and default pages css */
.entry-title {
    color: var(--white-color);
}
.page-header {
    border-bottom: 3px solid var(--color-black-450);
}
.archive.logged-in .entry-footer .posted-on, .search.logged-in .entry-footer .posted-on, .blog.logged-in .entry-footer .posted-on,
.entry-footer > span
{
    color: var(--white-color);
}
.entry-footer a {
    color: var(--text-yellow);
}
.entry-footer a:hover {
    color: var(--color-black-550);
}
.archive .entry-footer .cat-links, .archive .entry-footer .tags-links, .search .entry-footer .cat-links, .search .entry-footer .tags-links, .blog .entry-footer .cat-links, .blog .entry-footer .tags-links {
    color: var(--white-color);
}
.page-content .search-form input[type="submit"] {
    background: rgb(255, 222, 30);
    background: -moz-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 222, 30, 1) 0%, rgba(237, 140, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffde1e", endColorstr="#ed8c21", GradientType=1);
    font-size: 1.5rem;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 0;
    outline: 0;
    color: var(--color-black-150) !important;
}
.page-content .search-form input[type=search] {
    border-color: var(--color-secondary-200) ;
    border-radius: 8px;
}
.page-content .search-form input[type="submit"]:hover { 
    background: rgba(237, 140, 33, 1);
    background: -moz-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: -webkit-linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
    background: linear-gradient(180deg,rgba(237, 140, 33, 1)  0%, rgba(255, 222, 30, 1) 100%);
}
/* ends css for default pages */


.page-header.alignwide {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.posted-by,.post-taxonomies {
	color: #fff;
}

/* common media query for theme */
@media (min-width:1200px) {
    p {
        font-size: 1.25rem;
        line-height: 140%;
    }
    .btn-lg {
        min-height: 62px;
    }
}
@media (min-width:1900px ) {
    .card-feature_wrap {
        height: 3rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;       
    }
}
/* mobile toogle menu css */
@media (max-width:1199.98px) {

    /* basic typo */
    .heading-style-h1,
    h1,
    h1.page-title,
    .h1
    {
        font-size: 2.5rem;
        line-height: 100%;
        padding-bottom: 5px;
    }
    .heading-style-h2,
    .entry-title,
    .h2,
    h2 {
        font-size: 2rem;
        line-height: 100%;
    }
    .heading-style-h3,
    .h3,
    h3 {
        font-size: 1.5rem;
        line-height: 100%;
    }
    .heading-style-h4,
    .h4,
    h4 {
        font-size: 1.25rem;
        line-height: 100%;
    }
    .heading-style-h5,
    .h5,
    h5 {
        font-size: 1rem;
        line-height: 100%;
    }
    .heading-style-h6,
    .h6,
    h6 {
        font-size: 1rem;
        line-height: 100%;
    }

    .fs-24 {
        font-size: 1.25rem;
    }
    .text-size-large {
        font-size: 1.25rem;
        line-height: 120%;
    }
   
    .button-large,.btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* basic typography ends */
    /* header css */
    header .navbar {
        padding: 1rem 0.5rem;
        top: unset;
    }

    header .navbar .site-logo .custom-logo {
        max-width: 170px;
        max-height: 50px;
    }
}

@media (max-width:991.98px) {
    .hero-banner-secn {
        padding:120px 20px;
        background-position: right center;
        background-size: cover;
    }
    .popular_wrap {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        top: -2rem;
    }
    .popular_icon {
        height: 2rem;
    }
    .popular_text {
        font-size: 1.125rem;
    }
    .card-feature_wrap {
        top: -1.5rem;
        inset: -1.5rem 0% auto auto;
    }
    .welcome-offer-list ul li {
        font-size: 1rem;
    }
}

/* footer css */

@media (max-width:767.98px) {
    .py-64 {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .payment-logos {
        flex-wrap: wrap;
        margin: 1.5rem 0;
    }

    .box-article {
        padding: 1.25rem;
    }
    .header-btn .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        width: 120px;
        height: 40px;
        line-height: 1;
        min-height: 40px;
    }
    .hero-banner-secn {
        padding:120px 20px 60px;      
    }
    .popular_wrap {
        inset: -2.25rem 0 auto auto;         
    }
    .card-feature_wrap {
        margin-left: 1rem;
        font-size: .75rem;
    }
}



/* home new */
.page-template-instant-sports-page-template
{
	background: var(--base-color) url(../../willbetgamebettingsa/image/footer_wrap.png) no-repeat center bottom;
}
.page-template-instant-sports-page-template header 
{
    position: absolute;
}
.page-template-instant-sports-page-template header nav
{
	background:transparent;
	backdrop-filter:none;
}
.page-template-instant-sports-page-template header nav .container-fluid
{
	justify-content:center;
}
.page-template-instant-sports-page-template  main
{
	padding-top:0 !important;
}
.page-template-instant-sports-page-template .withdraws-secn h2 
{
	font-family: "Poppins", sans-serif;
}
.page-template-instant-sports-page-template .withdraws-secn .new-home-btn
{
	font-family: "Poppins", sans-serif;
	font-size:24px;
}
.heading-top-text 
{
    color: #ED8C21;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    border: 1px solid #ED8C21;
    padding: 11px 17px;
    border-radius: 8px;
    display: inline-block;
}
.home-new-banner .img-fluid 
{
    filter: brightness(0.3);
}
.home-new-banner 
{
	background-size:auto;
    background: url(../../willbetgamebettingsa/image/s_hero.png) no-repeat right;	
    padding: 220px 64px 155px;
    background-position: top center;
}
.sports-v1-banner 
{
	background-size:auto;
    background:url(../../willbetgamebettingsa/image/s_hero.jpg) no-repeat right;	
    padding: 130px 64px 108px;
    background-position: top right;
}
.sports-v1-banner h1 
{
    font-family: 'Gilroy-Bold', sans-serif;
    letter-spacing: 2px;
    font-size: 78px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1.56px;
    color: #fff;
}
.sports-v1-banner h1 span
{
	background: linear-gradient(1deg, #FFDE1E 23%, #ED8C21 65%);
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-template-instant-sports-page-template .btn
{
	box-shadow: 0px 5px 20px 0px #f7bb1f;
}
.page-template-instant-sports-page-template .instant-sub-heading p
{
	color:#7F7F7F;
	font-family: 'Gotham';
	font-weight:700;
}
.page-template-instant-sports-page-template  .instant-button-con
{
	margin-bottom:120px;
}
.home-new-banner .theme_btn .btn.new-home-btn 
{
    width: 440px;
	background: linear-gradient(88.45deg, #00C483 7.6%, #00FFB7 99.68%);
}
.sports-v1-banner .theme_btn .btn.new-home-btn
{
	width: 440px;
	background: linear-gradient(88.45deg, #f7bb1f 7.6%, #f7bb1f 99.68%);
}
.steps-con 
{
	width:100%;
	display:inline-block;
	background: url(../../willbetgamebettingsa/image/s_steps.png) no-repeat center;
	background-size: 100%;
	padding: 50px 0 20px;
}
h2.live-streming-con 
{
    text-align: center;
	font-size:54px;
}
p.live-streming-sub-heading
{
	text-align: center;
	font-size:28px;
	margin-bottom:30px;
}
.join-number-home-new 
{
	margin:0;
	padding:44px 0;
}
.join-number-home-new h2 
{
	    background: linear-gradient(90deg, #FFDE1E 0%, #ED8C21 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	margin:0;
	font-size:32px;
}
.join-number-home-new h3 
{
	font-family: "Montserrat", sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-align: left;
}
.join-number-home-new p 
{
	font-size:14px;
	font-family: 'Gotham';
}
.join-number-home-new a.btn 
{
    font-size: 14px;
    color: #1F2126;
    background: linear-gradient(88.45deg, #00C483 7.6%, #00FFB7 99.68%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.page-template-instant-sports-page-template .join-number-home-new a.btn 
{
    font-size: 14px;
    color: #1F2126;
    background: linear-gradient(88.45deg, #f7bb1f 7.6%, #f7bb1f 99.68%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.right-con img 
{
    position: absolute;
    bottom: 0;
    right: 0;
}
.join-number-home-new .box-article-content 
{
    gap: 0.7rem;
}
.instant-button-con .btn.new-home-btn
{
	width: 440px;
	background: linear-gradient(88.45deg, #00C483 7.6%, #00FFB7 99.68%);
}
.page-template-instant-sports-page-template .instant-button-con .btn.new-home-btn
{
	width: 440px;
	background: linear-gradient(88.45deg, #f7bb1f 7.6%, #f7bb1f 99.68%);
}
.instant-button-con 
{
    text-align: center;
    margin-bottom: 80px;
}
.page-template-instant-sports-page-template footer.site-footer
{
    margin-top: 0;
    padding-top: 0;
}
.instant-sub-heading .secn-summary
{
	margin-bottom:0;
}

.right-con, .left-con 
{
    flex: 0 0 50%;
}
.page-template-instant-sports-page-template .payment-logos
{
	margin:0 0 30px;
}
.page-template-instant-sports-page-template section.withdraws-secn {
    padding-bottom: 80px;
}
.page-template-instant-sports-page-template .payment-gateways img
{
	filter: brightness(0.5);
}
.left-section-sub-hdr 
{
    font-family: "Poppins", sans-serif !important;
    font-size: 28px;
    margin-top: -10px;
    line-height: 1.1;
    color: #fff;
	display:inline-block;
	margin-top:20px;
}
 @keyframes dynamic-class-name_pulse {
            0% {
                box-shadow: 0 0 0 0 rgb(237, 140, 33);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(88, 120, 243, 0);
            }
            100% {
                box-shadow: 0 0 0 55px rgba(88, 120, 243, 0);
            }
        }
@media (max-width:1400px) 
{
	.sports-v1-banner 
	{
		background-position:center top;
	}
}
@media (max-width:1300px) 
{
	.home-new-banner , .sports-v1-banner 
	{
		padding: 180px 64px 155px;
	}
	.steps-con 
	{
		background-size: cover;
	}
}
@media (max-width:1024px) 
{
	.home-new-banner, .sports-v1-banner
	{
        background-size: cover;
        padding-right: 40%;
        background-position: 80% top;
    }
	.page-template-instant-sports-page-template
	{
		background-position:right bottom;
	}
}
@media (max-width:479px) 
{
	.home-new-banner 
	{
		background:url(../../willbetgamebettingsa/image/s_hero-mobile.png) no-repeat center top;
		background-size:100%;
        padding: 120px 25px 481px !important;
	}
	.sports-v1-banner
	{
		background:url(../../willbetgamebettingsa/image/s_hero-mobile.png) no-repeat center top;
		background-size:100%;
        padding: 120px 25px 610px !important;
	}
	.steps-con 
	{
		background:url(../../willbetgamebettingsa/image/s_steps-mobile.png) no-repeat center top;
		background-size: 100% 100%;
	}
	.home-new-banner .theme_btn .btn.new-home-btn , .sports-v1-banner .theme_btn .btn.new-home-btn
	{
		width: 100%; 
	}
	.sports-v1-banner h1 br
	{
		display:none;
	}
	.sports-v1-banner h1 
	{
		font-size: 45px 
	}
    .home-new-banner h1, .sports-v1-banner h1
	{
        width: 100%;
        line-height: 120%;
    }
	.payment-gateways 
	{
		margin-top: 35px;
	}
	.home-new-banner .theme_btn .btn , .sports-v1-banner .theme_btn .btn
	{
		font-size: 1.2rem;
	}
	.home-new-banner .theme_btn, .sports-v1-banner .theme_btn
	{
		margin-top: 0.5rem;
	}
	.instant-button-con .btn.new-home-btn 
	{
		font-size: 1.3rem;
		width:100%;
	}
	.heading-top-text 
	{
		font-size: 15px;
		font-weight: 500;
		padding: 5px;
	}
	.steps-con .join-number-home-new p 
	{
		font-size: 16px;
		line-height: 120%;
	}
	h2.live-streming-con img 
	{
		margin: auto;
		display: block;
	}
	h2.live-streming-con 
	{
		font-size: 44px;
		line-height: 54px;
	}
	p.live-streming-sub-heading 
	{
		font-size: 16px;
		line-height: 25px;
		padding: 0 30px;
	}
	.right-con 
	{
		order: -1;
	}
	.right-con, .left-con 
	{
		flex: 0 0 100%;
	}
	.box-article 
	{
		flex-wrap:wrap;
	}
	.right-con 
	{
		text-align:center;
	}
	.right-con img 
	{
        position: relative;
        margin-top: -90px;
    }
    .join-us-article .mb-3 
	{
        margin-bottom: 75px !important;
    }
	.join-number-home-new 
	{
		padding-bottom:0;
	}
	.page-template-instant-sports-page-template .instant-button-con .btn.new-home-btn 
	{
		width: 310px; 
	}
	.left-section-sub-hdr 
	{
		font-size: 18px;
		margin-top: 0;
		margin-bottom: 20px;
	}
}
@media (max-width:430px)  
{
	.home-new-banner, .sports-v1-banner 
	{
        padding: 120px 25px 447px !important;
    }
}
@media (max-width:390px)  
{
	.home-new-banner h1, .sports-v1-banner h1 
	{
        width: 90%;
	}
	.home-new-banner .theme_btn .btn , .sports-v1-banner .theme_btn .btn
	{
        font-size: 1.1rem;
    }
	.home-new-banner, .sports-v1-banner 
	{
        padding: 100px 25px 572px !important;
    }
	.instant-button-con .btn.new-home-btn 
	{
        font-size: 1.2rem;
	}
}
@media (max-width:375px)  
{
	
	.home-new-banner .theme_btn .btn, .sports-v1-banner .theme_btn .btn
	{
        font-size: 1rem !important;
    }
    .home-new-banner, .sports-v1-banner 
	{
        padding: 82px 25px 550px !important;
    }
	.instant-button-con .btn.new-home-btn 
	{
        font-size: 1.1rem;
    }
}
/* home new */