@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&family=Open+Sans:wght@300&family=Quicksand:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Nunito+Sans:opsz,wght@6..12,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-size: #000;
}

:root {
    --bg-body-color: #fff;
    --secondary-bg: #fff;
    --elements-bg: #324064;
    --white: #ffffff;
    --main-accent: #FF3939;
    --secondary-accent: #01239C;
    --text-secondary: #bfc6e1;
    --devider: #6070AB;
    --secondary-font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-body-color);
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.link{
    cursor: pointer;
}

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

header {
    width: 100%;
    background-color: var(--bg-body-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 80px;
    padding: 10px;
    border-bottom: 1px solid var(--devider);
}


header .wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    margin: 0 auto;
}

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

.header img {
    width: 150px;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 20px
}

.searchbar {
    height: 20px;
    font-size: 14px;
    font-weight: 100;
    padding: 10px;
    background-color: var(--secondary-bg);
    text-align: left;
    transition: all .2s linear;
    white-space: nowrap;
    outline: none;
    border: 1px solid var(--secondary-accent);
    border-radius: 15px;
    color: #000
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    height: 40px;
    box-sizing: border-box;
    color: #fff;
    user-select: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: .775rem;
    text-decoration: none;
    transition: all .5s;
    cursor: pointer;
    font-family: var(--primary-font-family);
    border-radius: 10px;
    background: linear-gradient(285deg, #468cee -4.67%, #941afe 101.39%);
    padding: 0 30px;
}

.btn.outline {
    background: linear-gradient(279deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%);

}

.btn:hover {
    background: linear-gradient(285deg, #468cee -4.67%, #941afe 30.39%);
    -webkit-filter: blur(2px);
    filter: blur(0px);
    transform: scaleX(1);
}

.btn.outline:hover {
    background: linear-gradient(180deg, #BB8541 0%, #F8C17B 100%);
    opacity: 1;
    -webkit-filter: blur(2px);
    filter: blur(0px);
    transform: scaleX(1);}

nav ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    height: 50px;
}

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

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

nav ul li:hover::after {
    width: 100%;
}

nav ul li a {
    color: #000;
    font-weight: 500;
}

.banner_section {
    margin-top: 120px;
    position: relative;
}

.banner_section.second,
.banner_section.second .wrapper{
    margin-top: 0px;
}

.banner_section .wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.banner_item {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
    padding:0px  40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: relative;
    box-sizing:border-box;
    overflow: hidden;
}

.banner_section.second .banner_item{
    align-items: flex-end;
    text-align:end;
}
.banner_section.second{
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.banner_section.second img{
    width: 100%;
    border-radius: 30px;
}

.banner_section.second .btn{
    position: relative;
    left: 10%;
}

.banner_item .btn {
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 400;
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.banner_title {
    font-size: 40.47px;
    color: #fff;
    font-weight: 900;
    width: 100%;
    line-height: 48.94px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.banner_item:nth-child(2) .banner_title {
    text-align: end;
}

.banner_title span {
    font-size: 65.44px;
    line-height: 60px;
}

.content_section .wrapper {
    color: #000;
    background-color: var(--secondary-bg);
    padding: 20px 0px;
    border-radius: 50px;
}

.content_section a {
    color: #FFC700;
    text-decoration: underline;
}

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

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

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

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


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

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


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


.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 {
    background-color: var(--secondary-bg);
    border-radius: 35px;
    padding: 10px 40px;
    margin-bottom: 40px;
}

.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: #000;
}


tr:nth-child(even) {
    background-color: var(--elements-bg);
    color: #fff;
}

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

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

.game_item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
    position: relative;
}

.game_item img {
    width: 100%;
    border-radius: 35px;
    z-index: 1;
}

.game_active {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 96%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
    border-radius: 35px;
    overflow: hidden;
}

.game_active._active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-accent);
}

.game_active img {
    width: 50px;
}

.game_item-name {
    text-align: center;
    color: #fff;
}

.bottom_banners {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
}

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

.payment_item{
    background-color: #3B31A5;
    height: 180px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_banners img{
    width: 60%;
    display: block;
    margin: 0 auto
}

.bottom_banners .providers{
    width: 80%;
}

.faq_section .title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px
}

.faq_section {
    color: var(--white)
}

.faq_section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

details:first-child {
    margin-top: 20px;
}

details:nth-child(4) {
    margin-bottom: 20px;
}


details {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid var(--base-divider);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    position: relative;
    line-height: 142%;
    color: var(--white);
    font-size: 1rem;
    background-color: #032873;
    border-radius: 35px
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
}

summary {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 142.69%;
    outline: 0;
    cursor: pointer;
    display: block;
    margin-right: -10px;
    font-family: var(--primary-font-family);
    padding-left: 25px;
}

summary::after {
    content: "\002B";
    position: absolute;
    top: 12px;
    right: 30px;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--main-accent);
    border-radius: 50%;
    padding: 2px 10px;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 20px;
    margin-left: 25px;
}

details ul {
    margin-top: 20px;
    margin-left: 40px;
}

footer{
    padding-bottom: 20px;
}

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

footer img {
    width: 15%;
}

footer p {
    color: #000;
    opacity: .8;
    text-align: center;
}

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

.burger__menu span,
.burger__menu::before,
.burger__menu::after {
    position: absolute;
    height: 4px;
    width: 40px;
    transition: all 0.5s;
    background-color: #000;
    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%);
}

.mobile_menu {
    display: block;
    position: fixed;
    right: -100%;
    top: 80px;
    width: 30%;
    height: 100%;
    background-color: var(--bg-body-color);
    transition: all .5s;
    z-index: 10;
}

.mobile_menu._active {
    right: 0;
}

.mobile_menu .container {
    margin-top: 60px;
    height: 100%;
}

.mobile_menu .wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    height: 80%;
}

.mobile_menu .wrapper>div{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;

}


.mobile_menu .wrapper img{
    width: 100px;
    display: block;
    margin: 0 auto;
}

.mobile_menu ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-around;
}

.mobile_menu ul li {
    list-style-type: none;
    font-size: 1rem;
}

.mobile_menu ul li a {
    color: var(--elements-bg);
    font-size: 24px;
}

.mobile_menu-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.mobile_menu-btns input{
    width: 100%;
}

.mobile_menu-btns div {
    display: flex;
    gap: 20px;
}
@media(max-width: 1600px) {

    .provider_section .main_banner {
        width: 65%;
    }
}

@media(max-width: 1200px) {

    .container{
        width: 90%;
    }
    
    .banner_section .get_bonus {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-48%, -55%);
        max-width: 50%;
    }
    
    .banner_section .get_bonus:nth-child(3) {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -0%);
        width: 20%;
        z-index: 2;
    }



    .banner_title {
        font-size: 30px;
        width: 90%;
    }

    .banner_title span {
        font-size: 60.44px;
    }

    .game_item {
        min-height: 130px;
    }

    .provider_section {
        min-height: 800px;
    }

    .provider_section .wrapper {
        height: 820px;
    }

    .provider_section .main_banner {
        width: 80%;
        margin-top: 50px;
    }

    .police {
        right: 35%;
        bottom: 0;
    }

    .centur {
        left: 10%;
        bottom: 0;
        z-index: 1;
    }

    .cyber {
        left: -10%;
        bottom: 0;
        z-index: 2;
    }
}

@media(max-width: 900px) {

    .container{
        width: 90%;
    }

    header .wrapper{
        width: 90%;
    }
    .banner_section{
        margin-top: 120px;
    }

    .game_item {
        width: 100%;
    }

    .get_bonus,
    .get_bonus_btn{
        display: none;
    }

    .banner_item .btn{
        display: flex;
        width: 40%;
    }

    .banner_item img.person{
        right: -10%;
        width: 60%;
        z-index: 4;
    }
    
    .banner_item img.chip{
        top: -10px;
        left: 40%;
        width: 25%;
    }
    
    .banner_item img.cube{
        top: 30%;
        right: 2%;
        width: 15%;
    }
    
    .banner_item img.cherry{
        top: 50%;
        left: 40%;
        width: 15%;
    }

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

    .payment_item{
        height: 100px;
    }

    .banner_section .wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .banner_item {
        width: calc(100%);
    }

    .game_section .wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner_section.second .btn{
        width: 100%;
    }
}

@media(max-width: 600px) {

    header {
        height: 70px;
    }

    header .wrapper{
        width: 100%;
    }

    .header{
        justify-content: flex-start;
        gap: 200px;
    }

    header .header-btns,
    header nav {
        display: none;
    }

    .banner_section{
        margin-top: 100px;
    }
   
    .banner_section .wrapper{
        gap: 0;
    }

    .banner_item {
        width: calc(100%);
        height: 200px;
        padding: 20px;
        gap: 10px;
    }
    

    .banner_title {
        width: 100%;
        line-height: 2.5rem;
    }

    .banner_item img.person{
        right: -15%;
        width: 60%;
        z-index: 4;
    }
    
    .banner_item img.chip{
        top: -10px;
        left: 40%;
        width: 25%;
    }
    
    .banner_item img.cube{
        top: 30%;
        right: -5%;
        width: 15%;
    }

    .bottom_banners img{
        width: 80%;
    }
    
    .banner_item img.cherry{
        top: 60%;
        left: 45%;
        width: 15%;
    }

    .banner_item .banner_title{
        font-size: 1.5rem;
    }

    .banner_item .banner_title span{
        font-size: 2.5rem;
    }

    .game_item {
        width: 100%
    }


    .banner_section {
        width: 100%;
    }

    .banner_section .wrapper {
        margin-top: 60px;
    }

    .banner_title {
        font-size: 30px;
        width: 90%;
        line-height: 1.875rem;
    }

    .banner_title span {
        font-size: 50.44px;
        line-height: 2.875rem;
    }


    .provider_section {
        min-height: 600px;
    }

    .provider_section .wrapper {
        height: 620px;
    }

    .provider_section .main_banner {
        min-height: 300px;
        margin-top: 50px;
    }

    .provider_section .main_banner .title {
        font-size: 60px;
    }

    .provider_section .provider_list {
        width: 90%;
    }

    summary {
        font-size: .825rem;
        padding-left: 5px;
    }

    details p {
        font-size: .825rem;
        margin-left: 5px;
    }

    details ul {
        margin-left: 10px;
    }

    .banner_section.second .banner_item img{
        left: -10%;
    }

    summary::after {
        padding: 2px 5px 4px 5px;
    }

    .game_section .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile_menu {
        width: 100%;
    }
}

@media(max-width: 400px) {

    .header{
        gap: 150px;
    }

    h2 {
        font-size: 2rem;
    }

    .banner_item .banner_title{
        font-size: 1.5rem;
    }

    .banner_item .banner_title span{
        font-size: 2.5rem;
    }

    .banner_item img.person{
        right: -25%;
        width: 65%;
        z-index: 4;
    }

    .banner_item img.cube{
        top: 30%;
        right: 15%;
        width: 15%;
    }

    .game_item {
        width: 100%;
        height: 200px;
    }

    .game_item:nth-child(5),
    .game_item:nth-child(6),
    .game_item:nth-child(7),
    .game_item:nth-child(8),
    .game_item:nth-child(9),
    .game_item:nth-child(10),
    .game_item:nth-child(11),
    .game_item:nth-child(12) {
        display: none;
    }

    .provider_section .wrapper {
        gap: 40px;
    }

    .provider_section .title {
        font-size: 10px;
    }

    summary {
        font-size: .825rem;
        padding-right: 80px;
    }

    .mobile_menu .wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .mobile_menu ul {
        gap: 15px;
    }

    .mobile_menu-btns div {
        gap: 20px;
    }
}

@media(max-width: 374px) {
    .header{
        gap: 100px;
    }

    .banner_section.second .btn{
        width: 100%;
    }

    .banner_section.second .banner_item img{
        left: -20%;
    }

    .banner_section.second .banner_item h2{
        font-size: 1rem;
    }

}

@media(max-width: 600px) {  
    table.table-wrap {
      border: 0;
    }
  
    table.table-wrap tr.title {
      display: none;
    }
  
    table.table-wrap td.colored {
        background: linear-gradient(285deg, #468cee -4.67%, #941afe 101.39%);
    }
  
    table.table-wrap td.colored p {
      color: #fff;
    }
  
    table.table-wrap thead {
      display: none;
    }
  
    table.table-wrap tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
      border-right: 1px solid #677a9d;
    }
  
    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;
    }
  }