
.card-games__wrapper{
    padding: 6rem 3rem 0;
}
.jrk-animate__contents{
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
}
.jrk-animate__contents img{
    width: 100%;
    height: auto;
}
.jrk-card__one{
    transform: rotateZ(11deg);
}
.jrk-card__two{
    transform: rotateZ(-11deg);
}
.jrk-card__one,.jrk-card__two{
    max-width: 30rem;
}
/********* Bonus section css ************/

.jrk-animate__bonus{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
} 
.bonus-section__wrapper{
    position: relative; 
} 
.polygon_bottom{
    bottom: 0;
    left: 0;
    filter: drop-shadow(0px -4px 15px rgba(0, 0, 0, 0.25));
}      
.polygon_top{
    top: 0;
    right: 0;
    filter: drop-shadow(0px -4px 15px rgba(0, 0, 0, 0.25));
}    
.polygon_bottom,.polygon_top{
    position: fixed;
    z-index: 30;
    visibility: hidden;
    width: 100%;
}
.bonus-text__wrap{
    position: absolute;
    left: 0%;
    top: 50%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    transform: translateY(-40%);
    clip-path: none;
    padding-left: 40px;
}
.jrk-polygon__one h2{
    color:  #003680;
    font-family: 'Bison';
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
}
.jrk-polygon__one p{
    color:  #003680;
    font-family: Poppins;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.jrk-marque__text p{
    color: #003680;
    text-shadow: 0px 2.723083734512329px 1.8153891563415527px rgba(0, 0, 0, 0.13);
    font-family: 'Bison';
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 1rem;
}
.jrk-marque__text h3{
    color: #003680;
    text-shadow: 0px 2.723083734512329px 1.8153891563415527px rgba(0, 0, 0, 0.13);
    font-family: 'Bison';
    font-size: 4rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.jrk-marque__text{
    position: fixed;
    top:50%;
    transform:translateX(50%) translateY(-50%);
    z-index: -1;
    visibility: hidden; 
}
.jrk_visibility_hidden{
    visibility: hidden; 
}

.jrk-dummy__box{
    width: 100%;
    height: 15rem;
    background: #CEDDFA;
}
.jrk-polygon__one{
    width: 100%;
    height: 23rem;
    background: #CEDDFA;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}
.jrk-polygon__two{
    width: 100%;
    height: 16rem;
    background: #CEDDFA;
    clip-path: polygon(100% 1%, 30% 0, 100% 100%);
}



/*******************PLAY NOW CSS  ***********/

.jrk-play__now{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.jrk-text__one{
    color: rgb(32 59 116);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 26px;
    border: 1px solid #003680;
    padding: 1rem;
    width: fit-content;
    margin-top: 3rem;
}
.jrk-text__two{
   margin-top: 7rem;
}
.jrk-hand__section{
    display: flex;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}   
.left-hand, .right-hand{
    flex:1 1 50%;
}
.left-hand img, .right-hand img{
    width: 100%;
}
.jrk-text__two,.jrk-text__one{
    visibility: hidden;
}
.jrk-polygon__section{
    position: absolute;
    top: 50%;
    z-index: -1;
    left: 50%;
    transform: translate(-50%,-50%);
}
.jrk-polygon__section img{
    transform: scale(0) translateX(-50%);
}

.jrk-text__three{
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;

    position: absolute;
    bottom: 5rem;

}

.play-now__rotation{
    position: absolute;
    top: 50%;     
    animation: rotate 2s linear infinite;  
    visibility: hidden;
}

@keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
.snow-effect,.playzat_bg{
    position: absolute;
    inset: 0;
}
.snow-effect,
.snow-effect img{
    width: 100%;
}

.snow-effect{
    transform: rotate(-45deg) scale(2.5);
}

.text-shake{
    visibility: hidden;
}
.playzat_bg{
    height: 100%; 
    width: 200%; 
    inset:-20%;
    filter: blur(5px);
}
.playzat_bg img{
    max-width: unset;
    width: 100%;
    height: inherit;
    animation: moving_bg 15s ease-in-out infinite;
}

@keyframes moving_bg {
    0%{
        transform: translate(0,0);
    }
    25%{
        transform: translate(-10%,0);
    }
    50%{
        transform: translate(-10%,10%);
    }
    75%{
        transform: translate(10%,0%);
    }
    100%{
        transform: translate(0%,0%);
    }
}



.foot_sec_running_txt {
    margin-top: 35px;
    margin-bottom: 70px;
    border-top: 2px solid #003680;
    border-bottom: 2px solid #003680;
    position: absolute;
    bottom: 0;
    width: 200%;
}

.foot_sec_running_txt_wrap {
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: marqueeee 10s linear infinite;
}

.marqueeee {
    white-space: nowrap;
    overflow: hidden;
    }



@keyframes marqueeee {
    0% {
        left: 0;
      }
      100% {
        left: -100%;
      }
}

.foot_sec_running_txt span {
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1/1;
}

.foot_sec_running_txt p {
    color: #003680;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.13);
    font-family: "Nunito";
    font-size: 3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
@keyframes marqueeee {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-50%);
    }
}


@media screen and (max-width:1024px) and (min-width:576px) {
    .pk-header-copy,.reward__head_info,.bonus_head_para p,.jrk-polygon__one h2,.pc__text,.jrk-text__one{
        font-size: 3rem;
        line-height:unset;
    }
    .pk-fantacy-sports__heading{
        font-size: 6rem;
        line-height:unset;
    }
    .pk-fantacy-sports__copy, .pk-sports-card__copy,.pc_cashback,.payout__right h4,.payout__withdrawals p,.reward__head_info_xpln,
    .jrk-polygon__one p,.pc__accordiontext,.payout__banking p,.payout__accordion__content p{
        font-size: 2rem;
        line-height:unset;
    }
    .accordion-content{
        font-size: 1.5rem;
    }
    .pk-sports-card{
        height: 45rem;
        max-width: 70%;
        margin: 10rem auto 0;
    }
    .reward__section__card_body{
        max-width: 60%;
        margin: 10rem auto;
    }
    .single__three .img_top_100{
        right: 0;
    }
    .single__four .two_bonus_img .img_left_30{
        left: -10rem;
    }
}

@media screen and (min-width:420px) and (max-width:575px){
    .pk-header-copy,.reward__head_info,.bonus_head_para p,.jrk-polygon__one h2,.pc__text,.jrk-text__one{
        font-size: 2rem;
        line-height:unset;
    }
    .pk-fantacy-sports__heading{
        font-size: 5rem;
        line-height:unset;
    }
    .pk-fantacy-sports__copy, .pk-sports-card__copy,.pc_cashback,.payout__right h4,.payout__withdrawals p,.reward__head_info_xpln,
    .jrk-polygon__one p,.pc__accordiontext,.payout__banking p,.payout__accordion__content p{
        font-size: 1.5rem;
        line-height:unset;
    }

    .accordion-content{
        font-size: 1rem;
    }
    .pk-sports-card{
        height: 45rem;
    }
    .two_bonus_img{
        justify-content: space-evenly;
    }
    .single__three .img_top_100{
        right: 0;
    }
    .single__four .two_bonus_img .img_left_30{
        left: -10rem;
    }
}