* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --theme-color: #C6A559;
    --theme-color2: #151515;
    --black: #000000;
    --white: #ffffff;
    --font-family: 'Montserrat', 'sans-serif';
}

body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    line-height: normal;
    font-family: var(--font-family);
    font-weight: 400;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-color: var(--theme-color2) var(--theme-color);
    scrollbar-width: thin;
}

.wrapper {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--theme-color2);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

section {
    position: relative;
    overflow: hidden;
}

.otgs-development-site-front-end {
    display: none;
}

.custom-btn,
.block-form input, .block-form textarea, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit:not([disabled]) {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    min-width: 168px;
    max-width: 280px;
    padding: 15px 10px;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    transition: 0.7s;
    cursor: pointer;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
}

.custom-btn.custom-btn--with-bg {
    background-color: rgb(33 33 33 / 52%);
}

.load_more_js {
    margin: 5px auto 0;
    max-width: 280px;
    z-index: 1;
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.custom-btn.hover-btn, .custom-btn:hover,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit,  .block-form .wpcf7-submit, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit:not([disabled]) {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.custom-btn.hover-btn:hover, .load_more_js:hover, .block-form .wpcf7-submit,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit:not([disabled]):hover {
    background-color: #b79546;
}

.custom-btn.custom-btn--disabled {
    color: #ccc;
    background-color: rgb(204 204 204 / 25%);
    border-color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a:hover {
    text-decoration: none;
}

.d-flex {
    display: flex;
    width: 100%;
}

.d-grid {
    display: grid;
    width: 100%;
}

.row-gap {
    row-gap: 20px;
    column-gap: 30px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-center {
    justify-content: center;
}

.dg-container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 15px;
}

.dg-small-container {
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
}

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

.text-right {
    text-align: right;
    padding-right: 50px;
}

.accent-text {
    color: var(--theme-color);
}

.h2-style {
    font-weight: 700;
    font-size: 36px;
    color: var(--theme-color2);
    line-height: 1.1;
    margin-bottom: 10px;
}

.h2-style.h2-style--with-icon {
    display: flex;
    align-items: center;
}

.h2-style.h2-style--with-icon span {
    margin-top: 8px;
}

.h2-style img {
    margin-right: 10px;
}

.h2-style span:not(.h2-style-title), h1 span {
    color: var(--theme-color);
}

.p-style {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--theme-color2);
    margin-top: 9px;
}

.page-title {
    color: #fff;
}

.mt-40 {
    margin-top: 40px;
}

img {
    max-width: 100%;
}

.sprite-svg {
    position: absolute;
    top: 0;
    opacity: 0;
}

.slick-slider {
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}
.slick-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}
.slick-track {
    display: flex !important;
}

.verticalCenter {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.horizontalCenter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.slick-slide img {
    display: block;
    height: auto;
}

.object-fit {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}

.dark-section,
.white-section {
    position: relative;
}

.dark-section > div,
.white-section > div {
    position: relative;
    z-index: 3;
}
.white-section:before,
.white-section:after,
.dark-section:before,
.dark-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dark-section:before {
    background: linear-gradient(180deg, #191919 0%, rgba(25, 25, 25, 0) 15.26%, rgba(25, 25, 25, 0) 87.43%, #191919 98.38%);
}

.dark-section:after {
    background-color: #191919;
    opacity: .9;
}

/****/

/* start header css */
header.headerOuter {
    background: rgba(21, 21, 21, 0.8);
    box-shadow: 0 0 29px rgba(198, 165, 89, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 11;
}

.headerOuter .header-inner {
    padding: 15px 0;
    justify-content: space-between;
}

.header_menu ul li {
    display: inline-block;
    margin: 0 12px;
}

.header_menu li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    transition: 0.7s;
}

.header_menu li a.active, .header_menu li.current_page_item > a {
    color: var(--theme-color);
}

.header_menu li a:hover, .header_menu li.current_page_item > a:hover {
    color: var(--theme-color);
}

.header-inner .logo {
    flex: 0 0 20%;
    max-width: 20%;
}

.logo img {
    display: block;
    object-fit: contain;
    height: fit-content;
    max-width: 220px;
}

.header-inner .head_button {
    display: flex;
    gap: 16px;
}

.head_button .custom-btn {
    padding: 5px 10px;
}

.header-inner .header_menu {
    flex: 0 0 57%;
    max-width: 57%;
    text-align: center;
}

.header-inner .head_button a {
    display: inline-block;
    min-height: 30px;
    line-height: 30px;
    min-width: 96px;
}

.header-inner .custom-btn.hover-btn {
    margin: 0;
}

/* start hero banner css */
.hero_banner {
    background-size: cover;
    padding: 125px 0 80px 0;
    overflow: hidden;
    min-height: 56vh;
}

.hero_banner .dg-container {
    position: relative;
    z-index: 2;
}

.hero_banner.inner-page-banner::before, .game_play::after {
    opacity: 0.3;
}

.hero_banner .hero-banner-text h1 {
    color: #fff;
}

.hero_banner .hero-banner-text p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin: 11px 0 0 0;
}

/* slider css */
.heroSlider {
    margin-top: 40px;
}

.heroSlider .hero_slide_box {
    border-radius: 21px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.heroSlider .slick-list {
    margin: 0 0px;
}

.heroSlider .slick-list .slick-slide {
    margin: 0 23px;
    z-index: 10;
}
.heroSlider .slick-list .slick-slide.slick-active .hero_slide_text {
    opacity: 1;
}
.heroSlider .hero_slide_box {
    min-height: 620px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px 20px 140px;
}
.heroSlider .slide-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #191919 0%, rgba(21, 21, 21, 0) 100%);

}
.heroSlider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 21px;
}

.hero_slide_text {
    max-width: 800px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.heroSlider .hero_slide_logo {
    max-width: 200px;
}
.heroSlider .hero_slide_box img {
    display: block;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
}

.heroSlider .hero_slide_box .hero-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero_slide_box iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.heroSlider .hero_slide_box .hero_slide_text {
    position: relative;
    z-index: 2;
}

.heroSlider .hero_slide_box h2 {
    font-weight: 700;
    font-size: 60px;
    margin: 20px 0;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0px 2px 1px rgba(0,0,0,0.5);
}

.heroSlider .hero_slide_box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    margin: 5px 0 26px 0;
    max-width: 650px;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
}

.heroSlider .hero_slide_box .custom-btn.hover-btn {
    max-width: 238px;
    font-weight: 700;
    z-index: 999;
}

.heroSlider button.slick-prev.slick-arrow::before, .heroSlider button.slick-next.slick-arrow::before,
.heroSlider button.slick-prev.slick-arrow,
.heroSlider button.slick-next.slick-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.heroSlider button.slick-prev.slick-arrow {
    left: 85px;
    z-index: 1;
}

.heroSlider button.slick-next.slick-arrow {
    right: 85px;
}

.heroSlider button.slick-prev.slick-arrow::before {
    content: '';
    background: url('../images/prev-arrow.svg') no-repeat;
}

.heroSlider button.slick-next.slick-arrow::before {
    content: '';
    background: url('../images/next-arrow.svg') no-repeat;
}

.heroSlider ul.slick-dots {
    bottom: -50px;
}

.heroSlider ul.slick-dots li {
    margin: 0 4px;
    width: auto;
}

.heroSlider ul.slick-dots li button::before {
    content: none;
}

.heroSlider ul.slick-dots li button {
    width: 14px;
    height: 8px;
    background-color: #D9D9D9;
    border-radius: 20px;
    transition: width 0.7s, 0.7s;
}

.heroSlider ul.slick-dots li.slick-active button {
    width: 34px;
    background-color: var(--theme-color);
}

/* start discover_games section */
.discover_games {
    background-image: url('../images/discover_games-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 160px;
    position: relative;
}

.webp-support .discover_games {
    background-image: url('../images/discover_games-bg.webp');
}

.discover_games::before, .discover_games::after {
    position: absolute;
}

.discover_games::before {
    content: '';
    background: url('../images/discover_games_before.png') no-repeat;
    min-width: 626px;
    min-height: 291px;
    top: 0;
    right: 0;
}

.discover_games::after {
    content: '';
    background: url('../images/discover_games_after.png') no-repeat;
    bottom: 0;
    left: 0;
    min-width: 718px;
    height: 325px;
}

.discover_games .discover_tabs_outer {
    position: relative;
    z-index: 1;
    margin-top: 53px;
    padding: 0 25px;
    justify-content: space-between;
}

.discover_tabs_outer .discover_tabs_full {
    flex: 0 0 60%;
    max-width: 60%;
    margin-right: 15px;
}

.discover_tabs_full .discover-full-inner {
    /* max-width: 800px; */
    border-radius: 10px;
    background: url('../images/discover-full-view-bg.jpg') no-repeat;
    background-size: cover;
    padding: 24px 24px 35px;
    position: relative;
}
.webp-support .discover_tabs_full .discover-full-inner {
    background-image: url('../images/discover-full-view-bg.webp');
}

.discover-full-inner .discover-img-view {
    height: 454px;
    overflow: hidden;
}

.discover-full-inner .discover-img-view img {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.discover_tabs_full .discover-full-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    background: url('../images/discover-after-img.svg') no-repeat;
    width: 14px;
    height: 239px;
}

.discover-full-inner .discover-img-view img {
    width: 100%;
    max-width: 100%;
}

.discover-full-inner .discover-full-button {
    display: flex;
    column-gap: 20px;
    margin-top: 21px;
}

.discover-full-inner .discover-full-button a {
    flex: 0 0 auto;
    width: 100%;
    max-width: 48.6%;
}

.discover_tabs_outer .discover_tabs_button {
    background-image: url('../images/discover_tabs_button-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    flex: 0 0 29.8%;
    max-width: 29.8%;
    border-radius: 10px;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.webp-support .discover_tabs_outer .discover_tabs_button {
    background-image: url('../images/discover-tabs-button-bg.webp');
}

.discover_tabs_button .game-mobile {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3%;
    grid-row-gap: 20px;
}

.discover_tabs_button .discover-info {
    flex: 0 0 48.2%;
    max-width: 48.2%;
    border-radius: 10px;
    position: relative;
}

.discover_tabs_button .discover-info a {
    display: inline-block;
    width: 100%;
}

.discover_tabs_button .discover-info img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    outline: 3px solid transparent;
    transition: 0.7s;
    height: 120px;
    width: 100%;
    opacity: .6;
}

.discover_tabs_button .discover-info img:hover, .discover_tabs_button .discover-info.active img {
    outline-color: var(--theme-color);
    box-shadow: 0 7px 54px var(--theme-color);
    opacity: 1;
}

.discover_tabs_button .discover-info span, .sticker {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 13px;
    font-weight: 700;
    min-width: 60px;
    line-height: 22px;
    min-height: 22px;
    padding: 0 10px;
    background-color: var(--theme-color);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    z-index: 3;
    transition: all .2s ease;
    text-transform: capitalize;
}

.discover-main .sticker {
    right: 30px;
    top: 30px;
}

.discover-full-inner .discover-full-detail {
    margin-top: 59px;
    grid-gap: 10px;
}

.discover-detail-img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.discover-detail-img {
    width: 57px;
    height: 57px;
}

.discover-full-inner .discover-img-view {
    height: 454px;
    overflow: hidden;
    position: relative;
}

.discover-img-view iframe {
    width: 100%;
    height: 100%;
}

.discover-detail-box {
    width: 260px;
}
.discover-full-detail .discover-detail-box .discover-detail-text {
    position: relative;
    padding-left: 25px;
}

.discover-full-detail .discover-detail-box .discover-detail-text::after {
    content: '';
    width: 1px;
    height: 54px;
    position: absolute;
    top: 50%;
    background-color: var(--theme-color);
    transform: translateY(-50%);
    left: 10px;
}

.discover-full-detail .discover-detail-box h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.discover-full-detail .discover-detail-box p {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    display: flex;
}

.discover_tabs_outer .discover_tabs_button .custom-btn {
    min-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    width: 100%;
}

/* start aztec_warrior section css */
.aztec_warrior {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 155px 0 85px;
    position: relative;
    margin-top: -60px;
}

.aztec_warrior .aztec_warrior_text {
    padding-left: 87px;
}

.aztec_warrior_text .h2-style {
    color: #fff;
    font-size: 74px;
    line-height: 74px;
}

.aztec_warrior_text .p-style {
    color: #fff;
}

.aztec_warrior .aztec_warrior_text .custom-btn {
    margin-top: 35px;
    min-width: 228px;
}

/* start our_services section css */
.our_services {
    padding: 144px 0 74px 0;
    overflow: hidden;
}

.our_services .section-heading .p-style {
    max-width: 911px;
    margin: 8px auto 0;
}

.affiliates_section .find-out .custom-btn,
.our_services .find-out-more .custom-btn,
.our_news .find-out a.custom-btn {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.our_services .find-out-more .custom-btn {
    color: var(--theme-color2);
    border: 1px solid var(--theme-color2);
    margin-top: 10px;
    text-shadow: none;
}

.our_services .find-out-more .custom-btn:hover {
    color: var(--white);
    border-color: var(--theme-color);
}

.our_services .ourServiceTab {
    text-align: center;
    padding: 40px 0 50px;
}

.our_services .ourServiceTab .custom-btn {
    border: 1px solid #CECECE;
    padding: 15px 20px;
    border-radius: 50px;
    color: var(--theme-color2);
    font-size: 14px;
    transition: background-color 0.7s, border 0.7s;
    font-weight: 600;
}

/* the slides */
.our_services .slick-slide {
    margin: 0 15px;
}

/* the parent */
.our_services .slick-list {
    margin: 0 -15px;
}

.slick-current.slick-active .custom-btn {
    background-color: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}

.our_services .ourServiceTab .custom-btn:hover {
    color: var(--white);
}

.our_services .ourServiceTab .custom-btn:last-child {
    margin: 0;
}

.serviceSlider {
    position: relative;
}
.serviceSlider:before, .serviceSlider:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
}
.serviceSlider:before {
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.serviceSlider:after {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    right: 0;
}
.serviceSlider .slick-list {
    margin: 0 0;
}

.serviceSlider  .service-slide-box.slick-slide {
    margin: 0 0;
}

.serviceSlider .service-slide-box {
    height: 672px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    filter: grayscale(1);
    transform: scale(0.8);
    opacity: 0.8;
    transition: transform 0.7s, opacity 0.7s;
}

.serviceSlider .service-slide-box img {

    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.serviceSlider .slick-active .service-slide-box  {
    filter: inherit;
    transform: inherit;
    opacity: 1;
}

/* start affiliates section css  */
.affiliates_section {
    padding: 80px 0;
    position: relative;
    background-color: #000;
}
.affiliates_section > div {
    position: relative;
    z-index: 2;
}
.affiliates_section:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #0b0b0b;
    opacity: .6;
    z-index: 1;
}
.affiliates_section .section-heading .h2-style {
    color: #fff;
}

.affiliates_section .section-heading .p-style {
    color: #fff;
}

.affiliates_section .affiliate_logo_outer {
    margin-top: 42px;
}

.affiliate_logo_outer .affiliate_logo, .affiliate_logo_outer .affiliate_logo_bottom {
    column-gap: 100px;
    justify-content: center;
}

.affiliate_logo_outer .affiliate_logo_bottom {
    margin-top: 40px;
}

.affiliates_section .affiliate_logo_img {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 133px;
    background-color: var(--theme-color2);
    border-radius: 10px;
    position: relative;
    opacity: 0.3;
    transition: opacity 0.7s;
    cursor: pointer;
}

.affiliates_section .affiliate_logo-box:hover .affiliate_logo_img {
    opacity: 1;
}

.affiliates_section .find-out {
    text-align: center;
    margin-top: 40px;
}

.affiliate_logo .slick-list, .affiliate_logo_bottom .slick-list {
    margin: 0 -36px;
}

.affiliate_logo .slick-list .slick-slide, .affiliate_logo_bottom .slick-list .slick-slide {
    margin: 0 36px;
}

/* start our_news section css */
.our_news {
    padding: 140px 0;
}

.our_news .section-heading .p-style {
    max-width: 911px;
    margin: 8px auto 0;
}

.OurNewsSlider .NewsSlider {
    margin-bottom: 0;
}

.our_news .OurNewsOuter {
    margin: 69px auto 0;
    max-width: 1440px;
    justify-content: center;
}

.our_news .OurNewsOuter .OurNewsThumb {
    flex: 0 0 39.5%;
    max-width: 39.5%;
    padding-right: 30px;
}

.our_news .OurNewsOuter .OurNewsSlider {
    flex: 0 0 50%;
    max-width: 50%;
}

.NewsSlider .NewsSliderBox img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.our_news .OurNewsOuter .OurNewsThumb ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.our_news .OurNewsOuter .OurNewsThumb ul li {
    background-color: #000;
    border-radius: 10px;
    height: 180px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.our_news .OurNewsOuter .OurNewsThumb li a {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #000;
}

.our_news .OurNewsOuter .OurNewsThumb a::after {
    content: '';
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 55.56%, #191919 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our_news .OurNewsOuter .OurNewsThumb ul li img, .NewsSliderBox > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(0deg) scale(1);
    transition: all .3s linear;
    opacity: 0.5;
}

.our_news .OurNewsOuter .OurNewsThumb a:hover img,
.NewsSliderBox > img:hover,
.NewsSliderBox:hover > img,
.newsPage .left_view_right ul li:hover img,
.newsPage .grid_view_left ul li:hover img {
    transform: rotate(10deg) scale(1.2);
    transition-duration: 900ms;
    opacity: 1;
}

.our_news .OurNewsOuter .OurNewsThumb li span,
.NewsSliderBox span {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 5px 15px 15px;
    font-weight: 600;
    line-height: 1.2;
    font-size: 18px;
    color: #fff;
    z-index: 1;
}

.NewsSliderBox {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.our_news .OurNewsOuter .OurNewsSlider .NewsSliderBox {
    height: 580px;
    background: #000;
}

.our_news .OurNewsOuter .OurNewsSlider .NewsSliderBox img {
    border-radius: 10px;
}

.OurNewsSlider .NewsSliderBox::after, .NewsSliderBox:after {
    content: '';
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 15%, #191919 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.NewsSliderBox .NewsSliderText {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 5px 10px 40px 40px;
    width: 100%;
    text-align: left;
}

.OurNewsSlider .NewsSliderBox .NewsSliderText {
    padding: 5px 10px 60px 30px;
}

.NewsSliderBox .NewsSliderText h3 {
    font-size: 30px;
}

.NewsSliderBox .NewsSliderText .p-style {
    font-size: 16px;
    line-height: 1.2
}

.newsBox .p-style,
.NewsSliderText .p-style,
.NewsSliderText h3 {
    color: #fff;
}

.NewsSlider ul.slick-dots {
    bottom: 9px;
    text-align: right;
    right: 26px;
}

.NewsSlider ul.slick-dots li {
    margin: 0 4px;
    width: auto;
}

.NewsSlider ul.slick-dots li button::before {
    content: none;
}

.NewsSlider ul.slick-dots li button {
    width: 14px;
    height: 8px;
    background-color: #D9D9D9;
    transition: width 0.7s, 0.7s;
}

.NewsSlider ul.slick-dots li.slick-active button {
    width: 34px;
    background-color: var(--theme-color);
}

.our_news .find-out {
    margin: 47px auto 40px;
    text-align: center;
}

.our_news .find-out a.custom-btn {
    border-color: var(--theme-color2);
    color: var(--theme-color2);
    min-width: 349px;
}

.our_news .find-out a.custom-btn:hover {
    border-color: var(--theme-color);
    color: #fff;
}

/* Featured Start */

.overflowed {
    overflow: visible;
}

.featured-box {
    display: flex;
    align-items: center;
}
.featured-text {
    width: 65%;
    padding-left: 100px;
}
.featured-text .h2-style, .featured-text .p-style {
    color: #fff;
}

.featured-text .p-style {
    font-weight: 100;
    margin: 25px 0;
}

.featured-text .h2-style {
    margin-bottom: 20px;
    font-size: 40px;
}

.featured-asset {
    margin-top: -80px;
    width: 35%;
}
.featured-asset img {
    width: 100%;
    height: 100%;
}


/* start keep-touch section css */
.keep-touch-subscribe {
    background-image: url('../images/keep-touch-bg-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.webp-support .keep-touch-subscribe {
    background-image: url('../images/keep-touch-bg-min.webp');
}

.keep-touch-subscribe::before {
    content: '';
    position: absolute;
    left: -56px;
    top: -185px;
    background-image: url('../images/keep_touch_after.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 672px;
    height: 325px;
}
.webp-support .keep-touch-subscribe::before {
    background-image: url('../images/keep_touch_after.webp') ;
}

.keep-touch {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.keep-touch .dg-small-container {
    position: relative;
    z-index: 2;
}

.keep-touch-home {
    overflow: visible;
}
.keep-touch-home .p-style {
    width: 70%;
    margin-bottom: 20px;
}

.keep-touch-home .keep_touch_img,
.keep-touch__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.keep_touch_img img {
    object-fit: contain;
    height: 100%;
}

.keep-touch__logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.keep-touch__logo img {
    height: 100%;
}

.keep-touch .keep_touch_img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 1;
    height: fit-content;
    overflow: hidden;
}

.keep-touch-home .keep_touch_img {
    top: unset;
    bottom: 0;
    height: auto;
    overflow: hidden;
}

.keep-touch .h2-style {
    color: #fff;
    margin-bottom: 30px;
}

.keep-touch-form .form-group input.form-control,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea,
.block-form textarea,
.block-form input
{
    min-width: 260px;
    min-height: 52px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--font-family) !important;
}

.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text:focus,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea:focus,
.block-form textarea,
.block-form input {
    background-color: #fff;
    color: #0b0b0b;
    box-shadow: none;
}
.block-form .wpcf7-not-valid-tip {
    font-size: 14px;
}

.keep-touch-form .form-group input.form-control {
    margin-right: 16px;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}
.keep-touch-form .form-group input::placeholder,
.block-form textarea::placeholder,
.block-form input::placeholder,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text::placeholder,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    opacity: 1;
    box-shadow: none;
}
.keep-touch-form .form-group input::placeholder {
    color: #fff;
}
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text::placeholder,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
.block-form input::placeholder, .block-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.30);
}

.keep-touch-form .form-group input.form-control:focus,
.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text:focus,
.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea:focus {
    outline: none;
    box-shadow: none;
}

.keep-touch-form .form-group input.form-control::placeholder,
.keep-touch-form .form-group input.form-control::-moz-placeholder {
    background-color: transparent;
    color: #fff;
}

.keep-touch-form .form-group {
    margin-top: 34px;
}

.keep-touch .custom-btn {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
}

.keep-touch-home  .custom-btn {
    background-color: transparent;
    border: 1px solid #fff;
    max-width: 228px;
}

.keep-touch-home .custom-btn:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.keep-touch-form p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.keep-touch-form p, .keep-touch-form p a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* start footerOuter css */
.footerOuter {
    position: relative;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 70px 0 0 0;
}
.footerOuter:before {
    background-color:#191919;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-row .footer-col {
    flex: 0 0 33.3%;
    max-width: 33.3%;
}

.footerOuter .social-icons li {
    display: flex;
}
.footerOuter .social-icons ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    align-items: center;
    grid-gap: 20px;
}

.footerOuter .social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    text-align: center;
    color: var(--theme-color);
    font-size: 21px;
    transition: 0.3s linear;
}

.footerOuter .social-icons li .icon {
    fill: var(--theme-color);
    width: 23px;
    height: 23px;
}

.footerOuter .social-icons li a:hover {
    background-color: var(--theme-color);
    color: var(--theme-color);
    color: var(--white);
}

.footerOuter .social-icons li a:hover .icon {
    fill: var(--white);
}

.footerOuter .footer-menu h3.menu_title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.footerOuter .footer-menu {
    display: inline-block;
    vertical-align: top;
    margin-right: 100px;
}

.footer-menu ul {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 26px;
}

.footerOuter .footer-menu li a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 33px;
    opacity: 0.8;
}

.footerOuter .footer-menu li a:hover {
    opacity: 1;
}

.footerOuter .footer-right .p-style {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}

.footerOuter .footer-right h3 {
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    margin-top: 23px;
}
.footer-right-img {
    display: block;
    margin-bottom: 17px;
    object-fit: contain;
}

.footer-copyright {
    border-top: 2px solid #6a6a6a;
    padding: 30px 0;
    text-align: center;
    margin-top: 53px;
}

.footer-copyright p {
    font-size: 13px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

/* start game page css */
.pageOuter {
    min-height: calc(100vh - 440px);
    position: relative;
    overflow: hidden;
}

.inner-page-banner {
    position: relative;
    min-height: 566px;
    display: flex;
    z-index: 3;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inner-page-banner:before, .game_play:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(360deg, #151515 0%, rgba(21, 21, 21, 0) 100%);
}

.inner-page-banner img,
.hero_banner > img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.inner-page-banner .inner-page-content {
    position: relative;
    padding: 72px 20px 0 20px;
    z-index: 3;
    max-width: 600px;
}

.inner-page-banner .inner-page-content h1 {
    color: var(--white);
}

.inner-page-banner .inner-page-content p {
    color: var(--white);
}

/* start games_section css */
.games_section {
    padding: 40px 0 0 0;
    background-image: url('../images/games-page-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.games_section .dg-small-container {
    position: relative;
    z-index: 2;
    padding-bottom: 220px;
}

.pageOuter-single .dg-small-container {
    padding-bottom: 0;
}
.webp-support .games_section {
    background-image: url('../images/games-page-bg.webp');
}

.game-bottom-img {
    position: absolute;
    bottom: 0;
    right: 0;
    min-height: 288px;
    text-align: right;
    overflow: hidden;
}

.game-bottom-img img {
    transform: rotate(-3deg);
    margin: 0 6px -24px 0;
    display: inline-block;
    position: relative;
}

.game_tabs_outer .tab-link {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 14px;
    position: relative;
    border-radius: 51px;
    overflow: hidden;
}

.game_tabs_outer .tab-content {
    text-align: center;
    grid-template-columns: repeat(3, 1fr);
    color: #888;
    font-weight: 300;
    font-size: 15px;
    column-gap: 23px;
    grid-row-gap: 23px;
    transition: transform 0.7s;
    animation: fadeIn 0.7s ease 1 forwards;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    min-height: 280px;
}
.game-no-found {
    display: flex;
    font-weight: 600;
    font-size: 20px;
    color: black;
    grid-column: 1/-1;
    text-align: center;
    justify-content: center;
    margin: 24px auto;
}
.game_tabs_outer .tab-content.active {
    display: grid;
    visibility: visible;
    opacity: 1;
}

.tab-link input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 2;
}

.tab-link label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    color: var(--theme-color2);
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border: 1px solid #CECECE;
    border-radius: 51px;
    overflow: hidden;
    min-height: 40px;
}

.tab-link input:checked  + label {
    display: flex;
    width: 100%;
    height: 100%;
}

.tab-link input:checked + label {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

/** Loader **/
.loader-post{
    position: relative;
    width:45px;
    height:45px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius:100%;
    border:5px solid;
    border-top-color: var(--theme-color);
    border-bottom-color: var(--theme-color2);
    border-left-color: var(--theme-color);
    border-right-color: var(--theme-color2);
    -webkit-animation: loader4 1s ease-in-out infinite;
    animation: loader4 1s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
}
@keyframes loader4 {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@-webkit-keyframes loader4 {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

.loader-post.loader-post--loading {
    opacity: 1;
    visibility: visible;
}
/*.loader-post.loader-post--no-posts {
    background-color: violet;
}*/

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.custom_select {
    height: auto;
    display: inline-block;
    min-width: 170px;
    min-height: 52px;
    line-height: 52px;
    border: none;
    margin: 0;
    padding: 0;
    background: url(../images/down_arrow.svg) no-repeat var(--theme-color);
    background-position: 94% 15px;
    border-radius: 40px;
    background-size: 24px;
}

.custom_select select {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    border: none;
    text-indent: 0.01px;
    border-radius: 0;
    background-color: transparent;
    padding: 0 14px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.game_tab_top .game_top_left,
.game_tab_top .game_top_center,
.game_tab_top .game_top_right {
    width: 100%;
}
.game_tab_top .game_top_left {
    max-width: 728px;
}

.game_tab_top .game_top_center {
    margin: 0 15px;
    max-width: 307px;
    height: 40px;
    display: flex;
}

.search_label {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 1px solid var(--theme-color);
    padding: 4px 16px;
    border-radius: 50px;
    transition: all 1s ease;
    overflow: hidden;
}

.search_label input {
    transition: width 1s ease, opacity 0.5s ease 0.5s;
    opacity: 1;
    width: 208px;
    height: 100%;
    padding-right: 24px;
    border: 0;
    outline: none;
    font-weight: 500;
    color: var(--theme-color2);
    font-family: 'Montserrat', sans-serif;
    background: transparent;
}
.search_label input::placeholder {
    color: var(--theme-color2);
}
.search_label input[type="search"]::-webkit-search-decoration,
.search_label input[type="search"]::-webkit-search-cancel-button,
.search_label input[type="search"]::-webkit-search-results-button,
.search_label input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.search_label svg {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.search_label svg path {
    fill: var(--theme-color)
}
.search_label.close {
    border-radius: 50px;
    padding: 5px 5px;
    transition: all 1s ease;
}

.search_label.close input {
    width: 28px;
    opacity:0;
    cursor: pointer;
    transition: opacity 0.5s ease, width 1s ease;
    -webkit-appearance:none
}

.game_top_clear {
    width: 40px;
    min-width: fit-content;
    margin-left: 10px;
    background-color: var(--theme-color);
    transition: all .8s linear;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}
.game_top_clear.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.game_tab_top .game_top_right {
    max-width: 280px;
    margin-left: auto;
}

.game_top_left ul {
    flex-wrap: wrap;
    grid-gap: 12px;
}

.game_top_right .custom_box h3 {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    min-width: fit-content;
}

.custom_box .nice-select.customSelect ul.list {
    width: 100%;
}

.custom_box .nice-select.customSelect {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    width: 250px;
    padding-left: 30px;
    min-height: 40px;
    line-height: 40px;
}

.custom_box .nice-select.customSelect ul.list li.option {
    color: var(--theme-color2);
    font-size: 14px;
}

.custom_box .nice-select.customSelect ul.list li.option:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.custom_box .nice-select.customSelect:after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8L14 2' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    height: 9px;
    width: 12px;
    right: 14px;
    margin: 0;
    top: calc(50% - 5px);
    transform: rotate(0deg);
    transform-origin: unset;
    -webkit-transform-origin: unset;
    -ms-transform-origin: unset;
}
.custom_box .nice-select.open::after {
    transform: rotate(180deg);
}
.game_tabs_outer .game_tab_content {
    margin-top: 35px;
    position: relative;
}

.game_tab_content .game-grid-box {
    border-radius: 10px;
    max-height: 284px;
    max-width: 100%;
    transform: translateY(0);
    transition: transform 1s;
    z-index: 1;
    cursor: pointer;
}
.game-grid-box .game-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.game-iframe-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.game-grid-box.accent {
    z-index: 12;
}

.game-iframe-wrapper.game-iframe-wrapper--vimeo {
    width: 120%;
    height: 120%;
}

.game-grid-box .play-video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: transparent;
    border: none;
    box-shadow: none;
    width: 68px;
    height: 48px;
}

.tab-content {
    position: relative;
}

.tab-content:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(255,255, 255, .5);
    z-index: -2;
    transition: all .3s linear;
}

.game-overlay.tab-content {
    overflow: hidden;
}

.game-overlay.tab-content:after {
    visibility: visible;
    opacity: 1;
    z-index: 20;
}

.game-grid-box .play-video-btn {
    width: 68px;
    height: 48px;
}

.play-video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    transition: all .2s ease;
    z-index: -2;
}

.play-video-btn.active {
    opacity: 1;
    z-index: 3;
}

.play-video-btn svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
.game-grid-box.hoverOn {
    position: relative;
    transform: translateY(260px) !important;
    transition: transform 0s;
}

.game-grid-box:hover {
    z-index: 2;
}

.game-grid-box.active {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.game-grid-box img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 100%;
    transition: all .3s linear;
}

.detail-hidden {
    position: absolute;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    display: none;
}

.game-grid-box:hover img {
    transition-duration: 900ms;
    opacity: 100%;
}

.game-grid-box {
    background: #000;
}
.game-grid-box.blurry img {
    opacity: 50%;
}

.game-grid-box .game_trailer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0;
    border: none;
}

.game-grid-box:hover .game_trailer {
    opacity: 1;
    animation: fade-in 1.5s;
}

.video-preloader {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* start promo_section css */
.promo_section {
    position: relative;
    padding: 139px 0;
    z-index: 1;
}

.promo_section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.3);
}

.promo_section .promo_section_text {
    position: relative;
    z-index: 1;
}

.promo_section_text h2 {
    color: #fff;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
}

.promo_section_text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    color: #fff;
}

.promo_section_text .promo_section_left {
    flex: 0 0 70%;
    max-width: 70%;
}

.promo_section_text .promo_section_right {
    flex: 0 0 30%;
    max-width: 30%;
}

.promo_section_right a.custom-btn {
    min-width: 238px;
}

.game-grid-hover {
    background-image: url('../images/game-grid-hover-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: calc(100% - 8px);
    margin-top: 30px;
    left: 0;
    z-index: 5;
    border-radius: 10px;
    transition: all 0.5s;
    opacity: .7;
}

.game-grid-hover::after,
.game-grid-hover::before,
.game-grid-wrap:before {
    content: '';
    position: absolute;
    display: inline-block;
}

.game-grid-hover::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.game-grid-hover::before {
    background: url('../images/hover-arrow.svg') no-repeat;
    width: 36px;
    height: 12px;
    left: 10%;
    top: -12px;
    z-index: 1;
}

.game-grid-wrap {
    position: relative;
    padding: 50px 60px;
}

.game-grid-hover.left {
    left: -105%;
}

.game-grid-hover .game-hover_inner {
    position: relative;
    z-index: 1;
}
.game-grid-wrap {
    position: relative;
}

.game-grid-wrap:before {
    top: -22px;
    left: 0;
    width: 100%;
    height: 25px;
}

.game-hover__head, .game-hover__head .labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.game-hover__head .labels {
    grid-gap: 10px;
    margin-left: 24px;
}

.labels p, .game-hover__head .h2-style {
    color: #fff;
}

.labels p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: 54px;
    height: 54px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-color: #C6A559;
    mask-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.4662 1.07437C24.9399 -0.132166 27.0601 -0.132168 28.5338 1.07437L30.0639 2.32697C30.9962 3.0902 32.2228 3.39254 33.403 3.14999L35.3399 2.75191C37.2056 2.36848 39.0829 3.35375 39.8271 5.10699L40.5998 6.92717C41.0706 8.03622 42.0162 8.87397 43.174 9.20766L45.074 9.75531C46.9042 10.2828 48.1085 12.0276 47.9528 13.9259L47.7911 15.8967C47.6926 17.0975 48.1405 18.2788 49.0106 19.1123L50.4385 20.4802C51.8139 21.7978 52.0694 23.9024 51.0493 25.5109L49.9903 27.1808C49.345 28.1983 49.1927 29.4524 49.5757 30.5948L50.2044 32.4696C50.8099 34.2754 50.0581 36.2578 48.4074 37.2079L46.6936 38.1944C45.6494 38.7954 44.9317 39.8352 44.74 41.0247L44.4254 42.9768C44.1223 44.8573 42.5354 46.2632 40.6321 46.3374L38.6562 46.4144C37.4523 46.4613 36.3337 47.0484 35.6111 48.0126L34.4253 49.5949C33.2831 51.1191 31.2246 51.6265 29.5049 50.8077L27.7195 49.9577C26.6317 49.4398 25.3683 49.4398 24.2805 49.9577L22.4951 50.8077C20.7754 51.6265 18.7169 51.1191 17.5747 49.5949L16.3889 48.0126C15.6663 47.0484 14.5477 46.4613 13.3438 46.4144L11.3679 46.3374C9.46463 46.2632 7.8777 44.8573 7.57464 42.9768L7.26 41.0247C7.0683 39.8352 6.35063 38.7954 5.30642 38.1944L3.59265 37.2079C1.9419 36.2578 1.1901 34.2754 1.79562 32.4696L2.42426 30.5948C2.80729 29.4524 2.65501 28.1983 2.00973 27.1808L0.950687 25.5109C-0.0694087 23.9024 0.186142 21.7978 1.56153 20.4802L2.98943 19.1123C3.85946 18.2788 4.30745 17.0975 4.20892 15.8967L4.04722 13.9259C3.89147 12.0277 5.09583 10.2828 6.926 9.75531L8.82604 9.20766C9.98376 8.87397 10.9294 8.03622 11.4002 6.92717L12.1729 5.10699C12.9171 3.35375 14.7944 2.36848 16.6601 2.75191L18.597 3.14999C19.7772 3.39254 21.0038 3.0902 21.9361 2.32697L23.4662 1.07437Z' fill='%23C6A559'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.4662 1.07437C24.9399 -0.132166 27.0601 -0.132168 28.5338 1.07437L30.0639 2.32697C30.9962 3.0902 32.2228 3.39254 33.403 3.14999L35.3399 2.75191C37.2056 2.36848 39.0829 3.35375 39.8271 5.10699L40.5998 6.92717C41.0706 8.03622 42.0162 8.87397 43.174 9.20766L45.074 9.75531C46.9042 10.2828 48.1085 12.0276 47.9528 13.9259L47.7911 15.8967C47.6926 17.0975 48.1405 18.2788 49.0106 19.1123L50.4385 20.4802C51.8139 21.7978 52.0694 23.9024 51.0493 25.5109L49.9903 27.1808C49.345 28.1983 49.1927 29.4524 49.5757 30.5948L50.2044 32.4696C50.8099 34.2754 50.0581 36.2578 48.4074 37.2079L46.6936 38.1944C45.6494 38.7954 44.9317 39.8352 44.74 41.0247L44.4254 42.9768C44.1223 44.8573 42.5354 46.2632 40.6321 46.3374L38.6562 46.4144C37.4523 46.4613 36.3337 47.0484 35.6111 48.0126L34.4253 49.5949C33.2831 51.1191 31.2246 51.6265 29.5049 50.8077L27.7195 49.9577C26.6317 49.4398 25.3683 49.4398 24.2805 49.9577L22.4951 50.8077C20.7754 51.6265 18.7169 51.1191 17.5747 49.5949L16.3889 48.0126C15.6663 47.0484 14.5477 46.4613 13.3438 46.4144L11.3679 46.3374C9.46463 46.2632 7.8777 44.8573 7.57464 42.9768L7.26 41.0247C7.0683 39.8352 6.35063 38.7954 5.30642 38.1944L3.59265 37.2079C1.9419 36.2578 1.1901 34.2754 1.79562 32.4696L2.42426 30.5948C2.80729 29.4524 2.65501 28.1983 2.00973 27.1808L0.950687 25.5109C-0.0694087 23.9024 0.186142 21.7978 1.56153 20.4802L2.98943 19.1123C3.85946 18.2788 4.30745 17.0975 4.20892 15.8967L4.04722 13.9259C3.89147 12.0277 5.09583 10.2828 6.926 9.75531L8.82604 9.20766C9.98376 8.87397 10.9294 8.03622 11.4002 6.92717L12.1729 5.10699C12.9171 3.35375 14.7944 2.36848 16.6601 2.75191L18.597 3.14999C19.7772 3.39254 21.0038 3.0902 21.9361 2.32697L23.4662 1.07437Z' fill='%23C6A559'/%3E%3C/svg%3E");
}

.labels p strong {
    font-weight: 900;
    font-size: 6px;
}

.game-grid-box .game_hover_left h3 {
    color: #fff;
}

.game-grid-box .game_hover_left p {
    color: #fff;
}

.game-grid-box .game_hover_left {
    flex: 0 0 80%;
    max-width: 80%;
    position: relative;
    text-align: left;
}

.game-grid-box .game_hover_left::before {
    content: '';
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--theme-color);
}

.game-grid-box .game_hover_right {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 30px;
}

.game-grid-box .game_hover_right::before {
    content: '';
}

.game-grid-box .game_hover_left .discover-full-detail {
    margin-top: 34px;
}

.game-grid-box .game_hover_right .custom-btn {
    margin-top: 20px;
    min-width: 236px;
}

.game-grid-box .game_hover_right .custom-btn:first-child {
    margin-top: 0;
}

.game-grid-box:hover .game-grid-hover,
.accent .game-grid-hover{
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.game-grid-box:nth-child(3n) .game-grid-hover {
    left: auto;
    right: 0;
}

.game-grid-box:nth-child(3n) .game-grid-hover::before {
    left: auto;
    right: 10%;
}

.game-grid-box.center-grid-after .game-grid-hover::before {
    left: 50%;
}

/* game detail page css */
.scrollDown a span.icon {
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    height: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 26px;
    font-size: 10px;
}

@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}

.game-detail-banner {
    text-align: center;
    min-height: 90vh;
    position: relative;
}
.game-detail-banner > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    position: relative;
    z-index: 3;
    padding: 54px 20px 94px;
}
.game-detail-banner .game_detail-logo {
    max-width: 335px;
    margin: 0 auto 20px;
}

.game-detail-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 32.89%, #191919 98.38%);
    z-index: 1;
}

.game-detail-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191919;
    opacity: .5;
    z-index: 1;
}
.game_detail-logo img {
    object-fit: contain;
}

.game-detail-info {
    max-width: 700px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.4;
}

.game-detail-btns .custom-btn {
    min-width: 288px;
}

.game-detail-btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-detail-btns .custom-btn:not(:last-child) {
    margin-right: 20px;
}

.scrollDown {
    bottom: 0;
    z-index: 1;
}

.scrollDown a {
    color: #fff;
    display: inline-block;
    text-align: center;
}

.game_detail_slider {
    padding: 90px 0 215px 0;
    position: relative;
}

.detail_slider-right {
    position: relative;
    z-index: 2;
}

.detail_slider-inner .detail_slider-left {
    flex: 0 0 63%;
    max-width: 63%;
    padding-right: 10px;
}

.detail_slider-inner .detail_slider-right {
    flex: 0 0 33%;
    max-width: 33%;
    padding-left: 40px;
}

.detailSlider .detail_slider_box, .detail-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detailSlider .detail_slider_box {
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.detail_slider_box video, .detail_slider_box iframe, .detail-thumb iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.detailSlider .detail_slider_box img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.poster .play-video-btn {
    width: 100px;
    height: 100px;
}

.detailSliderThumb .detail-thumb {
    height: 125px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
    border: 2px solid transparent;
    position: relative;
}

.detailSliderThumb .play-video-btn {
    visibility: visible;
    opacity: 1;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.detailSliderThumb .detail-thumb.slick-current.slick-active {
    border-color: var(--theme-color);
}

.detailSliderThumb .detail-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.detailSliderThumb .slick-list {
    margin: 0 -12px;
}

.detailSliderThumb {
    margin: 20px 0;
}

.detail_slider-inner .detail_slider-right h2 {
    font-weight: 700;
    font-size: 36px;
    color: var(--theme-color2);
    position: relative;
    padding: 0 0 24px 0;
    margin-bottom: 24px;
}

.detail_slider-inner .detail_slider-right h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 230px;
    height: 4px;
    background-color: var(--theme-color);
    border-radius: 20px;
}

.detail_slider-inner .detail_slider-right p {
    margin-top: 23px;
}

.detail_slider-inner .detail_slider-right .custom-btn {
    min-width: 288px;
    margin-top: 30px;
}

section.game_type {
    background: url('../images/game_type.jpg') no-repeat;
    background-size: cover;
    padding: 128px 0;
}

.game_type_inner .discover-full-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    grid-row-gap: 30px;
}

.game_type_inner .discover-full-detail .discover-detail-box {
    justify-content: center;
    width: 30%;
    padding: 38px 0;
    border-radius: 16px;
    filter: drop-shadow(0px 0px 9px transparent);
    background-color: var(--theme-color2);
    transition: 0.7s;
    cursor: pointer;
}

.game_type_inner .discover-full-detail .discover-detail-box:hover {
    filter: drop-shadow(0px 0px 9px var(--theme-color));
}

.game_type_inner .discover-full-detail .discover-detail-box .discover-detail-text {
    padding-left: 36px;
}

.game_type_inner .discover-full-detail .discover-detail-box .discover-detail-text::after {
    left: 18px;
}

.special_expand {
    background: url('../images/expand-bg.png') no-repeat;
    background-position: center 50px;
    padding: 263px 0;
}

.special_inner .special_expand_text {
    flex: 0 0 60%;
    max-width: 60%;
}

.special_inner .special_expand_img {
    flex: 0 0 40%;
    max-width: 40%;
}
.special_expand_img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.special_expand_text .special_text_inner h2 {
    font-size: 50px;
    line-height: 1.2;
}

.special_expand_text .special_text_inner p {
    margin-top: 36px;
    line-height: 1.4;
    font-size: 14px;
    line-height: 22px;
}

.special_expand_text .special_text_inner ul, .special_expand_text .special_text_inner ol {
    margin-top: 18px;
}

.special_expand_text .special_text_inner ul li {
    list-style: circle;
    margin-left: 15px;
}

.special_expand_text .special_text_inner ul li, .special_expand_text .special_text_inner ol li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
}

.special_inner .special_expand_text .special_text_inner {
    max-width: 600px;
}

.special_expand .special_inner.expand_bottom {
    margin-top: 118px;
}

.expand_bottom .special_expand_text .special_text_inner {
    margin: 0 0 0 auto;
}

.game_play {
    padding: 150px 0 100px;
    position: relative;
    overflow: visible;
    background-color: #000;
}

.game_play_inner {
    padding: 0 40px;
}

.game_play:before, .game_play:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.game_play .dg-small-container {
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.game_play .game_play_logo.horizontalCenter {
    top: 0;
    position: absolute;
    max-width: 390px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.game_play_text h2 {
    color: var(--white);
}

.game_play_text p, .game_play_text ul, .game_play_text ol {
    color: var(--white);
    margin-top: 38px;
}

.game_play_text ul li {
    list-style: circle;
    margin-left: 20px;
}

.game_play_text ul li, .game_play_text ol li {
    margin-bottom: 5px;
}

.game_play_text p span {
    font-weight: 700
}

.game_play_inner .game_play_text {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 56px;
}

.game_play_inner .game_play_img {
    flex: 0 0 56.3%;
    max-width: 56.3%;
}

.game_play_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game_play_inner.game_play_bottom .game_play_text {
    padding: 0 0 0 56px;
}

.game_play .game_play_inner.game_play_bottom {
    margin-top: 127px;
}

.similar_games {
    padding: 130px 0;
}

.similar_games .SimilarSlider {
    margin-top: 69px;
    padding: 0 60px;
}

.SimilarSlider .slick-list {
    margin: 0 -16px;
}

.SimilarSlider .slick-list .slick-slide {
    margin: 0 16px;
}


@media screen and (min-width: 1350px ) {
    .slick-slide {
        width: 1200px;
    }
    .ourServiceTab .slick-slide {
        width: 250px;
    }
    .serviceSlider .slick-slide {
        width: 920px;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1440px) {
    .slick-slide {
        width: 1000px;
    }
    .serviceSlider .slick-slide {
        width: 920px;
    }
    .ourServiceTab .slick-slide {
        width: 250px;
    }

    .heroSlider .hero_slide_box {
        min-height: 500px;
    }
}


.SimilarSlider .similar_slider_box .similar_slider_img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 225px;
    overflow: hidden;
}
.similar_slider_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.SimilarSlider button.slick-prev::before, .SimilarSlider button.slick-next::before {
    font-family: 'icomoon' !important;
    color: var(--theme-color2);
    font-size: 26px;
    font-weight: 600;
    opacity: 1;
}

.SimilarSlider button.slick-prev {
    left: 0;
}

.SimilarSlider button.slick-prev::before {
    content: "\e906";
}

.SimilarSlider button.slick-next::before {
    content: "\e907";
}

.SimilarSlider button.slick-next {
    right: 0;
}

.game-single .dg-small-container {
    max-width: 1200px;
}

.game-single .dg-small-container .special_inner {
    padding: 0 40px
}

.game_detail_tags {
    flex-wrap: wrap;
    grid-gap: 10px;
}
.game_detail_tags .gameTag {
    text-align: center;
    height: 30px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 12px;
    color: var(--white);
}

.game_detail_tags .coming {
    background-color: #eda224;
}

.game_detail_tags .new {
    background-color: #458FFF;
}

.game_detail_tags .slot {
    background-color: #c43f83;
}

.game_info {
    font-size: 14px;
    line-height: 22px;
}

.games_section .game_hover_left .discover-detail-box .discover-detail-img {
    width: 64px;
}

.games_section .game_hover_left .discover-detail-box .discover-detail-img img {
    object-fit: contain;
    border-radius: 0;
}


/* Pop up demo */

.demo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.demo-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    border-radius: 10px;
    background: #000;
}

#demo-popup-iframe {
    height: 100%;
    width: 100%;
    border: 0;
    padding: 0;
}

.close-popup {
    position: absolute;
    right: -10px;
    top: -15px;
    font-size: 24px;
    cursor: pointer;
    background: #fff;
    border-radius: 50px;
    padding: 10px 17px;
    font-weight: bold;
}

/* start service page css */
.service_page_banner {
    background: url('../images/service-page-banner.png') no-repeat;
    background-size: cover;
    padding-top: 113px;
    position: relative;
}
.service_page_banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 86%, #FFFFFF 123.34%);
    height: 50%;
}

.service_game_setting .dg-container {
    max-width: 1710px;
}

.service_page_banner .page-title {
    max-width: 1132px;
    margin: 13.6% auto 0;
}

.service_page_banner .page-title p {
    margin-top: 23px;
    max-width: 600px;
    margin: 15px auto;
}

.servicesTab ul {
    position: relative;
    z-index: 2;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 15px;
    transition: top 0.7s;
    top: 0;
}

.servicesTab .ourService.position-fixed {
    position: fixed;
    top: 75px;
    width: 100%;
    left: 0;
    padding: 0;
    z-index: 11;
    transform: translateY(20px);
    animation: fadeIn 0.7s ease 1 forwards;
}

.servicesTab .ourService.position-fixed li a {
    background-color: #fff;
}

.servicesTab .ourService.position-fixed li a.active {
    background-color: var(--theme-color);
}

.servicesTab .ourService.position-fixed li a:hover {
    background-color: var(--theme-color);
}

.servicesTab li a {
    border: 1px solid #CECECE;
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--theme-color2);
    font-size: 16px;
    transition: background-color 0.7s, border 0.7s;
    font-weight: 700;
    text-shadow: none;
}

.servicesTab .service_page_img {
    margin: 88px 0 -4px 0;
}

.servicesTab li a.active {
    background-color: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}

.service_game_setting {
    background: url('../images/service_game_setting.jpg') no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 90vh;
    display: flex;
    align-items: center;
}

.service_page_inner .service_inner_text {
    flex: 0 0 36%;
    max-width: 36%;
    padding-left: 110px;
}

.service_page_inner .service_inner_img {
    flex: 0 0 64%;
    max-width: 64%;
    overflow: hidden;
}

.service_game_setting.game_setting_after .service_inner_img {
    text-align: right;
}

.service_page_inner .service_inner_img img {
    max-width: 720px;
    min-height: 575px;
    object-fit: contain;
    max-height: 575px;
}

.service_page_inner .service_inner_text p {
    margin-top: 18px;
}

.service_page_inner .service_inner_text .custom-btn {
    border-color: var(--theme-color2);
    color: var(--theme-color2);
    min-width: 375px;
    margin-top: 59px;
}

.service_page_inner .service_inner_text .custom-btn:hover {
    color: var(--white);
    border-color: var(--theme-color);
}

.service_page_inner .service_inner_text h2 img {
    vertical-align: middle;
}

.game_setting_after::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url('../images/game-setting-before.png') no-repeat;
    background-size: cover;
    width: 479px;
    height: 292px;
    display: inline-block;
}

.game_setting_after::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/game-setting-after.png) no-repeat;
    background-size: 100%;
    min-width: 865px;
    min-height: 352px;
    max-width: 100%;
}

.service_game_setting .service_page_inner {
    position: relative;
    z-index: 1;
}

.service_game_div {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 503px;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color2);
}

.service_game_div.left {
    left: 0;
    right: 0;
}

.service_game_setting .scrollDown a {
    color: var(--theme-color2);
    opacity: 0.5;
}

.campaign-manager .service_inner_text {
    padding-left: 40px;
}

.service_inner_text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.returnTopBtn {
    width: 50px;
    border: 1px solid var(--white);
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: #fff;
    transform: rotate(180deg);
    font-size: 13px;
    z-index: 10;
    cursor: pointer;
}

.returnTopBtn:hover {
    background-color: #b79546;
}

/* start news page css */
.newsPage .dg-small-container {
    max-width: 1440px;
}

.newsSlider .newsBox {
    position: relative;
}

.news_page_banner  .newsBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.news_page_banner .newsSliderText {
    z-index: 3;
    padding: 0 20px;
}

.newsSlider.slick-slider {
    margin-bottom: 0;
}

.news_page_banner .h2-style, .news_page_banner.p-style {
    color: #fff;
}
.newsBox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news_page_banner .newsBox:before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 15%, #191919 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news_page_banner .newsBox, .newsSlider {
    height: 562px;
    overflow: hidden;
}

.tab-content-news .NewsSliderBox h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}
.tab-content-news .NewsSliderBox .text {
    display: none;
}

.tab-content-news .NewsSliderText {
    padding: 5px 10px 20px 20px;
}
.game_tabs_outer .tab-content-news {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 180px;
    grid-gap: 26px;
}

.tab-content-news .NewsSliderBox:nth-child(21n + 3) .text,
.tab-content-news .NewsSliderBox:nth-child(21n + 8) .text,
.tab-content-news .NewsSliderBox:nth-child(21n + 16) .text {
    display: block;
}

.tab-content-news .NewsSliderBox:nth-child(21n + 3) {
    grid-row: span 3;
    grid-column: 3/6;
}

.tab-content-news .NewsSliderBox:nth-child(21n + 8) {
    grid-row: span 2;
    grid-column: 1/3;
}

.tab-content-news .NewsSliderBox:nth-child(21n + 16) {
    grid-row: span 3;
    grid-column: 2/5;
}

.tab-content-news .NewsSliderBox {
    text-align: left;
    background: #000;
}

.newsSlider .newsSliderText .dg-small-container {
    max-width: 1250px;
}

.newsSlider .newsSliderText p {
    color: #ffff;
}

.newsSlider .newsSliderText .custom-btn {
    min-width: 264px;
    margin-top: 19px;
}

.newsSlider ul.slick-dots {
    bottom: 0;
}

.newsSlider ul.slick-dots li button {
    width: 14px;
    height: 8px;
    background-color: #D9D9D9;
    border-radius: 20px;
    transition: width 0.7s, 0.7s;
}

.newsSlider ul.slick-dots li {
    margin: 0 4px;
    width: auto;
}

.newsSlider ul.slick-dots li button::before {
    content: none;
}

.newsSlider ul.slick-dots li.slick-active button {
    width: 34px;
    background-color: var(--theme-color);
}

.newsPage .our_news {
    padding: 0;
}

.newsPage .our_news .NewsSliderText {
    text-align: left;
}

.left_view_right ul li {
    flex: 0 0 31%;
    max-width: 31%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.grid_center_view .grid_view_left ul li {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}


.game_tab_content .grid_center_view {
    margin-top: 30px;
}

.newsPage .game_tab_content .news_tab {
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
    width: 100%;
}

.newsPage .game_tab_content .news_tab.active {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.paginaitonOuter {
    margin-top: 76px;
}

.paginaitonOuter ul {
    justify-content: center;
}

.paginaitonOuter ul a {
    display: inline-block;
    width: 62px;
    height: 52px;
    border: 1px solid #CECECE;
    border-radius: 96.5358px;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    color: var(--theme-color2);
    font-weight: 700;
    margin: 0 9px;
}

.paginaitonOuter ul a.active, .paginaitonOuter ul a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.keep-touch .bottom_bg {
    position: absolute;
    right: 0;
    top: -10px;
    max-width: 640px;
}

.custom_select select option {
    color: var(--theme-color2);
}

/* Start affilates page css here */
.affiliates-banner .newsSliderText .dg-small-container {
    text-align: center;
    max-width: 750px;
}

section.affiliates-outer {
    padding: 25px 0 100px;
}

.gamblers-pick {
    min-height: 266px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliates-box-outer {
    flex: 0 0 32%;
    background: #151515;
    border-radius: 10px 10px 0 0;
    transition: 0.7s;
    position: relative;
}

section.affiliates-outer .d-flex {
    flex-wrap: wrap;
}

.glambers-pick-text {
    background: #FFFFFF;
    padding: 26px 28px;
    border-radius: 0 0 10px 10px;
}

.glambers-pick-text h3 {
    font-size: 30px;
    line-height: 37px;
    font-weight: 700;
    color: var(--black);
}

.glambers-pick-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black);
}

section.keep-touch.paddingAdd.affiliates {
    background: #191919;
}

/* affiliateBox css */
.affiliates-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.affiliateBox {
    width: 100%;
    height: 220px;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    transition: 1s;
    position: relative;
    text-align: center;
}

.affiliateBox, .affiliate_box_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.affiliate_box_img {
    background-color: #000;
    position: relative;
    width: 100%;
    height: 100%;
}

.affiliate_img_hover img {
    width: auto;
    object-fit: contain;
    height: auto;
    object-position: center;
}

.affiliateBox .hoverText span.icon {
    font-size: 25px;
    font-weight: bold;
    color: var(--theme-color);
    background-color: transparent;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    line-height: 40px;
    position: absolute;
    top: 5px;
    right: 5px;
    text-align: center;
    padding-left: 3px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.affiliate_box_content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    position: absolute;
    top: 0;
    left: 0;
    padding: 26px;
    z-index: 2;
    transition: all 0.7s ease;
    transform: translateY(220px);
}

.affiliate_box_content h2,
.affiliate_box_content h3 {
    line-height: 1.1;
}
.affiliate_box_content h2 {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
}
.affiliate_box_content h3 {
    font-weight: 500;
    font-size: 16px;
}

.affiliate_box_content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: #5f5f5f;
    margin-top: 34px;
    font-style: italic;
    padding: 20px;
}

.affiliate_box_content p {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    quotes: "\201C""\201D";
}

.affiliate_box_content p:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
.affiliate_box_content p:after {
    color:#ccc;
    content:close-quote;
    font-size:4em;
    line-height:.1em;
    vertical-align:-0.6em;
}

.affiliate_box_content p span {
    display: inline;
}

.affiliate_box_content .hide-text::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.affiliate_box_content .text-hidden {
    width: 100%;
    height: 90%;
    overflow-y: auto;
    padding: 0;
}

.affiliate_img_hover {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 15px;
    max-width: 300px;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    transition: all 0.7s ease-in-out;
}

.hoverTextLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 48px;
    right: 9px;
    background-color: #fff;
    width: 280px;
    padding: 10px;
    word-wrap: break-word;
    text-align: center;
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    overflow: hidden;
}

.hoverTextLink a {
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-color);
}

.hoverTextLink h3 {
    color: var(--theme-color2);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    display: inline-block;
}

.affiliateBox:hover .affiliate_box_content {
    transform: translateY(0);
}

.affiliateBox:not(:hover) .hidden {
    opacity: 0;
    animation: fade-out 0.5s;
}

.affiliateBox:hover .hidden {
    opacity: 1;
    animation: fade-in .5s;
}

.affiliateBox:hover .hoverText span.icon {
    opacity: 1;
    animation: fade-in .5s;
    visibility: visible;
}

.affiliateBox:hover .affiliate_img_hover {
    opacity: 0;
    animation: fade-out .5s;
}

.affiliateBox:hover .hoverText span.icon {
    background-color: #fff;
}

.icon-inspect:hover + .hoverTextLink, .hoverTextLink:hover {
    opacity: 1;
    visibility: visible;
}

/* Safari and Chrome */
@-webkit-keyframes slide {
    from {
        height: 120px;
    }
    to {
        height: 250px;
    }
}

/* Firefox */
@-moz-keyframes slide {
    from {
        height: 120px;
    }
    to {
        height: 250px;
    }
}

/* Opera */
@-o-keyframes slide {
    from {
        height: 120px;
    }
    to {
        height: 250px;
    }
}

/* IE10 */
@-ms-keyframes slide {
    from {
        height: 120px;
    }
    to {
        height: 250px;
    }
}

@keyframes slide {
    from {
        height: 120px;
    }
    to {
        height: 250px;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* End affilates page css here */
/* promo banner css */
section.keep-touch.promoBanner {
    background: linear-gradient(266.25deg, #BD01FF -4.05%, #14ABFF 97.64%), #191919;
    padding-bottom: 122px;
}

section.keep-touch.promoBanner .promoText {
    max-width: 988px;
}

.keep-touch .p-style  {
    color: #fff;
}

section.keep-touch.promoBanner .promoText p {
    color: #fff;
    margin-top: 36px;
}

section.keep-touch.promoBanner::after {
    content: '';
    background: url('../images/promo_icon2.png') no-repeat;
    position: absolute;
    left: 44%;
    top: 0;
    width: 240px;
    height: 248px;
}

section.games_section.newsPage {
    padding-bottom: 60px;
}

/** Single page **/
.inner-post-banner {
    justify-content: flex-start;
}

.post_section, .popular-block .h2-style {
    color: #fff;
}
.post_section {
    background-image: url("../images/singal-bg.jpg");
    padding: 120px 0 150px;
    background-size: cover;
}
.webp-support .post_section {
    background-image: url("../images/singal-bg.webp");
}
.post_section h1,
.post_section h2,
.post_section h3,
.post_section h4,
.post_section h5 {
    color: var(--theme-color);
    text-align: left;
    margin: 50px 0;
}

.post_section h2 {
    font-size: 30px;
}

.post_section h3 {
    font-size: 28px;
}

.post_section h4 {
    font-size: 26px;
}

.post_section h5 {
    font-size: 24px;
}

.content-post p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.content-post {
    position: relative;
    overflow: hidden;
    margin-bottom: 150px;
}

.content-post a {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: underline;
}
.content-post a:hover {
    text-decoration: none;
}
.content-post ol,
.content-post ul {
    list-style-type: none;
    position: relative;
    margin: 40px 0 40px 32px;
}

.content-post ul {
    margin-left: 20px;
}

.content-post ol {
    counter-reset: ordered;
}

.content-post ul li:not(:last-child) {
    margin-bottom: 22px;
}

.content-post ol li:not(:last-child) {
    margin-bottom: 26px;
}

.content-post ol li,
.content-post ul li {
    color: #fff;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.content-post ul li::before,
.content-post ol li::before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: var(--theme-color);
    border-radius: 50%;
    overflow: hidden;
}

.content-post ul li::before {
    content: '';
    background-color: var(--theme-color);
    width: 10px;
    height: 10px;
    margin-left: -25px;
    margin-top: 8px;
}

.content-post ol li::before {
    border: 2px solid var(--theme-color);
    content: counter(ordered);
    counter-increment: ordered;
    width: 37px;
    height: 37px;
    font-weight: 100;
    margin-left: -50px;
    margin-top: -7px;
}

.content-post .wp-block-image, .content-post iframe {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.inner-post-banner .inner-page-content h1 {
    text-align: left;
}
.section-title,
.inner-post-banner .inner-page-content h1 {
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1;
}

.popular-block .h2-style {
    text-align: center;
    margin-bottom: 60px;
}

.popular-grid {
    display: grid;
    grid-gap: 28px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 180px;
}

.popular-grid > *:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
}

/**** About Page ****/
.about-hero {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 1;
    padding: 70px 0px 20px;
}

.about-hero:before,
.about-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero:before {
    background-color: #191919;
    z-index: -1;
    opacity: .4;
}

.about-hero:after {
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.00) 0.07%, #191919 100%);
}

.about-hero__image {
    position: absolute;
    max-width: 880px;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.about-hero__image img,
.section-image img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.about-hero__title {
    color: #fff;
    margin: 10px auto;
    max-width: 600px;
}

.about-hero__p {
    color: #fff;
}

.about-hero__content {
    padding: 150px 20px 100px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}

/****/
.about-content {
    position: relative;
    display: grid;
    row-gap: 40px;
    padding: 100px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}
.about-content > section {
    z-index: 2;
}

.about-content section:first-child > div,
.about-content section:last-child > div {
    position: relative;
    z-index: 2;
}

.about-content:before,
.about-content:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-content:before,
.about-content:after {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/about/bg-pattern-white.jpg");
    left: 0;
    width: 100%;
    height: 100%;
}
.about-content:before {
    top: -5%;
    transform: rotate(180deg);
    background-position: bottom;
}
.about-content:after {
    top: 20px;
    background-position: bottom;
}

.pageOuter-about .section-content {
    padding: 0 40px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 40px 60px;
}

.section-content-left .section-image {
    grid-column: 2;
}

.section-content-left .section-info {
    grid-row: 1;
}

.section-info {
    max-width: 720px;
}

.section-content h2 {
    margin-bottom: 26px;
    font-size: 40px;
}

.section-text p:not(:last-child) {
    margin-bottom: 24px;
}

.section-btn {
    border-radius: 65px;
    background: var(--theme-color);
    margin-bottom: 26px;
}
/**/
.purpose-s {
    overflow: visible;
    margin: 160px 0 170px;
}

.purpose-s__block {
    position: absolute;
    background-color:var(--black);
    opacity: .9;
    height: 100%;
    width: 100vw;
    left: 10%;
    top: 0;
}

.purpose-s .dg-small-container {
    position: relative;
    z-index: 3;
    padding-top: 130px;
    padding-bottom: 130px;
}

.purpose-s__block:before,
.purpose-s:before,
.purpose-s__block:after {
    content: '';
    position: absolute;
}

.purpose-s:before,
.purpose-s__block:after {
    width: 860px;
    height: 877px;
    background-repeat: no-repeat;
    background-size: contain;
}

.purpose-s:before {
    background-image: url("../images/round-decor.svg");
    top: 236px;
    left: -486px;
    z-index: 1;
}

.purpose-s__block:after  {
    background-image: url("../images/round-decor-half.svg");
    top: -680px;
    right: 20%;
    z-index: 4;
    transform: translateX(52%);
}

.purpose-s__block:before {
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.purpose-s__image {
    position: absolute;
    top: 50%;
    left: -140px;
    transform: translateY(-50%);
    max-width: 420px;
    z-index: 1;
}

.purpose-s__info {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 340px;
    z-index: 4;
}

/** Default section */
.default-section {
    padding: 80px 0;
}
.default-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.default-section h1, .default-section h2, .default-section h3, .default-section h4, .default-section h5 {
    margin: 20px 0;
    text-align: center;
}

/** Form **/
.contact_section {
    background-image: url("../images/contact-bg.jpg");
    padding: 80px 0;
}
.contact_section .dg-small-container {
    max-width: 1590px;
}

.webp-support .contact_section {
    background-image: url("../images/contact-bg.webp");
}
.contact_section_wrap {
    background-image: url("../images/form-bg.png");
    background-size: cover;
    position: relative;
    border-radius: 10px;
    padding: 70px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(400px, 658px);
    grid-gap: 20px;
}

.webp-support .contact_section_wrap {
    background-image: url("../images/form-bg.webp");
}
.contact_section_form {
    position: relative;
    z-index: 2;
    grid-column: 2;
    width: 100%;
    max-width: 658px;
}

.block-form .wpcf7-form {
    max-width: 570px;
    margin: 0 auto;
}

.block-form .wp-block-heading {
    position: absolute;
    top: 0;
}
.block-form  div.wpcf7 {
    margin-top: 0;
}
.wpcf7-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.contact-mail {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    grid-gap: 22px;
}

.contact-mail img {
    width: 40px;
    height: auto;
}
.contact-mail > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    grid-gap: 22px;
}
.contact-mail a {
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    position: relative;
    display: inline-block;
}
.contact-mail a span {
    font-weight: 400;
    display: block;
    font-size: 14px;
}
.contact-mail a:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    border-radius: 37px;
    background-color: var(--theme-color);
}

.contact_section_decor {
    max-width: 100%;
    width: 40%;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.contact_section_decor img {
    width: 100%;
    object-fit: contain;
}
.block-form .transparent-two-columns p:nth-of-type(1),  .block-form .transparent-two-columns p:nth-of-type(2) {
    width: 100%;
    margin: 0
}
.block-form .transparent-two-columns p:nth-of-type(3),
.block-form .transparent-two-columns p:nth-of-type(4),
.wpcf7 form .wpcf7-response-output{
    grid-column: 1/-1;
}

.wpcf7-form p {
    position: relative;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
    display: block;
}

.wpcf7-form p .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    top: unset;
    bottom: -17px;
    left: 0;
    line-height: 1;
}

.block-form .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-date, .block-form p,
.block-form .block-form .transparent-two-columns p,
.block-form .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-number, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-quiz, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text, .block-form .transparent-two-columns select.wpcf7-form-control.wpcf7-select, .block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea {
    margin: 0;
}

.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit, .block-form .wpcf7-submit, .block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-submit:not([disabled]) {
    margin: 10px auto 0;
    width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 5px auto;
}

.block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea, .block-form textarea {
    height: 186px;
}

.block-form .transparent-two-columns input.wpcf7-form-control.wpcf7-text, body .block-form .transparent-two-columns textarea.wpcf7-form-control.wpcf7-textarea,
.block-form input, .block-form textarea {
    font-size: 14px;
    text-align: unset;
    resize: none;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
}
.block-form .wpcf7-submit {
    text-align: center;
    max-width: 392px;
    min-width: unset;
}

/* start responsive css */
@media screen and (min-width: 1441px) {
    .our_news .OurNewsOuter .OurNewsThumb {
        flex: 0 0 560px;
        max-width: 560px;
    }

    .our_news .OurNewsOuter .OurNewsSlider {
        flex: 0 0 850px;
        max-width: 850px;
    }

    .grid_left_view .left_view_left {
        flex: 0 0 558px;
        max-width: 558px;
    }

    .left_view_right ul li {
        flex: 0 0 265px;
        max-width: 265px;
    }

    .grid_center_view .grid_view_left ul li {
        flex: 0 0 265px;
        max-width: 265px;
    }

    .grid_center_view .grid_view_center {
        flex: 0 0 850px;
        max-width: 850px;
    }

    .service_page_inner .service_inner_img {
        flex: 0 0 945px;
        max-width: 945px;
    }

    .service_page_inner .service_inner_img img {
        max-width: 945px;
        min-height: 575px;
        max-height: 750px;
        width: 100%;
    }

    #reports .dg-container {
        max-width: 100%;
        padding-left: 108px;
    }

    #reports .service_page_inner .service_inner_img {
        flex: 0 0 1160px;
        max-width: 1160px;
    }

    #reports .service_page_inner .service_inner_img img {
        max-width: 100%;
    }

    #support-portal .service_page_inner .service_inner_img img {
        max-width: 88%;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
    .dg-container, .dg-small-container {
        padding: 0 20px;
    }

    .discover_games::before {
        min-width: 406px;
        min-height: 191px;
        background-size: cover;
    }

    .discover_games::after {
        min-width: 618px;
        height: 225px;
        background-size: cover;
    }

    .discover_tabs_full .discover-full-inner::after {
        right: -50px;
    }

    .aztec_warrior {
        background-size: 100%;
    }

    .aztec_warrior {
        padding: 100px 0 85px;
    }

    .aztec_warrior_text .h2-style {
        font-size: 51px;
        line-height: 61px;
    }

    .our_services {
        padding: 80px 0;
    }

    .our_news .OurNewsOuter .OurNewsThumb ul {
        column-gap: 6%;
    }

    .keep-touch-subscribe.keep_touch_img {
        width: 47%;
    }

    .keep-touch .h2-style {
        font-size: 50px;
    }

    .game_tabs_outer .tab-content {
        column-gap: 1.5%;
    }

    .detail_slider-inner .detail_slider-left {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .detail_slider-inner .detail_slider-right {
        flex: 0 0 35%;
        max-width: 35%;
    }

    .special_expand {
        padding: 150px 0;
    }

    .service_page_inner .service_inner_img {
        flex: 0 0 62%;
        max-width: 62%;
    }

    .game_setting_after::before {
        width: 359px;
        height: 219px;
    }

    .game_setting_after::after {
        min-width: 585px;
        min-height: 232px;
    }

    .service_inner_text h2 {
        font-size: 30px;
    }

    .service_page_inner .service_inner_text h2 img {
        max-width: 55px;
    }

    .service_game_setting {
        padding: 150px 0;
    }

    .service_page_banner {
        padding-top: 68px;
    }

    .servicesTab li a {
        font-size: 17px;
    }

    .left_view_right ul.row-gap {
        column-gap: 3.5%;
    }

    .dg-small-container .our_news .dg-small-container {
        padding: 0;
    }
}

@media screen and (max-width: 1280px) {
    .heroSlider .hero_slide_box {
        min-height: 450px;
        padding: 30px 40px 30px 80px
    }
    .heroSlider .hero_slide_box h2 {
        font-size: 60px;
    }
    .discover_tabs_full .discover-full-inner::after {
        right: -36px;
    }
    .game-grid-wrap {
        padding: 40px 55px;
    }
    .game-grid-box .game_hover_left {
        flex: 0 0 70%;
        max-width: 70%;
    }
    .games_section .game_hover_left .discover-detail-box .discover-detail-img {
        width: 44px;
    }
    .discover-full-detail .discover-detail-box h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    .detail_slider-inner .detail_slider-right {
        padding-left: 20px;
    }
    .detail_slider-inner .detail_slider-right h2 {
        font-size: 50px;
    }

    .keep-touch .h2-style {
        font-size: 70px;
    }

    /** News **/
    .game_tabs_outer .tab-content-news {
        grid-template-columns: repeat(4, 1fr);
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 3) {
        grid-column: 3/5;
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 8) {
        grid-column: 1/2;
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 16) {
        grid-column: 2/4;
    }

    /***/

    .affiliate_box_content {
        padding: 20px;
        transform: translateY(280px);
    }

    /***/
    .popular-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .popular-grid > *:first-child {
        grid-column: 1/3;
        grid-row: 1/3;
    }

    /** About **/
    .purpose-s .dg-small-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .purpose-s:before, .purpose-s__block::after {
        width: 684px;
        height: 700px;
    }
    .purpose-s__image {
        top: 55%;
        left: -134px;
        max-width: 427px;
        max-height: 591px;
    }

    .purpose-s__block::after {
        top: -541px;
    }
}

@media screen and (max-width: 1054px){
    .game_tab_top {
        flex-direction: column;
        position: relative;
    }
    .game_top_left ul {
        grid-gap: 10px;
    }
    .game_tab_top .game_top_left {
        max-width: 100% ;
    }
    .game_tab_top .game_top_center {
         max-width: 60%;
    }
    .game_tab_top .game_top_right {
        max-width: 40%;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .game_tab_top .game_top_center {
        margin: 15px 0 0 0;
    }
    .search_label input {
        width: 360px;
    }
}

@media screen and (min-width: 1025px) {
    .header_menu .head_button.mobile_btn {
        display: none;
    }

    .header-inner .header_menu .head_menu_btn {
        display: none;
    }

    .header-inner .header_menu .navBar button.menu-open {
        display: none;
    }

    .footerOuter .social-icons {
        margin-top: 113px;
    }

    .game-grid-mobile {
        display: none;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
    .header_menu li a {
        font-size: 14px;
    }

    .header-inner .head_button a {
        min-width: 96px;
    }

    .newsSlider .newsSliderText .dg-small-container {
        max-width: 96%;
    }

    section.affiliates-outer .dg-small-container {
        padding: 0 20px;
    }

    .glambers-pick-text p {
        font-size: 18px;
    }

    .glambers-pick-text h3 {
        font-size: 28px;
    }
}

/* menu css start */
@media screen and (max-width: 1024px) {
    body.overflow {
        overflow: hidden;
    }
    .featured-box {
        align-items: flex-end;
    }
    .featured-text {
        margin: 60px 0;
        padding-left: 10px;
        width: 60%;
    }
    .featured-asset {
        width: 40%;
    }
    .p-style {
        font-size: 14px;
    }

    .headerOuter .header-inner {
        justify-content: space-between;
        padding: 18px 0;
    }

    .header_menu .head_menu_btn {
        text-align: right;
        display: flex;
    }

    .dg-container, .dg-small-container {
        padding: 0 20px;
    }

    header.headerOuter {
        padding: 0;
        background: #191919;
        box-shadow: 0 0 25px 0 rgba(198, 165, 89, 0.10);
    }

    .headerOuter .header-inner .logo {
        max-width: 205px;
        height: 45px;
        flex: content;
    }

    .header-inner .head_button {
        flex: 0 0 0;
        max-width: 0;
    }
    .label-logo {
        max-width: 230px;
        margin: 0 auto 10px;
    }
    .label-logo svg {
        width: 100% ;
    }
    .headerOuter .header-inner .header_menu {
        flex: auto;
        max-width: fit-content;
        text-align: right;
    }
    .header_menu .navBar ul {
        height: 100%;
        overflow-y: auto;
        max-height: 72vh;
    }

    .header-inner .head_button {
        display: none;
    }

    .header_menu .head_button.mobile_btn {
        display: grid;
        margin: auto auto 50px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
        grid-gap: 11px;
    }

    .header-inner .header_menu .navBar {
        position: fixed;
        display: flex;
        flex-direction: column;
        left: 0;
        top: 60px;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* new browsers */
        min-height: -webkit-fill-available;
        overflow: hidden;
        max-width: 100%;
        background: url('../images/mobile-menu-b.svg') #191919 no-repeat bottom;
        background-size: contain;
        z-index: 11;
        padding: 50px 0;
        transform: translateX(-100%);
        transition: all 0.4s linear;
    }

    body.menu-open .header-inner .header_menu .navBar {
        transform: translateX(0);
    }

    .header_menu .navBar button.menu-open {
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .header-inner .header_menu .navBar ul li {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    .header_menu li a {
        background-color: transparent;
        display: block;
        padding: 15px 20px;
    }

    .header_menu li a:hover, .header_menu li.current_page_item > a:hover,
    .header_menu li.current_page_item > a {
        background-color: #1F1F1F;
    }

    .header_menu li a {
        font-size: 17px;
    }
    .header-inner .head_button a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        height: 44px;
        line-height: 1.1;
    }

    .header_menu .burger-icon {
        border: none;
        box-shadow: none;
        background-color: transparent;
        color: #fff;
        padding: 0;
        cursor: pointer;
        width: 24px;
    }

    .burger-icon:before,
    .burger-icon:after,
    .burger-icon span {
        background: #fff;
        content: "";
        display: block;
        height: 2px;
        border-radius: 3px;
        margin: 6px 0;
        transition: all 0.5s linear;
    }
    .menu-open .burger-icon::before {
        transform: translateY(8px) rotate(135deg);
    }
    .menu-open .burger-icon:after {
        transform: translateY(-8px) rotate(-135deg);
    }
    .menu-open .burger-icon span {
        transform: scale(0);
    }

    .header_menu li a {
        font-size: 15px;
    }

    .hero_slide_box iframe {
        min-width: 82.77vh;
    }

    .serviceSlider .service-slide-box {
        height: 523px;
    }

    .keep-touch-home .keep_touch_img,
    .keep-touch .keep_touch_img {
        display: none;
    }
    .keep-touch-subscribe::before {
        display: none;
    }

    .keep-touch-form .form-group {
        display: grid;
        row-gap: 15px;
    }
    .keep-touch-form .form-group input.form-control {
        display: flex;
        min-width: auto;
        width: 100%;
        margin: 0;
    }

    .game-grid-mobile {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        z-index: 1;
        border-radius: 10px;
    }
    .discover_tabs_outer .discover_tabs_full,
    .discover_tabs_outer .discover_tabs_button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .discover_tabs_outer .discover_tabs_button {
        flex-direction: column;
    }
    .discover_tabs_button .discover-info {
        flex: 0 0 47.2%;
        max-width: 47.2%;
    }
    .serviceSlider::before, .serviceSlider::after {
        width: 10%;
    }
    .news_page_banner .newsBox, .newsSlider {
        height: 464px;
    }
    /****/
    .tab-content-news .NewsSliderBox {
        grid-row: span 2;
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 3),
    .tab-content-news .NewsSliderBox:nth-child(21n + 8),
    .tab-content-news .NewsSliderBox:nth-child(21n + 15){
        grid-column: 1/3;
    }

    .tab-content-news .NewsSliderBox:nth-child(21n + 16) {
        grid-column: unset;
        grid-row: unset;
    }

    /***/
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .popular-grid > :first-child {
        grid-column: auto;
        grid-row: auto;
    }

    /***/
    .section-content {
        grid-gap: 14px;
    }
    .about-content {
        text-align: center;
    }
    .about-hero__image {
        max-width: 650px;
    }

    .purpose-s {
        margin: 40px 0;
    }

    .section-btn {
        margin: 0 auto 26px;
    }
    .section-content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .about-content .section-image {
        max-width: 380px;
    }
    .about-content .section-info,
    .about-content .section-image {
        margin: 0 auto;
    }

    .section-content-left .section-info {
        grid-row: auto;
    }
    .section-content-left .section-image {
        grid-column: inherit;
    }

    .purpose-s__info {
        margin-left: 0;
    }
    .purpose-s__block {
        left: 0;
    }
    .purpose-s::before, .purpose-s__block::after {
        width: 563px;
        height: 578px;
    }
    .purpose-s__block::after {
        top: -445px;
        right: 5%;
    }
    .purpose-s::before {
        left: -180px;
    }

    .game_type_inner .discover-full-detail {
        grid-template-columns: repeat(2, 1fr);
    }
    .game_type_inner .discover-full-detail .discover-detail-box {
        width: 50%;
        padding: 20px;
    }

    .game-grid-hover.left {
        left: unset;
    }
    .game-grid-hover:before,.game-grid-box:nth-child(3n) .game-grid-hover::before  {
        left: 23%;
    }
    .game-grid-box.center-grid-after .game-grid-hover:before {
        left: 74%;
    }
    .game-grid-box:nth-child(3n) .game-grid-hover {
        right: calc(-100% - 20px);
    }

    .game-grid-box:nth-child(2n) .game-grid-hover {
        left: calc(-100% - 20px);
    }

    /** Contact Page **/
    .contact_section_wrap {
        padding: 30px;
        grid-template-columns: 1fr;
    }
    .contact_section_form {
        margin: 0 auto;
        grid-area: unset;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .h2-style {
        font-size: 38px;
    }

    .hero_banner .hero-banner-text p {
        font-size: 18px;
    }

    .heroSlider button.slick-prev.slick-arrow {
        left: 33px;
    }

    .heroSlider button.slick-next.slick-arrow {
        right: 49px;
    }

    .heroSlider .hero_slide_box h2 {
        font-size: 50px;
    }

    /* start 20-april-2023 */
    section.hero_banner h1.h2-style {
        font-size: 35px;
    }

    .hero_banner {
        padding: 120px 0 60px 0;
        overflow: hidden;
    }

    .discover_tabs_outer .discover_tabs_full {
        max-width: 100%;
    }

    .discover_tabs_outer.d-flex {
        display: unset;
    }

    .discover_games {
        padding: 60px 0 120px;
    }

    .discover-full-detail .discover-detail-box h3 {
        font-size: 16px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .discover-full-detail .discover-detail-box p {
        font-size: 15px;
    }

    section.discover_games .discover_tabs_outer .discover_tabs_button {
        max-width: 100%;
    }

    .discover_tabs_full {
        padding-bottom: 25px;
    }

    .discover_games::before {
        min-width: 23%;
        min-height: 142px;
        background-size: 100%;
    }

    .discover_games::after {
        min-width: 167px;
        height: 80px;
        background-size: cover;
    }

    .aztec_warrior_text .h2-style {
        font-size: 36px;
        line-height: 37px;
    }

    .aztec_warrior_text .p-style {
        font-size: 17px;
    }

    section.our_services .our_services {
        padding: 70px 0;
    }

    section.aztec_warrior .aztec_warrior_text .h2-style {
        font-size: 30px;
        line-height: 30px;
    }

    .our_services {
        padding: 70px 0;
    }

    section.aztec_warrior .aztec_warrior_text .p-style {
        font-size: 15px;
    }

    .aztec_warrior {
        background-size: cover;
        padding: 47px 0 0;
        background-position: center;
        height: 183px;
    }

    section.aztec_warrior .aztec_warrior_text .h2-style {
        font-size: 22px;
        line-height: 30px;
    }

    section.aztec_warrior .aztec_warrior_text .p-style {
        font-size: 13px;
        line-height: 8px;
    }

    .aztec_warrior .aztec_warrior_text .custom-btn {
        margin-top: 21px;
        font-size: 16px;
        min-width: 175px;
    }

    .section-heading h2.h2-style {
        font-size: 25px;
    }

    .section-heading p.p-style {
        font-size: 16px;
        line-height: 24px;
    }

    .our_services .ourServiceTab {
        padding-top: 0;
    }

    .our_services .ourServiceTab .custom-btn {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .our_services .ourServiceTab {
        padding: 40px 0;
    }

    .our_news .OurNewsOuter .OurNewsThumb ul {
        column-gap: 3%;
        grid-row-gap: 30px;
        width: 100%;
        padding-bottom: 35px;
    }

    .OurNewsOuter {
        flex-wrap: wrap;
    }

    .our_news .OurNewsOuter .OurNewsSlider {
        max-width: 100%;
        order: 1;
        -webkit-order: 1;
    }

    section.keep-touch h2.h2-style {
        font-size: 30px;
    }

    .keep-touch {
        padding: 80px 0;
    }

    .our_news {
        padding: 20px 0 0 0;
    }

    .keep-touch-form .form-group {
        margin-top: 25px;
    }

    .footer-logo img {
        object-fit: contain;
    }

    .footerOuter .footer-menu h3.menu_title {
        font-size: 18px;
    }

    .social-icons {
        padding-top: 12px;
    }

    .footerOuter .footer-menu {
        margin-right: 0;
    }

    .affiliate_logo_outer .affiliate_logo, .affiliate_logo_outer .affiliate_logo_bottom {
        width: 97%;
    }

    .affiliates_section {
        padding: 44px 0;
    }

    .affiliates_section .find-out {
        margin-top: 44px;
    }

    .discover_tabs_full .discover-full-inner::after {
        display: none;
    }

    .affiliate_logo_outer .slick-list {
        margin: 0 -15px;
    }

    .affiliate_logo_outer .slick-list .slick-slide {
        margin: 0 15px;
    }

    .affiliates_section .affiliate_logo_img {
        height: 95px;
    }

    .our_services .find-out-more .custom-btn {
        margin-top: 10px;
    }

    .our_services {
        padding: 50px 0;
    }

    .discover_tabs_button .game-mobile {
        column-gap: 32px;
    }

    .affiliates_section .affiliate_logo_img {
        opacity: 1;
    }

    .custom-btn {
        min-width: fit-content;
    }

    .aztec_warrior {
        padding: 65px 0 0;
    }

    .aztec_warrior .aztec_warrior_text {
        padding-left: 40px;
    }

    .our_news .OurNewsOuter .OurNewsThumb {
        order: 2;
        -webkit-order: 2;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 0 0 0;
    }

    .our_news .OurNewsOuter .OurNewsSlider .NewsSliderBox {
        height: 490px;
    }

    .game_tabs_outer .tab-link {
        min-height: 41px;
        line-height: 41px;
        font-size: 12px;
    }

    .game_top_right .custom_box h3 {
        font-size: 15px;
    }

    .custom_select {
        min-width: 128px;
        min-height: 47px;
        line-height: 47px;
        background-position: 94% 11px;
    }

    .custom_select select {
        font-size: 16px;
    }

    .inner-page-banner .inner-page-content h1 {
        font-size: 60px;
    }

    .section-title,
    .inner-post-banner .inner-page-content h1 {
        font-size: 40px;
    }

    .games_section {
        padding: 40px 0 0 0;
    }

    .game_tabs_outer .game_tab_content {
        margin-top: 30px;
    }

    .game_tabs_outer .tab-content {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .game-grid-wrap {
        padding: 25px 30px;
    }

    .game-grid-box .game_hover_right {
        padding-left: 20px;
        flex: 0 0 21.7%;
        max-width: 21.7%;
    }

    .game-grid-box .game_hover_right .custom-btn {
        min-width: 100%;
        font-size: 17px;
    }
    .game-grid-box .game_hover_left h3.h2-style {
        font-size: 28px;
        line-height: 32px;
    }

    .game_top_right .custom_box h3 {
        font-size: 14px;
    }

    .p-style {
        font-size: 16px;
        line-height: 24px;
    }

    .game-grid-box .game_hover_left {
        flex: 0 0 76%;
        max-width: 76%;
    }

    .game-grid-box .game_hover_left::before {
        right: -12px;
    }

    .promo_section {
        padding: 75px 0;
    }

    .promo_section_text h2 {
        font-size: 41px;
    }

    .game-bottom-img {
        height: 204px;
        min-height: auto;
    }

    .promo_section_text p {
        font-size: 16px;
        line-height: 29px;
    }

    .promo_section_right a.custom-btn {
        min-width: 218px;
    }

    .detail_slider-inner .detail_slider-left, .detail_slider-inner .detail_slider-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .detail_slider-inner .detail_slider-right {
        padding-left: 0;
    }

    .detail_slider-inner.d-flex {
        flex-wrap: wrap;
    }

    .game_detail_slider {
        padding-top: 70px;
    }

    section.game_type {
        padding: 88px 0;
    }

    .game_type_inner .discover-full-detail {
        column-gap: 5%;
    }

    .special_expand {
        padding: 70px 0 150px;
    }

    .special_expand .d-flex {
        flex-wrap: wrap;
    }

    .special_inner .special_expand_text {
        order: 2;
        -webkit-order: 2;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .special_inner .special_expand_img {
        flex: 0 0 100%;
        max-width: 380px;
        margin: 0 auto;
        text-align: center;
    }

    .special_expand_text .special_text_inner h2 {
        font-size: 48px;
    }

    section.game_play {
        padding: 170px 0 100px;
    }

    .game_play_inner .game_play_text, .game_play_inner .game_play_img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .game_play_inner.d-flex {
        flex-wrap: wrap;
    }

    .game_play_inner .game_play_text {
        order: 2;
        -webkit-order: 2;
    }

    .game_play_inner .game_play_img {
        order: 1;
        -webkit-order: 1;
    }

    .game_play_inner.game_play_bottom .game_play_text {
        padding: 40px 0 0 0;
    }

    .similar_games {
        padding: 50px 0;
    }

    .SimilarSlider .similar_slider_box .similar_slider_img {
        height: 160px;
    }

    .service_game_div {
        display: none;
    }

    .service_game_setting {
        overflow: hidden;
    }

    .service_game_setting .service_page_inner {
        flex-wrap: wrap;
        padding: 120px 0 80px;
    }

    .service_page_inner .service_inner_text .custom-btn {
        margin-top: 31px;
    }

    .service_page_inner .service_inner_img, .service_page_inner .service_inner_text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service_page_inner .service_inner_img {
        order: 1;
        -webkit-order: 1;
    }

    .service_page_inner .service_inner_text {
        order: 2;
        -webkit-order: 2;
        padding: 20px 0 0 0;
        max-width: 79%;
        margin: 0 auto;
        text-align: center;
    }

    .game_setting_after::after {
        min-width: 265px;
        min-height: 108px;
    }

    .servicesTab ul {
        flex-wrap: wrap;
        grid-row-gap: 13px;
    }

    .grid_left_view .left_view_left, .grid_left_view .left_view_right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .game_tab_content .grid_left_view {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .left_view_right ul li {
        flex: 0 0 31.3%;
        max-width: 31.3%;
    }

    .game_tab_content .grid_center_view {
        column-gap: 3%;
        flex-wrap: wrap;
    }

    .grid_center_view .grid_view_center {
        order: 1;
        -webkit-order: 1;
    }

    .grid_center_view .grid_view_center, .grid_center_view .grid_view_left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .grid_center_view .grid_view_left ul, .left_view_right ul.d-flex.row-gap {
        column-gap: 3%;
    }

    .grid_center_view .grid_view_left ul li {
        flex: 0 0 31.3%;
        max-width: 31.3%;
    }

    .grid_center_view .grid_view_left {
        order: 2;
        -webkit-order: 2;
    }

    .affiliates-box-outer {
        flex: 0 0 48%;
        margin-bottom: 30px;
    }

    .custom_box .nice-select.customSelect {
        font-size: 14px;
        width: 171px;
        min-height: 46px;
        line-height: 46px;
    }
    .servicesTab .ourService.position-fixed {
        top: 22px;
    }

    .servicesTab li a {
        font-size: 14px;
        min-width: 110px;
        padding: 0 10px;
    }

    .service_page_inner .service_inner_img img {
        max-width: 100%;
        min-height: auto;
        max-height: 460px;
    }

    .service_inner_text h2 {
        font-size: 38px;
    }

    .service_page_inner .service_inner_img {
        text-align: center;
    }

    .service_game_setting.game_setting_after .service_inner_img {
        text-align: center;
    }

    section.keep-touch.promoBanner::before {
        width: 166px;
        background-size: contain;
        top: -86px;
    }

    section.keep-touch.promoBanner::after {
        width: auto;
        height: 129px;
        background-size: contain;
    }

    section.keep-touch.promoBanner .promoText p {
        font-size: 15px;
        margin-top: 14px;
    }

    section.games_section.newsPage {
        padding-bottom: 60px;
    }

    .newsPage .our_news .dg-small-container {
        padding: 0;
    }

    .our_news .OurNewsOuter {
        margin: 14px auto 0;
    }

    .affiliates-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .affiliate_box_content h3 {
        font-size: 17px;
    }

    .games_section .game_hover_left .discover-detail-box .discover-detail-img img {
        width: 38px;
    }

    .game-grid-box .game_hover_right .custom-btn {
        min-width: 124px;
        font-size: 15px;
        min-height: 37px;
        line-height: 1.1;
    }

    .game-grid-box.hoverOn {
        transform: translateY(0) !important;
    }
    .game-grid-box.move-down {
        transform: translateY(220px) !important;
    }
    .game-grid-hover {
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {

    .logo img {
        max-width: 210px;
    }

    .our_services .ourServiceTab .custom-btn {
        padding: 15px 25px;
    }

    .service_page_banner .page-title {
        margin: 23.6% auto;
    }

    .featured-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    .featured-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        z-index: 1;
    }
    .featured-text .h2-style {
        display: none;
    }
    .featured-text .p-style {
        margin: 0 0 25px 0;
    }
    .featured-asset {
        width: 100%;
        z-index: 0;
        opacity: 0.8;
        margin-top: -170px;
    }
    .featured-asset img {
        width: 350px;
        height: auto;
        z-index: 0;
        display: inline-block!important;
    }

    .inner-page-banner .inner-page-content h1 {
        font-size: 50px;
    }
    .headerOuter .header-inner .logo {
        height: 40px;
    }
    .headerOuter .header-inner {
        padding: 10px 0;
    }
    .tab-link label {
        min-height: 40px;
    }
    .heroSlider .slick-list {
        display: flex;
    }
    .heroSlider .hero_slide_box {
        max-height: 310px;
        min-height: 300px;
        min-width: 320px;
        max-width: 340px;
        padding-left: 50px;
        border: solid 1px #d0b66d;
        display: flex;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    
    .heroSlider .hero_slide_box .slide-img {
        overflow: hidden;
        border-radius: 21px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .heroSlider .hero_slide_box iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    /* Scale video to cover the entire container area */
    .heroSlider .hero_slide_box[data-video-type="vimeo"] iframe {
        width: calc(100% * 1.78);
        height: 100%;
        min-width: 100%;
        min-height: calc(100% / 1.78);
    }
    
    /* If container aspect ratio is taller, scale height instead */
    @media (max-height: 320px) {
        .heroSlider .hero_slide_box[data-video-type="vimeo"] iframe {
            width: 100%;
            height: calc(100% * 1.78);
            min-width: calc(100% / 1.78);
            min-height: 100%;
        }
    }
    
    .heroSlider .hero_slide_box img,
    .heroSlider .hero_slide_box .hero-cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .heroSlider .hero_slide_box .hero_slide_text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .heroSlider .hero_slide_logo {
        max-width: 180px;
        margin-bottom: 30px;
    }

    .hero_banner {
        padding: 100px 0 60px 0;
    }

    .h2-style, .section-title {
        font-size: 28px;
    }

    .hero_banner .hero-banner-text p {
        font-size: 14px;
        margin: 0;
    }

    .discover_games::before {
        min-width: 40%;
        min-height: 68px;
        background-size: 100%;
    }

    .discover_games {
        padding: 50px 0 130px;
    }

    .discover_games .section-heading {
        position: relative;
    }

    .d-flex {
        flex-wrap: wrap;
    }

    .p-style {
        font-size: 15px;
        line-height: 23px;
    }

    .discover_tabs_outer .discover_tabs_full {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
        -webkit-order: 2;
        width: 100%;
    }

    .discover_tabs_outer .discover_tabs_button {
        max-width: 100%;
        order: 1;
        -webkit-order: 1;
        flex: auto;
        margin-top: 10px;
    }
    .discover_tabs_button .game-mobile {
        flex-wrap: nowrap;
        width: 100%;
        grid-gap: unset;
    }

    .discover_tabs_button .discover-info {
        flex: unset;
        max-width: none;
        width: 100%;
        margin: 0 10px;
    }

    .discover_tabs_button .discover-info img {
        outline: 3px solid transparent;
        height: 170px;
    }

    .discover_tabs_full .discover-full-inner, .discover_tabs_outer .discover_tabs_button {
        padding: 16px;
        overflow: hidden;
        width: 100%;
    }

    .discover_tabs_outer .discover_tabs_button {
        padding-left: 0;
        padding-right: 0;
    }

    .discover_tabs_full .discover-full-detail .discover-detail-box {
        margin-bottom: 0;
    }

    .discover-full-detail .discover-detail-box .discover-detail-text::after {
        height: 40px;
    }

    .heroSlider {
        margin-top: 30px;
    }

    .hero_slide_box  {
        height: 56.25vw;
        min-height: 100vh;
        min-width: 20.77vh;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .heroSlider .slick-list .slick-slide {
        margin: 0 6px;
    }

    .heroSlider button.slick-next.slick-arrow {
        right: 0;
    }

    .heroSlider button.slick-prev.slick-arrow {
        left: 0;
    }

    .heroSlider .hero_slide_box .custom-btn.hover-btn {
        min-width: 168px;
    }

    .heroSlider .hero_slide_box h2 {
        font-size: 16px;
        text-align: center;
        margin: 15px 0;
    }

    .heroSlider .hero_slide_box p {
        font-size: 12px;
        margin: 5px 0 28px 0;
        display: none;
    }

    .discover-full-inner .discover-full-button {
        flex-wrap: wrap;
        justify-content: center;
    }
    .discover-full-inner .discover-img-view img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .discover-full-inner .discover-img-view {
        height: auto;
        padding: 0 0 68%;
    }

    .custom-btn {
        min-height: 40px;
        font-size: 15px;
    }

    .discover-full-inner .discover-full-button a {
        min-width: auto;
        max-width: 44.6%;
    }

    .discover-full-detail .discover-detail-box h3 {
        font-size: 12px;
    }

    .discover-full-detail .discover-detail-box p {
        font-size: 12px;
        line-height: 16px;
    }

    .discover-full-detail .discover-detail-box {
        margin-bottom: 19px;
        flex: 1;
    }

    .discover-full-detail .discover-detail-box:last-child {
        margin: 0;
    }

    .discover_games .discover_tabs_outer {
        margin-top: 33px;
        flex-direction: column-reverse;
        padding: 0;
    }

    .discover-full-inner .discover-full-detail {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .discover_tabs_outer .discover_tabs_button .custom-btn {
        min-width: 270px;
        margin-top: 15px;
        font-size: 12px;
    }

    .discover_tabs_full .discover-full-inner::after {
        content: none;
    }

    .discover_games::after {
        min-width: 140px;
        height: 66px;
        background-size: cover;
    }

    .game_type_inner .discover-full-detail .discover-detail-box {
        padding: 38px 15px 38px 38px;
        width: 100%;
    }

    .aztec_warrior_text .h2-style {
        font-size: 29px;
        line-height: 42px;
    }

    .aztec_warrior .aztec_warrior_text {
        padding-left: 0;
        text-align: center;
    }

    .aztec_warrior .aztec_warrior_text .custom-btn {
        margin-top: 19px;
        min-width: 202px;
    }

    .our_services {
        padding: 80px 0;
    }

    .aztec_warrior {
        background-position: center;
        padding: 100px 0 58px;
    }

    .our_services .ourServiceTab {
        text-align: center;
        padding: 35px 0;
    }

    .our_services .ourServiceTab .custom-btn {
        min-width: auto;
        min-height: 40px;
    }

    .our_services .find-out-more .custom-btn {
        margin-top: 0;
    }

    .affiliate_logo_outer .affiliate_logo_bottom {
        margin-top: 20px;
    }

    .affiliate_logo .slick-list, .affiliate_logo_bottom .slick-list {
        margin: 0 -15px;
    }

    .affiliate_logo .slick-list .slick-slide, .affiliate_logo_bottom .slick-list .slick-slide {
        margin: 0 15px;
    }

    .affiliates_section {
        padding: 40px 0;
    }

    .affiliates_section .find-out {
        margin-top: 50px;
    }

    .affiliates-boxes {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .our_news {
        padding: 40px 0;
        overflow: hidden;
    }

    .our_news .OurNewsOuter .OurNewsThumb {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        order: 2;
        -webkit-order: 2;
    }

    .our_news .OurNewsOuter {
        margin-top: 0;
    }

    .newsPage .our_news .OurNewsOuter {
        margin-top: 0;
    }

    .our_news .OurNewsOuter .OurNewsThumb ul {
        grid-row-gap: 16px;
    }

    .our_news .OurNewsOuter .OurNewsSlider {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 20px 0 20px 0;
        -webkit-order: 1;
        order: 1;
    }
    .our_news .find-out {
        margin: 40px auto 0;
    }

    .our_news .OurNewsOuter .OurNewsSlider .NewsSliderBox {
        height: 300px;
    }

    .OurNewsSlider .NewsSliderBox .NewsSliderText {
        padding: 20px;
    }

    .NewsSliderBox .NewsSliderText {
        padding: 20px;
    }

    .NewsSliderBox .NewsSliderText p {
        font-size: 12px;
    }

    .NewsSliderBox .NewsSliderText h3 {
        font-size: 18px;
    }
    .inner-page-banner {
        min-height: 340px;
    }

    .news_page_banner .newsBox, .newsSlider {
        height: 424px;
    }

    .game-detail-btns {
        flex-direction: column;
    }

    .game-detail-btns .custom-btn:not(:last-child) {
        margin: 0 0 20px;
    }

    .keep-touch {
        padding: 50px 0;
        background-position: center;
        margin-top: 0;
    }

    .keep-touch .h2-style {
        font-size: 21px;
    }

    .footer-row .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footerOuter {
        background-position: bottom right;
        background-size: 92%;
        padding: 40px 0 0 0;
    }
    .footerOuter .social-icons ul {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        grid-gap: 15px;
    }

    .footerOuter .social-icons li a {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .footerOuter .footer-menu {
        margin: 29px 60px 29px 0;
    }

    .footer-logo img {
        object-fit: contain;
        margin-bottom: 24px;
    }

    .keep-touch-form .form-group input.form-control {
        min-height: 43px;
        font-size: 16px;
    }

    .keep-touch-form .form-group {
        margin-top: 14px;
    }

    .keep-touch-form p, .keep-touch-form p a {
        font-size: 12px;
    }

    .keep-touch-form .form-group button.custom-btn {
        font-size: 16px;
        min-width: 116px;
        min-height: 38px;
    }

    .footer-copyright {
        padding: 21px 0;
        margin-top: 30px;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .keep-touch .keep_touch_img {
        display: none;
    }

    .keep-touch-home .p-style {
        width: 100%;
    }

    .inner-post-banner .inner-page-content h1 {
        font-size: 34px;
    }

    .post_section {
        padding: 40px 0;
    }
    .game_tabs_outer .tab-content {
        grid-template-columns: 1fr 1fr;
    }
    .game_tab_top .game_top_left, .game_tab_top .game_top_right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        position: static;
    }

    .game_tab_top .game_top_left {
        order: 2;
    }

    .game_tab_top .game_top_center {
        max-width: 100%;
        margin: 20px auto;
        order: 2;
    }

    .search_label.close {
        padding: 4px 16px;
    }
    .search_label.close input {
        width: 100%;
        opacity: 1;
        cursor: initial;
        -webkit-appearance: unset;
    }
    .game-no-found {
        font-size: 18px;
    }
    .search_label {
        width: 100%;
    }
    .search_label input {
        width: 100%;
        opacity: 1;
    }

    .game_top_clear {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        z-index: 0;
    }
    .game_top_left ul.tabs.d-flex {
        justify-content: center;
        grid-gap: 10px;
    }

    .game_tabs_outer .tab-link {
        padding: 0;
        min-height: 32px;
        line-height: 32px;
        font-size: 12px;
    }
    .search_label svg {
        pointer-events: none;
    }

    .game_tabs_outer .game_tab_content {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .game-grid-box.hoverOn {
        transform: translateY(0) !important;
    }
    .game-grid-box .discover-full-detail {
        display: grid;
    }
    .game-grid-box .custom-btn {
        max-width: 100%;
    }
    .game-grid-hover {
        padding: 10px;
    }

    .game-grid-wrap {
        padding: 15px;
    }
    .game-grid-box .game_hover_left .discover-full-detail {
        margin-top: 8px;
    }
    .game-bottom-img {
        min-height: 276px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .promo_section_text .promo_section_left, .promo_section_text .promo_section_right {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .promo_section {
        padding: 68px 0;
        text-align: center;
    }

    .promo_section_text h2 {
        font-size: 29px;
        line-height: 1.2
    }

    .promo_section_text p {
        font-size: 14px;
    }

    .promo_section_right a.custom-btn {
        margin: 20px auto;
    }

    .custom_select select {
        font-size: 16px;
    }

    .custom_select {
        min-height: 41px;
    }

    .game_top_right .custom_box {
        margin-bottom: 21px;
        text-align: center;
    }

    .game_top_right .custom_box:after {
        content: "";
        width: 100%;
        background: #d4d4d4;
        height: 1px;
        margin: 20px 0 0;
    }

    .game-grid-box .game_hover_left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .game-grid-box .game_hover_right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .game-grid-box .game_hover_right {
        margin-top: 14px;
        padding: 0;
    }

    .custom_select {
        background-position: 94% 9px;
    }

    .game-detail-info {
        margin: 15px auto 30px;
    }

    .game-detail-btn .custom-btn {
        min-width: 142px;
    }

    .game_detail_slider {
        padding: 50px 0 60px;
        overflow: hidden;
    }

    .detail_slider-inner .detail_slider-right {
        padding: 0;
    }
    .game_detail-logo {
        margin: 10px auto 0;
    }

    .game_detail_slider .game_detail-logo {
        display: none;
    }

    .game_play_inner .game_play_img {
        max-width: 386px;
        margin: 0 auto 10px;
    }
    .game_play_inner .game_play_text {
        max-width: 100%;
    }

    .detailSliderThumb .detail-thumb {
        height: 95px;
    }

    .special_expand {
        padding: 50px 0 110px;
    }

    .special_inner .special_expand_text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .special_inner .special_expand_img {
        flex: 0 0 100%;
        max-width: 280px;
        margin: 0 auto 15px;
    }

    .special_expand .special_inner.expand_top {
        flex-direction: column-reverse;
    }

    .special_expand_text .special_text_inner h2 {
        font-size: 26px;
    }

    .special_expand_text .special_text_inner p {
        margin-top: 12px;
    }

    .special_expand .special_inner.expand_bottom {
        margin-top: 48px;
    }

    .game_play .game_play_logo.horizontalCenter {
        max-width: 240px;
    }

    section.game_play {
        padding: 110px 0 50px;
    }

    .game_play .dg-small-container .game_play_inner:first-child {
        flex-direction: column-reverse;
    }
    .detailSlider .detail_slider_box {
        height: 320px;
    }
    .detail_slider-inner .detail_slider-left {
        padding: 0;
    }
    .poster .play-video-btn {
        width: 60px;
        height: 60px;
    }

    .flex-100 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .game_play_inner.game_play_bottom .game_play_text, .game_play_inner .game_play_text {
        padding: 31px 0 0 0;
    }

    .game_play_text p, .game_play_text ul, .game_play_text ol {
        margin-top: 14px;
    }

    .game_play .game_play_inner.game_play_bottom {
        margin-top: 47px;
    }

    .game_detail_tags span.gameTag {
        padding: 0 20px;
        font-size: 14px;
    }

    .special_expand_img img {
        max-width: fit-content;
    }

    .detail_slider-inner .detail_slider-right h2 {
        font-size: 36px;
    }

    .detail_slider-inner .detail_slider-right img {
        margin: 0 auto 10px;
        display: block;
    }

    section.game_type {
        padding: 50px 0;
    }

    .discover-full-detail .discover-detail-box {
        margin-bottom: 10px;
        display: grid;
        grid-template-columns: 54px 1fr;
        width: 100%;
    }

    .game_type_inner .discover-full-detail {
        grid-template-columns: 1fr;
        grid-gap: 15px;
        flex-direction: column;
    }

    .similar_games {
        padding: 50px 0;
    }

    .similar_games .SimilarSlider {
        margin-top: 29px;
        padding: 0 0;
    }

    .SimilarSlider button.slick-prev, .SimilarSlider button.slick-next {
        display: none !important;
    }

    .SimilarSlider .similar_slider_box .similar_slider_img {
        height: 120px;
    }

    .discover_tabs_button .game-mobile {
        justify-content: center;
    }

    .discover_tabs_button .slick-track {
        padding: 10px 0;
    }
    .discover_tabs_button .discover-info img:hover, .discover_tabs_button .discover-info.active img,
    .discover_tabs_button .discover-info.slick-current img {
        box-shadow: none;
    }

    .service_page_banner {
        height: 95vh;
    }

    .servicesTab li a {
        padding: 0 12px;
        font-size: 10px;
        min-width: 53px;
        min-height: 32px;
        line-height: 32px;
    }

    .servicesTab ul {
        grid-gap: 10px;
    }
    .servicesTab .ourService.position-fixed {
        width: 100%;
        padding: 14px 0 21px;
        top: 0;
    }

    .game_setting_after::before, .game_setting_after::after {
        display: none;
    }

    .service_page_inner .service_inner_text .custom-btn {
        min-width: 200px;
        margin-top: 29px;
    }

    .service_game_div {
        display: none;
    }

    .service_game_setting {
        padding: 50px 0 110px;
        min-height: calc(100vh - 162px);
    }

    .service_page_inner .service_inner_text, .service_page_inner .service_inner_img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service_inner_text h2 {
        font-size: 21px;
    }

    .service_page_inner .service_inner_text h2 img {
        max-width: 45px;
    }

    .service_page_inner .service_inner_text {
        -webkit-order: 2;
        order: 2;
        text-align: center;
        padding: 24px 0 0 0;
        flex: 0 0 100%;
    }

    .service_page_inner .service_inner_img {
        -webkit-order: 1;
        order: 1;
    }

    .OurNewsSlider .NewsSliderBox::after {
        height: 100%;
    }

    .dg-small-container .dg-small-container {
        padding: 0;
    }

    .service_page_inner .service_inner_text p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .serviceSlider .service-slide-box {
        height: 388px;
    }

    .game_tab_content .OurNewsOuter .OurNewsSlider {
        -webkit-order: 1;
        order: 1;
    }

    .newsPage .game_tab_content .OurNewsOuter .OurNewsThumb {
        -webkit-order: 2;
        order: 2;
        flex: 0 0 100%;
    }

    .grid_left_view .left_view_left, .grid_left_view .left_view_right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .grid_left_view .left_view_left .full_view {
        height: 230px;
        margin-top: 20px;
    }

    .left_view_right ul.row-gap {
        column-gap: 2%;
        row-gap: 20px;
    }

    .left_view_right ul li {
        flex: 0 0 32%;
        max-width: 32%;
        height: 108px;
    }

    .grid_center_view .grid_view_left, .grid_center_view .grid_view_center {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .grid_center_view .grid_view_center .full_view {
        height: 230px;
    }

    .grid_center_view .grid_view_left ul {
        column-gap: 2%;
        row-gap: 20px;
    }

    .grid_center_view .grid_view_left ul li {
        height: 108px;
        flex: 0 0 32%;
    }

    .paginaitonOuter ul a {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
    }

    .paginaitonOuter {
        margin-top: 55px;
        padding-bottom: 62px;
    }

    .keep-touch .bottom_bg {
        top: 0;
    }

    .newsPage .OurNewsSlider .NewsSlider {
        width: 100%;
    }

    .game-grid-box:last-child .game-grid-hover {
        right: 0;
    }

    .game-grid-box:last-child .game-grid-hover::before {
        top: -12px;
    }

    .game-grid-box .h2-style {
        font-size: 24px;
    }

    .game-grid-box.move-down {
        transform: translateY(470px) !important;
    }
    .games_section .dg-small-container {
        padding-bottom: 360px;
    }
    .affiliates-box-outer {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    section.affiliates-outer {
        padding: 20px 0;
    }

    .our_news .find-out a.custom-btn {
        min-width: 320px;
    }

    .custom_box .nice-select.customSelect {
        font-size: 12px;
        width: 170px;
        min-height: 42px;
        line-height: 42px;
        border-radius: 5px;
    }

    .game_top_right .custom_box {
        justify-content: center;
    }

    .service_game_setting .service_page_inner {
        padding-top: 0;
    }

    .service_page_inner .service_inner_img img {
        max-width: 100%;
        min-height: auto;
        height: auto;
        object-fit: contain;
    }

    section.keep-touch.promoBanner {
        padding-bottom: 50px;
    }

    section.keep-touch.promoBanner .promoText {
        text-align: center;
    }

    section.keep-touch.promoBanner .promoText p {
        font-size: 14px;
        margin-top: 14px;
    }

    section.keep-touch.promoBanner::after {
        content: none;
    }

    .newsSlider .newsSliderText h2 {
        margin-top: 0;
    }

    .affiliate_box_content h3 {
        font-size: 15px;
    }

    .affiliate_img_hover {
        max-width: 210px;
        height: 100%;
        transform: unset;
    }

    section.games_section.newsPage {
        padding-bottom: 0;
    }

    /***/
    .post_section h1, .post_section h2, .post_section h3, .post_section h4, .post_section h5 {
        margin: 40px 0;
    }
    .content-post {
        margin-bottom: 60px;
    }
    .content-post p,
    .about-content {
        font-size: 14px;
    }

    .about-content .section-content h2 {
        font-size: 24px;
    }

    /**/
    .about-hero {
        padding: 22vh 0;
        min-height: calc(100vh - 155px);
        display: flex;
        align-items: center;
        padding-bottom: 12vh;
    }

    .about-hero__title {
        font-size: 45px;
    }

    .labout-hero__p {
        line-height: 21px;
    }

    .section-content {
        grid-gap: 14px;
        padding: 0;
    }

    .about-hero__content {
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .section-content {
        grid-gap: 20px;
    }
    .about-content .section-image {
        max-width: 260px;
    }

    .pageOuter-about .section-content {
        padding: 0 10px;
    }

    .about-hero__image {
        max-width: 480px;
    }

    .purpose-s__image {
        display: none;
    }

    .purpose-s::before, .purpose-s__block::after {
        width: 363px;
        height: 377px;
    }

    .purpose-s__block::after {
        top: -287px;
        right: 5%;
    }
    .purpose-s::before {
        top: 126px;
        left: -160px;
    }

    /** Form **/
    .wpcf7-form {
        grid-template-columns:  1fr;
        grid-gap: 20px;
    }

    .block-form .transparent-two-columns p:nth-of-type(3),
    .block-form .transparent-two-columns p:nth-of-type(4),
    .wpcf7 form .wpcf7-response-output{
        grid-column: 1;
    }
    .wpcf7-form p .wpcf7-not-valid-tip {
        position: absolute;
        bottom: -34px;
        left: 0;
        font-size: 14px;
    }

    .post_section h1, .post_section h2, .post_section h3, .post_section h4, .post_section h5 {
        margin: 40px 0;
    }

    .default-section h1, .default-section h2, .default-section h3, .default-section h4, .default-section h5 {
        margin: 20px 0;
    }

    /** Contact Page **/
    .contact-mail {
        margin-top: 15px;
        grid-gap: 20px;
    }
    .contact-mail a {
        font-size: 16px;
    }
    .contact-mail img {
        width: 30px;
    }
    .contact-mail > div {
        grid-template-columns: 30px 1fr;
        grid-gap: 15px;
    }
    .contact_section_decor {
        display: none;
    }
}

@media screen and (max-width: 580px) {
    .game_tabs_outer .tab-content {
        grid-template-columns: 1fr;
    }
    .game-grid-box .game_hover_left::before {
        display: none;
    }

    .game-grid-box:nth-child(3n) .game-grid-hover {
        right: unset;
        left: 0;
    }

    .game-grid-box:nth-child(2n) .game-grid-hover {
        left: 0;
    }

    .game-grid-hover {
        max-width: 100%;
    }

    .game-grid-hover::before,
    .game-grid-box:nth-child(2n) .game-grid-hover:before,
    .game-grid-box:nth-child(3n) .game-grid-hover:before,
    .game-grid-box.center-grid-after .game-grid-hover::before {
        left: calc(50% - 10px);
    }
}

@media screen and (max-width: 480px) {
    /****/
    .tab-content-news .NewsSliderBox {
        grid-row: unset;
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 3),
    .tab-content-news .NewsSliderBox:nth-child(21n + 8),
    .tab-content-news .NewsSliderBox:nth-child(21n + 15){
        grid-column: unset;
        grid-row: unset;
    }
    .tab-content-news .NewsSliderBox:nth-child(21n + 3) .text,
    .tab-content-news .NewsSliderBox:nth-child(21n + 8) .text,
    .tab-content-news .NewsSliderBox:nth-child(21n + 16) .text {
        display: none;
    }

    .glambers-pick-text {
        padding: 19px 11px;
    }

    .glambers-pick-text h3 {
        font-size: 24px;
    }

    .glambers-pick-text p {
        font-size: 18px;
    }
    .affiliates-boxes {
        grid-template-columns: 1fr;
        grid-gap: 18px;
    }
    .affiliates-outer .affiliateBox {
        height: 160px;
    }
    .affiliate_box_content {
        transform: translateY(222px);
    }

    .affiliate_box_content h2 {
        letter-spacing: 0;
    }

    .affiliate_box_content p {
        margin-top: 14px;
        line-height: 1.4;
    }
    .affiliate_box_content {
        padding: 15px;
    }

    .game_play .game_play_logo.horizontalCenter {
        max-width: 130px;
    }
    .detailSlider .detail_slider_box {
        height: 220px;
    }

    .our_services .ourServiceTab .custom-btn {
        font-size: 12px;
    }

    .our_services .slick-slide {
        margin: 0 5px;
    }

    .our_news .OurNewsOuter .OurNewsThumb li span, .NewsSliderBox span {
        font-size: 16px;
        line-height: 1;
    }
    .our_news .OurNewsOuter .OurNewsThumb ul {
        grid-template-columns: 1fr;
    }
    /***/
    .inner-page-banner .inner-page-content h1 {
        font-size: 32px;
    }
    .popular-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    .serviceSlider .service-slide-box {
        height: 250px;
    }
    .discover-detail-img {
        width: 46px;
        height: 46px;
    }

    .game_tab_content .game-grid-box {
        height: 100%;
        max-height: 234px;
    }
    .games_section .dg-small-container {
        padding-bottom: 316px;
    }
    .game-grid-box.move-down {
        transform: translateY(410px) !important;
    }
}

/** Holliday Animation **/
#snow {
    position: absolute;
    top: 0;
    z-index: 10;
}
.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(white, white);
    /* Workaround for Chromium's selective color inversion */
    border-radius: 50%;
    filter: drop-shadow(0 0 10px white);
    pointer-events: none;
}

[data-wpr-lazyrender] {
    content-visibility: visible!important;
}

.grecaptcha-badge {
    visibility: hidden;
}

.screen-reader-response {
    visibility: hidden;
}

.wpcf7-form .hidden-fields-container {
    visibility: hidden;
}

/**** Careers Why Section ****/
.careers-why-section {
    position: relative;
    padding: 60px 0;
    background-color: #fafafa;
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    overflow: hidden;
}

.careers-why-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.careers-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.careers-why-image {
    position: relative;
    z-index: 1;
}

.careers-why-image img {
    width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: contain;
    display: block;
}

.careers-why-text {
    max-width: 100%;
}

.careers-why-title {
    font-weight: 700;
    font-size: 50px;
    color: var(--theme-color2);
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: var(--font-family);
}

.careers-why-paragraphs {
    font-size: 20px;
    line-height: 28px;
    color: var(--theme-color2);
    font-family: var(--font-family);
    font-weight: 600;
}

.careers-why-paragraphs p {
    margin-bottom: 12px;
    color: var(--theme-color2);
}

.careers-why-paragraphs p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .careers-why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .careers-why-image {
        order: 2;
    }
    
    .careers-why-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .careers-why-section {
        padding: 40px 0;
    }
    
    .careers-why-paragraphs {
        font-size: 20px;
        line-height: 28px;
    }
    
    .careers-why-paragraphs p {
        margin-bottom: 6px;
    }
}

/**** Careers Open Positions Section ****/
.careers-open-positions-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.careers-open-positions-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 180px;
    position: relative;
    z-index: 1;
}

.careers-open-positions-title {
    font-weight: 700;
    font-size: 50px;
    color: var(--theme-color2);
    line-height: 1.1;
    margin: 0;
    font-family: var(--font-family);
}

.careers-open-positions-text {
    font-size: 32px;
    line-height: 1.2;
    color: #CECECE;
    font-family: var(--font-family);
    font-weight: 700;
    margin: 0;
}

.careers-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.careers-job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    border-bottom: 1px solid #E5E5E5;
    gap: 140px;
}

.careers-job-item:last-child {
    border-bottom: none;
}

.careers-job-content {
    flex: 1;
}

.careers-job-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
    font-family: var(--font-family);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.careers-job-title:visited {
    color: var(--black);
}

.careers-job-title:hover,
.careers-job-title:active {
    color: var(--theme-color);
}

.careers-job-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 400;
    margin: 0 0 16px 0;
    font-family: var(--font-family);
}

.careers-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.careers-job-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(198, 165, 89, 0.30);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--font-family);
    line-height: 1.4;
}

.careers-job-tag svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.careers-job-button {
    background-color: var(--theme-color);
    border-radius: 10px;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.careers-job-button:hover {
    background-color: #b79546;
}

@media (max-width: 1024px) {
    .careers-open-positions-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .careers-job-item {
        align-items: start;
        gap: 40px;
    }
    
    .careers-job-button {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .careers-open-positions-section {
        padding: 40px 0;
    }
    
    .careers-open-positions-text {
        font-size: 32px;
    }

    .careers-job-item {
        gap: 20px;
    }

    .careers-job-title {
        font-size: 32px;
    }
    
    .careers-job-description {
        font-size: 16px;
    }
}

/* Careers CV Submission Section */
.careers-cv-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #151515;
}

.careers-cv-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/careers/careers-job-offers-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.careers-cv-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
    align-items: start;
}

.careers-cv-text {
    color: #ffffff;
}

.careers-cv-title {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 20px 0;
    font-family: var(--font-family);
}

.careers-cv-description {
    font-size: 20px;
    line-height: normal;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-family);
}

.careers-cv-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.careers-cv-form-group {
    display: flex;
    flex-direction: column;
}

.careers-cv-name-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.careers-cv-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 30px;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #000000;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.careers-cv-input:focus {
    box-shadow: 0 0 0 2px var(--theme-color);
}

.careers-cv-input.careers-cv-field-error {
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.5);
}

.careers-cv-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.careers-cv-file-group {
    position: relative;
}

.careers-cv-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.careers-cv-file-label:hover {
    box-shadow: 0 0 0 2px var(--theme-color);
}

.careers-cv-file-label.careers-cv-field-error {
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.5);
}

.careers-cv-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.careers-cv-file-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.careers-cv-file-text {
    font-size: 20px;
    font-family: var(--font-family);
    color: #0000004D;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.careers-cv-file-label.has-file .careers-cv-file-text {
    color: #000000;
}

.careers-cv-file-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.careers-cv-file-size {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 0 0;
    font-family: var(--font-family);
}

.careers-cv-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.careers-cv-checkbox-label.careers-cv-field-error {
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.5);
    border-radius: 2px;
}

.careers-cv-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    accent-color: var(--theme-color);
}

.careers-cv-checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-family);
}

.careers-cv-required {
    color: var(--theme-color);
}

.careers-cv-form-message {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 16px;
    border-radius: 8px;
    font-family: var(--font-family);
    min-height: 0;
    max-height: 0;
    box-sizing: border-box;
    display: none;
    align-items: center;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}

.careers-cv-form-message.careers-cv-form-message--visible {
    max-height: 100px;
    opacity: 1;
    display: flex;
    padding: 12px 16px;
    min-height: 52px;
}

.careers-cv-form-message--success {
    color: #45b952;
}

.careers-cv-form-message--error {
    color: #ff6b6b;
}

.careers-cv-submit {
    width: 100%;
    min-height: 50px;
    max-width: 100%;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .careers-cv-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .careers-cv-section {
        padding: 40px 0;
    }
    
    .careers-cv-name-group {
        grid-template-columns: 1fr;
    }
}
