body {
    background-color: #253231;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}
h1,h2,h3,h4{
    font-family: 'Nunito Sans', sans-serif;
}

.top-nav-bar {
    /* background-color: #fff; */
    background-color: #1b3836;
    position: sticky;
    top: 0;
    z-index: 9;
    box-shadow: 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
    transition: all .3s ease-out 0s;
}

.top-nav {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.menu li a {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    transition: all .3s ease-out 0s;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
}

.menu li {
    position: relative;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-button {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
}

.menu-button:before,
.menu-button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.menu-button:before {
    bottom: -8px;
}

.menu-button:after {
    top: -8px;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked+.menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    width: 100%;
}

#menu-toggle:checked+.menu .menu-button:before {
    transform: translateY(8px) rotate(45deg);
}

#menu-toggle:checked+.menu .menu-button:after {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile {
    display: none;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    bottom: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    top: 0px;
    transform: rotate(-405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}


.menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 0;
    height: 2px;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
    transition: all .3s ease-out 0s;
}

.menu li a.active::before {
    right: auto;
    left: 0;
    opacity: 1;
    width: 100%;
}

.menu li a:hover::before {
    right: auto;
    left: 0;
    opacity: 1;
    width: 100%;
}

.menu li a.active {
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu li a:hover {
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    position: relative;
    z-index: 1;
    padding: 180px 0 87px;
}

.go-zoom-1::before {
    animation-name: go-zoom;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.go-zoom-1::after {
    animation-name: go-zoom;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 10px;
    top: -55px;
    width: 400px;
    height: 320px;
    background: url(./assets/bg-img.webp) center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-section::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 319px;
    height: 321px;
    background: url(../assets/bg-img2.webp) center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

@-webkit-keyframes go-zoom {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes go-zoom {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.hero-section .hero-content span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}


@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}



@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.hero-section .hero-content h1 {
    font-size: 50px;
    margin-bottom: 35px;
    margin-top: 20px;
    color: #ebebeb;
    font-weight: 900;
}

.hero-section .hero-content h1 span {
    font-size: 50px;
    font-weight: 900;
}

.hero-section .hero-content p {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.mb-50 {
    margin-bottom: 50px;
}
.mt-50 {
    margin-top: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.step-item {
    position: relative;
}

.step-item::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    border: 1px dashed rgba(255, 200, 39, 0.7);
    top: 60px;
    left: 50%;
}

.step-item-thumb {
    background: #1e0d00;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    font-size: 46px;
    margin: 0 30px 15px 0;
    position: relative;
    box-shadow: inset 1px 1px 8px 0px rgb(255 200 39 / 40%), inset 1px 1px 8px 0px rgb(255 82 1 / 20%);
    transition: all .3s ease-out 0s;
}

.step-item-thumb .badge {
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 7px;
    line-height: 0.75;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    right: -10px;
    top: 10px;
    width: 30px;
    height: 30px;
    color: #1f1f23 !important;
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.step-item:hover .step-item-thumb,
.step-item-none:hover .step-item-thumb {
    box-shadow: inset 1px 1px 30px 0px rgba(250, 194, 24, 0.4), inset 1px 1px 30px 0px rgba(246, 93, 21, 0.2);
}

.btn-hover {
    position: relative;
    text-decoration: none;
}

.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: linear-gradient(85deg, #ff9c19 40%, #ffdd2d 110%);
    overflow: hidden;
    box-shadow: 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
}

.btn-hover::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05);
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all .3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0);
}

.main-btn:hover {
    color: #fff;
    background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 300px 0px rgb(255 200 39 / 40%), 1px 1px 30px 0px rgb(255 82 1 / 20%);
}

.btn-hover:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3);
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.about-section {
    position: relative;
}

.pb-95 {
    padding-bottom: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.section-title h1 {
    font-size: 50px;
    color: #ebebeb;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title h1 span {
    font-size: 50px !important;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.game-section {
    position: relative;
}

.game-section p {
    margin-bottom: 0px;

}

.mb-25 {
    margin-bottom: 25px !important;
}

.pt-95 {
    padding-top: 95px;
}

.game-section .single-game {
    text-align: center;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: inset 1px 1px 15px 0px rgb(255 200 39 / 40%), inset 1px 1px 15px 0px rgb(255 82 1 / 20%);
    transition: all .3s ease-out 0s;
}

.rounded-50p {
    border-radius: 50%;
}

.game-content h3 {
    font-size: 30px;
    font-weight: 900;
}

.play-btn {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: linear-gradient(85deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
}

.play-btn:hover {
    color: #fff;
    background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 300px 0px rgb(255 200 39 / 40%), 1px 1px 30px 0px rgb(255 82 1 / 20%);
}

.game-section .single-game:hover {
    box-shadow: inset 1px 1px 30px 0px rgba(250, 194, 24, 0.4), inset 1px 1px 30px 0px rgba(246, 93, 21, 0.2);
}

.win-images img {
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.pb-60 {
    padding-bottom: 60px;
}

.faq-section .accordion .single-faq {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: inset 1px 1px 8px 0px rgb(255 200 39 / 40%), inset 1px 1px 8px 0px rgb(255 82 1 / 20%);
    transition: all .3s ease-out 0s;
}

.faq-section .accordion .single-faq:hover {
    box-shadow: inset 1px 1px 20px 0px rgba(247, 191, 24, 0.4), inset 1px 1px 20px 0px rgba(253, 89, 13, 0.2);
}

.faq-section .accordion .single-faq button {
    padding: 20px 30px 15px;
    border: none;
    background: 0 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.faq-section .accordion .single-faq button::after {
    content: "\2303";
    font-family: 'gden' !important;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-out 0s;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section .accordion .single-faq button.collapsed::after {
    content: "\2304";
}

.faq-section .accordion .single-faq .faq-content {
    padding: 0 30px;
    padding-bottom: 20px;
}

.faq-section .accordion .text-start.collapsed {
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .about-img img {
    width: 100%;
    height: auto;
}

.pb-80 {
    padding-bottom: 80px;
}

.pricing-section {
    position: relative;
    z-index: 1;
}

.pricing-section .pricing-content {
    padding: 160px 0;
    position: relative;
    z-index: 1;
}

.testimonial-section {
    position: relative;
}

.pb-105 {
    padding-bottom: 105px;
}

.mb-60 {
    margin-bottom: 60px;
}

.testimonial-section .testimonial-active-wrapper {
    position: relative;
}

.testimonial-section .section-title h1 {
    margin: 0;
}


.pricing-section .control {
    list-style: none;
    display: block !important;
}

.pricing-section .control li {
    position: absolute;
    z-index: 99;
    bottom: 0;
    padding: 6px 22px;
    cursor: pointer;
    width: 60px;
    height: 45px;
    border-radius: 30px;
    background: linear-gradient(85deg, #ff9c19 40%, #ffdd2d 110%);
    overflow: hidden;
    box-shadow: 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
    color: #ffffff;
    transition: all .3s ease-out 0s;
    border: none;
    margin: 0 10px;
}

.pricing-section .control li:hover {
    color: #fff;
    background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 300px 0px rgb(255 200 39 / 40%), 1px 1px 30px 0px rgb(255 82 1 / 20%);
}

.pricing-section .control li.prev {
    left: 40%;
}

.pricing-section .control li.next {
    right: 40%;
}

.tns-nav {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    display: none;
}

.tns-nav button {
    height: 13px;
    width: 8px;
    background-color: #a5a5a5;
    border: none;
    margin-left: 7px;
    border-radius: 50%;
}

.tns-nav .tns-nav-active {
    background-color: black;
}



.single-testimonial .testimonial-con-all {
    margin: 0 15px;
    padding: 30px;
    box-shadow: inset 1px 1px 15px 0px rgb(255 200 39 / 40%), inset 1px 1px 15px 0px rgb(255 82 1 / 20%);
    transition: all .3s ease-out 0s;
    border-radius: 10px;
}

.single-testimonial .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 20px;
}

.single-testimonial .image img {
    width: 100%;
}

.single-testimonial .content {
    position: relative;
    text-align: center;
}

.single-testimonial .content p {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 30px;
}

.single-testimonial .testimonial-con-all .info h4 {
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.single-testimonial .testimonial-con-all:hover {
    box-shadow: inset 1px 1px 35px 0px rgb(255 200 39 / 40%), inset 1px 1px 35px 0px rgb(255 82 1 / 20%);
}

.pt-75 {
    padding-top: 75px;
}

.footer {
    position: relative;
    background: #1b3836;
}

.footer .copy-right {
    text-align: center;
    padding: 30px 0;
}

.payment-icons img {
    width: 65px;
    margin-left: 8px;
}

.footer .copy-right {
    text-align: center;
    padding: 30px 0;
}

.price-header {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 25px;
    text-align: center;
}

.price-header .shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 30px;
    z-index: -1;
}

.package-name {
    margin-bottom: 20px;
}

.price-header .price {
    font-size: 30px;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-testimonial ul.content {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
}

.single-testimonial ul.content li {
    font-size: 16px;
    line-height: 35px;
}

.single-testimonial .pricing-btn {
    margin-right: 1px;
}
.section-title ul {
    margin: 0;
    margin-bottom: 30px;
}

.section-title ul li {
    font-size: 16px;
    line-height: 35px;
}

.mobile {
    display: none;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: linear-gradient(85deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all .3s ease-out 0s;
}

.scroll-top span {
    transform: rotate(90deg);
}

.scroll-top:hover {
    color: #fff;
    background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: 1px 1px 300px 0px rgb(255 200 39 / 40%), 1px 1px 30px 0px rgb(255 82 1 / 20%);
}

#tns2>.tns-item {
    padding-right: 0;
}








@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section .hero-img img {
        width: 100%;
        height: auto;
    }

    .single-testimonial .testimonial-con-all {
        margin: 0 6px;
        padding: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section .hero-img img {
        width: 100%;
        height: auto;
    }

    .single-testimonial .testimonial-con-all {
        margin: 0 6px;
        padding: 25px 10px 25px 10px;
    }
}

@media (max-width: 992px) {
    a.col-xl-2.col-md-4.col-6.win-images {
        text-align: center;
    }
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    #menu-toggle:checked~.menu {
        width: -webkit-fill-available;
    }

    #menu-toggle:checked~.menu li {
        width: 100%;
        transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 40px;
        margin-top: 80px;
        margin-left: 15px;
        margin-right: 15px;
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow: hidden;
        /* border-top: 1px solid #ebebeb */
        box-shadow: inset 1px 1px 20px 0px rgb(255 200 39 / 40%), 1px 1px 15px 0px rgb(255 82 1 / 20%);
        border-radius: 25px;
        
    }

    #menu-toggle~.menu li {
        width: 0;
        margin: -1px;
        border: 0;
        transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
        overflow: hidden;
        height: 70px;
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: #000;
        background-color: #1e0d00;
        align-items: center;
        flex-direction: column;
        flex-direction: column;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }

    .menu>li:hover {
        /* background-color: #eaeaea; */
    }

    .hero-section {
        padding: 150px 0 87px;
    }

    .hero-section .hero-img img {
        width: 100%;
        height: auto;
    }

    .about-section .about-img img {
        height: auto;
    }

    .about-section .about-img a {
        display: inline-block;
    }

    .gap-add {
        gap: 30px;
    }

    .pricing-section .pricing-content {
        padding: 50px 0;
    }

    #tns3>.tns-item {
        padding-right: 5px;
    }
}

@media (max-width: 800px) {
    .tns-controls{
        display: none;
    }
}
@media (max-width: 750px) {
    .pricing-section .control li.prev {
        left: 37%;
    }
    .pricing-section .control li.next {
        right: 37%;
    }
    .testimonial-active-wrapper .tns-nav {
        display: block !important;
    }
     .tns-controls{
        display: none;
    }
    .tns-nav button{
        box-shadow: inset 1px 1px 15px 0px rgb(255 200 39 / 40%), inset 1px 1px 15px 0px rgb(255 82 1 / 20%);
        background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    }
    .tns-nav .tns-nav-active{
        box-shadow: inset 1px 1px 15px 0px rgb(255 200 39 / 40%), inset 1px 1px 15px 0px rgb(255 82 1 / 20%);
        background: linear-gradient(1705deg, #ff9c19 40%, #ffdd2d 110%);
    }
}
@media (max-width: 600px) {
    .pricing-section .control li.prev {
        left: 30%;
    }
    .pricing-section .control li.next {
        right: 30%;
    }
}
@media (max-width: 450px) {
    .hero-section {
        overflow: hidden;
    }
    .pricing-section .control li.prev {
        left: 28%;
    }
    .pricing-section .control li.next {
        right: 28%;
    }
 
}