/*CSS File Index------------------Line No.
/*General styles------------------21
/*Navbar Style--------------------77
/*Website Logo--------------------83
/*Hero Header Style(for index page)-126
/*Button Style--------------------149
/*Feature Games Style-------------164
/*Card Style----------------------198
/*Horizontal Line-----------------261
/*About us Section----------------267
/*Footer Style--------------------278
/*Style for Transition------------296
/*Style for Font Awesome Icons----398
/*Style for Download App Row------374
/*Style for Company Header Row----392
/*Style for the Contact Us Page---412
/*Style for 404 Page--------------468
/*Style for Coming Soon Page------491
/*Style for Games Page -----------523 */

/* -----General style----- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    cursor: url('../img/cursor3.png'), auto; 
}

h1 {
    font-family: 'Saira Condensed', sans-serif;
    color: #ffff00;
    font-size: 60px;
    text-transform: uppercase;
}
.display-1{
    font-size: 140px;
}

h2 {
    font-family: 'Saira Condensed', sans-serif;
    color: #ffff00;
    font-size: 40px;
}

h3 {
    font-family: 'Saira Condensed', sans-serif;
    color: #ffff00;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: white;
    font-size: 16px;
    line-height: 2;
}

.sectionHeader{
    margin-top: 45px;
}

.sectionHeader2{
    margin-top: 90px;
}

.sectionHeader3{
    margin-top: 120px;
}

.clientAvatar{
    width: 150px;
}


/* -----Navbar Style----- */
.navbar {
    padding: 25px;
    background-color: #000000;
}

/* -----Website Logo----- */
.websiteLogo{
    height: 47px; 
    
}

.navbar-brand {
    font-size: 35px;
    font-family: 'Saira Condensed', sans-serif;
    color: #ffff00;
}

.navbar-brand a {
    color: #ffff00;
}

.toggleBtn{
    width: 37px;
}

.nav-link a {
    color: #ffff00;
}

.link-color {
    color: #ffff00 ;
}

.link-color:hover {
    color: #ffffff ;
}

.dropdown-menu{
    background-color: #000000;
    border: none;
}
.dropdown-item{
    background-color: #000000;
    color: #ffff00;
}
/* -----Navbar Style----- */


/* -----Hero Header Style----- */
#heroheader {
    background-image: url("../img/bg-index.jpg");
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.leftColumn {
    padding: 35px;
    background: rgb(0, 0, 0, .7);
    height: 100vh;
}

.headerText {
    margin-top: 50%;
    padding-left: 10px;
}

/* -----Hero Header Style----- */


/* -----Button Style----- */
.btn {
    background-color: #ffff00;
    border-radius: 999px;
    transition: 1s ease-out;
}

.btn:hover {
    background-color: #000000;
    border: 1px solid #ffff00;
    color: #ffff00;
    transition: 1s ease-in;
    cursor: crosshair;
}

/* -----Feature Games Style----- */
.featureGames {
    background-color: #000000;
}

.featureGamesText {
    padding: 10px;
    margin: 10px;

}

.featureGame {
    margin: 0px auto;
    padding-left: 0px;
    padding-right: 0px;
}

#rightsidecolfeatureGames {
    background-color: #000000;
}

#leftsidecolfeatureGames {
    background-color: #000000;
}

.topGamesRow{
    background-color: #000000; 
    margin-top: 45px; 
    margin-left: 20px; 
    margin-right: 20px;
}
/* -----Feature Games Style----- */


/* -----Card Style----- */
.card {
    background-color: #000000;
    margin: 10px;
    border: none;
}

.card-body {
    background-color: #000000;
    padding: 35px;
}

.cardbox {
    background-color: #000000;
    margin: 10px;
    padding: 20px;
    transition: 1s ease-out;
}


.cardbox:hover {
    box-shadow: rgba(229, 223, 143, 0.3) 0px 7px 29px 0px;
    transition: 1s ease-in;
    transform: scale(1.09, 1.09);
}

.cardboxPro {
    background-color: #000000;
    margin: 10px;
    padding: 20px;
    transition: 1s ease-out;
    box-shadow: rgba(229, 223, 143, 0.3) 0px 7px 29px 0px;
}

.cardboxPro:hover {
    background-color: #000000;
    margin: 10px;
    padding: 20px;
    transition: 1s ease-out;
    box-shadow: rgba(229, 223, 143, 0.6) 0px 7px 29px 0px;
    transform: scale(1.15, 1.15);
}

.teamMemberCardText{
    margin-bottom: 0px;
}

/* -----Card Style----- */

.list-unstyled {
    line-height: 2;
}

.topfeatures {
    margin-top: 45px;
    margin-left: 20px;
    margin-right: 20px;
}

.topfeaturesSubDiv{
    margin: 10px;
}

/* -----Horizontal Line----- */
hr {
    color: #ffff00;
    border: 1px solid #ffff00;
}

/* -----About us Section----- */
.aboutUsHeader{
    margin: 10px; 
    padding: 35px;
}

.aboutUsDetails{
    margin: 10px; 
    padding: 35px;
}

/* -----Footer Style----- */
.py-5 {
    background-color: #000000;
}

.footerParagraphBold{
    color: #ffff00;
}

.footer {
    background-color: #000000;
    margin-top: 120px;

}

/* -----Footer Style----- */


/* -----Style for Transition----- */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hiddenfade {
    opacity: 0;
    transition: all 2.5s;
}

.showfade {
    opacity: 1;
}

.hiddenTop {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 2s;
}

.showTop {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.hiddenScale {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.5, 0.5);
    transition: all 2s;
}

.showScale {
    opacity: 1;
    filter: blur(0);
    transform: scale(1, 1);
}

/* -----Style for Transition----- */

.pricing-header {
    max-width: 700px;
}

.badge {
    background-color: #ffff00;
    color: #000000;
    font-size: 14px;
}


/* -----Style for Font Awesome Icons----- */
.fa {
    color: #ffffff;
    margin: 7px;
    transition: .5s ease-out;
    transform: translateX(0px);
}

.fa:hover {
    color: #ffff00;
    transition: .5s ease-in;
    transform: translateY(-7px);
}
/* -----Style for Font Awesome Icons----- */


/* -----Style for Download App Row----- */
.fluidRow {
    margin-top: 120px;
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
}

.fluidRowContact {
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
}

.DownloadAppRow {
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 20px;
    max-width: 600px;
}
/* -----Style for Download App Row----- */


/* -----Style for Company Header Row----- */
.companyheader {
    max-width: 700px;
}
.companyheaderimg{
    display: flex; 
    justify-content: center;
}
.companyHeaderSubSection{
    padding: 40px;
}

.messageOfCEOdiv{
    margin: 10px; 
    padding: 35px;
}
/* -----Style for Company Header Row----- */

/* Style for the Contact Us Page */

.contactusbg {
    background-image: url('../img/bg-contact.jpg');
    background-size: cover;
    background-color: #000000;
}

.contactuscontainer {
    background: rgb(0, 0, 0, .7);
    padding: 35px;
}

.form-control {
    width: 800px;
}

.contactUsFormRow{
    margin-top: 40px;
    margin-bottom: 40px;
}

input,
textarea {
    border-radius: 2px;
    background-color: #000000;
    border: 1px solid #ffff00;
    color: #ffffff;
    transition: .7s ease-out;
}

input:hover {
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
    background-color: #000000;
    transition: .7s ease-in;
}

input:focus {
    border: 1px solid #ffff00;
}

textarea:hover {
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
    background-color: #000000;
    transition: .7s ease-in;
}

input {
    height: 45px;
}

textarea {
    height: 85px;
}

/* Style for the Contact Us Page */


/* Style for 404 Page */
.page404bg {
    background-image: url('../img/bg-404.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.page404container {
    background: rgb(0, 0, 0, .7);
    padding: 35px;
}

.pageNotFoundDiv{
    max-width: 600px;
}

.page404row{
    height: 80vh;
}
/* Style for 404 Page */


/* Style for Coming Soon Page */
.comingsoonbg {
    background-image: url('../img/bg-comingsoon.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.comingSoonContainer{
    background: rgb(0, 0, 0, .7); 
    padding: 35px; 
}

.comingSoonMasterdiv {
    max-width: 600px;
}

.comingSoonSubDiv{
    display: flex;
}

.comingSoondiv {
    margin: 15px;
}

#remainingDays#remainingHours#remainingMinutes#remainingSeconds {
    margin-bottom: 0px;
}

/* Style for Coming Soon Page */


/* Style for Games Page */
.gamesDetailsDiv{
    margin: 15px;
}

/* App Download Button Style */
.appDownloadBtn{
    margin: 7px;
}

.dropBtn{
    margin-top: 2px;
    background-color: #000000;
    border: none;
    color: #858585;
}

.dropBtn:hover{
    background-color: #000000;
    border: none;
    color: #858585;
}