/* * {
    font-family: "Poppins", sans-serif;
} */

@font-face {
  font-family: Billiers;
  src: url('../fonts/billiers/Billiers.otf');
}

.mh10p0 {
    min-height: 10px;
    padding: 0px;
    float: left;
}

.mh10p5 {
    min-height: 10px;
    padding: 5px;
    float: left;
}

.mh10p10 {
    min-height: 10px;
    padding: 10px;
    float: left;
}

.mh10p15 {
    min-height: 10px;
    padding: 15px;
    float: left;
}

.mh10p20 {
    min-height: 10px;
    padding: 20px;
    float: left;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Menu */

.menu_outer
{
    width:100%;
    height:80px;
    float:left;
    position:relative;
    z-index:999;
}

.menu_inner
{
    width:100%;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu_logo_outer
{
    width:180px;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu_logo_outer img
{
    width:100%;
    height:80px;
    object-fit: contain;
    object-position: center;
}

.menu_right_outer
{
    width:200px;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.menu_center_buttons_outer
{
    flex:1;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
}

.menu_center_button
{
    min-width: 10px;
    height: 45px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    letter-spacing: 3px;
    font-family: 'Billiers', sans-serif;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none!important;
    text-shadow: 4px 4px 3px rgba(0,0,0,0.5);
    font-weight:200;
}

.menu_center_button:before
{
    content:'';
    width:0px;
    height:1px;
    background-color:#fff;
    position:absolute;
    left:0px;
    bottom:0px;
    transition: all 0.4s ease;
}

.menu_center_button:hover::before
{
    width:100%;
}

.menu_right_btn
{
    width:100%;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#cbfc01;
    color:#9000bd;
    font-family: 'Pixelify Sans', sans-serif;
    font-weight:600;
    letter-spacing:0.5px;
    font-size:16px;
    padding-bottom:2px;
    border-radius:5px;
    cursor:pointer;
    -webkit-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    transition: all 0.4s ease;
    text-decoration: none;;
}

.menu_right_btn:hover
{
    background-color:#fff;
}

.menu_right_social
{
    width:30px;
    height:30px;
    color:#fff;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition: all 0.2s ease;
    cursor:pointer;
    position:relative;
}

.menu_right_social:hover
{
    padding-bottom:17px;
}

.menu_right_social:before
{
    content:'';
    width:0px;
    height:1px;
    background-color:#fff;
    position:absolute;
    left:0px;
    bottom:0px;
    transition: all 0.4s ease;
}

.menu_right_social:hover::before
{
    width: 100%;
}

/* Menu */

/* Slider */

.slider_outer
{
    width:100%;
    min-height:20px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    float:left;
    position:relative;
    z-index:1;
    margin-top:-80px;
    overflow:hidden;
}

.slider_bg_lines
{
    width:170%;
    height:auto;
    float:left;
    position:absolute;
    top:-90%;
    left:-35%;
    background-size:contain;
    background-position:center;
    background-repeat: no-repeat;
    animation: slider_lines_animations 40s infinite linear;
    opacity:0.05;
}

.slider_bg_lines:before
{
    content:'';
    display:block;
    padding-bottom:100%;
}

@keyframes slider_lines_animations {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.slider_inner
{
    width:100%;
    min-height:20px;
    float:left;
    padding-top:80px;
    position:relative;
    z-index:9;
    padding-bottom:90px;
}

.slider_inner h3
{
    width:100%;
    font-family: 'Billiers', sans-serif;
    text-align:center;
    font-size:55px;
    text-align:center;
    margin-top:25px;
    letter-spacing:5px;
    color:#fffef3;
    text-shadow: 6px 6px 3px rgba(0,0,0,0.5);
}

.slider_game_line_outer
{
    width:100%;
    height:300px;
    float:left;
    border-radius:30px;
    margin-top:30px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.slider_game_line_btn
{
    width:80px;
    height:80px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:3px solid #fff;
    cursor:pointer;
    color:#fff;
    font-size:40px;
    -webkit-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    text-decoration: none!important;
}

/* Slider */

/* Footer */

.footer_outer
{
    width:100%;
    min-height:80px;
    float:left;
    margin-top:-45px;
    position:relative;
    z-index:1;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    overflow:hidden;
    padding-top:45px;
}

.footer_outer .slider_bg_lines
{
    width:250%;
    left:-75%;
}

.footer_bottom_line
{
    width:100%;
    min-height:20px;
    float:left;
    margin-top:10px;
    border-top:1px solid rgba(255, 255, 255, 0.37);
    padding:15px 0px;
}

.footer_bottom_line p
{
    width:100%;
    font-size:11px;
    font-weight:400;
    color:#fff;
    margin:0px;
    margin-bottom:3px;
    font-family: "Poppins", sans-serif;
}

.footer_bottom_line span
{
    width:100%;
    font-size:10px;
    font-weight:200;
    color:#fff;
    margin:0px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.footer_outer * .slider_game_line_outer
{
    position:relative;
    z-index:9;
    margin-bottom:35px;
    cursor:pointer;
}

.footer_outer * .menu_inner
{
    height:auto;
    padding-top:10px;
    border-top:1px solid rgba(255, 255, 255, 0.37);
}

.slider_game_line_outer h3
{
    width:100%;
    font-size:80px;
    font-family: 'Billiers', sans-serif;
    color:#fff;
    text-align:center;
    line-height:85px;
    letter-spacing: 8px;
    text-shadow: 2px 2px 0px #39004b, 5px 5px 0px #9000bd;
    margin-top:15px;
    float:left;
}

/* Footer */

/* Homepage */

.homepage_contents_outer
{
    width:100%;
    min-height:350px;
    background-color:#fffbdd;
    float:left;
    position:relative;
    z-index:15;
    border-radius:25px;
    float:left;
    margin-top:-45px;
}

.homepage_contents_top_slider
{
    width: calc(100% - 40px);
    height: 70px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    float: left;
    margin: 20px;
    border-radius: 18px;
    -webkit-box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.35);
    overflow: hidden;
}

.homepage_contents_top_slider_box
{
    width:auto;
    height:70px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: 'Billiers', sans-serif;
    font-size:25px;
    letter-spacing:5px;
    color:#fff;
    gap:30px;
    margin-right:30px;
}

.homepage_contents_top_slider_box i
{
    font-size:25px;
    opacity:0.4;
}

.homepage_contents_boxes
{
    width:100%;
    min-height:200px;
    float:left;
}


/* Homepage */

/* Mobile */

.mobile_menu_btn
{
    width:40px;
    height:40px;
    display:none;
    align-items:center;
    justify-content:center;
    background-color:#fff;
    color:rgba(3,61,91,1);
    font-family: 'Pixelify Sans', sans-serif;
    font-weight:600;
    letter-spacing:0.5px;
    font-size:20px;
    padding-left:2px;
    border-radius:5px;
    cursor:pointer;
    -webkit-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    box-shadow: 6px 6px 3px 0px rgba(0,0,0,0.45);
    transition: all 0.4s ease;
}

.mobile_menu_outer
{
    width:100%;
    height:100vh;
    position:fixed;
    left:0px;
    top:0px;
    z-index:99;
    padding:10px;
    float:left;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    overflow:hidden;
}

.mobile_menu_inner
{
    width:100%;
    height:calc(100vh - 100px);
    float:left;
    margin-top:80px;
    position:relative;
    z-index:9;
    overflow:auto;
}

.mobile_menu_btn_outer
{
    width:100%;
    min-height:70px;
    background-color:#fff;
    float:left;
    border-radius:20px;
    margin-bottom:20px;
    padding:10px;
    border-bottom:3px solid #dcdcdc;
    border-right:3px solid #dcdcdc;
}

.mobile_menu_btn_inner
{
    width:100%;
    height:60px;
    float:left;
    border-radius:15px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    display:flex;
    align-items:center;
    justify-content:Flex-start;
    padding:0px 20px;
}

.mobile_menu_btn_inner span
{
    font-size:21px;
    color:#fff;
    font-family: "Billiers",sans-serif;
    letter-spacing:4px;
}

@media only screen and (max-width: 600px)
{
    .menu_center_buttons_outer
    {
        display:none;
    }

    .menu_inner
    {
        padding-left:15px;
        padding-right:15px;
    }

    .menu_right_outer
    {
        flex:1;
        justify-content: flex-end;
    }

    .menu_right_btn
    {
        display:none;
    }

    .mobile_menu_btn
    {
        display:flex;
    }

    .slider_inner h3
    {
        font-size:39px;
    }

    .slider_game_line_outer
    {
        height:190px;
    }

    .slider_bg_lines
    {
        width:500%;
        left:-200%;
        top:auto;
        bottom:-150%;
    }

    .homepage_contents_top_slider_box
    {
        font-size:25px;
    }

    .homepage_contents_boxes h3
    {
        font-size:40px;
        line-height:55px;
    }

    .homepage_comments_outer .slick-slide
    {
        padding: 0px 10px;
    }

    .homepaeg_comments_box_inner h3
    {
        font-size:45px;
        line-height:45px;
    }

    .slider_game_line_outer h3
    {
        font-size:50px;
        line-height:55px;
    }

    .footer_outer * .slider_game_line_outer
    {
        margin-bottom:15px!important;
    }

    .footer_outer * .menu_inner
    {
        display:none;
    }

    .footer_outer .slider_bg_lines
    {
        width: 500%;
        left: -200%;
        bottom: -300%;
    }

    .footer_bottom_line span
    {
        line-height:20px;
    }

    .game_detail_table_outer table
    {
        width:1500px;
    }

    .menu_right_social
    {
        display:none;
    }

    .homepage_box_contents_outer
    {
        display:block!important;
    }
}

/* Mobile */

/* Custom Home */

.custom_homepage_title_outer
{
    width:100%;
    min-height:20px;
    float:left;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    margin-top:20px;
    margin-bottom:20px;
}

.custom_homepage_title_outer h3
{
    min-height:20px;
    margin:0px;
    float:left;
    text-transform: uppercase;
    font-family: "Billiers",sans-serif;
    font-size:20px;
    letter-spacing: 5px;
    margin-bottom:10px;
    color:#2b83aa;
}

.custom_homepage_title_outer h4
{
    min-height:20px;
    margin:0px;
    float:left;
    text-transform: uppercase;
    font-family: "Billiers",sans-serif;
    font-size:35px;
    letter-spacing: 5px;
    margin-bottom:10px;
    color:#164868;
}

.homepage_box_contents_outer
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_box_content
{
    width:100%;
    height:100%;
    background-color:#fff;
    float:left;
    padding:20px;
    border-radius:10px;
    border-right:4px solid #eaeaea;
    border-bottom:4px solid #eaeaea;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.15);
    box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.15);
}

.homepage_box_content_icon
{
    width:74px;
    height:74px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    float:left;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0px calc(50% - 37px);
    margin-bottom:20px;
    position:relative;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.25);
}

.homepage_box_content_icon:before
{
    content:'';
    width:60px;
    height:60px;
    background-color:#fff;
    position:absolute;
    z-index:1;
    border-radius:50%;
    -webkit-box-shadow: inset 0px 3px 13px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 3px 13px -3px rgba(0,0,0,0.75);
    box-shadow: inset 0px 3px 13px -3px rgba(0,0,0,0.75);
}

.homepage_box_content_icon i
{
    font-size:30px;
    color:#164868;
    position:absolute;
    z-index:3;
    margin-top:3px;
}

.homepage_box_content h3
{
    width:100%;
    font-size:20px;
    text-align:center;
    color:#164868;
    font-family: "Billiers",sans-serif;
    margin:0px;
    margin-bottom:10px;
    font-weight:600;
}

.homepage_box_content p
{
    width:100%;
    font-size:15px;
    text-align:center;
    color:#164868;
    font-family: "Billiers",sans-serif;
    margin:0px;
    opacity:0.8;
}

.homepage_line_contents_outer
{
    width:100%;
    min-height:50px;
    float:left;
    margin-top:50px;
    background: rgb(3,61,91);
    background: linear-gradient(351deg, rgba(3,61,91,1) 0%, rgba(1,135,173,1) 100%);
    margin-bottom:10px;
}

.homepaeg_line_contents_inner
{
    width:100%;
    min-height:50px;
    float:left;
    padding:10px 0px;
}

.homepaeg_line_contents_inner .custom_homepage_title_outer h3
{
    color:#fff;
    opacity:0.7;
}

.homepaeg_line_contents_inner .custom_homepage_title_outer h4
{
    color:#fff;
}

.homepage_about_text
{
    width:100%;
    min-height:20px;
    float:left;
    font-size:19px;
    font-weight:200;
    color:#fff;
    font-family: "Billiers",sans-serif;
    letter-spacing: 3px;
    text-align:center;
    line-height:35px;
    margin-bottom:30px;
    opacity: 0.7;
}

.homepaeg_line_contents_inner * .accordion-button
{
    font-family: "Billiers",sans-serif;
    letter-spacing: 1px;
}

 .custom_form_outer
{
    width:100%;
    min-height:20px;
    float:left;
}

.custom_form_outer p
{
    width:100%;
    float:left;
    margin-bottom:5px;
    font-family: "Billiers","Poppins",sans-serif;
    color:rgb(3,61,91);
}

.custom_form_outer input
{
    width:100%;
    height:45px;
    background-color:#fff;
    border-radius:10px;
    border:0px;
    outline:0px;
    box-shadow: 0px;
    padding:0px 15px;
    border-bottom:4px solid #e4e4e4;
    border-right:4px solid #e4e4e4;
    letter-spacing: 1px;
    font-size:16px;
    color:#333;
    font-family: "Billiers","Poppins",sans-serif;
}

.custom_form_outer textarea
{
    width:100%;
    height:145px;
    resize:none;
    background-color:#fff;
    border-radius:10px;
    border:0px;
    outline:0px;
    box-shadow: 0px;
    padding:10px 15px;
    border-bottom:4px solid #e4e4e4;
    border-right:4px solid #e4e4e4;
    letter-spacing: 1px;
    font-size:16px;
    color:#333;
    font-family: "Billiers","Poppins",sans-serif;
}

.custom_form_outer button
{
    width:250px;
    height:50px;
    background-color:rgb(3,61,91);
    color:#fff;
    border:0px;
    border-right:3px solid rgb(1, 42, 63);
    border-bottom:3px solid rgb(1, 42, 63);
    border-radius:10px;
    font-family: "Billiers","Poppins",sans-serif;
    font-size:20px;
    margin:0px calc(50% - 125px);
    letter-spacing: 2px;
}

/* Custom Home */
