* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-size: var(--white-color);
}

body {
    background-color: #000;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

.link {
    cursor: pointer;
}

.container {
    padding: 0 40px;
}

header .container {
    height: 100%;
}

header {
    width: 100%;
    height: 80px;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-top: 2px solid #FFBE00;
    border-bottom: 2px solid #FFBE00;
}

header .wrapper,
nav,
nav ul,
.header_btns {
    display: flex;
    align-items: center;
    height: 100%;
}

.header_btns .btn.mob {
    display: none;
}

.header_logo {
    position: relative;
}

.header_logo img {
    position: absolute;
    width: 130px;
    bottom: -100px;
}

nav {
    width: 50%;
    gap: 200px;
}

nav ul {
    gap: 20px;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: .875rem;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFBE00;
}

.header_btns {
    width: 50%;
    justify-content: flex-end;
    gap: 40px;
}

.btn {
    background-color: #FFBE00;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-size: .875rem;
    border: 2px solid #FFBE00;
    transition: all .5s ease;
}

.btn:hover {
    background-color: transparent;
    color: #FFBE00;
}

.burger__menu {
    z-index: 999;
    display: none;
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
}

.burger__menu span,
.burger__menu::before,
.burger__menu::after {
    left: 0;
    position: absolute;
    height: 15%;
    width: 100%;
    transition: all .5s ease 0s;
    background-color: #fff;
    border-radius: 30px;
}

.burger__menu::before,
.burger__menu::after {
    content: ""
}

.burger__menu::before {
    top: 0
}

.burger__menu::after {
    bottom: 0
}

.burger__menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
    -webkit-transform: scale(1) translate(0px, -50%);
    -moz-transform: scale(1) translate(0px, -50%);
    -ms-transform: scale(1) translate(0px, -50%);
    -o-transform: scale(1) translate(0px, -50%);
}

.burger__menu._active span {
    transform: scale(0) translate(0px, -50%);
    -webkit-transform: scale(0) translate(0px, -50%);
    -moz-transform: scale(0) translate(0px, -50%);
    -ms-transform: scale(0) translate(0px, -50%);
    -o-transform: scale(0) translate(0px, -50%);
}



.burger__menu._active::before {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
    -webkit-transform: rotate(45deg) translate(0px, -50%);
    -moz-transform: rotate(45deg) translate(0px, -50%);
    -ms-transform: rotate(45deg) translate(0px, -50%);
    -o-transform: rotate(45deg) translate(0px, -50%);
}

.burger__menu._active::after {
    bottom: 50%;
    transform: rotate(-45deg) translate(0px, 50%);
    -webkit-transform: rotate(-45deg) translate(0px, 50%);
    -moz-transform: rotate(-45deg) translate(0px, 50%);
    -ms-transform: rotate(-45deg) translate(0px, 50%);
    -o-transform: rotate(-45deg) translate(0px, 50%);
}

.main__slider {
    margin-top: 80px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.main__slider img {
    width: 100%;
}

.game_options {
    padding: 10px;
    border-top: 2px solid #FFBE00;
    border-bottom: 2px solid #FFBE00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.slider__item.active {
    position: absolute;
    left: 50px;
    border: 2px solid #FFBE00;
    background-color: #000;
    position: absolute;
    padding: 30px 15px;
    z-index: 2;
    border-radius: 15px;
}

.navigation__slider {
    width: 78%;
}

.slider__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slider__item img {
    width: 35px;
}

.slider__title {
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game_options input {
    border-radius: 25px;
    background-color: #000;
    color: rgba(255, 255, 255, .5);
    border: 1px solid #FFBE00;
    padding: 10px;
    padding-left: 30px
}

.textSection .content_section {
    color: #fff;
    padding: 20px;
}

.textSection .content_section a {
    color: #FFBE00;
}

.textSection .content_section h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.textSection .content_section h2 {
    font-size: 32px;
    margin: 20px 0px;
    font-weight: 500;
}

.textSection .content_section h3 {
    font-size: 26px;
    margin: 20px 0px;
    font-weight: 500;
}

.textSection .content_section p {
    font-size: 1rem;
    font-style: normal;
    line-height: 30px;
}


.textSection .content_section ul {
    list-style: none;
    margin: 20px;
}

.textSection .content_section ul,
.textSection .content_section ol {
    margin: 20px;

}


.textSection .content_section ul li,
.textSection .content_section ol li {
    line-height: 30px;
}


.textSection .content_section ul li::before {
    content: "\2022";
    color: #FFBE00;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.text-img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    margin: 20px auto;
}

.txt_area {
    margin-bottom: 40px;
}

.txt_img {
    display: flex;
    border-radius: 45px;
    margin: 40px auto;
    width: 100%;
    gap: 50px;
}

.txt_img img,
.txt_img-reverse img {
    width: calc(35% - 40px);
    border-radius: 15px;
}

.txt_img-text {
    padding: 20px 40px;
}

.txt_img-reverse {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 20px;
    margin: 40px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

th,
td {
    border: 1px solid #FFBE00;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #6070AB;
    color: #fff;
}


tr:nth-child(even) {
    background-color: #010119;
}

tr:hover {
    background-color: #707070;
    ;
    color: #fff;
}

.txt_btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
}

.txt_btn .button {
    background: transparent;
    border: none;
    color: #FFBE00;
    border: 2px solid #FFBE00;
    border-radius: 35px;
    padding: 25px 100px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 1.5rem;
}

.txt_btn .button::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 20%;
    background-color: hsla(0, 0%, 100%, .6);
    left: -25%;
    top: 0;
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    opacity: 0.1;
    transition: all .5s;
}

.txt_btn .button:hover::after {
    left: 100%;
}

footer {
    margin: 20px auto;
}

footer h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

footer .providers {
    display: flex;
    justify-content: space-around;
}

footer ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #010119;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 10px;
    margin: 40px 0;
}

footer ul li {
    color: #FFBE00;
    list-style-type: none;
    font-size: .875rem;
}

footer ul li:hover {
    color: #fff;
}

footer img {
    width: 100px;
}

footer .payment_providers,
footer .social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_bottom p {
    color: #fff;
    width: 60%;
}

@media(max-width: 1600px) {
    .navigation__slider {
        width: 80%;
        margin-left: 100px !important;
    }
}

@media(max-width: 1200px) {
    .navigation__slider {
        width: 55%;
    }
}

@media(max-width: 900px) {
    nav {
        width: 50%;
        gap: 150px;
    }

    .game_options input {
        display: none;
    }

    .navigation__slider {
        width: 75%;
        margin-left: 150px !important;
    }

    .game_slider {
        width: 100%;
    }

    .txt_img,
    .txt_img-reverse {
        flex-direction: column;
    }

    .txt_img img,
    .txt_img-reverse img {
        width: 100%;
    }

    footer ul {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }


    .header_logo {
        position: relative;
    }

    .header_logo img {
        position: relative;
        bottom: 0px;
        width: 70px;
    }

    .burger__menu {
        display: block;
    }

    nav ul {
        position: fixed;
        background-color: #fff;
        height: 100%;
        left: -100%;
        top: 0;
        flex-direction: column;
        width: 40%;
        align-items: center;
        gap: 0;
        transition: all .5s ease;
    }

    nav ul._active {
        left: 0;
    }

    nav ul li {
        border-bottom: 1px solid #ccc;
        width: calc(100% - 40px);
        display: flex;
        justify-content: center;
        padding: 20px;
    }

    nav ul li a {
        color: #000;
        justify-content: flex-start;
        text-align: center;
    }

    .header_btns {
        gap: 10px;
        width: 100%;
    }


    .navigation__slider {
        margin-left: 100px !important;
    }

    .slider__item.active {
        position: absolute;
        left: 20px;
        border: 2px solid #FFBE00;
        background-color: #000;
        position: absolute;
        padding: 10px 15px;
        z-index: 2;
        border-radius: 0px;
        border-bottom: none;
        border-top: none;
        color: #FFBE00;
    }

    .slider__item img {
        width: 25px;
    }

    .slider__item .slider__title {
        font-size: 12px;
    }

    .textSection .content_section {
        padding: 20px 5px;
    }

    footer .social {
        margin-bottom: 40px;
    }

    footer .social img {
        width: 80px;
    }
}

@media screen and (max-width: 600px) {
    table.table-wrap {
        border: 0;
    }

    table.table-wrap tr.title {
        display: none;
    }

    table.table-wrap td.colored {
        background-color: #fff;
    }

    table.table-wrap td.colored p {
        color: #000;
    }

    table.table-wrap thead {
        display: none;
    }

    table.table-wrap tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
        border-right: 1px solid #222;
    }

    table.table-wrap td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
        border-right: 1px solid transparent;
    }

    table.table-wrap td:last-child {
        border-bottom: 0;
    }

    table.table-wrap td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }

    .footer_text p {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .container {
        padding: 0 10px;
    }

    .slider__item.active {
        padding: 15px 15px;
    }

    footer .social img {
        width: 70px;
    }

    .footer_bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer_bottom p {
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 374px) {
    .header_btns .btn {
        display: none;
    }

    .header_btns .btn.mob {
        display: block;
    }
}