@charset "utf-8";
/* Author : Binod Raj Dhami */

/* ================================================== Root Variables */
:root {
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #000000;
    --theme-blue-dark-color: #0B183B;
    --theme-neon-color: #23d8ff;
    --theme-blue-color: #004FC7;
    --theme-sky-color: #00FFFF;
    --theme-light-color: #f1f1f1;

    --theme-font-racing-sans-one: "Racing Sans One", sans-serif;
    --theme-font-raleway: "Raleway", sans-serif;
    --theme-font-exo: "Exo 2", sans-serif;

    --transition: all ease-in-out 0.3s;
}

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

html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, li,
figure, blockquote,
span, a {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

a {
    text-decoration: none;
    line-height: inherit;
}

/* ================================================== Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--theme-font-racing-sans-one);
}

body {
    position: relative;
    font-size: 14px;
    min-height: 100vh;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-raleway);
    background-color: #000;
}

/* Backgrounds for Templates */
body.page-template-page-home {
    background: url('../images/home-bg.jpg') no-repeat fixed center center / cover;
}

body.page-template-page-faqs,
body.page-template-page-contact-us {
    background: url('../images/faq-contact-bg.jpg') no-repeat fixed center center / cover;
}

/* Wrapper */
.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding-bottom: 100px;
}

/* ================================================== Header */
.site-header {
    padding: 15px;
    position: relative;
    z-index: 9;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-logo {
    position: relative;
    top: 5px;
}

.site-header-logo img{
    width: 200px;
    height: auto;
}

.aside-header-icon-bars {
    font-size: 24px;
    background: transparent;
    border: none;
    color: var(--theme-primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.aside-header-icon-bars.flipped .fa-solid {
    transform: rotateY(180deg);
}

/* ================================================== Aside Menu */
.aside-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 70px);
    height: 100%;
    background: linear-gradient(180deg, var(--theme-blue-color) 0%, var(--theme-sky-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 99;
    overflow: hidden;
}

.aside-menu.active {
    transform: translateX(0);
}

.aside-menu video{
    position: absolute;
    top: 0;
    left: -60px;
    width: auto;
    height: 100%;
    z-index: -1;
    margin: 0 auto;
}

.hide-aside-menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--theme-primary-color);
    height: 70px;
    width: 50px;
}

#menu-header-menu .menu-item {
    list-style: none;
    text-align: center;
}

#menu-header-menu .menu-item a {
    line-height: 70px;
    font-size: 40px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-raleway);
}

/* ================================================== Home Page */
.welcome {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

.welcome h1 {
    font-size: 48px;
    line-height: 60px;
    text-shadow: 0px 4px 5px var(--theme-sky-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-racing-sans-one);
}

.welcome h1 span{
    display: block;
}

.welcome-play-now {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Play Now Button */
.welcome-play-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--theme-blue-dark-color);
    border-radius: 55px;
    z-index: 1;
}

/* Gradient Border */
.welcome-play-now-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 5px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--theme-primary-color), var(--theme-sky-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: var(--transition);
}

.welcome-play-now-btn:hover::before {
    background: linear-gradient(45deg, var(--theme-sky-color), var(--theme-primary-color));
}

.welcome-play-now-btn .btn-text {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--theme-font-exo);
    background: linear-gradient(90deg, var(--theme-sky-color), var(--theme-primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-play-now-btn .btn-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(119deg, var(--theme-sky-color), var(--theme-blue-color));
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-play-now-btn .btn-circle .fa-solid {
    font-size: 14px;
    background: linear-gradient(90deg, var(--theme-sky-color), var(--theme-primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================================== Footer */
.site-footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.site-footer h6,
.site-footer p {
    color: var(--theme-primary-color);
    font-family: var(--theme-font-raleway);
}

.site-footer h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-footer p {
    font-size: 12px;
    font-weight: 600;
}

#back-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9;
}

#back-top a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--theme-blue-color), var(--theme-blue-dark-color));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-primary-color);
}

/* ================================================== Page Breadcrumb */
.page-breadcrumb-content {
    margin: 80px 0 50px;
    text-align: center;
}

.page-breadcrumb-content h1 {
    font-size: 48px;
    line-height: 60px;
    text-shadow: 0px 4px 5px var(--theme-sky-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-racing-sans-one);
    margin-bottom: 10px;
}

.page-breadcrumb-content p {
    color: var(--theme-primary-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-raleway);
}

.page-breadcrumb-content a {
    color: var(--theme-primary-color);
}

.page-breadcrumb-content span {
    color: var(--theme-sky-color);
}

/* ================================================== FAQs */
.accordion-item {
    background: rgba(11, 24, 59, 0.8);
    margin-bottom: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
}

.accordion-header {
    padding: 15px 15px 0;
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 0 0 15px;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    font-family: var(--theme-font-raleway);
    box-shadow: none;
}

.accordion-item:not(:first-of-type){
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.accordion-button:not(.collapsed) {
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--theme-primary-color);
    background: transparent;
    box-shadow: none;
}

.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: transparent;
    color: var(--theme-primary-color);
    content: "\2b"; /* plus */
}

.accordion-button:not(.collapsed)::after {
    content: "\f068"; /* minus */
}

.accordion-body p {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--theme-font-raleway);
    color: var(--theme-primary-color);
}

/* ================================================== Contact Form */
.contact-form br {
    display: none;
}

.contact-form label {
    display: block;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-raleway);
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-form label span {
    color: red;
}

.contact-form .form-control {
    height: 45px;
    border-radius: 5px;
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.3);
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    height: 200px;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-raleway);
    text-transform: uppercase;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background: #ffb900;
}

.wpcf7-response-output {
    margin: 0;
}

/* ================================================== Responsive */
/* Hide website for desktop */
@media only screen and (min-width: 769px) {
    body {
        display: none !important;
    }
}

/* Hide message on mobile */
@media only screen and (max-width: 768px) {
    .welcome h1 {
        font-size: 32px;
        line-height: 40px;
    }

    #menu-header-menu .menu-item a {
        font-size: 28px;
        line-height: 50px;
    }
}