/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
body {
    height: 100%;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0px solid;
}

img {
    pointer-events: none;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 15px;
    color: #FFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    margin: 0 0 15px;
    color: #000;
    font-weight: 500;
}

h1 {
    font-size: 48px;
    line-height: 50px;
}

h2 {
    font-size: 38px;
    line-height: 40px;
    color: #FFF;
}

h3 {
    font-size: 30px;
    line-height: 32px;
}

h4 {
    font-size: 24px;
    line-height: 26px;
}

h5 {
    font-size: 20px;
    line-height: 22px;
}

h6 {
    font-size: 16px;
    line-height: 20px;
}

a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

a:hover {
    color: rgb(0, 104, 183);
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0 none;
}

body {
    background: #110125;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: left;
    overflow-x: hidden;
    line-height: 22px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 18px;
    bottom: 130px;
    z-index: 996;
    background: #0ac8ee;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #60ccdc;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.clear {
    clear: both;
}

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

input,
select,
textarea,
input[type=text],
input[type=date],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
button,
button[type=submit] {
    -moz-appearance: none;
    box-shadow: none !important;
}

::-moz-selection {
    background: #0ac8ee;
    text-shadow: none;
}

::selection {
    background: #0ac8ee;
    text-shadow: none;
}

.area-padding {
    padding: 50px 0px 0;
}

.area-padding-2 {
    padding: 70px 0px 50px;
}

.padding-2 {
    padding-bottom: 90px;
}

.labels {
    color: #000;
}

.section-headline h2 {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
}

.sec-head {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 0 0 10px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    box-shadow: 0 0 9px 3px rgb(0 0 0 / 42%);
    top: 0;
}



#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: bold;
}

#header .logo h1 span {
    color: #0ac8ee;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}


#header .logo h1 {
    font-size: 28px;
}

.copyright .text-center {
    color: #FFFFFF !important;
}

.header-bg {
    background: url(../img/background/page-header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 120px 0 60px;
}

.header-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(68, 50, 110, 0.3);
}

@media (min-width: 1025px) {
    .header-bg {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    text-align: center;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    background: rgba(0, 0, 0, .18);
    color: #FFFFFF;
    border-radius: 5px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 150px;
    margin: 10px 0;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #0d2529;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #0ac8ee;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 2, 2, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.form-control {
    padding: 15px 20px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    max-height: 600px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0d2529;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #005d70;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
    margin: 15px 0;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #0ac8ee;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.homeHero_gradient {
    bottom: 0;
    height: 65%;
    left: 0;
    position: absolute;
    width: 100%;
}

#hero {
    width: 100%;
    height: 650px;
    background: rgba(68, 50, 110, 0.3);
    overflow: hidden;
    position: relative;
}

#hero {
    margin-top: 80px;
}

.main-content {
    margin-top: 130px !important;
}

@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero .carousel-item::before {
    content: "";
}


#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 135px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 20px;
        line-height: 1.2;
    }
}

#hero p {
    width: 90%;
    font-size: 22px;
    margin: 0 auto 20px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
}

@media (max-width: 768px) {
    #hero p {
        font-size: 28px;
        line-height: 1.2;
    }
}

#hero .carousel-fade {
    overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
    width: 100%;
    height: 100%;

}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#hero .carousel-indicators li {
    cursor: pointer;
}

.div-view-more {
    width: 100%;
    position: relative;
}

.btn-view-more {
    width: 300px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 10px;
    transition: 0.5s;
    margin: auto;
    color: #fff;
    background: red;
    background-image: linear-gradient(180deg, #dc113f, #c40431);
    background: red;
    font-size: 18px;
    font-weight: 600;
    margin-top: 9px;
    padding: 15px 14px 13px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: red;
    background-image: linear-gradient(180deg, #dc113f, #c40431);
    background: red;
    . float: left;
    font-size: 18px;
    font-weight: 600;
    margin-top: 9px;
    padding: 15px 14px 13px 16px;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
}

#hero .btn-get-started .bi {
    font-size: 20px;
    padding-right: 5px;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #0ac8ee;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-move {
    transition: test 0.5s ease 0s;
}

.about-area {
    background-color: #f9f9f9;
}

.single-well>a {
    display: block;
}

.single-well ul li {
    color: #FFF;
    display: block;
    padding: 5px 0;
}

.single-well ul li i {
    color: #0ac8ee;
    margin-right: 5px;
    font-size: 18px;
}

.single-well p {
    color: #FFF;
}

/*--------------------------------------------------------------
# Hot-picks
--------------------------------------------------------------*/
.services-icon {
    color: #FFF;
    display: inline-block;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
}


.games-col {
    transition: all 0.5s ease 0s;
    background-color: #ffffff;
    color: #000000;
    min-height: 250px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.games-col:hover h4,
.games-col:hover .services-icon {
    color: #0ac8ee;
}

.row.second-row {
    margin-top: 40px;
}

.section-head>h2 {
    color: #333;
}

.game-img img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px 20px 0 0;
}

.game-img>h4 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    min-height: 50px;
    padding: 0 5px;
}

@media (max-width: 1000px) {
    .game-img>h4 {
        min-height: 70px;
        font-size: 15px;
    }
}

.game-img>p {
    color: #333;
    font-size: 14px;
}

.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
}

.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.viber {
    position: fixed;
    bottom: 72px;
    right: 15px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.modal-body-ph {
    max-height: 500px;
    overflow-y: auto;
}

.modal #subscription-plan {
    margin-top: 0;
}

#subscription-plan {
    margin-top: 130px;
}

.subscription-card {
    width: 400px;
}

.subscription-body p {
    font-size: 18px;
}

@media (max-width: 400px) {
    .subscription-card {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .modal-content input {
        font-size: 24px;
    }
}

@media (min-width: 1920px) {
    .work-right-text {
        padding: 150px 150px;
    }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
    .slider-content {
        padding: 146px 0;
    }
}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .layer-1-1 h2 {
        font-size: 24px;
    }

    .layer-1-2 h1 {
        font-size: 31px;
        line-height: 38px;
        padding: 0px 30px;
    }

    .tab-menu ul.nav li a {
        padding: 10px 16px;
    }

    .suscribe-input input {
        width: 60%;
    }

    .suscribe-input button {
        width: 40%;
    }

    .team-content.text-center>h4 {
        font-size: 20px;
    }

    .sus-btn {
        margin-left: 0;
    }

    .suscribe-text h3 {
        font-size: 16px;
        padding-right: 20px;
    }

    .work-right-text h5 {
        font-size: 14px;
        line-height: 22px;
    }

    .work-right-text {
        padding: 36px 0;
    }

    .work-right-text h2 {
        font-size: 14px;
        line-height: 22px;
    }

    .work-right-text .ready-btn {
        font-size: 13px;
        padding: 7px 20px;
        margin-top: 5px;
    }

    .widget-product a img {
        display: block;
        float: none;
        width: 100%;
    }

    .widget-product .product-info {
        display: block;
        float: none;
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }

    .map-column {
        margin-left: 0;
        padding-right: 40px;
    }

    .post-information .entry-meta {
        font-size: 13px;
        padding: 5px 0;
    }

    .post-information .entry-meta span a {
        padding: 4px 0;
    }

    .service-pic {
        margin-bottom: 30px;
        text-align: center;
    }

    .single-add-itms {
        width: 50%;
    }

    .left-sidebar-title>h4 {
        font-size: 18px;
    }

    .contact-form {
        margin-top: 0px;
    }

    .search-option input {
        width: 67%;
    }

    .contact-card {
        width: 100% !important;
        margin: 5px 0 !important;
    }
}

/* small mobile :320px. */
@media (max-width: 767px) {
    .slider-area {
        margin-top: 60px;
    }

    .slider-content {
        padding: 80px 0;
    }

    .slider-content h2 {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    .slider-content h1 {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    .layer-1-3 a.ready-btn {
        padding: 8px 15px;
    }

    .section-headline h2 {
        font-size: 30px;
    }

    .well-middle .single-well {
        margin-top: 30px;
    }

    .single-skill {
        margin-bottom: 40px;
    }

    .tab-menu {
        margin-top: 30px;
    }

    .tab-menu ul.nav li a {
        padding: 8px 6px;
    }

    .wellcome-text {
        margin: 0px;
        padding: 70px 0px;
    }

    .footer-content {
        margin-bottom: 30px;
    }

    .header-bottom h1 {
        font-size: 30px;
        margin-bottom: 0;
    }

    .page-area .slider-content {
        padding: 500px 0;
    }

    .search-option input {
        width: 74%;
    }

    .header-bottom h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    li.threaded-comments {
        margin-left: 0;
    }

    .contact-card {
        width: 100% !important;
        margin: 5px 0 !important;
    }
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .submitbtn {
        float: none;
        width: 99.8%;
    }

    .icons-bottom ul li a {
        height: 40px;
        line-height: 37px;
        width: 40px;
    }

    .blog-post-dlc ul li {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tab-menu ul.nav li a {
        padding: 8px 20px;
    }
}

@media (max-width: 575px) {
    .slider-content {
        padding: 0;
    }
}

.bi-heart {
    padding-right: 10px;
}

.lang-dropdown a,
.lang-dropdown a:focus,
.lang-dropdown a:hover {
    padding: 0;
    font-size: 18px;
    margin-left: 5px;
}

.content-top-right-alert .bi,
.profile_icon .bi,
.lang-dropdown .bi {
    color: #FFF;
    padding: 0 15px;
}

.navbar .lang-dropdown ul a {
    padding: 10px 10px;
}

.navbar .lang-dropdown ul {
    width: 70px;
}

@media (max-width: 767px) {

    .content-top-right-alert .bi,
    .profile_icon .bi,
    .lang-dropdown .bi,
    .noti-dropdown .bi {
        padding: 0 4px;
    }
}

.noti-dropdown .bi {
    padding: 0 10px;
}


@media (max-width: 500px) {
    .col-xs-6 {
        padding: 15px 6px;
        border-radius: 12px;
        width: 44%;
        min-width: 134px;
        margin: 8px 8px;
    }
}

.view-more-btn {
    background: none;
    border: none;
    color: #FFFFFF;
}

.view-more {
    right: 0;
    margin: auto;
    width: 100%;
    position: relative;
    text-align: right;
    margin-bottom: 10px;
}

.testimonials .game-rating {
    color: #FFFFFF;
}

.text-pd-top {
    padding-top: 150px;
}

.paragraph {
    padding-bottom: 15px;
}

.para-title {
    font-size: 16px;
}

.text-ul {
    list-style-type: unset;
    padding-left: 15px;
    margin-bottom: 15px;
}

.noti-img {
    width: 50px;
    display: inline-block;
}

.noti-title {
    display: inline-block;
}

.navbar .noti-dropdown ul {
    width: 200px;
}

@media (max-width: 600px) {
    .game-img>h4 {
        min-height: 30px;
    }

    .area-padding {
        padding-bottom: 20px;
    }

    .download-btn {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}


@-webkit-keyframes test {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.img-responsive {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 15px;
}

.back-button a {
    color: #FFFFFF;
}

.back-button {
    color: #FFFFFF;
    padding-bottom: 20px;
}

@media (max-width: 500px) {
    .games-col {
        margin-bottom: 0;
    }
}

.game-pg-header {
    margin-top: 50px;
}

@media (max-width: 767px) {

    .dropdown,
    .dropend,
    .dropstart,
    .dropup {
        position: unset;
    }

    .text-pd-top {
        padding-top: 80px;
    }
}

.swiper.container {
    max-width: 1200px;
    margin: 0 auto;
    border-width: 0 1px 0 1px;
    padding-top: 20px;
}

.title.link {
    color: #a5a2a5;
    margin-top: 20px;
}

swiper-container::part(container) {
    overflow: visible;
}

swiper-slide {
    width: auto;
    height: auto;
}

.card {
    border: 0;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, .08);
    border-radius: 8px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.card .data {
    padding: 13px;
    width: 300px;
    position: relative;
}

.image .lazy {
    border-radius: 8px 8px 0 0;
}

.data-title {
    height: 1.5em;
    line-height: 1.5em;
    font-size: 18px;
    font-weight: 800;
    color: #282725;
    /* text-overflow: clip; */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: auto;
}

/*game images style start*/
.games-img {
    background-size: cover;
    width: 300px;
    height: 170px;
    background-position: center;
}

.games-img.locked {
    opacity: 0.3;
}

/* Style for the image container */
.image-container {
    background: #000;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

/* Style for the image */
.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

figure {
    margin: 0;
}

.games-container .menu-categories {
    grid-column: 1;
    -ms-grid-column: 1;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media only screen and (min-width: 1200px) {
    .games-category-list {
        width: 100%;
        border-radius: 10px;
        padding: 10px 10px;
        position: sticky;
        ;
    }
}

.games-category-list {
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .games-category-list .category-list-item {
        margin-bottom: 10px;
    }
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.games-category-list .category-list-item {
    color: #000;
    background-color: #fff;
    border-radius: 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
}

/*
@media only screen and (min-width: 992px) {
  .games-category-list .swiper-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}*/

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.game-title {
    margin: 30px 0 40px 0;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.game-title-side {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    margin-top: 25px;
}

.slide-elements .games-grid {
    margin: 0;
}

.category-list-item-name {
    text-align: left;
}

.slide-elements .swiper-container {
    margin-bottom: 30px;
}

.games-grid {
    padding-bottom: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


.navbar .nav-link,
.navbar .dropdown a {
    display: inline-grid;
}

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

    .navbar .nav-link,
    .navbar .dropdown a {}
}

.navbar .bi {
    font-size: 28px;
    text-align: center;
    padding-bottom: 5px;
}

.home_newgame.card .games-img {
    background-size: cover;
    width: 100%;
    background-position: center;
    border-radius: 8px;
}

.home_newgame.card {
    margin-bottom: 15px;
    background-color: #ffffff5e;
    cursor: pointer;
}

.home_slider_game .card {
    background-color: #ffffff5e;
}

.home_newgame.card .data-title,
.home_newgame.card .title.link {
    color: #FFFFFF;
    height: 50px;
}

.home_newgame.card.locked::before,
.thumbnail.legacy.locked::before {
    content: "\1F512";
    position: fixed;
    bottom: 5px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.home_slider_game .card .data-title,
.home_slider_game .card .title.link {
    color: #FFFFFF;
    height: 50px;
}

.home_slider_game .swiper.container {
    max-width: unset;
}

.home_slider_game,
.slider_game {
    margin-top: 50px;
}

.swiper-slide {
    width: auto;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    bottom: 0;
    position: fixed;
}

.swiper-container {
    position: relative;
}

.swiper-button-home .swiper-button-next,
.swiper-button-home .swiper-button-prev {
    bottom: 0;
    position: absolute;
}

.swiper-button-home .swiper-button-next:after,
.swiper-button-home .swiper-button-prev:after {
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0px 4px 3px #000;
}

.footer-area-bottom {
    padding-top: 50px;
}

.footer-area-bottom a {
    color: #FFFFFF;
}

.footer-area-bottom a:hover {
    color: #282725;
    text-decoration: underline;
}


.games-category-list .category-list-item.active {
    color: #FFFFFF;
    background-color: #242424;
}

.games-category-list .category-list-item {
    margin-right: 10px !important;
}

@media (max-width: 500px) {
    .navbar .bi {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .swiper-container-pointer-events {
        transform: none !important;
        position: relative;
        flex-direction: column;
        touch-action: none;
    }
}

/*game iframe css*/

.btn-capsule {
    padding: 10px 20px;
    color: #fff;
}

.game-iframe-container {
    position: relative;
    overflow: hidden;
    height: 720px;
    border-radius: 18px;
    margin-top: 30px;
}

#mobile-back-button {
    display: none;
    align-items: center;
    position: fixed;
    z-index: 101;
    top: 100px;
    left: 0;
    width: 38px;
    height: 32px;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 24%) 0px 16px 32px;
    border-radius: 0px 16px 16px 0px;
    overflow: hidden;
    cursor: pointer;
}

.single-title,
.page-title {
    font-size: calc(1.3rem + .6vw);
    color: #fff;
}

.header-left {
    margin: 10px 0;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.game-details {
    color: #FFFFFF;
}

.thumbnail.legacy {
    cursor: pointer;
}

/*search bar*/
/* Style the search box inside the navigation bar */
.topnav input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
}

/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {

    .topnav a,
    .topnav input[type=text] {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 14px;
    }

    .topnav input[type=text] {
        border: 1px solid #ccc;
    }
}

.search-box {
    margin-top: 50px;
}

.card {
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
}

.card:hover {
    box-shadow: 0px 0px 10px #44444454;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.05);
}

.title-header-white {
    color: #FFF;
    font-size: 28px;
    padding-bottom: 20px;
}

.text-white {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.carousel-item {
    height: 400px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    transition: background-color 1s;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.category-list-item {
    /* Default styles for all tabs */
    padding: 10px;
    color: #000;
    background-color: #f0f0f0;
    /* Default background color */
    text-decoration: none;
}

.category-list-item.active {
    /* Styles for the active tab */
    background-color: #007bff;
    /* Active background color */
    color: #fff;
    /* Active text color */
    font-weight: bold;
    /* Optional: to highlight active tab */
}

.slider_game .container {
    overflow: hidden;
}

.slide-elements {
    overflow: hidden;
}

.section-home-swiper {
    margin-bottom: 20px;
}

.home_slider_game .container {
    overflow: hidden;
}

.game-tab-ind {
    display: inline-block;
    margin-bottom: 30px;
    margin-right: 24px;
    margin-top: 10px;
}

.home_newgame.card .data {
    width: 100%;
}

.section .col-lg-3 {
    padding: 10px;
}

.swiper-tab-btn {
    margin-bottom: 15px;
}

/* sticky navbar mobile*/
/* General styles for larger screens remain unchanged */
#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: auto;
}

#navbar ul {
    list-style: none;
}

/* Styles for mobile view */
@media (max-width: 1200px) {
    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo img {
        left: 10px;
        width: 150px;
        /* Adjust as needed for mobile view */
        float: left;
    }

    #navbar {
        width: 100%;
    }

    #navbar ul {
        display: flex;
        justify-content: space-around;
        width: 100%;
        padding: 0;
    }

    #navbar ul li {
        display: flex;
    }

    #navbar ul li {
        margin: 5px 0;
    }

    /* Hide the toggle button in mobile view */
    .mobile-nav-toggle {
        display: none;
    }

    .navbar a,
    .navbar a:focus {
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px 5px 10px;
        font-size: 13px;
    }

    #navbar ul li ul {
        display: inline-block;
        width: 160px;
    }

    #navbar ul li ul#lang {
        width: 80px;
    }
}

@media (max-width: 768px) {
    #header {
        height: 120px;
    }

    #header {
        flex-direction: column;
        align-items: center;
        position: fixed;
        z-index: 99;
        top: 0;
        transition: none;
        background-color: rgb(0, 104, 183);
    }

    .logo {
        margin-bottom: 10px;
    }

    #hero {
        margin-top: 120px;
    }

    .main-content {
        margin-top: 140px !important;
    }

    body {
        transition: none;
    }
}

@media (max-width: 500px) {

    .navbar a,
    .navbar a:focus {
        font-size: 10px;
        padding: 5px 8px;
    }
}

.universes-container {
    margin-bottom: 15px;
}

.universes-container .img {
    margin-bottom: 30px;
    display: inline-block;
    margin-left: 0;
    margin-right: 20px;
    margin-top: 10px;
}

.ar_layout .universes-container .img {
    margin-bottom: 30px;
    display: inline-block;
    margin-left: 20px;
    margin-right: 0;
    margin-top: 10px;
}

.universes-container .circle {
    width: 130px;
    /* Set the width of the circle */
    height: 130px;
    /* Set the height of the circle */
    border-radius: 50%;
    /* Makes the div a circle */
    /* overflow: hidden; */
    justify-content: center;
    align-items: center;
    position: relative;
    /* For positioning the pseudo-element */
}



.universes-container .circle.active {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    /* Initial shadow */
    animation: pulse 2s infinite;
    /* Add pulse animation */
}

.universes-container .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the circle without distortion */
}


.universes-container .circle:hover {
    box-shadow: 0px 0px 10px #44444454;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 70%);
        /* Starting shadow */
    }

    70% {
        box-shadow: 0 0 20px 20px rgba(255, 255, 0, 0);
        /* Maximum size of shadow */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
        /* End state of shadow */
    }
}

div.circle::after {
    content: var(--univ);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    margin-top: 5px;
}

.universes-txt {
    font-size: 24px;
    color: #FFF;
    font-weight: 600;
}

@media (max-width: 991px) {
    #header .logo img {
        margin-top: 10px;
    }

    .universes-container .img {
        margin-bottom: 30px;
        display: inline-block;
        margin-right: 5px;
        margin-top: 10px;
    }

    .universes-container .circle {
        width: 70px;
        /* Set the width of the circle */
        height: 70px;
        /* Set the height of the circle */
        border-radius: 50%;
        /* Makes the div a circle */
        /* overflow: hidden; */
        justify-content: center;
        align-items: center;
        position: relative;
        /* For positioning the pseudo-element */
        white-space: nowrap;
    }

    .universes-container .circle.active {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        /* Initial shadow */
        animation: pulse 2s infinite;
        /* Add pulse animation */
    }

    .universes-container .circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the image covers the circle without distortion */
    }

    div.circle::after {
        content: var(--univ);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 8.5px;
        font-weight: 700;
        color: #FFFFFF;
    }
}

.privacy-container {
    color: #fff;
}

.privacy-mailto,
.privacy-h5-subtitle,
.privacy-h4-title {
    color: #fff;
}

.privacy-mailto {
    text-decoration: underline;
}

.privacy-mailto:hover {
    color: #357eff;
}

.privacy-ul-list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

a {
    color: rgb(0, 104, 183);
}

/*26 July 2024*/

.homeHero_gradient {
    bottom: -2px;
}

#hero .carousel-container {
    top: 80px;
}

@media (max-width: 991px) {
    .game-iframe-container {
        height: 500px;
    }
}

#mobile-back-button i {
    color: #94a2a2;
    font-size: 18px;
    margin-left: 12px;
}

.form-floating {
    color: #212529;
}

.ar_layout {
    direction: rtl;
}

.ar_layout .hot-picks,
.ar_layout .carousel-inner {
    direction: ltr;
}

.ar_layout .float-right {
    display: flex;
    float: right;
}

.ar_layout .float-left {
    float: left !important;
}

.ar_layout .labels,
.ar_layout .universes-txt,
.ar_layout .universes-container,
.ar_layout .game-title-side,
.ar_layout .game-title,
.ar_layout .title-header-white,
.ar_layout .recommend-title,
.ar_layout .single-title,
.ar_layout .game-details {
    display: flex;
}

.ar_layout .main-content .bi {
    margin: 0 5px 0 5px !important;
}

.ar_layout .form-floating>label {
    right: 0;
    left: auto;
}

.ar_layout .login-instructions {
    padding-left: 100px;
}

.font-weight-bold {
    color: #212529;
}

/** Login Css **/
.game-container {
    overflow: hidden;
    border-radius: 18px;
    min-height: 48vh;
}

.content-wrapper {
    margin-top: 100px;
}

.auth-container {
    overflow: hidden;
    border-radius: 18px;
    min-height: 48vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-login button {
    margin-top: 20px;
    background: linear-gradient(90deg, #6f42c1, #6610f2);
    border: none;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 16%);
}

.content-login button:disabled {
    background: silver;
}

.input_container {
    position: relative;
}

.country_code {
    position: absolute;
    left: 4%;
    top: calc(76px/2 - 4%);
    color: black;
    font-size: 18px;
}

.grid-container {
    margin-top: 65px;
    margin-bottom: 15px;
    direction: ltr;
}

#msisdn {
    height: 52px;
    border-radius: 7px;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #c1c1c1;
    padding-left: calc(9% + 8%);
    font-size: 18px;
}

.pagination-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-card {
    padding: 30px 0;
    width: 32%;
    margin: 5px;
}

.contact-card .contact-title {
    font-size: 12px;
    color: #ccc;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-card .contact-description {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.contact-card .contact-icon {
    font-size: 30px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

@media (max-width: 768px) {
    .modal-dialog {
        width: 80% !important;
    }
}

/* The Modal (background) */
.modal {
    color: #000 !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    /* background-color: rgb(0, 0, 0); */
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* backdrop-filter: blur(2px); */
    display: flex !important;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.modal.show {
    visibility: visible;
}

.modal-dialog {
    width: 90%;
    max-height: calc(100dvh - 32px);
    /* fit in viewport */
    display: flex;
    /* so content can flex */
    flex-direction: column;
    min-height: 0;
    /* CRITICAL for iOS scrolling in flex */

}

/* Modal Content */
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-content {
    display: flex;
    /* align-items: center; */
    color: #fff;
    background-color: #fff;
    margin: auto;
    padding: 35px 20px 20px 20px;
    border: 1px solid #888;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 227, 218, 0.5);
}

.modal-body-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.modal-footer-custom {
    text-align: center;
}

.modal-footer-custom p {
    color: #000;
    font-weight: 600;
    margin: 0 auto 30px auto;
    width: 80%;
    text-align: justify;
}

.modal-content input {
    text-align: center;
}

.modal-backdrop {
    z-index: -1;
}

.modal-backdrop.show {
    z-index: 999;
}

.modal-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mv-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.modal-logo {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

.tq-text {
    color: #000;
    margin: 20px 0 0 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.modal-text {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.modal-text.main-title {
    width: 80%;
    margin-bottom: 15px;
}

.modal-text.label {
    width: 80%;
    text-align: left !important;
    margin-bottom: 2px;
}

.modal-link {
    cursor: pointer;
    transition: all .2s;
}

.modal-link:hover {
    text-decoration: underline;
}

.modal-close-button {
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    color: #555;
    transition: all .2s;
    height: max-content;
    width: 24px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
}

.modal-close-button:hover {
    color: #000;
    background-color: #0000001c;
}

.modal-tnc {
    background-color: rgba(0, 0, 0, .02);
    padding: 10px 0 10px 0;
    border-top: 2px solid rgba(0, 0, 0, .1);
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    /* box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, .5); */
}

.modal-tnc p,
.modal-tnc h2 {
    color: #000 !important;
}

.modal-input {
    text-align: center;
    margin-bottom: 15px;
    height: 40px;
    width: 80%;
}

.modal-button {
    transition: all .4s;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    background: dodgerblue;
    width: 80%;
    height: 50px;
    border: 1px solid dodgerblue;
    border-radius: 12px;
}

.modal-button:disabled {
    background-color: gray;
    border: 1px solid gray;
    transition: all .2s;
}

.error-message {
    color: red;
    margin-bottom: 4px;
}

/*--------------------------------------------------------------
# Snow
--------------------------------------------------------------*/

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

@keyframes diagonal-fall {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0.25;
        transform: translate(10vw, 100vh);
    }
}