/*
Copyright (c) 2022 AGC Rummy
------------------------------------------------------------------- 
[Master Stylesheet] 
Project: AGC Rummy
Version: 1.0.0 
------------------------------------------------------------------- 
[Table of contents] 
1. Body 
2. Typography css / a 
3. Preloader css 
4. Placeholder css 
5. Button css 
6. Banner css 
7. Menu css 
8. About css 
9. Service css 
10.Games css 
11.Plans css 
12.Blog css 
13.Reservation css 
14.Contact css 
15.Footer css 
16.Blog Single css 
17.Sidebar css 
18.Social Icons css 
-------------------------------------------------------------------*/
body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #5e587b;
    background-color: #110b30;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/*----Body End----*/
/*====Typography Css Start====*/
a {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: #ee8a27;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button {
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ffae11;
}

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

.bg_color {
    background-color: #333333;
}

.color1 {
    color: #ffae11;
}

.form-control {
    padding: .5rem 20px;
    font-size: 15px;
    height: 46px;
    line-height: 46px;
    color: #9891bb;
    border-radius: 4px;
    border: none;
    background-color: transparent;
    border: 1px solid #9891bb;
}

.nice-select {
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-weight: normal;
    height: 50px;
    width: 100%;
    line-height: 50px;
}

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

.nice-select:after {
    border-bottom: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
    content: '';
    display: block;
    height: 6px;
    width: 6px;
}

.bottom_marger30 {
    margin-bottom: 30px;
}

.bottom_marger50 {
    margin-bottom: 50px;
}

/*====Preloader Css Start====*/
.px_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #110b30;
    z-index: 10000;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.loaded .px_loader {
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
}

.loader_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.google-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100px;
    height: 100px;
}

.google-loader-bar {
    display: inline-block;
    width: 5px;
    height: 50px;
    border-radius: 5px;
    margin: 2px;
    animation: google-loading 1s ease-in-out infinite;
    background-color: #fb5a1e;
}

.google-loader-bar:nth-child(1) {
    animation-delay: 0;
}

.google-loader-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.google-loader-bar:nth-child(3) {
    animation-delay: .2s;
}

.google-loader-bar:nth-child(4) {
    animation-delay: .3s;
}

@keyframes google-loading {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1, 2);
    }

    40% {
        transform: scale(1);
    }
}

@-webkit-keyframes google-loading {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1, 2);
    }

    40% {
        transform: scale(1);
    }
}

@-ms-keyframes google-loading {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1, 2);
    }

    40% {
        transform: scale(1);
    }
}

/*====Placeholder css start====*/
.form-control::-webkit-input-placeholder {
    color: #5e587b;
}

.form-control::-moz-placeholder {
    color: #5e587b;
}

.form-control:-ms-input-placeholder {
    color: #5e587b;
}

.form-control:focus {
    border-color: #ee8a27;
    background-color: transparent;
    color: #9891bb;
}

/*====Button Css Start====*/
.px_btn {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 700;
    min-height: 50px;
    background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    display: inline-block;
    padding: 14px 30px 12px 30px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    position: relative;
    min-width: 151px;
    overflow: hidden;
    text-align: center;
    border-radius: 28px;
}

.px_btn:hover {
    color: #ffffff;
}

.px_btn:before {
    content: "\f178";
    font-family: FontAwesome;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 30px;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    transition: all 0.3s linear 0s;
    background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
}

.px_btn:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    text-indent: 0;
}

.px_btn_download {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 700;
    min-height: 50px;
    background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    display: inline-block;
    /* padding: 14px 30px 12px 30px; */
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    position: relative;
    min-width: 151px;
    overflow: hidden;
    text-align: center;
    border-radius: 28px;
    margin: -20px -10px 0px 0px;
}

.px_btn_download:hover {
    color: #ffffff !important;
}

/* .px_btn_download:hover {
    color: #ffffff;
} */


/* .px_btn_download:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    text-indent: 0;
} */

/*====Banner Css Start====*/
.px_banner_wrapper {
    position: relative;
    background-image: url('../images/banner-bg-1.png');
    background-size: cover;
    z-index: 10;
}

#js-particles {
    position: absolute !important;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    z-index: -1;
}

.px_banner_wrapper {
    padding: 390px 0px 500px;
}

.px_banner_wrapper h1 {
    font-size: 160px;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Berkshire Swash', cursive;
    background-image: url(../images/text_img.jpg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

.px_banner_wrapper h3 {
    color: #fff;
    text-align: center;
    padding: 10px 0 0 0;
}

.px_banner_wrapper .slick-active h1 {
    animation: fadeIn 1s 1 both 500ms;
    -webkit-animation: fadeIn 1s 1 both 500ms;
    -moz-animation: fadeIn 1s 1 both 500ms;
    -ms-animation: fadeIn 1s 1 both 500ms;
    -o-animation: fadeIn 1s 1 both 500ms;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

/*====Menu Wrapper====*/
.px_menu_wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.px_menu_close {
    display: none;
}

.px_menu {
    position: relative;
    padding-top: 40px;
}

.px_menu ul li {
    float: left;
}

.px_menu ul li a {
    color: #fff;
    text-transform: capitalize;
    padding: 8px 10px;
    /* padding: 8px 18px; */
    font-size: 17px;
    font-weight: 600;
    position: relative;
}

.px_menu ul li a::before {
    top: 0;
    transform: translateY(10px);
}

.px_menu ul li a:before,
.px_menu ul li a:after {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #FFF;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.px_menu ul li a::after {
    bottom: 0;
    transform: translateY(-10px);
}

.px_menu ul li a:hover::before,
.px_menu ul li a:hover::after {
    opacity: 1;
    transform: translateY(0px);
}

.px_menu ul li a.active {
    color: #ee8a27;
}

a:not([href]):not([tabindex]) {
    /* color: #9891bb; */
    color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: #ee8a27;
}

.px_menu ul li a:hover {
    color: #fff;
}

.px_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: 25px;
}

.px_menu_wrapper_blog .px_logo {
    left: 0;
}

nav.px_menu_section.menu_right {
    float: right;
}

.px_menu_wrapper.px_fixed {
    position: fixed;
    z-index: 10;
    background-color: #5E35B1;
    padding: 0 0 20px 0;
    box-shadow: 0 10px 20px 0 rgb(46 56 220 / 5%);
    -webkit-animation: slideInDown 1s;
    -moz-animation: slideInDown 1s;
    -ms-animation: slideInDown 1s;
    -o-animation: slideInDown 1s;
    animation: slideInDown 1s;
    backface-visibility: hidden;
}

.px_menu_wrapper.px_fixed .px_logo {
    top: 15px;
}

.px_logo_div1 {
    display: none;
}

.menu_btn {
    display: none;
}

.blog_single_menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 60px;
    width: 130px;
    height: 40px;
    transition: all 0.5s;
    background-image: linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.blog_single_menu li a:hover {
    color: #fff;
}

.blog_single_menu li a:before,
.blog_single_menu li a::after {
    display: none;
}

.px_menu_section ul li i {
    padding-left: 5px;
}

.blog_dropdown {
    position: relative;
}

.blog_dropdown:hover .blog_single_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-20px);
}

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

.single-fact-inner {
    transition: all .5s ease-in-out;
}

.default-card {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-top: 45px;
    text-align: center;
}

.default-card .default-card-inner {
    background: rgba(77, 25, 173, 0.5);
    border: 2px solid rgba(94, 53, 177, 0.5);
    border-radius: 10px;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.default-card .default-card-inner:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 160px;
    width: 160px;
    background-image: url(../images/ro.png);
    background-size: cover;
    -webkit-transform: translate(50px, -50%);
    transform: translate(50px, -50%);
}

.default-card .default-card-inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 160px;
    width: 160px;
    background-image: url(../images/ro.png);
    background-size: cover;
    -webkit-transform: translate(-50px, -50%);
    transform: translate(-50px, -50%);
}

.single-fact-inner:hover .default-card-inner:after,
.single-fact-inner:hover .default-card-inner:before {
    background-image: url('../images/ro-2.png');
}

.default-card .thumb {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: 84px;
    width: 84px;
    background: #5E35B1;
    border-radius: 50%;
    line-height: 84px;
    margin: auto;
    position: relative;
    z-index: 1;
    transition: all .5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-card .thumb:after {
    content: "";
    position: absolute;
    height: 96px;
    width: 96px;
    border-radius: 50%;
    left: -6px;
    top: -6px;
    background: #5E35B1;
    opacity: 0.45;
    z-index: -1;
    transition: all .3s linear;
}

.single-fact-inner .details {
    margin-top: -20px;
    padding: 0 30px 18px;
}

.single-fact-inner h3 {
    margin-bottom: 0;
    color: #fff;
}

.single-fact-inner p {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.bg-overlay-2:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgb(33 6 92 / 95%);
}

.bg-overlay-2 .container {
    position: relative;
    z-index: 2;
}

.single-fact-inner:hover .thumb {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF8D35), to(#F01111));
    background: linear-gradient(#FF8D35, #F01111);

}

.single-fact-inner:hover .default-card-inner {
    background: linear-gradient(to bottom, #FF8D35, #F01111);
}

.single-fact-inner:hover .thumb:after {
    background: rgba(255, 255, 255, 0.45);
}

/*====About Css Start====*/
.px_heading {
    text-align: center;
}

.px_about_wrapper {
    position: relative;
    background-image: url('../images/about-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 76px 0 73px 0;
}

.px_about_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(11, 0, 34, 0.9);
}

.px_about_wrapper #about .container,
.px_service_wrapper #service .container,
.px_game_wrapper #game .container,
.px_plans_wrapper #plans .container,
.px_blog_wrapper #blog .container {
    position: relative;
    z-index: 2;
}

.big_icon {
    position: absolute;
    bottom: -92px;
    left: -65px;
}

.px_heading h5 {
    font-size: 24px;
    font-family: 'Berkshire Swash', cursive;
    color: #ee8a27;
    text-transform: capitalize;
}

.px_heading h1 {
    font-size: 50px;
    text-transform: capitalize;
    padding-top: 10px;
    font-weight: 600;
}

.px_about_data {
    padding-top: 50px;
}

.px_about_data h2 {
    font-size: 24px;
    padding-bottom: 20px;
}

.px_about_data p {
    margin-bottom: 30px;
    line-height: 24px;
    color: #fff;
    font-size: 16px;
}

.px_about_img {
    padding-top: 50px;
    position: relative;
}

.px_about_img img {
    border-radius: 4px;
}

.px_abt_ovrlay {
    position: absolute;
    right: 0;
    top: 66%;
}

.px_abt_ovrlay:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.88;
    border-radius: 8px;
    background-image: -moz-linear-gradient(90deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
}

.px_abt_ovrlay img {
    border-radius: 8px;
}

.px_about_img .video-play-btn {
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.video-play-btn {
    border-radius: 50%;
    width: 124px;
    height: 124px;
    display: inline-block;
    line-height: 122px;
    position: relative;
    z-index: 0;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#FF8D35), to(rgba(240, 17, 17, 0.5)));
    background: linear-gradient(#FF8D35, rgba(240, 17, 17, 0.5));
    z-index: 3;
}

.px_about_img:after {
    content: "";
    position: absolute;
    width: 94.5%;
    height: 87%;
    background: rgba(56, 17, 127, 0.25);
    left: 0px;
    top: 50px;
    border-radius: 10px;
    z-index: 1;
}

.video-play-btn:before {
    z-index: -1;
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.31);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-play-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
}

/*====Service Css Start====*/
.px_service_wrapper {
    padding: 76px 0px 80px 0;
    position: relative;
    background-image: url('../images/services/services-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.px_service_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(33 6 92 / 95%);
}

.big_icon2 {
    position: absolute;
    right: -70px;
    bottom: 0;
    z-index: -1;
}

.px_service_img {
    padding-top: 50px;
}

.px_service_img img {
    border-radius: 4px;
}

.px_service_slider {
    padding-top: 50px;
}

.px_ser_data h2 {
    font-size: 24px;
    padding-bottom: 25px;
}

.px_service_slider .slick-slide .thum_icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 100%;
    font-size: 30px;
    color: #ffffff;
    background-image: -moz-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.px_service_slider .slick-track {
    margin-left: 0;
}

.px_service_slider .slick-slide {
    opacity: 0.3;
}

.slick-slide:focus {
    outline: none;
}

.px_service_slider .slick-slide.slick-current {
    opacity: 1;
}

.px_service_slider .slick-slide.slick-current .px_ser_data {
    animation: slidefrombottom 1s 1 both 500ms;
    -webkit-animation: slidefrombottom 1s 1 both 500ms;
    -moz-animation: slidefrombottom 1s 1 both 500ms;
    -ms-animation: slidefrombottom 1s 1 both 500ms;
    -o-animation: slidefrombottom 1s 1 both 500ms;
}

.px_service_box {
    border-radius: 20px;
    padding: 50px 20px 50px 20px;
    text-align: center;
    margin: 0 10px 0px 10px;
    position: relative;
    z-index: 2;
    transition: all .4s ease-in-out;
}

.px_service_box:hover .px_service_box_img {
    animation: zoom-fade 2s infinite linear;
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        transition: all .4s;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.slick-slider .slick-list .slick-track .element {
    background-image: url('../images/services/ser-box-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 10px 30px 10px;
    transition: all .5s ease-in-out;
}

.slick-slider .slick-list .slick-track .element:hover {
    background: linear-gradient(to bottom, #FF8D35, #F01111);
}

.slick-slider .element::after,
.slick-slider .slick-list .slick-track .element::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 25, 173, 0.90);
}

.px_service_box_img {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(9 8 87 / 60%);
    border-radius: 50%;
    margin: 0 auto;
    transition: all .4s ease-in-out;
}

.px_service_box h3 {
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
    padding: 20px 0;
}

.px_service_box p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.px_service_box img {
    text-align: center;
    margin: 0 auto;
}

.slick-slider {
    top: 50px;
    margin: 0 0 30px 0;
}

.slick-next:before,
.slick-prev:before {
    font-size: 30px;
}

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

button.slick-prev.slick-arrow {
    top: -40px;
    left: auto;
    right: 90px;
}

/*====Games css====*/
.px_game_wrapper {
    position: relative;
    background-image: url(../images/games-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 76px 0 80px 0;
}

.px_game_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(33 6 92 / 95%);
}

.big_icon3 {
    position: absolute;
    left: -50px;
    bottom: -137px;
    z-index: -1;
}

.px_game_img {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in;
    margin-bottom: 30px;
}

.game_shadow {
    text-align: center;
    padding-top: 25px;
}

.px_game_box {
    padding-top: 50px;
}

.px_game_name {
    position: absolute;
    height: 50px;
    background-image: -moz-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(45deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 700;
    width: 100%;
    bottom: 50px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.px_game_info {
    position: absolute;
    background-image: -webkit-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    width: inherit;
    height: inherit;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-backface-visibility: hidden;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.px_game_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
}

.px_game_text i {
    font-size: 50px;
}

.px_game_text p {
    margin: 0px;
    padding-top: 10px;
}

.px_game_img:hover .px_game_info {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.px_game_img:hover .px_game_name {
    bottom: -50%;
}

.px_game_img:hover .overlay1 {
    opacity: 1;
}

.overlay1 {
    position: absolute;
    text-align: center;
    top: 0%;
    left: 0%;
    right: 0%;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .4s ease-in;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.overlay-text:before {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    -o-transition: transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    background-color: rgba(0, 0, 0, 0.5);
}

.port-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.port-text-btm {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.port-text-btm h3 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 2px;
    color: #fff;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.port-text-btm p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}

.px_game_img img {
    width: 100%;
    transition: all .3s ease-in;
}

.px_game_img:hover img {
    transform: scale(1.06);
}

.px_game_img:hover .overlay1 {
    opacity: 1;
}

.px_freetip_section {
    position: relative;
    background-image: url('../images/freetip-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 100px 0;
}

.px_freetip_section::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(20 0 60 / 95%);
}

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

.px_freetip_header {
    text-align: center;
}

.px_freetip_header h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.px_freetip_header h2 {
    font-size: 50px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/*====Plans Css Start====*/
.px_plans_wrapper {
    padding: 76px 0px 96px 0;
    position: relative;
    background-image: url('../images/pricing-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.px_plans_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(20 0 60 / 95%);
}

.big_icon4 {
    position: absolute;
    right: 20px;
    bottom: -30px;
    z-index: -1;
}

.px_plan_box {
    text-align: center;
    border: 1px solid rgba(77, 25, 173, 0.5);
    border-radius: 4px;
    margin-top: 50px;
    padding-bottom: 40px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    background-color: rgba(77, 25, 173, 0.5);
    position: relative;
}

.px_plan_list {
    border-top: 1px dashed #fff;
    padding: 40px 0 30px 0;
}

.px_plan_box:hover {
    margin-top: 30px;
}

.px_plan_head {
    padding: 25px 0px 20px;
}

.px_plan_head h2 {
    color: #ffffff;
    font-size: 24px;
    text-transform: capitalize;
}

.px_plan_rs h1 {
    color: #ffffff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 30px;
}

.px_plan_rs small {
    font-size: 32px;
    font-weight: 500;
    margin-right: 5px;
}

.px_plan_rs span {
    font-size: 18px;
    font-weight: 700;
}

.px_plan_list ul li {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
}

.px_plan_box .px_btn {
    background-color: #5ca0f2;
    margin-top: 50px;
    position: absolute;
    left: 33%;
    transition: all .5s ease-in-out;
}

.px_plan_box .px_btn:before {
    display: none;
}

.px_plan_box:hover .px_plan_list a {
    margin-top: 0px;
}

.px_plan_box .px_btn:hover {
    background-image: -webkit-linear-gradient(0deg, rgb(247, 183, 51) 0%, rgb(252, 74, 26) 100%);
}

/*====Blog Css Start====*/
.px_blog_wrapper {
    position: relative;
    background-image: url('../images/blog/blog-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 76px 0 22px 0;
}

.px_blog_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(33 6 92 / 95%);
}

.big_icon5 {
    position: absolute;
    left: -80px;
    bottom: -30px;
    z-index: -1;
}

.px_blog_box {
    margin-bottom: 50px;
}

.px_blog_img {
    position: relative;
    overflow: hidden;
}

.px_blog_img::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.px_blog_img:hover:before {
    animation: img-circle .75s;
}

@keyframes img-circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

.px_blog_img_ovrly {
    position: absolute;
    background-image: -webkit-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(45deg, rgba(252, 74, 26, 0.88) 0%, rgb(247, 183, 51) 100%);
    width: inherit;
    height: inherit;
    border-radius: 8px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-backface-visibility: hidden;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blg_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.blg_icon a {
    color: #ffffff;
    font-size: 30px;
}

.px_blog_box:hover .px_blog_img_ovrly {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.px_blog_img img {
    border-radius: 8px;
}

.px_blog_data h2 {
    font-size: 18px;
    padding: 25px 0px 15px;
}

.px_blog_data h2 a {
    color: #fff;
    font-size: 20px;
}

.px_blog_data h2 a:hover {
    color: #ee8a27;
}

.px_blog_data p {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.read_more {
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 1px;
}

/*====Reservation Css Start====*/
.px_reserv_wrapper {
    position: relative;
    background-image: url('../images/table-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 76px 0 70px 0;
}

.px_reserv_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(33 6 92 / 95%);
}

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

.px_reserv_wrapper .px_heading h1 {
    padding-top: 0px;
}

.big_icon6 {
    position: absolute;
    right: -80px;
    bottom: -91px;
    z-index: 10;
}

.px_res_img {
    text-align: center;
}

.px_res_form .px_heading {
    text-align: left;
}

.px_res_input {
    margin-bottom: 20px;
    position: relative;
}

.px_res_input .input-group-addon {
    color: #5e587b;
    background-color: transparent;
    position: absolute;
    top: 11px;
    right: 10px;
}

.radio_name {
    width: 60px;
    float: left;
    color: #9891bb;
    line-height: 49px;
}

.px_res_input .switch-field {
    overflow: hidden;
    width: calc(100% - 60px);
}

.px_res_input .switch-title {
    margin-bottom: 6px;
}

.px_res_input .switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.px_res_input .switch-field label {
    float: left;
}

.px_res_input .switch-field label {
    display: inline-block;
    max-width: 101px;
    background-color: transparent;
    color: #5e587b;
    font-size: 14px;
    min-height: 46px;
    line-height: 46px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 0px 30px;
    border: 1px solid #9891bb;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.px_res_input .switch-field label:hover {
    cursor: pointer;
}

.px_res_input .switch-field input:checked+label {
    background-color: #9891bb;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.px_res_input .switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.px_res_input .switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.px_res_input textarea.form-control {
    height: 171px;
    resize: none;
}

.datepicker td,
.datepicker th {
    text-align: center;
    width: 35px;
    height: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    border: none;
    border: 1px solid #c2aee4;
}

.datepicker table {
    background-color: #9891bb;
}

.datepicker.dropdown-menu {
    color: #fff;
}

.datepicker {
    padding: 0;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #2b1890;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-color: #7561da !important;
    background-image: none;
    background-image: none;
    background-image: none;
    background-image: none;
    background-image: none;
    background-image: none;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr:first-child th:hover,
.datepicker table tr td.day:hover {
    background: #7561da;
}

.bootstrap-timepicker-widget table {
    background-color: #9891bb;
}

.bootstrap-timepicker-widget.dropdown-menu {
    padding: 0;
}

.bootstrap-timepicker-widget table td input {
    width: 35px;
    border-radius: 0px;
}

.reserve {
    text-align: right;
}

/*====Contact Css Start====*/
.px_contact_wrapper {
    padding: 75px 0 90px;
    background-image: url('../images/contact-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.px_contact_wrapper:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(33 6 92 / 95%);
    content: "";
    z-index: -1;
}

.px_con_box {
    text-align: center;
    background-color: rgba(77, 25, 173, 0.5);
    position: relative;
    padding: 40px 0 40px 0;
}

.px_con_icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 25px;
    background: linear-gradient(to bottom, #FF8D35, #F01111);
    display: inline-block;
}

.px_con_box h2 {
    font-size: 18px;
    padding: 15px 0px;
}

.px_con_box p {
    margin: 0px;
    color: #fff;
}

.px_con_icon i {
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.px_con_box:hover .px_con_icon i {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}

.px_con_icon.icon2 {
    background-color: #ee8a27;
}

.px_con_icon.icon3 {
    background-color: #865cdc;
}

.px_con_icon.icon4 {
    background-color: #e94951;
}

.px_map {
    padding: 80px 0px 0px;
}

.px_map #map {
    height: 450px;
}

.px_btm_footer {
    background-color: #110b30;
    padding: 13px 0px;
    text-align: center;
}

p.copyright {
    margin: 0px;
    color: #fff;
}

.px_bottom_footer {
    position: relative;
    background-image: url('../images/contact-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0 60px 0;
    z-index: 0;
}

.widget {
    margin-bottom: 20px;
}

.px_bottom_footer::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(17 11 48 / 96%);
}

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

.svg-inline--fa.fa-w-10 {
    width: .625em;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}

.svg-inline--fa.fa-w-18 {
    width: 1.125em;
}

.footer-area .widget_about .details p i,
.footer-area .widget_about .details p svg {
    margin-right: 10px;
}

.widget.widget_nav_menu h4 {
    margin-bottom: 29px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.widget.widget_nav_menu h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 60px;
    background: #5E35B1;
}

.widget_nav_menu ul li {
    margin-bottom: 7px;
    font-size: 16px;
}

.widget.widget_about .details p {
    color: #fff;
    font-size: 16px;
}

.text-white.mb-4.sub-para {
    font-size: 16px;
}

ul.social-media {
    display: flex;
    align-items: flex-start;
}

ul.social-media li,
.widget.widget_about .details p svg {
    margin-right: 10px;
}

ul.social-media li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

ul.social-media li a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF8D35), to(#F01111));
    background: linear-gradient(#FF8D35, #F01111);
    border-color: transparent;
}

.single-subscribe-inner {
    position: relative;
}

.single-subscribe-inner input {
    height: 55px;
    background: rgba(94, 53, 177, 0.5);
    border: 0;
    border-radius: 28px;
    color: #fff;
    padding: 0 158px 0 20px;
    width: 100%;
}

.px_btn.px_sub_btn {
    position: absolute;
    border-radius: 28px;
    right: 0;
    top: 0;
    border-color: #fa6a21;
    padding: 15px 30px;
    border: none;
}

.px_feature_section {
    position: relative;
    background-image: url('../images/features-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 100px 0;
}

.px_feature_section::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(20 0 60 / 95%);
}

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

.px_contact_map .container-fluid {
    padding: 0;
}

.px_contact_map {
    overflow-x: hidden;
}

/*====Blog Single Css Start====*/
.breadcrumb-area {
    position: relative;
    padding: 200px 0 100px 0;
}

.px_brad_wrapper {
    position: relative;
    z-index: 1;
}

ul.page-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h2.page-title {
    text-align: center;
}

ul.page-list li {
    color: #fff;
}

ul.page-list li:nth-child(2) {
    margin-left: 5px;
}

.px_brad_wrapper h1 {
    font-size: 45px;
    padding-top: 65px;
    font-weight: bold;
}

.single_blog_wrapper {
    padding: 80px 0px;
    background-color: #070759;
}

.blog_box h1 {
    font-size: 28px;
    padding: 0px 0px 20px;
}

.blog_box p {
    margin-bottom: 25px;
    color: #fff;
}

.blog_data img {
    padding-bottom: 30px;
}

.blog_admin {
    border: 1px solid #9891bb;
    border-width: 1px 0px 1px 0px;
    padding: 15px 0px;
    display: inline-block;
    width: 100%;
}

.blog_admin img {
    display: inline-block;
    float: left;
    padding-right: 15px;
}

.blog_admin h2 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: bold;
    padding-bottom: 10px;
}

.blog_admin span {
    color: #fff;
}

.admin_img {
    width: 30%;
    float: left;
    padding-left: 15px;
}

.share_icon {
    float: right;
    width: 70%;
    line-height: 64px;
}

.share_icon ul {
    float: right;
}

.share_icon ul li {
    float: left;
    margin-right: 15px;
}

.share_icon ul li a {
    color: #9891bb;
}

.share_icon ul li a:hover {
    color: #ee8a27;
}

.blog_comments {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #9891bb;
    padding-bottom: 40px;
}

h2.cmnt_title {
    padding: 50px 0px 30px;
    font-size: 25px;
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
}

.cmnt_img {
    width: 120px;
    float: left;
}

.cmnt_body {
    width: calc(100% - 120px);
    float: left;
}

.cmnt_body h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: bold;
    display: inline-block;
}

.cmnt_body .button {
    float: right;
}

.cmnt_body .button a {
    color: #fff;
}

.cmnt_body .button a:hover {
    color: #ee8a27;
}

.cmnt_body p {
    margin-top: 15px;
    margin-bottom: 10px;
}

.cmnt_body span {
    color: #9891bb;
}

.comment_form .px_res_input textarea.form-control {
    height: 179px;
    resize: none;
}

/*====sidebar css start====*/
.blog-sidebar .sidebar-widget {
    margin-bottom: 40px;
}

.blog-sidebar .sidebar-widget h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
}

.blog-sidebar .sidebar-widget h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background-color: #ee8a27;
    left: 0;
    bottom: 0px;
}

/*widget-search*/
.blog-sidebar .widget-search {
    position: relative;
}

.blog-sidebar .widget-search input {
    padding-left: 20px;
    color: #9891bb;
    height: 50px;
    border: 1px solid #9891bb;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.blog-sidebar .widget-search input:focus {
    background: transparent;
}

.blog-sidebar .widget-search i {
    position: absolute;
    right: 0px;
    padding: 16px 12px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.blog-sidebar .widget-search input:focus {
    border: 1px solid #ee8a27;
}

/*widget-link*/
.blog-sidebar .widget-link ul li {
    display: block;
    clear: both;
    line-height: 30px;
}

.blog-sidebar .widget-link ul li a i {
    padding-right: 10px;
}

.blog-sidebar .widget-link ul li a {
    display: block;
    font-size: 15px;
    border-bottom: 1px solid #9891bb;
    padding: 10px 0px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blog-sidebar .widget-link ul li a:hover {
    color: #ee8a27;
    border-color: #ee8a27;
    margin-left: 5px;
}

/*recent-post*/
.blog-sidebar .sidebar-widget .recent-post {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-color: #9891bb;
}

.blog-sidebar .sidebar-widget .recent-post:last-child {
    border-bottom: 0px;
}

/*recent-post*/
.blog-sidebar .recent-post {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ee8a27;
}

.blog-sidebar .recent-post:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.blog-sidebar .recent-post-block h6 {
    margin-bottom: 40px;
}

.blog-sidebar .recent-post-image {
    display: table-cell;
}

.blog-sidebar .recent-post-image img {
    vertical-align: middle;
    width: 70px;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}

.blog-sidebar .recent-post:hover .recent-post-image img {
    opacity: 0.5;
}

.blog-sidebar .recent-post-info {
    display: table-cell;
    padding-left: 15px;
    vertical-align: top;
}

.blog-sidebar .recent-post-info a {
    color: #fff;
    font-size: 15px;
    vertical-align: top;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blog-sidebar .recent-post-info a:hover {
    color: #ee8a27;
}

.blog-sidebar .recent-post-info span {
    color: #ee8a27;
    font-size: 15px;
    display: table;
    padding-top: 5px;
}

.blog-sidebar .recent-post-info i {
    color: #ee8a27;
    font-size: 14px;
    padding-right: 5px;
}

.blog-sidebar .widget-link ul li:last-child a {
    border-bottom: none;
}

ul.tag-cloud {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
}

ul.tag-cloud li {
    margin: 10px 0;
}

ul.tag-cloud li a {
    padding: 5px 13px;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    background-color: #2e2944;
    border: 1px solid #25203c;
    color: #fff;
    margin: 8px;
    margin-left: 0px;
    margin-top: 0px;
    position: relative;
    border-radius: 4px;
    transition: all 0.5s;
}

ul.tag-cloud li a:hover {
    color: #fff;
    background-color: rgb(94 53 177);
}

/*====Social Icons====*/
.px_so_icons {
    position: fixed;
    top: 0;
    right: -50px;
    z-index: 100;
    width: 50px;
    backface-visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    bottom: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.px_so_icons.showicons {
    right: 0;
}

.px_so_icons ul li {
    width: 100%;
    display: inline-block;
}

.px_so_icons ul li a {
    width: 35px;
    height: 35px;
    color: #ffffff;
    line-height: 35px;
    display: block;
    margin-bottom: 5px;
    border-radius: 4px;
    text-align: center;
    background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
}

.px_so_icons ul li a i {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.px_so_icons ul li:hover a i {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
}

.offset-md-3 {
    margin-left: 0;
}

/*----Media Css Start----*/
@media(max-width:1399px) {
    .port-text-btm {
        top: 125px;
    }

    .px_banner_wrapper h1 {
        font-size: 130px;
    }
}

@media(max-width:1300px) {
    .px_plan_box .px_btn {
        left: 29%;
    }
}

@media(max-width:1200px) {
    .px_banner_wrapper {
        padding: 300px 0px 150px;
    }

}

@media(max-width:1199px) {
    .port-text-btm {
        top: 100px;
    }

    .px_plan_box .px_btn {
        left: 25%;
    }

    .px_banner_wrapper h1 {
        font-size: 105px !important;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .offset-md-3 {
        margin-left: 25%;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .px_menu ul li a {
        padding: 0px 15px;
        font-size: 15px;
    }

    .px_service_slider .slick-slide.slick-current .thum_icon {
        width: 64px;
        height: 64px;
        line-height: 64px;
    }

    .px_res_input .switch-field label {
        width: 76px;
    }

    .px_service_box {
        padding: 50px 0 50px 0;
    }
}

@media(max-width:991px) {
    .blog_single_menu {
        left: 98px;
        top: 36px;
    }

    .px_logo {
        display: none;
    }

    .px_logo_div1 {
        display: block;
        float: left;
    }

    .menu_btn {
        display: block;
        position: absolute;
        right: 120px;
        width: 35px;
        top: 25px;
        text-align: center;
        height: 35px;
        font-size: 21px;
        border-radius: 4px;
        line-height: 39px;
        cursor: pointer;
        color: #ffffff;
        background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
        background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
        background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
    }

    .px_menu_wrap {
        padding: 15px 0px;
    }

    .px_menu {
        position: relative;
        padding-top: 50px;
        position: fixed;
        width: 250px;
        top: 0;
        text-align: left;
        left: -50%;
        height: 100%;
        background-image: -moz-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
        background-image: -webkit-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
        background-image: -ms-linear-gradient(0deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
    }

    .px_menu.open_menu {
        left: 0;
    }

    .px_menu ul li {
        float: left;
        width: 100%;
    }

    .px_menu ul li a {
        padding: 10px 18px;
        width: 100%;
        display: inline-block;
        color: #ffffff;
    }

    a:not([href]):not([tabindex]) {
        color: #fff;
    }

    .px_menu ul li a:hover {
        color: #ffffff;
        padding-left: 30px;
    }

    a:not([href]):not([tabindex]):focus,
    a:not([href]):not([tabindex]):hover {
        color: #ffffff;
    }

    .px_menu_close {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 25px;
        color: #ffffff;
        cursor: pointer;
    }

    .px_banner_wrapper h1 {
        font-size: 130px;
    }

    .px_game_name {
        bottom: 20px;
    }

    .px_blog_img img {
        width: 100%;
    }

    .px_con_box {
        margin-bottom: 30px;
    }

    .px_service_img img {
        width: 100%;
    }

    .px_res_form {
        margin-top: 50px;
    }

    .px_menu ul li a.active {
        color: #ffffff;
    }

    .px_game_img img {
        width: 100%;
    }

    .px_game_box {
        text-align: center;
    }

    .px_game_img {
        z-index: 1;
    }

    .big_icon6 {
        z-index: -1;
    }

    .px_about_img img {
        width: 100%;
    }

    .px_about_img:after {
        width: 100%;
        height: 89%;
    }
}

@media(max-width:768px) {
    .px_game_wrapper {
        text-align: center;
    }

    .px_game_box {
        display: inline-block;
    }

    .px_menu {
        left: -100%;
    }
}

@media(max-width:767px) {

    .default-card .default-card-inner:after,
    .default-card .default-card-inner::before {
        display: none;
    }

    .px_plan_box .px_btn {
        left: 34%;
    }
}

@media(max-width:480px) {
    .px_menu {
        width: 215px;
        left: -100%;
    }

    .px_banner_wrapper h1 {
        font-size: 70px !important;
    }

    .px_abt_ovrlay {
        position: relative;
        top: 91%;
        margin-top: 20px;
    }

    .px_service_slider .slick-slide.slick-current .thum_icon,
    .px_service_slider .thum_icon {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
    }

    .px_so_icons {
        width: 30px;
    }

    .px_so_icons ul li a {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }

    .px_banner_wrapper {
        padding: 200px 0px 150px;
    }

    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

    .cmnt_body {
        margin-top: 15px;
        width: 100%;
    }

    .blog_box h1 {
        font-size: 22px;
    }

    .blog-sidebar {
        margin-top: 30px;
    }

    .menu_btn {
        right: 20px;
    }
}

@media(max-width:375px) {
    .px_freetip_header h2 {
        font-size: 35px;
    }

    .px_heading h1 {
        font-size: 45px;
    }

    .px_plan_box .px_btn {
        left: 28%;
    }
}

.response {
    color: red;
}

.px_policy_wrapper {
    padding: 75px 0;
    background-image: url(../images/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.px_policy_wrapper h4 {
    margin-bottom: 10px;
    font-size: 24px;
}

.px_policy_wrapper p {
    margin-bottom: 30px;
    line-height: 24px;
    color: #fff;
    font-size: 16px;
}

.px_policy_wrapper ul {
    padding-left: 17px;
    margin-bottom: 25px;
}

.px_policy_wrapper ul li {
    list-style-type: circle;
}

.px_policy_wrapper ul li {
    margin-bottom: 10px;
    line-height: 24px;
    color: #fff;
    font-size: 16px;
}

.px_policy_wrapper p:last-child {
    margin-bottom: 0px;
}

.px_policy_wrapper:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(33 6 92 / 95%);
    content: "";
    z-index: -1;
}