/* Reset CSS*/
*,*::before,*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* { 
    -webkit-tap-highlight-color: transparent; 
} 


a { 
    -webkit-text-decoration-skip: ink; 
            text-decoration-skip-ink: auto; 
    cursor: pointer;
} 

textarea { 
    white-space: revert; 
} 

table { 
    border-collapse: collapse; 
} 

img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

svg {
    display: block;
    width: 1em;
    height: 1em;
}

ul,ol, li {
    list-style: none outside none;
}
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
}
.sr-only {
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (prefers-reduced-motion: reduce) { 
    *, *::before, *::after { 
        -webkit-animation-duration: .01ms !important; 
                animation-duration: .01ms !important; 
        -webkit-animation-iteration-count: 1 !important; 
                animation-iteration-count: 1 !important; 
        -webkit-transition-duration: .01ms !important; 
                transition-duration: .01ms !important; 
        scroll-behavior: auto !important; 
    } 
}

html { 
    width: 100%;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    -webkit-tap-highlight-color: transparent;
    font-family: ui-sans-serif, -apple-system, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Segoe UI",Roboto,"Noto Sans",Mukta, "Helvetica Neue", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    font-variation-settings: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
      -o-tab-size: 4;
         tab-size: 4;
    scroll-behavior: smooth; 
    -ms-scroll-chaining: none; 
        overscroll-behavior: contain;
}

body {
    width: 100%;
    height: 100%; 
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
}

/* CSS Vars */
:root {
    interpolate-size: allow-keywords;

    /* color */
}


/*
-  Page Layout 
*/
body {
    background-color: #F6F6F6;
    color: #222C37;
    font-size: 1rem;
}

.section__container {
    width: calc(100% - 20px * 2);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
}

.section__container.section__container--fullscreen {
    width: 100%;
    max-width: none;
    background-color: #fff;
}

.section .section__container {
    padding: 30px 0;
}

.page {
    display: grid;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section--two-columns {
    width: calc(100% - 20px * 2);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 0;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: 
        "sidebar sidebar"
        "content content";
}

.section--two-columns aside {
    grid-area: sidebar;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    display: none;
}

.section--two-columns main {
    grid-area: content;
    padding: 40px 0px;
}


@media only screen and (min-width: 64rem) { 
    .section .section__container {
        padding: 76px 0;
    }

    /* .section--two-columns main {
        padding: 40px 20px;
    } */
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .section--two-columns {
        grid-template-areas: "sidebar content";
        gap:70px;
    }
    .section--two-columns aside {
        display: block;
    }
}

/* 
- Page Header 
*/
header {
    background-color: #222C37;
    color: #fff;
    position: sticky;
    top: 0;
    overflow-x: clip;
    z-index: 20;
}

.section--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 60px;
    gap: 2rem;
    -ms-flex-line-pack: center;
        align-content: center;
}

.logo img{
    max-height: 30px;
    width: auto;
}



.navigation {
    --scrollbar-color-thumb: #A00000;
    --scrollbar-color-track: #B50000;
    --scrollbar-width: thin;
    --scrollbar-width-legacy: 4px;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #C90000;
    /* padding: 36px 0; */
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    /* max-height: calc(100dvh - var(--header-height) ); */
    
    -webkit-transform: translate3d(100%, 0, 0);
    
            transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity 0.3s, display 0.3s allow-discrete, -webkit-transform 0.3s;
    transition: opacity 0.3s, display 0.3s allow-discrete, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, display 0.3s allow-discrete;
    transition: opacity 0.3s, transform 0.3s, display 0.3s allow-discrete, -webkit-transform 0.3s;
}

.navigation > ul {
    min-height: 0;
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    padding: 36px 0 72px;
}

@starting-style {
    .navigation {
      opacity: 0;
    }
  }

.navigation.open {
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
    opacity: 1;
}

@supports (scrollbar-width: auto) {
    .navigation > ul {
        scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
      scrollbar-width: var(--scrollbar-width);
    }
}

@supports selector(::-webkit-scrollbar) {
    .navigation>ul::-webkit-scrollbar-thumb {
      background: var(--scrollbar-color-thumb);
      border-radius: calc(var(--scrollbar-width-legacy) * 2);
    }

    .navigation>ul::-webkit-scrollbar-track {
      background: var(--scrollbar-color-track);
    }

    .navigation>ul::-webkit-scrollbar {
      max-width: var(--scrollbar-width-legacy);
      max-height: var(--scrollbar-width-legacy);
    }
  }


.navigation li {
    width: 100%;
    display: grid;
    text-align: center;
}

.navigation a,
.navigation span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

.navigation ul ul a,
.navigation ul ul span {
    font-size: 16px;
}

.navigation ul ul ul a,
.navigation ul ul ul span {
    font-size: 14px;
}

@media (hover: hover) {
    .navigation a:hover,
    .navigation span:hover {
        background-color: #b50000;
    }
}

/* 
.active > a {
    background-color: var(--primary-color);
} */

.navigation .icon--arrow{
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform:translateY(-50%) rotate(180deg) ;
            transform:translateY(-50%) rotate(180deg) ;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
} 

.dropdown-menu {
    background-color: #b50000;
    height: auto;
    opacity: 1;
    -webkit-transition: height 0.3s ease,  opacity 0.3s ease;
    transition: height 0.3s ease,  opacity 0.3s ease;
    overflow: visible;
}
.collapsed .dropdown-menu {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease,  opacity 0.3s ease;
    transition: height 0.3s ease,  opacity 0.3s ease;
}

.collapsed > a > .icon--arrow {
    -webkit-transform:translateY(-50%) rotate(0deg) ;
            transform:translateY(-50%) rotate(0deg) ;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
/* .dropdown-menu a {
    pointer-events: none;
} */
/* .dropdown-menu.expanded {
    height: auto;
    opacity: 1;
    overflow: visible;
} */
/* 
.dropdown-menu.expanded  a {
    pointer-events: auto;
} */

.dropdown-menu .dropdown-menu{
    background-color: #a50000;
}
/* 
.dropdown-toggle .icon {
    transition: transform .3s;
}

.dropdown-toggle.active .icon {
    transform:translateY(-50%) rotate(180deg) ;
} */

.close {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: .5em;
    background: none;
    border: none;
    justify-self: center;
    width: 100%;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #C90000;
}

.close:hover,.close:focus {
    outline: none;
    background-color: #222C37;
}

.switch {
    display: inline-grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: .5em;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #fff;
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .logo img{
        max-height: 40px;
    }
    .section--header{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
    .navigation {
        position: static;
        max-height: none;
        padding: 0;
        -webkit-transform: none;
                transform: none;
        background-color: transparent;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        min-width: 0;
    }

    .navigation > ul {
        overflow: visible;
        padding: 0;
    }

    .navigation .dropdown-toggle-level2 {
        padding-right: 60px;
    }

    .navigation .icon--arrow {
        display: none;
    }

    .navigation .icon--arrow-level3 {
        display: block;
    }

    .navigation > ul > li {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        min-width: 0;
    }

    .navigation > ul > li >ul {
        height: 0;
    opacity: 0;
    -webkit-transition: height 0.3s ease,  opacity 0.3s ease;
    transition: height 0.3s ease,  opacity 0.3s ease;
    overflow: hidden;
    min-width: 100%;
    /* min-width: 270px; */
    }
    /* .navigation > ul > li > span  {
        padding-right: 20px;
    } */
    .navigation > ul > li > span > svg {
        display: none;
    }

    .navigation > ul > li:hover > span,
    .navigation > ul > li:hover > a{
        background-color: #b50000;
    }

    .navigation > ul > li:hover > ul {
        height: auto;
    opacity: 1;
    overflow: visible;
    -webkit-transform: translate3d(0,0,1px);
            transform: translate3d(0,0,1px);
    min-width: 270px;
    }

    .navigation li {
        min-height: 60px;
    }

    .navigation a,
    .navigation span {
        white-space: nowrap;
        min-height: 60px;
    }
/* 
    .navigation span {
        padding-right: 50px;
    } */

    .navigation a:hover,
    .navigation span:hover,
    .navigation .active a,
    .navigation .active span {
        background: #b50000;
    }

    .navigation ul ul a,
.navigation ul ul span {
    font-size: 18px;
}

.navigation ul ul ul a,
.navigation ul ul ul span {
    font-size: 16px;
}

    .switch, .close {
        display: none;
    }

    .navigation > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .dropdown {
        position: relative;
    }

    .dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .dropdown .dropdown-menu .dropdown-menu {
        position: static;
    }

    .dropdown a:hover,
    .dropdown span:hover {
        background-color: #222C37;
    }
}


.navigation--sidebar ul {
    display: grid;
}

.navigation--sidebar ul > li {
    z-index: 2;
}

.navigation--sidebar a,
.navigation--sidebar span {
    display: block;
    padding: 14px 40px;
    text-align: right;
    border-right: 4px solid transparent;
    background-color: #fff;
    color: #222C37;
    font-size: 18px;
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none;
    cursor: pointer;
}

.navigation--sidebar ul ul a,
.navigation--sidebar ul ul span {
    font-size: 16px;
}

.navigation--sidebar span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border-right: none;
}

.navigation--sidebar svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 10px;
}

.navigation--sidebar .active a,
.navigation--sidebar a:hover,
.navigation--sidebar a:focus {
    border-right-color: #C70000;
    background-color: #F6F6F6;
}

.navigation--sidebar .active a {
    font-weight: 700;
}

.navigation--sidebar .dropdown a:hover, 
.navigation--sidebar .dropdown span:hover {
    background-color: #F6F6F6;
}

.navigation--sidebar .dropdown-menu {
    width: 100%;
    position: static;
}


/*
- Section Hero
*/

.section--hero .section__container {
    padding: 0;
}

/*
- Page Footer
*/

footer {
    background-color: #222C37;
    color: #fff;
    padding-bottom: 130px;
    padding-top: 40px;
}

.section--footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: 
        "logo         social"
        "nav          nav"
        "certificates certificates"
        "copyright    copyright";
    grid-gap: 32px;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


footer h3 {
    display: none;
}

footer a  {
    color: #fff;
    /* font-size: 13px; */
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
    display: grid;
    line-height: 2;
}

footer a:hover {
    color: #ddd;
}


.footer__logo {
    grid-area: logo;
}


.footer__logo svg {
    height: 22px;
    width: auto;
    margin-left: 14px;
}


.follow-us {
    grid-area: social;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
}


.follow-us ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.follow-us li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.follow-us a {
    font-size: 24px;
}

.quick-links {
    grid-area: nav;
}


.quick-links ul {
    display: grid;
    grid-column-gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 10px;
}

.quick-links a:hover {
    text-decoration: underline;
}

.security-certificates-wrapper {
    grid-area: certificates;
    display: grid;
    grid-gap: 20px;
}

.security-certificates {
    display: grid;
    grid-template-columns: repeat(6,auto);
    grid-gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.security-certificates-pay {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.security-certificates svg {
    height: 15px;
    width: auto;
    justify-self: center;
}

.security-certificates-pay svg {
    height: 13px;
}

.copyright {
    margin-top: 20px;
    grid-area: copyright;
    font-size: 12px;
    text-align: center;
}


footer .download {
    position: fixed;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    min-height: 44px;
    background-color: #1FA500;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 999rem;
    -webkit-transition: .3s;
    transition: .3s;
}

footer .download:hover {
    background-color: #208508;
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    footer {
        padding-bottom: 40px;
    }

    footer h3 {
        display: block;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .footer__logo svg {
        margin-left: 0;
        height: 32px;
    }

    .section--footer {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas: 
            "logo      ..."
            "social    nav"
            "...       certificates"
            "copyright copyright";
    }

    .follow-us ul {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .follow-us a {
        font-size: 2rem;
    }

    .quick-links ul {
        grid-template-columns: repeat(6, 1fr);
        font-size: 14px;
    }

    .security-certificates {
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        gap: 30px 72px;
    }

    .security-certificates svg {
        height: 34px;
    }

    footer .download {
        display: none;
    }
}



/*
- Home Page
*/

/* Players Section */
.section--players .section__container {    
    gap: 40px;
}

.players {
    justify-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
}

.players::before,
.players::after {
    content: "";
    width: 36px;
    height: 106px;
    background: url('../images/ears.svg') no-repeat center;
    background-size: cover;
}

.players::after {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
}

.ranking {
    display: grid;
    font-size: 24px;
    font-weight: 900;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.ranking__num {
    font-size: 32px;
}

.ranking p {
    font-weight: 500;
    font-size: 14px;
}

.ranking-progress {
    --counts: 5;
    --size: 12px;
    --track-color: #D9D9D9;
    --thumb-color: #222C37;
    --i: 4.5;
    --percent-fill:calc(var(--i) / var(--counts) * 100%);
    justify-self: center;
    height: var(--size);
    aspect-ratio: 6.6;
    background: -webkit-gradient(linear, left top, right top, from(var(--thumb-color)), to(transparent)), -webkit-gradient(linear, left top, right top, from(var(--track-color)), to(var(--track-color)));
    background: linear-gradient(to right, var(--thumb-color) var(--percent-fill), transparent var(--percent-fill)), linear-gradient(to right, var(--track-color), var(--track-color));
    -webkit-mask-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20155.08%20148.14%22%3E%3Cdefs%3E%3Cstyle%3E%20%20%20%20%20%20.cls-1%20%7B%20%20%20%20%20%20%20%20fill%3A%20%23cacaca%3B%20%20%20%20%20%20%7D%20%20%20%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M104.08%2C44.88l45.28%2C6.23c4.32%2C1.31%2C7.5%2C6.2%2C4.62%2C10.49l-33.5%2C33.39%2C7.47%2C44.6c.78%2C5.62-4.61%2C10.17-10.06%2C7.98l-40.47-21.16-43.03%2C21.71c-4%2C.32-7.84-3.57-7.56-7.56l7.54-45.58L1.48%2C61.99c-3.35-4-.57-9.44%2C4.02-10.88l45.44-6.56c7.56-14.34%2C13.32-30.24%2C22.6-43.4%2C3.67-2.26%2C7.99-1.09%2C10.24%2C2.53l20.31%2C41.19Z%22%2F%3E%3C%2Fsvg%3E);
            mask-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20155.08%20148.14%22%3E%3Cdefs%3E%3Cstyle%3E%20%20%20%20%20%20.cls-1%20%7B%20%20%20%20%20%20%20%20fill%3A%20%23cacaca%3B%20%20%20%20%20%20%7D%20%20%20%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M104.08%2C44.88l45.28%2C6.23c4.32%2C1.31%2C7.5%2C6.2%2C4.62%2C10.49l-33.5%2C33.39%2C7.47%2C44.6c.78%2C5.62-4.61%2C10.17-10.06%2C7.98l-40.47-21.16-43.03%2C21.71c-4%2C.32-7.84-3.57-7.56-7.56l7.54-45.58L1.48%2C61.99c-3.35-4-.57-9.44%2C4.02-10.88l45.44-6.56c7.56-14.34%2C13.32-30.24%2C22.6-43.4%2C3.67-2.26%2C7.99-1.09%2C10.24%2C2.53l20.31%2C41.19Z%22%2F%3E%3C%2Fsvg%3E);
    -webkit-mask-size: 14px 12px;
            mask-size: 14px 12px;
    -webkit-mask-repeat: space;
            mask-repeat: space;
}

.player__cards {
    display: grid;
    grid-template-columns: repeat(3, 96px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
    grid-gap: 24px;
    /* padding: 0 1rem; */
}

.player__cards li {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 5px;
    font-size: 1.125rem;
}

.player__cards h5 {
    text-wrap: balance;
    text-align: center;
    font-weight: 500;
}

.player__icon {
    justify-self: center;
    width: 72px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    font-size: 2.25rem;
}

.payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}

.payment img {
    max-height: 24px;
    width: auto;
}

  
/* Medium devices (>= 768px) */
@media only screen and (min-width: 48rem) { 
    .section--players .section__container {
        gap: 60px;
    }
    .player__cards {
        grid-template-columns: repeat(6, 130px);
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .players {
        gap: 30px;
    }

    .player__icon {
        width: 100px;
    }

    .player__icon svg {
        width: 50px;
        height: 50px;
    }

    .payment {
        padding: 0 50px;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .payment img {
        max-height: 40px;
    }
    .player__cards li {
        font-size: 24px;
    }
    .ranking {
        font-size: 42px;
    }
    .ranking__num {
        font-size: 48px;
    }

    .players .ranking-progress {
        --size: 22px;
        -webkit-mask-size: 26px 22px;
                mask-size: 26px 22px;
    }
    .ranking p {
        font-size: 20px;
    }
    .players::before, .players::after {
        content: "";
        width: 52px;
        height: 154px;
    }
}

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    
    /* .player__cards {
        justify-content: center;
    } */
}
  

/*play-rummy section*/
.section--play-rummy {
    background-color: #fff;
    
}

.cards--play-rummy {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 14px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cards--play-rummy li {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    background-color: #F6F6F6;
}

.cards--play-rummy h4 {
    padding: 12px;
    font-size: 12px;
}

/* Download Section */
.section--download .section__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 12px;
}

.section--download h2  {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.section--download .download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}

.section--download p {
    /* line-height: 1.8; */
    text-wrap: pretty;
}

.download a {
    width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}

.download__qr {
    display: none;
}



/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .section--download .section__container {
        text-align: left;
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-rows: auto minmax(0, 1fr);
        grid-template-areas: 
            "title button qr"
            "des   button qr";
        gap: 10px 20px;    
    }
    .section--download h2 {
        grid-area: title;
        padding-right: 10px;
        font-size: 32px;
    }
    .section--download .download {
        grid-area: button;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        height: 100%;
    }

    .section--download .download a {
        width: 220px;
    }
    .section--download .download img {
        width: 100%;
        height: 100%;
    }
    .download__qr {
        display: grid;
        width: 146px;
        height: 146px;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        grid-area: qr;
    }
    .section--download p {
        grid-area: des;
        padding-right: 10px;
        font-size: 18px;
    }
}

/* Comment Section */

.swiper {
    width: 100%;
    overflow: hidden;
    height: 100%;
}


.section--comment .section__container {
    width: 100%;
    padding-top: 0;
}

.swiper--comment {
    padding-top: 36px;
}


.card--comment {
    display: grid;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    padding: 36px 14px 24px;
    height: 100%;
    text-align: center;
    font-size: 1rem;
    position: relative;
    grid-gap: 5px;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.card--comment figure {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -36px);
            transform: translate(-50%, -36px);
    width: 72px;
    height: 72px;
    padding: 6px;
    overflow: hidden;
    background-color: #F6F6F6;
    border-radius: 50%;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

}

.card--comment picture,
.card--comment img {
    border-radius: inherit;
}

.card--comment h3 {
    font-size: 14px;
    text-wrap: balance;
    font-weight: 700;
}

.card--comment .ranking-progress {
    --size: 12px;
}

.card--comment blockquote {
    margin-top: 16px;
    margin-bottom: 16px;
    text-wrap: pretty;
    text-align: left;
}

.card--comment blockquote p {
    text-indent: 16px;
    position: relative;
    font-size: 12px;
}

.card--comment blockquote p::before,
.card--comment blockquote p::after {
    content: "";
    width: 10px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='22' fill='none'%3E%3Cpath fill='%23222C37' fill-rule='evenodd' d='M6.9 10.692 9.8.694H5.3L.503 11.792v9.498H11.1V10.692H6.901Zm14.598 0L24.397.694h-4.499L15.99 11.792v9.498h9.707V10.692h-4.199Z' clip-rule='evenodd'/%3E%3C/svg%3E") center / cover no-repeat;
    position: absolute;
}

.card--comment blockquote p::before {
    left: 0;
    top: 5px;
}

.card--comment blockquote p::after {
    right: 0;
    bottom: 5px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.card--comment h4 {
    font-size: 14px;
    font-weight: 700;
}

.card--comment > p {
    font-size: 20px;
    font-weight: 700;
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .card--comment {
        padding: 72px 40px 40px;
    }
    
    .card--comment figure{
        width: 100px;
        height: 100px;
    }

    .card--comment h3 {
        font-size: 20px;
    }

    .card--comment blockquote {
        margin-bottom: 36px;
    }

    .card--comment blockquote p {
        font-size: 18px;
    }

    .card--comment h4 {
        font-size: 20px;
    }
    .card--comment > p {
        font-size: 30px;
    }
}

/* Community Section */

.section--community .section__container{
    padding: 0;
}

.section--community figure {
    position: relative;
}

.section--community figcaption {
    position: absolute;
    bottom: 26px;
    right: 82px;
    z-index: 2;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section--community a {
    display: inline-grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #C70000;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 10px;
    font-size: 10px;
    font-family: inherit;
    -webkit-transition: .3s;
    transition: .3s;
    outline: none;
    font-weight: 500;
}

.section--community a:hover,
.section--community a:focus {
    background-color: #b50000;
}
/* Medium devices (>= 768px) */
/* @media only screen and (min-width: 48rem) { 
    .section--community figcaption {
        bottom: 60px;
        right: 274px;
    }

    .section--community a {
        font-size: 30px;
        padding: 4px 20px;
    }
} */

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .section--community figcaption {
        bottom: 88px;
        right: 270px;
    }

    .section--community a {
        font-size: 26px;
        padding: 14px 34px;
    }
}

/* Extra large devices (>= 1280px) */
/* @media only screen and (min-width: 80rem) { 
    .section--community figcaption {
        bottom: 110px;
        right: 320px;
    }
} */

/* Features Section*/
.section--features .section__container--fullscreen{
    background-color: transparent;
    position: relative;
}

.section--features .section__container {
    padding-top: 0;
}

.section--features .swiper-pagination {
    bottom: 30px;
}

.section--features .swiper-pagination .swiper-pagination-bullet-active  {
    background-color: #000;
}

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .section--features .section__container--fullscreen{
        width: calc(100% - 20px * 2);
        max-width: 1200px;
        margin: 0 auto;
    }
}


/* FAQ Section */
.section--faq .section__container {
    display: grid;
    grid-gap: 20px;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section--faq h2 {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.accordion--faq {
    display: grid;
    grid-gap: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
}

.accordion__item--heading {
    padding: 10px 10px 10px 12px;
    background-color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-gap: 1rem;
    grid-template-areas: "title icon";
    cursor: pointer;
}

.accordion__item--heading h3 {
    grid-area: title;
    font-size: 13px;
}

.accordion__item--heading svg {
    grid-area: icon;
    margin-top: 3px;
    font-size: 12px;
}

.accordion__item--content {
    /* padding: 0; */
    font-size: 12px;
    background-color: #F6F6F6;
    width: 100%;
    height: 0;
    opacity: 0;
    -webkit-transition: height 0.3s ease,opacity .3s ease, content-visibility 0.3s ease allow-discrete;
    transition: height 0.3s ease,opacity .3s ease, content-visibility 0.3s ease allow-discrete;
    overflow: clip;
    text-wrap: pretty;
    -webkit-backface-visibility: visible;
            backface-visibility: visible;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.accordion__item--content .wrapper {
    padding: 10px 12px 10px 10px;  
}

.accordion__item--heading .icon--minus {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s,display 0.3s allow-discrete;
    transition: opacity 0.3s,display 0.3s allow-discrete;
}

.expanded .accordion__item--content {
    height: auto;
    height: calc-size(auto, size);
    opacity: 1;
    overflow: visible;
    font-size: 12px;
}

.expanded .accordion__item--heading .icon--minus {
    display: block;
    opacity: 1;
}

.expanded .accordion__item--heading .icon--plus {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s,display 0.3s allow-discrete;
    transition: opacity 0.3s,display 0.3s allow-discrete;
}

@media only screen and (min-width: 64rem) { 
    .section--faq h2 {
        display: none;
    }
    .accordion--faq {
        gap: 20px;
    }
    .accordion__item--heading {
        padding: 16px 22px 16px 40px;
    }
    .accordion__item--heading h3{
        font-size: 24px;
    }
    .accordion__item--heading svg {
        margin-top: 10px;
    font-size: 20px;
    }
    .expanded .accordion__item--content {
       
        font-size: 1rem;
    }

    .accordion__item--content .wrapper {
        padding: 20px 40px;
    }
}

/*  Breadcrumb Section */

.section--breadcrumb .section__container {
    padding: 20px 0;
}

.section--breadcrumb + .section .section__container {
    padding-top: 0;
}

.breadcrumb {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.breadcrumb ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: item;
        -ms-flex-align: item;
            align-items: item;
    font-size: 12px;
    /* color: var(--black); */
}

.breadcrumb a {
    text-decoration: none;
    font-weight: 500;
    color: #222C37;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #0068DA;
}

.breadcrumb span {
    font-weight: 700;
}

.breadcrumb li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg t='1748143979457' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2609' width='200' height='200'%3E%3Cpath d='M690.517 512L140.174 161.792a56.889 56.889 0 1 1 60.985-96.028l625.778 398.222a56.889 56.889 0 0 1 0 96.028L201.159 958.236a56.889 56.889 0 1 1-60.985-96.028L690.517 512z' p-id='2610'%3E%3C/path%3E%3C/svg%3E") center / cover no-repeat;
    margin-left: 5px;
    margin-right: 5px;
}

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {  
    .section--breadcrumb .section__container {
        padding-top: 90px;
        padding-bottom: 50px;
    }
    .breadcrumb {
        padding-bottom: 14px;
    }

    .breadcrumb ol {
        font-size: 30px;
    }
    .breadcrumb li:not(:last-of-type)::after {
        width: 18px;
        height: 18px;
        margin-left: 12px;
        margin-right: 12px;
    }
}

/* Section Blog */
.blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 2.5rem 1rem;
}
.card--blog {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: repeat(3, auto) minmax(0, 1fr) auto;
    grid-template-areas: 
        "thumb   thumb"
        "title   title"
        "submit  submit"
        "summary summary"
        "link    link";
    grid-gap: 10px 1rem;
}

.card--blog .blog__thumb {
    grid-area: thumb;
    display: grid;
}

.card--blog .blog__thumb > * {
    grid-area: 1 / 1 / -1 / -1;
}

.card--blog .icon--youtube {
    color: #fff;
    -ms-flex-item-align: end;
        align-self: end;
    font-size: 1.5rem;
    margin-left: 6px;
    margin-bottom: 2px;
}

.card--blog .blog__title {
    grid-area: title;
    min-height: 2lh;
    text-wrap: balance;
    font-size: 12px;
}

.card--blog .blog__title a {
    --line-clamp: 2; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-line-clamp: var(--line-clamp); 
    -webkit-box-orient: vertical; 
    color: #222C37;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.card--blog .blog__title a:hover {
    color: #0068DA;
}

.card--blog .blog__submit {
    grid-area: submit;
    font-size: 10px;
    color: #999;
}

.card--blog .blog__summary {
    grid-area: summary;
    font-size: 12px;
    --line-clamp: 4; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-line-clamp: var(--line-clamp); 
    -webkit-box-orient: vertical; 
}

.card--blog .blog__link {
    grid-area: link;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: #222C37;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
}

.card--blog .blog__link::after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' class='icon' viewBox='0 0 1024 1024'%3E%3Cpath d='M610.967 138.842H488.99l301.357 361.292-301.357 361.29h121.977l299.971-361.29-299.971-361.292zm-361.412 0H127.578l301.358 361.292-301.358 361.29h121.977l299.972-361.29-299.972-361.292z'/%3E%3C/svg%3E") center / cover no-repeat;
}

.card--blog .blog__link:hover,
.card--blog .blog__link:active {
    color: #0068DA;
}

.card--blog .blog__link:hover::after,
.card--blog .blog__link:active::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' class='icon' viewBox='0 0 1024 1024'%3E%3Cpath d='M610.967 138.842H488.99l301.357 361.292-301.357 361.29h121.977l299.971-361.29-299.971-361.292zm-361.412 0H127.578l301.358 361.292-301.358 361.29h121.977l299.972-361.29-299.972-361.292z' fill='%230068DA'/%3E%3C/svg%3E");
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { 
    .blogs {
        grid-template-columns: auto;
    }

    .card--blog {
        gap: 5px 40px;
        grid-template-rows: repeat(2, auto) minmax(0, 1fr) auto;
        grid-template-areas: 
            "thumb title"
            "thumb submit"
            "thumb summary"
            "thumb link";
    }

    .card--blog .blog__thumb {
        max-width: 480px;
    }

    .card--blog .blog__title {
        min-height: auto;
    }
    .card--blog .blog__title a {
        font-size: 24px;
    }
    .card--blog .blog__submit {
        font-size: 12px;
    }

    .card--blog .blog__summary {
        --line-clamp: 5;
        margin-top: 30px;
        font-size: 16px;
    }

    .card--blog .blog__link {
        font-size: 14px;
    }

    .card--blog .icon--youtube {
        font-size: 44px;
        margin-left: 20px;
        margin-bottom: 14px;
    }
    
}

/* Statement Section */

.section--statement .section__container {
    padding-top: 0;
}

.section--statement figure{
    justify-self: center;
    width: 52px;
    height: 52px;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
}

.section--statement p {
    text-align: center;
    font-size: 10px;
    text-wrap: pretty;
}

.section--statement p + p {
    margin-top: 5px;
}

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {
    .section--statement figure {
        width: 104px;
        height: 104px;
    }

    .section--statement p {
        font-size: 14px;
    }
 }

/* Page Details */
.page--details {
    display: grid;
    grid-gap: 24px;
}

.detail--banner {
    display: grid;
    grid-gap: 8px;
}

.detail--banner figcaption {
    font-size: 8px;
    color: #999;
}

.detail--video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.detail--video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.detail--content {
    display: grid;
    grid-gap: 1em;
    font-size: 12px;
    /* line-height: 1.8; */
}

.detail--banner video {
    display: block;
    max-width: 100%;
    height: auto;
}

.detail--content dl {
    display: grid;
    grid-gap: 1em;
}

.detail--content dt::before {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    bottom: .125em;
}

.detail--content h3 {
    font-size: 14px;
    text-transform: capitalize;
}

.detail--content h5 {
    font-size: 12px;
    text-transform: capitalize;
}

.detail--content ul,
.detail--content ol {
    display: grid;
    /* gap: 1em; */
    margin-left: 1rem;
}

.detail--content li {
    list-style-type: disc;
}

.detail--content ol > li {
    list-style-type: decimal;
}

.detail--content ul ul li {
    list-style-type: square;
}


.detail--content a {
    color: #0068DA;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}

.detail--content a:hover {
    text-decoration: underline;
}

.detail--content img {
    margin-left: auto;
    margin-right: auto;
}

.detail--content .warning {
    color: #D65100;
}

.detail--content .action {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1em;
}

.detail--content .action a {
    display: inline-grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-transform: capitalize;
    background: #009A46;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 10px 20px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s;
}

.detail--content .action a:hover {
    background-color: #237b4b;
}

.detail--content figure {
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
}

.detail--content figure p {
    text-align: center;
}

.detail--content figcaption {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    font-weight: 700;
}

.ordered-list figure {
    margin-top: 1em;
}

.page--details .has-two-level li::marker {
    content: counters(list-item,'.') ':';
}

.page--details .has-two-level  ol {
    margin-top: 1rem;
    margin-left: 2rem;
}

.blog--submit {
    font-size: 10px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 24px;
}

.blog-details .detail--content {
    gap: 1em;
    font-size: 12px;
}

.detail--content .figure-joker {
    max-width: 52px;
}

.detail--content .figure-jokers {
    max-width: 236px;
}

.detail--content .dot {
    font-size: 65%;
    vertical-align: .125em;
}
/* 
.unorder-list {
    margin-bottom: 1em;
} */

@media only screen and (min-width: 64rem) {
    .detail--banner figcaption {
        font-size: 16px;
    }
    .blog--submit {
        font-size: 12px;
        margin-top: 12px;
        margin-bottom: 30px;
    }

    .detail--content {
        font-size: 18px;
    }

    .blog-details .detail--content {
        font-size: 18px;
    }
     
    .detail--content h3 {
        font-size: 24px;
    }

    .detail--content h5 {
        font-size: 18px;
    }

    .detail--content .action a { 
        border-radius: 8px;
        font-size: 30px;
        padding: 18px 50px;
    }

    .detail--content .figure-joker {
        max-width: 98px;
    }
    
    .detail--content .figure-jokers {
        max-width: 485px;
    }
}
/*
- Page certification
*/

.page--certification .detail--content {
    position: relative;
}

.page--certification .detail--content h2 {
    text-align: center;
    margin-top: 1rem;
}

.signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15%;
    /* justify-content: space-between; */
}

.signature__item {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    font-weight: 700;
}

.signature figure {
    margin: 0 0 10px;
    padding-bottom: 1rem;
    border-bottom: 1px solid currentColor;
}

.signature p:nth-of-type(3) {
    color: #0068DA;
}

.page--certification .detail--content dl {
    gap: 10px;
}

.page--certification .detail--content dt::before {
    content: none;
}

.itechlab {
    max-width: 260px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
}

.certification--footer {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    background-color: #0170C1;
    text-align: center;
    padding: 1.5rem;
}

/*
- Contact Us Page
*/

.section--two-columns .section--breadcrumb .section__container {
    padding-top: 0px;
    width: 100%;
}


.contact-us--info {
    display: grid;
    grid-gap: 10px;
}

.detail--content .contact-us--info {
    margin-left: 0;
}

.contact-us--info li {
    background-color: #fff;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.contact-us--info li:nth-of-type(2) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}



.contact-us--info .icon {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    /* font-size: 12px; */
    /* position: relative; */
    /* top: .125em; */
}

.contact-us--info li:nth-of-type(2) .icon {
    position: relative;
    top: .35em;
}


.contact-us--info a {
    text-decoration: none;
    color: #0068DA;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.contact-us--info a:hover,
.contact-us--info a:active {
    text-decoration: underline;
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {
    .page--contact-us .detail--banner {
        max-width: 640px;
        margin: 0 auto;
    }
 }
  

 
/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {
    .section--two-columns .section--breadcrumb .section__container {
        padding-top: 40px;
    }
 }

/*
- Responsible Gaming
*/ 

.detail--content .control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.detail--content select {
    max-width: 280px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
}

.detail--content button[type="submit"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 70px;
    min-height: 34px;
    background: #00BE06;
    border-radius: 8px;
    color: #fff;
    border: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.detail--content .icon-edit {
    width: 80px;
    height: 80px;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

/*
- Page TDS Policy
- Page Pricing
*/

/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {
    
    .detail--content figure {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page--certification .detail--content figure {
        max-width: 100%;
    }

    .page--certification .detail--content figure.itechlab {
        max-width: 260px;
    }
}

/*
- Self Assessment Test
*/

.assessment-form span {
    display: block;
    margin-bottom: 1rem;
}


.assessment-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.assessment-form label::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #999;
    background-color: #fff;
    padding: 2px;
}

.assessment-form input[type="radio"]:checked ~ label::before {
    background: radial-gradient(circle, #D65100 100%) content-box no-repeat center;
}

.assessment-form button {
    padding: 1em 3em;
}

/* aigf */
.aigf__content {
    padding: 100px 10px 10px;
    border: 1px solid rgb(200, 200, 200);
    background:#fff url('../images/certificate_aigf_background750_1.png') top / contain no-repeat;
    display: grid;
    grid-gap: 2em;
}

.aigf__content figure {
    margin-bottom: 0;
}

.aigf__content .row {
    display: grid;
    grid-gap: 1em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.agif--logo {
    max-width: 150px;
    justify-self: center;
    margin-bottom: 0;
}

.aigf--number {
    border: 2px dashed #D92E51;
    text-align: center;
    color: #D5205A;
    padding: .75em 1.5em;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.yesrummy-logo {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #0d0f2f;
    border: 4px solid #e4e6e5;
    padding: 40px 10px;
}


.aigf__content .link {
    text-align: center;
}

.aigf__content .link a {
    color: #D51C44;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.limit--content {
    padding: 1em .25em;
    text-align: center;
    color: #D51C44;
    font-size: 18px;
    text-align: center
}

.limit--content strong {
    font-size: 20px;
}

.agif--qr {
    width: 140px;
    height: 140px;
}

.aigf__content .content {
    display: grid;
    grid-gap: 1em;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    color: #0E1B44;
    font-size: 16px;
}

.aigf-membership {
    color: #0E1B44;
    font-size: 16px;
}

.aigf__content .membership-title {
    color: #D51C44;
    font-size: 25px;
    border-top: 1px solid currentColor;
    padding-top: 10px;
    justify-self: center;
}

.auth {
    width: 60%;
    max-width: 300px;
}

.row--disclaimer {
    border-top: 1px solid #000;
    padding-top: 1em;
}


/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) {
    .aigf__content {
        background-image: url('../images/certificate_aigf_background_6.jpg');
        background-size: 100%;
        padding: 200px 40px 55px;
        gap: 1em;
        
    }

    .aigf__content .row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        /* gap: 2rem; */
    }

    .aigf__content .agif--logo {
        grid-column: 3;
        grid-row: 1;
        max-width: 150px;
        align-self: end;
    }
    .aigf--number {
        justify-self: center;
    align-self: end;
    grid-area: 1 / 1 / -1 / -1;
    }

    .yesrummy-logo {
        justify-self: center;
        grid-row: 1;
        grid-column: 2;
    }
    .aigf__content .link {
        grid-row: 2;
        grid-column: 2;
    }

    .limit--content {
        grid-area: 1 /1 / -1/-1;
    }
    .aigf__content .agif--qr {
        max-width: 114px;
        -ms-flex-item-align:center;
            align-self:center;
        justify-self:center;
    }

    .aigf__content .auth {
        width: 180px;
        max-width: 100%;
        -ms-flex-item-align:center;
            align-self:center;
        justify-self:center;
    }

    .row--disclaimer h5{
        grid-row: 1;
        grid-column: 2;
        font-size: 12px;
        margin-left: 140px;
        margin-right: 140px;
    }

    .row--disclaimer ul {
        grid-row: 2;
        grid-column: 2;
        font-size: 12px;
        margin-left: 140px;
        margin-right: 140px;
    }
}
  

/* Responsive Design */

/* Small devices (>= 640px) */
@media only screen and (min-width: 40rem) { }
  
/* Medium devices (>= 768px) */
@media only screen and (min-width: 48rem) { }
  
/* Large devices (>= 1024px) */
@media only screen and (min-width: 64rem) { }
  
/* Extra large devices (>= 1280px) */
@media only screen and (min-width: 80rem) { }
  
/* 2x Large devices (>= 1536px) */
@media only screen and (min-width: 96rem) { }

@supports (constant(safe-area-inset-top)) {
    :root {
        --safe-area-inset-bottom: env(safe-area-inset-bottom);
        --safe-area-inset-top: env(safe-area-inset-top);
    }

    header {
        padding-top: var(--safe-area-inset-top);
    }
    footer {
        padding-bottom: calc(var(--safe-area-inset-bottom) + 130px);
    }
    footer .download {
        bottom: calc(var(--safe-area-inset-bottom) + 30px);
    }
}

/************************************** pop *********************************************/

.overlay {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.no-scroll {
    overflow: hidden;
}

.popup {
    position: fixed;
    width: 80%;
    height: 430px;
    background-color: #fff;
    border: 2px solid #4f4f4f;
    border-radius: 8px;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.popup .top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    background-color: #fff;
}

.popup .top img {
    width: 122px;
}

.popup .middle {
    padding: 15px 25px 15px 25px;
    text-align: center;
}

.popup .middle h2 {
    font-weight: 600;
    font-family: "Arial BoldMT", Arial, sans-serif;
    font-size: 20px;
    color: rgba(19,42,97);
}

.popup .middle .mobile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 1px;
}
.popup .middle img {
    width: 80%;
}
.popup .middle .pc-content {
    display: none;
}
.popup .middle .tips {
    font-family: "ArialMT", Arial, sans-serif;
    padding-top: 15px;
    font-size: 8px;
    color: rgba(102,102,102);
}
.popup .bottom {
    text-align: center;
    height: 42px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.popup .green-btn {
    background-color: #008759;
    color: rgba(255,255,255);
    border: none;
    width: 180px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    height: 42px;
    font-weight: 600;
}
.popup-18in {
    position: fixed;
    width: 80%;
    height: 420px;
    background-color: #fff;
    border: 2px solid #4f4f4f;
    border-radius: 8px;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.popup-18in .top-18in {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    background-color: #fff;
}

.popup-18in .top-18in img {
    width: 105px;
}

.popup-18in .middle-18in {
    padding: 15px 25px 15px 25px;
    text-align: center;
}

.popup-18in .middle-18in .top-title {
    font-weight: 600;
    font-family: "Arial BoldMT", Arial, sans-serif;
    font-size: 16px;
    color: rgba(19,42,97);
}
.popup-18in .middle-18in .pc-content {
    display: none;
}
.popup-18in .middle-18in .mobile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 1px;
}
.popup-18in .middle-18in img {
    width: 80%;
}
.popup-18in .middle-18in .tips {
    font-family: "ArialMT", Arial, sans-serif;
    padding-top: 15px;
    font-size: 8px;
    color: rgba(102,102,102);
}
.popup-18in .middle-18in-confirm {
    text-align: center;
    /*padding-top: 20px;*/
    height: 42px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.popup-18in .middle-18in-confirm .green-btn {
    background-color: #008759;
    color: rgba(255,255,255);
    border: none;
    width: 180px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    height: 42px;
    font-weight: 600;
}
@media only screen and (min-width: 360px) {
    .popup-18in {
        width: 300px;
        height: 420px;
    }
    .popup .middle .tips {
        font-family: "ArialMT", Arial, sans-serif;
        padding-top: 5px;
        font-size: 8px;
        color: rgba(102,102,102);
    }
    .popup .middle h2 {
        margin-bottom: 1px;
        font-weight: 600;
        font-family: "Arial BoldMT", Arial, sans-serif;
        font-size: 20px;
        color: rgba(19,42,97);
    }

    .popup .middle .mobile-content {
        padding-top: 10px;
    }

}
@media only screen and (min-width: 740px) {
    body {
        position: static;
    }
    .popup {
        width: 684px;
        height: 480px;
    }
    .popup .top {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 25px;
        background-color: #fff;
    }
    .popup .top img {
        width: 130px;
    }
    .popup .middle {
        padding: 28px;
        text-align: center;
    }
    .popup .middle h2 {
        margin-bottom: 10px;
        font-weight: 600;
        font-family: "Arial BoldMT", Arial, sans-serif;
        font-size: 28px;
        color: rgba(19,42,97);
    }
    .popup .middle .mobile-content {
        display: none;
    }
    .popup .middle .pc-content {
        display: block;
        font-family: "ArialMT", Arial, sans-serif;
        font-size: 18px;
        color: rgba(0,0,0);
        padding-top: 5px;
    }
    .popup .middle .tips {
        font-family: "ArialMT", Arial, sans-serif;
        padding-top: 18px;
        font-size: 14px;
        color: rgba(102,102,102);
    }
    .popup .bottom {
        text-align: center;
        height: 42px;
    }

    .popup .green-btn {
        background-color: #008759;
        color: rgba(255,255,255);
        border: none;
        width: 180px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 22px;
        height: 42px;
        font-weight: 600;
    }
    .popup-18in {
        width: 300px;
        height: 420px;
    }
}
