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

:root {
    --bg-body-color: #3D036B;
    --secondary-bg: #6000AB;
    --elements-bg: #310256;
    --white: #ffffff;
    --main-accent: #FF3939;
    --secondary-accent: #758BFF;
    --text-secondary: #bfc6e1;
    --devider: #6070AB;
}

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(--secondary-bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header .container {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    padding: 0px 10px;
    
}

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: 20px;
}

header .container .wrapper nav ul li{
    list-style-type: none;
    padding: 25px 30px;
    height: 100%;
}

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

header .container .wrapper nav ul li:hover{
    background-color: #0e194f;
}

.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: 2px;
}

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

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

.btn:hover {
    opacity: 0.8;
}

.wrapper_banner {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-bg);
    margin-top: 70px;
    background-position: 50%;
    background-size:cover;
    margin-bottom: 40px;
}

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


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

.wrapper_banner .container .wrapper .bunner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: var(--white);
    text-align: center;
    font-weight: 900;
    line-height: 4.5rem;
}

.wrapper_banner .container .wrapper .bunner-info .title{
    font-size: 4rem;
}

.wrapper_banner .container .wrapper .bunner-info span {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
}

.wrapper_banner .container .wrapper .bunner-info span.bonus {
    color: var(--main-accent)
}

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

.menu_section {
    border-radius: 15px;
    width: 100%;
    margin-top: 70px;
}

.menu_section .container {
    padding: 0px 10px;

}

.menu_section .container .wrapper {
    display: flex;
    justify-content: space-around;
}

.menu_section .container .wrapper .menu_item {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: var(--text-secondary);
    cursor: pointer;
}

.menu_section .container .wrapper .menu_item img {
    width: 25px;
}

.menu_section a {
    text-decoration: none;
}

.navigation__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    padding: 10px 0px;
}

.navigation__item:hover {
    background-color: var(--elements-bg);
}

.flex_cnt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.flex_cnt .img_item{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    width: 50%;
}

.flex_cnt .img_item img{
    border-radius: 20px;
}

.flex_cnt .txt_item{
    width: 50%;
}

.flex_cnt .txt_item .txtwrapper{
    padding-left: 40px;
}

.game__list {
    width: 100%;
    margin-bottom: 40px;
}

.game__list .wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game__list .wrapper img{
    border-radius: 20px;
}

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

.game-title{
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
}

.main{
    margin-bottom: 40px;

}

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

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

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

.main .textSection .txtBtn{
    background-color: var(--main-accent);
    color: var(--white);
    padding: 10px 50px;
    display: block;
    margin: 20px auto;
    max-width: 200px;
    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(--elements-bg);
}

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

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


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

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

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

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

@media(max-width: 1650px){

    .game__list .wrapper{
        grid-template-columns: repeat(4, 265px);
        grid-column-gap: 10px;
        grid-row-gap: 20px;
        margin: 0 auto;
    }

    .game__list-item img{
        width: 100%;
    }
}

@media(max-width: 1200px){
    body>.container, header .container{
        width: 90%;
    }
    .flex_cnt {
        width: 100%;
    }
    .flex_cnt .img_item {
        display: none;
    }

    .flex_cnt .txt_item{
        width: 100%;
    }

    .flex_cnt  .txt_item .txtwrapper{
        padding-left: 0px;
    }

    .game__list .wrapper{
        grid-template-columns: repeat(3, 265px);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .game__list .wrapper .game__list-item:nth-last-child(7), .game__list .wrapper .game__list-item:last-child{
        display: none;
    }
}

@media(max-width: 900px)
{
    .pc{
        display: none !important;
    }

    .mob{
        display: block !important;
    }

    body>.container{
        width: 100%;
    }

    .wrapper_banner{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .game__list .wrapper{
        grid-template-columns: repeat(3, 220px);
        grid-column-gap: 10px;
        grid-row-gap: 20px;
    }

    .game-title{
        font-size: 1rem;
    }

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

@media(max-width: 600px){
    .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;
    }

    .game__list .wrapper{
        grid-template-columns: repeat(2, 170px);
        grid-column-gap: 10px;
        grid-row-gap: 20px;
    }

    .wrapper_banner .container .wrapper .bunner-info {
     
        line-height: 4rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info .title{
        font-size: 2.5rem;
    }

    .wrapper_banner .container .wrapper .bunner-info .title p{
        margin-bottom: 20px;
    }

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

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

@media(max-width:400px){
    .wrapper_banner .container .wrapper .bunner-info {
     
        line-height: 2.5rem;
    }
    
    .wrapper_banner .container .wrapper .bunner-info .title{
        font-size: 2rem;
    }

    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 4rem;
    }

    .wrapper_banner .container .wrapper .banner-btns .btn{
        font-size: 1.5rem;
    }

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

    .game__list .wrapper{
        grid-template-columns: repeat(2, 160px);
    }
}

@media(max-width: 374px){
    .wrapper_banner .container .wrapper .bunner-info span {
        font-size: 3rem;
    }
    
    .game__list .wrapper{
        grid-template-columns: repeat(2, 135px);
    }
}