@import url('https://fonts.googleapis.com/css2?family=Foldit:wght@100&family=Montserrat:wght@300;400;700;800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,700&display=swap');

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

:root {
    --bg-body-color: #300169;
    --secondary-bg: #1E0141;
    --elements-bg: #812E00;
    --white: #ffffff;
    --main-accent: #FF3939;
    --secondary-accent: #8301EC;
    --text-secondary: #bfc6e1;
    --devider: #6070AB;
    --footer-bg: #000E42;
}

body {
    background-color: var(--bg-body-color);
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.link {
    cursor: pointer;
}

body>.container {
    width: 80%;
    margin: 0 auto;
}

.mob {
    display: none !important;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 70px;
    background-color: var(--bg-body-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header .container {
    width: 78%;
    height: 100%;
    margin: 0 auto;
}

header .container .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header .container .wrapper nav ul {
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

header .container .wrapper nav ul li {
    list-style-type: none;
    padding: 5px 0px;
    height: 100%;
    position: relative;
}

header .container .wrapper nav ul li::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color: var(--main-accent);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

header .container .wrapper nav ul li:hover::after {
    width: 100%;
}

header .container .wrapper nav ul li a {
    text-decoration: none;
    color: var(--white);
}


.btn {
    height: 25px;
    padding: 5px 20px;
    color: var(--white);
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
    border-radius: 35px;
}

.main_btn {
    background-color: var(--main-accent);
}

.scnd_btn {
    background-color: var(--secondary-accent);
}

.btn:hover {
    opacity: 0.8;
}

.wrapper_banner {
    width: 80%;
    height: 500px;
    background-position: 50%;
    background-size: cover;
    margin: 70px auto 40px auto;
    border-radius: 45px;
    background: linear-gradient(180deg, #8A01F7 0%, #33016F 100%);
}

.wrapper_banner .container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.wrapper_banner .container .wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.wrapper_banner .container .wrapper .banner_images {
    width: 50%;
    height: 100%;
    position: relative;
}

.wrapper_banner .container .wrapper .banner_images img {
    position: absolute;
}

.wrapper_banner .container .wrapper .banner_images img._t {
    top: 0;
    left: 18%;
    z-index: 5;
    width: 35%;

}

.wrapper_banner .container .wrapper .banner_images img._e {
    bottom: 2%;
    z-index: 2;
    width: 25%;

}

.wrapper_banner .container .wrapper .banner_images img._b {
    bottom: 0;
    left: 35%;
    z-index: 5;
    width: 35%;

}

.wrapper_banner .container .wrapper .banner_images img._c {
    z-index: 3;
    width: 80%;
    left: 18%;
    top: 15%
}

.wrapper_banner .container .wrapper .bunner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    color: var(--white);
    text-align: center;
    font-weight: 900;
    width: 50%;
    height: 100%;
}

.wrapper_banner .container .wrapper .bunner-info p {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 93.7%;
    /* 44.976px */
    text-transform: uppercase;
}

.wrapper_banner .container .wrapper .bunner-info p:nth-child(2) {
    color: var(--White, #FFF);
    font-family: Montserrat;
    font-size: 40.473px;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    text-transform: uppercase;
}

.wrapper_banner .container .wrapper .bunner-info span {
    color: #FFF;
    font-family: Montserrat;
    font-size: 94.438px;
    font-style: normal;
    font-weight: 900;
    line-height: 93.7%;
    text-transform: uppercase;
}

.wrapper_banner .container .wrapper .bunner-info span.bonus {
    color: #FF3939;
    font-family: Montserrat;
    font-size: 94.438px;
    font-style: normal;
    font-weight: 900;
    line-height: 93.7%;
    text-transform: uppercase;
}


.wrapper_banner .container .wrapper .banner-img {
    height: 320px;
}

.wrapper_banner .container .wrapper .banner-img img {
    height: 100%;
}

.wrapper_banner .container .wrapper .banner-btns .btn {
    font-size: 2rem;
    padding: 10px 35px;
}

.menu_section {
    width: 80%;
    margin: 70px auto 40px auto;
}

.menu_section .wrapper {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.menu_item {
    border-radius: 35px;
    background: linear-gradient(180deg, #8F00FF 0%, #2B0063 100%);
    max-height: 130px;
    width: 16.6%;
}

.item_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    position: relative;
    top: -52px;
}

.menu_item:nth-child(3) .item_wrapper {
    top: -42px;
}

.menu_section .wrapper .menu_item:nth-child(3) .menu_item-name {
    position: relative;
    top: -8px
}

.menu_item:nth-child(4) .item_wrapper {
    top: -58px;
}

.menu_item:nth-child(5) .item_wrapper {
    top: -30px;
}

.menu_item:nth-child(6) .item_wrapper {
    top: -40px;
}

@media(max-width: 1600px){
    .wrapper_banner{
        height: 400px;
    }

    .menu_item:nth-child(3) .item_wrapper img{
        width: 140px;
    }
    .menu_item:nth-child(3) .item_wrapper {
        top: -40px;
    }

    .menu_section .wrapper .menu_item:nth-child(3) .menu_item-name {
        position: relative;
    }
}

.menu_section .wrapper .menu_item .menu_item-name {
    color: #FFF;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
}

.game__list {
    width: 80%;
    margin: 40px auto;
}

.game__list .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.game__list-item {
    width: 20%;
    position: relative;
}

.game__list-item img {
    width: 100%;
    border-radius: 20px;
}

.game_item_title {
    font-size: 1.5rem;
}

.game_item_active {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 1%;
    background-color: var(--secondary-bg);
    z-index: 5;
    border-radius: 20px;
    padding: 10px;
    width: 93.5%;
}

.game_item-icon {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.game_item-icon img:first-child {
    margin-right: 0px;
    margin-top: 2px;
}

.game_item-icon img:first-child {
    width: 30px;
    height: 30px;
}

.game_item-icon img {
    width: 35px;
}

.game_item-txt {
    text-align: center;
    color: var(--white);
}

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

.game_item_btns .btn {
    padding: 5px 50px;
    color: var(--white);
    border: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: var(--white);
    border-radius: 35px;
}

.game_item_btns .demo-btn {
    background-color: var(--secondary-accent);
}

.game_item_btns .play-btn {
    background-color: var(--main-accent);
    padding: 5px 55px;
}

.game_item_btns .btn:hover {
    opacity: 0.7;
}

.game_item_active._active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main {
    margin-bottom: 40px;
}

.textSection .content_section {
    color: var(--white);
    border-radius: 5px;
}

.textSection .content_section a {
    color: var(--main-accent);
}

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

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

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

.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: var(--main-accent);
    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;
    background: linear-gradient(180deg, #340170 0%, #8801F4 100%);
    margin: 40px auto;
}

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

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

.main .textSection .txtBtn {
    background-color: var(--main-accent);
    color: var(--white);
    padding: 10px 50px;
    display: block;
    margin: 20px auto;
    max-width: 100%;
    text-transform: uppercase;
}

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

th,
td {
    border: 1px solid var(--secondary-accent);
    padding: 8px;
    text-align: left;
}

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


tr:nth-child(even) {
    background-color: var(--bg-body-color);
}

tr:hover {
    background-color: var(--main-accent);
    color: #fff;
}

.provider-section {
    padding: 20px 40px;
    border-radius: 35px;

}

.provider-section img {
    display: block;
    width: 100%;
    margin: 0 auto;
}


footer {
    width: 100%;
    background-color: var(--footer-bg);
}

footer .container {
    padding: 30px 20px;
    width: 75%;
    margin: 0 auto;
}

footer .container .wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.footer_descr {
    color: var(--white);
}

footer img {
    width: 250px;
}

footer .btn {
    padding: 15px 40px;
}

.copyright {
    margin: 20px auto;
    color: var(--text-secondary);
    text-align: center;
}

.burger__menu {
    display: block;
    position: relative;
    width: 40px;
    height: 25px;
    cursor: pointer;
    margin-left: 10px;
}

.burger__menu span,
.burger__menu::before,
.burger__menu::after {
    position: absolute;
    height: 4px;
    width: 50px;
    transition: all 0.3s ease 1s;
    background-color: var(--white);
    border-radius: 100px;
}


.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%);
}

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

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

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

.nav_menu {
    display: none;
}

.mobile_nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 101%;
    background-color: var(--bg-body-color);
    overflow-x: hidden;
    transition: all .5s ease;
    z-index: 101;
}

.mobile_nav._active {
    top: 0;
}

.mobile_nav._active {
    top: 0;
}

.mobile_nav a,
.nav_menu a {
    text-decoration: none;
    color: var(--white);
    text-align: center;
    font-size: 2rem;

}

.burger {
    position: absolute;
    top: 5%;
    right: 10%;
}

.mobile_nav nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile_nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    margin: 0;
}

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

@media(max-width: 1200px) {
    .wrapper_banner {
        height: 320px;
    }

    .wrapper_banner .container .wrapper .bunner-info p {
        font-size: 2.5rem;
        line-height: 30%;
    }
    
    .wrapper_banner .container .wrapper .bunner-info p:nth-child(2) {
        font-size: 2rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 64.438px;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span.bonus {
        font-size: 64.438px;
    }

    .menu_item {
        height: 110px;
        width: 20%;
    }

    .item_wrapper {
        top: -42px;
    }

    .menu_item:nth-child(3) .item_wrapper {
        top: -27px;
    }

    .menu_item:nth-child(5) .item_wrapper {
        top: -48px;
    }

    .menu_item:nth-child(6) .item_wrapper {
        top: -44px;
    }

    .menu_section .wrapper .menu_item:nth-child(2) .menu_item-name, .menu_section .wrapper .menu_item:nth-child(4) .menu_item-name, .menu_section .wrapper .menu_item:nth-child(5) .menu_item-name {
        position: relative;
        top: 5px
    }

    .menu_section .wrapper .menu_item:nth-child(3) .menu_item-name {
        position: relative;
        top: 10px
    }

    .item_wrapper img{
        width: 100px;
    }

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

@media(max-width: 900px) {
    body>.container {
        width: 95%;
    }

    .wrapper_banner {
        width: 95%;
        height: 260px;
    }

    .wrapper_banner .container .wrapper .bunner-info {
        gap: 40px;
    }

    .wrapper_banner .container .wrapper .bunner-info p {
        font-size: 2rem;
        line-height: 20%;
    }
    
    .wrapper_banner .container .wrapper .bunner-info p:nth-child(2) {
        font-size: 1.8rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 54.438px;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span.bonus {
        font-size: 54.438px;
    }

    .menu_section{
        width: 95%;
    }

    .menu_item {
        height: 100px;
        width: 20%;
    }

    .item_wrapper {
        top: -33px;
    }

    .menu_item:nth-child(3) .item_wrapper {
        top: -20px;
    }
    
    .menu_item:nth-child(4) .item_wrapper, .menu_item:nth-child(5) .item_wrapper {
        top: -40px;
    }
    
    .menu_item:nth-child(6) .item_wrapper {
        top: -35px;
    }

    .item_wrapper img{
        width: 80px;
    }

    .menu_section .wrapper .menu_item:nth-child(1) .menu_item-name {
        position: relative;
        top: -2px
    }

    .menu_section .wrapper .menu_item:nth-child(3) .menu_item-name {
        position: relative;
        top: 3px
    }


    .menu_section .wrapper .menu_item:nth-child(6) .menu_item-name {
        position: relative;
        top: -5px
    }

    .game__list {
        width: 95%;
        margin: 40px auto;
        margin-bottom: 0px;
    }

    .game_item_title {
        font-size: 1rem;
    }

    .game_item_btns .btn {
        padding: 5px 40px;
    }
    
    
    .game_item_btns .play-btn {
        padding: 5px 45px;
    }

    .provider-section img.mob {
        display: none !important;
    }

    .provider-section img.pc {
        width: 80%;
        display: block !important;
    }

    footer .container {
        padding-bottom: 10px;
    }

    footer .container .wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    .pc {
        display: none !important;
    }

    .mob {
        display: block !important;
    }
}

@media(max-width: 600px) {

    body>.container {
        width: 100%;
    }

    header .container{
        width: 90%;
    }

    .wrapper_banner {
        width: 100%;
        border-radius: 0px;
        height: 200px;
    }

    .wrapper_banner .container {
        padding: 0px;
    }


    .wrapper_banner .container .wrapper .bunner-info {
        position: relative;
        left: -10px;
        gap: 20px;
    }

    .wrapper_banner .container .wrapper .bunner-info p {
        font-size: 1.2rem;
        line-height: 50%;
    }
    
    .wrapper_banner .container .wrapper .bunner-info p:nth-child(2) {
        font-size: 1rem;
        line-height: 2.4rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 44.438px;
        line-height: 1rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span.bonus {
        font-size: 44.438px;
        line-height: 1rem;
    }

    .wrapper_banner .container .wrapper .banner-btns .btn {
        font-size: 1rem;
        padding:  5px 25px;
    }

    .wrapper_banner .container .wrapper .banner_images img._t {
        top: 0;
        left: 18%;
        z-index: 5;
        width: 40%;
    
    }
    
    .wrapper_banner .container .wrapper .banner_images img._e {
        bottom: 0;
        z-index: 2;
        width: 30%;
        left: -10%;
    }
    
    .wrapper_banner .container .wrapper .banner_images img._b {
        bottom: 0;
        left: 40%;
        z-index: 5;
        width: 40%;
    
    }
    
    .wrapper_banner .container .wrapper .banner_images img._c {
        z-index: 1;
        width: 90%;
        left: -25%;
        top: 25%
    }

    .menu_section{
        width: 90%;
    }
    .menu_section .wrapper {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 35px;
    }
    
    .menu_item {
        width: 40%;
    }

    .game__list{
        width: 90%;
    }

    .game__list .wrapper {
        flex-wrap: wrap;
    }

    .game__list-item {
        width: 45%;
        position: relative;
    }

    .game__list-item:nth-child(2){
        display: none;
    }

    .textSection .content_section h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .textSection .content_section h2 {
        font-size: 28px;
        margin: 20px 0px;
    }

    .textSection .content_section h3 {
        font-size: 22px;
        margin: 20px 0px;
    }

    th,
    td {
        padding: 5px;
    }

    table p {
        font-size: 14px !important;
    }

    .txt_area {
        padding: 10px 20px !important;
        margin-bottom: 0px;
    }

    .txt_img-reverse{
        margin-bottom: 0px;

    }

    .provider-section img.mob {
        display: block !important;
        width: 80%;
    }

    .provider-section img.pc {
        display: none !important;
    }

    footer .container .wrapper .footer_btn{
        margin: 20px auto;
    }

    footer img {
        width: 100px;
    }
}

@media(max-width:400px) {
    body>.container {
        width: 100%;
    }

    .wrapper_banner {
        height: 160px;
        margin-bottom: 0;
    }

    .wrapper_banner .container .wrapper .bunner-info{
        position: relative;
        left: -20px;
        top: 5px;
    }

    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 34.438px;
    }
    
    .wrapper_banner .container .wrapper .bunner-info span.bonus {
        font-size: 34.438px;
    }

    .wrapper_banner .container .wrapper .banner_images img._t {
        top: 0;
        left: 18%;
        z-index: 5;
        width: 40%;
    
    }
    
    .wrapper_banner .container .wrapper .banner_images img._e {
        bottom: 0;
        z-index: 2;
        width: 30%;
        left: -10%;
    }
    
    .wrapper_banner .container .wrapper .banner_images img._b {
        bottom: 0;
        left: 40%;
        z-index: 5;
        width: 40%;
    
    }
    
    .wrapper_banner .container .wrapper .banner_images img._c {
        z-index: 1;
        width: 90%;
        left: -25%;
        top: 25%
    }

    .wrapper_banner .container .wrapper .banner-btns .btn {
        font-size: 1rem;
        padding:  5px 15px;
    }

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

    .textSection .content_section table p {
        font-size: 10px !important;
        line-height: 15px !important;
    }

}

@media(max-width: 370px) {

    .wrapper_banner .container .wrapper .bunner-info p {
        font-size: 1rem;
        line-height: 20%;
    }
    
    .wrapper_banner .container .wrapper .bunner-info p:nth-child(2) {
        font-size: 0.8rem;
        line-height: 2.4rem;
    }

    .textSection .content_section table p {
        font-size: 8px !important;
        line-height: 10px !important;
    }
}