/* font-family  *************************************************************************** */
@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
  }
  @font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
  }
  @font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}
  @font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
}


/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --black-1A1A1A: #1A1A1A;
    --black-1E1E1E: #1E1E1E;
    --gray: #F2F2F2;
    --dark-gray:#9B9B9B;
    --golden: #F3CA43;
    --light_gray:#EBEBEB;

    --h1_fs:clamp(2.8rem, 7.031vw + -0.937rem, 4.688rem);
    --h2_fs:clamp(1.3rem, 2.5vw + 0.5rem, 2.5rem);
    --h3_fs:clamp(1.25rem, 1.563vw + 0.625rem, 1.875rem);
    --h4_fs:clamp(1.125rem, 0.938vw + 0.75rem, 1.5rem);

    --p_25:clamp(1rem, 0.625vw + 0.75rem, 1.25rem);
    --p_30:  clamp(0.875rem, 0.625vw + 0.625rem, 1.125rem);

    --paading_70:70px 0;
    --paading_60:60px 0;
    --padding_36:36px 0;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
.gradient{
    background: rgb(243,202,67);
    background: linear-gradient(180deg, rgba(243,202,67,1) 0%, rgba(246,221,139,1) 50%, rgba(243,202,67,1) 100%);
}

.light-gray{
    background: var(--light_gray) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}
body {
    background: #fff;
    font-family: "Poppins-Regular" ,sans-serif;
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--black-1E1E1E);
   
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    margin-bottom: 0;
    margin: 57px 0 80px;
    color: var(--white);
    font-size: var(--h1_fs);
    text-align: center;
    line-height: 1.9;
    font-family: "Poppins-Bold";
}
h2 {
    font-size: var(--h2_fs);
    color: var(--black-1E1E1E);
    font-family: "Poppins-SemiBold";
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: var(--h4_fs);
    font-family: "Poppins-Medium";
    line-height: 1;
    margin-top: 20px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
p {
    margin: 0;
    padding: 0;
    font-size: var(--p_25);
    color: var(--black-1A1A1A);
    font-family: "Poppins-Regular";
    text-align: center;
    font-weight: 100;
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: disc;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}
::marker {
    font-size: 18px;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}


.btn-common {
	font-size: 20px;
	padding: 18px 40px;
	/* background: #000a20; */
	color: var(--black-1E1E1E);
	border-radius: 35px;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    font-family: "Poppins-Medium";
    min-width: 400px;
}
img,
video {
    max-width: 100%;
}
.button-box {
    text-align: center;
}

.section-heading {
    text-align: center;
}


/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/banner-bg-2.png") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 561px;
    padding-top: 60px;
    padding-bottom: 100px;
}
#homeBanner .homeBanner-part .container{
    height: 100%;
}
#homeBanner .homeBanner-part::after {
    content: "";
    position: absolute;
    background: #3C3B3B;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    /* z-index: -1; */
}
#homeBanner .homeBanner-box {
 position: relative;
 z-index: 9;
}
#homeBanner .homeBanner-part .container {
    height: 100%;
}
.title-box {
    text-align: center;
}

.title-box .logo img{
    max-width: 70%;
}
.title-box h1{
    filter: drop-shadow(0 0 9px #EFDC8D);
}


/* Get_account css ******************************************************************************/
#get_account .inner-wrapper {
    padding: var(--paading_60);
}
#get_account .points-box {
    margin-block: 40px;
}
#get_account .points-box li{
    font-size: var(--p_25);
    font-family: "Poppins-Regular";
    margin-bottom: 20px;
}

/* why_play css ******************************************************************************/


#why_play .inner-wrapper {
    padding: var(--paading_60);
}

#why_play .boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    padding-top: 50px;
    gap: 90px;
}
#why_play .boxes-wrapper .box {
    text-align: center;
    display: grid;

}
#why_play .boxes-wrapper .box img {
    align-self: end;
    margin: 0 auto;
    height: 100px;
    object-fit: scale-down;
}
#why_play .boxes-wrapper .box p{
    font-size: var(--p_25);
    font-family: "Poppins-Regular";
}

/*  gateway css ******************************************************************************/


#gateway .inner-wrapper{
    padding: var(--paading_70);
}
#gateway .inner-wrapper .text-box p{
    padding-block:40px ;
    font-family: "Poppins-Medium";
}

/*  Responsibly css ******************************************************************************/
#Responsibly  .inner-wrapper{
    padding: var(--paading_70);
}
#Responsibly  .inner-wrapper .text-box {
    margin-top: 30px;
}
#Responsibly  .inner-wrapper .text-box p{
    font-family: "Poppins-Medium";
    /* font-size: 22px; */
}

/*  footer css ******************************************************************************/

#footer {
    background-color: var(--black-1A1A1A);
    padding: var(--padding_36);
}
#footer .section-heading {
    margin-bottom: 15px;
}

#footer .section-heading h3{
    font-size: var(--h3_fs);
    color: var(--white);
    text-decoration: none;
}
#footer .text-box p{
    color: var(--white);
    font-size: var(--p_30) !important;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Poppins-Medium";

}
#footer .text-box p:last-child{
    margin-bottom: 0;
}


.whatsapp a {
    position: fixed;
    bottom: 80px;
    animation: zoom 2s ease-in-out infinite;
    right: 30px;
    z-index: 99;
}
  .whatsapp a img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.39));
}
  
  @keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5); 
    }
  }

