@import url('https://fonts.googleapis.com/css2?family=Foldit:wght@100&family=Montserrat:wght@300;700&display=swap');

* {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

:root {
    --black: #121212;
    --black2: #1c1e27;
    --white: #fff;
    --greyText6: #74777f;
    --brown2: #5e594f;
    --burgerBgColor: rgba(50, 55, 70, .9);
    --grey9: #9698a1;
    --grey10: #40424b;
    --grey13: #81838d;
    --grey14: #c3c6d4;
    --colorTabsCabinet: #9f9684;
    --goldText: #b68e3c;
    --bodyBgBlack: #1c1e27;
    --borderRadius: 6px;
    --containerMaxWidth: 1280px;
    --headerHeight: 80px;
    --headerHeightMobile: 70px;
    --topFiltersHeight: 66px;
    --transitionTimingFunction: cubic-bezier(0.25, 0.1, 0.25, 1);
    --bgBlue2: #052453;
    --bgBlue4: #5f78d2;
    --fontBlue: #5f78d2;
    --scrollBar: #babac0;
    --fontYellow: #ffc800;
    --bgYellow: #ffbd3e;
    --pink: #ff0084;
    --coral: #ec5c62;
    --red: #ed2b65;
    --red2: #ff5050;
    --green: #00a611;
    --green2: #8eea68;
    --green3: #53e198;
    --green3Light: #33404a;
    --greenBlue1: #0ed5cf;
    --SecondBlue: #0080ff;
    --whatsAppColor: #25d366;
    --yellowDark: #ffa512;
    --yellowDarkSuperLight: #ffa5120c;
    --orange3: #ffd810;
    --gold: #db9c42;
    --yellowLight: #ffd910;
    --pink2: #cf2e14;
    --error: #ef466f;
    --violetLight: #5360a6;
    --greyMid: #656975;
    --greyMid2: #3e4451;
    --greyDark2: #323746;
    --greyDark2Ligher: rgba(50, 55, 70, .5);
    --fontGray: 656975;
    --azure: #3498fd;
    --darkTurquoise: #15d6c9;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: none;
    background-color: var(--bodyBgBlack);
    font-style: normal;
    font-weight: 400;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
}

header {
    align-items: center;
    display: flex;
    height: var(--headerHeight);
    justify-content: space-between;
    position: fixed;
    top: 0;
    transition: all .2s ease-out;
    width: 100%;
    z-index: 1200;
}

header.gray {
    background-color: var(--black2)
}

.link {
    cursor: pointer;
}

.header_wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px 24px;
    transition: all .2s ease-out;
    width: 100%;
}

.container {
    margin: 0 auto;

}

.header_menu {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.header_wrapper .menu_wrapper {
    display: flex;
    justify-content: flex-start;
    z-index: 1200;
}

.header_wrapper .menu_wrapper .icons {
    align-self: center;
    display: flex;
    justify-content: space-between;
}

.header_wrapper .menu_wrapper .icons .burger {
    display: none;
}

.header_wrapper .menu_wrapper .icons .burger svg {
    height: 36px;
    width: 36px;
}

.header_wrapper .menu_wrapper .icons .burger._active svg g rect:nth-child(2) {
    display: none;
}

.header_wrapper .menu_wrapper .icons .burger._active svg g rect:first-child {
    width: 30px;
    transform: rotate(45deg)translate(0px, -1px)
}

.header_wrapper .menu_wrapper .icons .burger._active svg g rect:last-child {
    width: 30px;
    transform: rotate(-45deg) translate(-15px, -1px);
}

.header_wrapper .menu_wrapper .icons .header__nav-links,
.header_wrapper .menu_wrapper .icons .header__nav-links .nav-links {
    display: flex;
}

.header_wrapper .menu_wrapper .icons .header__nav-links .nav-links a {
    align-items: center;
    color: hsla(0, 0%, 100%, .8);
    display: flex;
    font-size: 0.8rem;
    font-weight: 700;
    max-width: max-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

.header_wrapper .menu_wrapper .icons .header__nav-links .nav-links a:hover {
    color: #fff;
}

.header_wrapper .menu_wrapper .icons .header__nav-links .nav-links a:not(:last-of-type) {
    margin-right: 25px;
}

header .header_menu .header-logo {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, 32%);
}

header .header_menu .header-logo .logo__wrapper {
    cursor: pointer;
}

header .header_menu .header-logo .logo__wrapper>div {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header .header_menu .header-logo .logo__wrapper .mobile__logo {
    display: none;
}

.header__btns {
    display: none;
}

.header__btns .btns_wrapper {
    display: flex;
}

.btns {
    align-items: center;
    display: flex;
    margin: 0 10px;
    gap: 10px;
}

button {
    max-height: 36px;
    padding: 10px 20px;
    white-space: nowrap;
}

.btn {
    align-items: center;
    background: transparent;
    border: 0 solid transparent;
    border-radius: var(--borderRadius);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 700;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: .3s;
    width: 100%;
}

.outline {
    border: 1px solid;
    color: var(--white);
    border: 1px solid hsla(229, 6%, 61%, .3);
    border-radius: var(--borderRadius);
}

.color {
    background-color: var(--azure);
    background-image: linear-gradient(252deg, var(--darkTurquoise), var(--azure) 47%) !important;
    border: none;
    color: var(--white);
}

.color:hover {
    -webkit-box-shadow: -1px 2px 13px 3px var(--azure);
    -moz-box-shadow: -1px 2px 13px 3px var(--azure);
    box-shadow: -1px 2px 13px 3px var(--azure);
}

.switcher {
    position: relative;
}

.switcher .language_item {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 10px 12px;
    cursor: pointer;
    gap: 3px;
    background-color: var(--greyDark2);
    border-radius: 6px;
}

.switcher .language_item.drop._active {
    border-radius: 6px 6px 0px 0px;
}

.language_item.en {
    position: absolute;
    top: 0;
    display: none;
    width: 75%;
    transition: all .8s ease;
}

.language_item.en .arrow {
    border: solid transparent;
}

.language_item.en._active {
    display: flex;
    top: 100%;
    background-color: var(--greyDark2);
    border-radius: 0px 0px 6px 6px
}


.switcher .language_item span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.switcher .language_item img {
    height: 16px;
    margin: 0 7.5px;
    width: 23px;
}

.switcher .language_item svg {
    fill: #9698a1;
}

.switcher .language_item .arrow {
    margin-bottom: 5px;
}

.language__svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.main_slider {
    position: relative;
    height: 580px;
    margin: 0 auto;
    max-width: 1440px;
    margin-bottom: 60px;
}

.main_slider .promo__item img{
    width: 80%;
}


.slider_item {
    background-position: top;
    background-repeat: no-repeat;
    background-size: 1440px 580px;
    display: flex;
    height: 550px;
    justify-content: center;
    width: 100%;
}

.slider_item.amount {
    padding-top: 50px;
}

.slider_item.slots {
    padding-top: 0px;
}

.promo__item .promo__title {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.14;
    margin: 0;
    max-width: 421px;
    text-align: center;
    text-shadow: 0 20px 40px rgba(8, 8, 8, .5);
    text-transform: uppercase;
}

.promo__item .promo__subTitle {
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    background-color: #0ed5cf;
    background: linear-gradient(256deg, #0ed5cf 10%, #8eea68 20%, #8eea68 40%, #0ed5cf);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-size: 50% auto;
    color: var(--white);
    font-size: 32px;
    margin: 10px 0 30px;
    text-align: center;
    text-transform: uppercase;
}

.slider_btn {
    background-color: var(--azure) !important;
    background-image: linear-gradient(232deg, var(--darkTurquoise), var(--azure)) !important;
    border-radius: var(--borderRadius);
    color: var(--white);
    font-size: 14px;
    max-width: 150px;
    padding: 14px 0;
}

.promo__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    gap: 40px;
}

.swiper-slide:nth-child(2) .promo__item {
    height: 95%;
}

.swiper-slide:nth-child(3) .slider_item {
    justify-content: flex-start;
}

.swiper-slide:nth-child(3) .promo__item {
    margin-left: 70%;
}

.swiper-slide:nth-child(3) .promo__item img{
   width: 250%;
}

.swiper-slide:nth-child(5) .promo__item img {
    width: 50%;
}

.swiper-slide:nth-child(6) .promo__item,
.swiper-slide:nth-child(7) .promo__item {
    height: 100%;
}

.swiper-slide:nth-child(6) .promo__item .slider_btn,
.swiper-slide:nth-child(7) .promo__item .slider_btn {
    padding: 20px;
}

.provider__img {
    height: 65px;
    margin: 41px 0 31px;
}

.amount__img {
    width: 300px;
}

.header__slider-flex {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 50px;

}

.header_slider-slots img {
    width: 800px;
    padding-top: 100px;
}


.main_slider .swiper-pagination-bullet {
    background-color: var(--colorTabsCabinet);
    margin-right: 10px !important;
}

.main_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px auto 40px auto;
    text-align: center;
}

.main_title h1,
.main_title p{
    margin: 10px auto;
}

h1,
h2,
h3 {
    text-align: center;
    color: #fff;
}

h1 {
    font-size: 1.9rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

.game_section,
.promo_section,
.bottom_banner {
    width: 90%;
    margin: 0 auto;
}

.game_section-mobile{
    display: none;
}

.game_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 60px;
}

.game_list li {
    list-style-type: none;
    border-radius: 15px;
    position: relative;
    margin-left: 0;
}

.game_list img {
    width: 100%;
    border-radius: 15px
}

.game_item {
    position: relative;
}

.game_icon {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: var(--pink2);
    padding: 0px 10px 4px 10px;

}

.game_active {
    position: absolute;
    top: 0;
    height: calc(100% - 3px);
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: center;
}

.game_active._active {
    display: flex;
}

.game_active img {
    width: 20px;
    height: 20px;
}

.game_active .btn {
    padding: 30px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.provider,
.game_name {
    text-align: left;
    line-height: 14px;
    font-weight: 700;
}

.provider {
    color: var(--SecondBlue);
    font-weight: 700;
    font-size: 10px;
}

.game_name {
    font-size: 12px;
}

.game_unit{
    position: relative;
    min-height: 250px;
}
.game_unit img{
    width: 100%;
    border-radius: 15px
}
.promo_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0;
}

.promo_item {
    list-style-type: none;
    background: var(--greyDark2);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    width: calc(50% - 10px);
    min-height: 200px;
}

.promo_item span {
    position: absolute;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: hsla(229, 6%, 61%, .2);
    border-radius: 6px;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.promo_item span img {
    width: 15px;
}

.promo_item span:hover {
    background-color: hsla(229, 6%, 61%, .1);
}

.item_content {
    width: calc(70% - 40px);
    padding: 10px 20px;
}

.bonus {
    background-image: linear-gradient(252deg, var(--green2) 81%, var(--greenBlue1));
    border-radius: 12.5px;
    color: var(--greyDark2);
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
}

.bonus_name {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 12px;
}

.bonus_descr {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: .7;
    word-wrap: break-word;
}

.promo_item button {
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    padding: 8px 10px 8px 16px;
    text-transform: capitalize;
    width: auto;
    background-color: transparent;
    margin-top: 20px;
}

.promo_item button img {
    width: 12px;
}

.promo_item .promo_img {
    width: 35%;
    border-radius: 0px 6px 6px 0px;
    background-repeat: no-repeat;
    background-size: cover
}

.bottom_banner {
    margin: 40px auto;
    display: flex;
    position: relative;
}

.bottom_banner img {
    width: 25%;
}

.banner_promo {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}

.banner_promo button {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0%);
}

.banner_promo h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: center;
}

.banner_promo p {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.game_unit .game_active .btn{
    padding: 10px;
    width: 80%;
}

.bottom_banner img:nth-child(1) {
    border-radius: 15px 0 0 15px;
}

.bottom_banner img:nth-child(4) {
    border-radius: 0px 15px 15px 0px
}

.txt_area h1,
.txt_area h2,
.txt_area h3 {
    margin: 20px auto;
    
}

.txt_area p {
    color: var(--greyText6);
    text-align: left;
}

.txt_area ul,
.txt_area ol {
    margin: 20px auto;

}

.txt_area ul li,
.txt_area ol li {
    color: #fff;
    line-height: 2rem;
    margin: 0px auto;
    margin-right: 20px;
}

.txt_area ul li::marker,
.txt_area ol li::marker {
    color: var(--azure)
}

.txt_area .btn{
    display: flex;
    margin: 20px auto;
}

.txt_area .sub_title {
    text-align: center;
}

.txt_area .navigation {
    width: 90%;
    background-image: linear-gradient(to right, var(--black2), var(--greyDark2) 15%, var(--greyDark2) 86%, var(--black2));
    box-shadow: 0 10px 30px var(--black2);
    margin: 0 auto;
}

.txt_area.faq_page{
    margin-top: 100px;
    background-color: transparent;
}

.navigation__item:hover {
    background-color: var(--azure);
    background-image: linear-gradient(211deg, var(--darkTurquoise) 10%, var(--azure) 70%);
    border-radius: 5px;
}

.navigation__slider {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.txt_area .wrapper {
    background-image: linear-gradient(90deg, rgba(28, 30, 39, .314), rgba(50, 55, 70, .314) 15%, rgba(50, 55, 70, .314) 86%, rgba(28, 30, 39, .314));
    padding: 40px;
    border-radius: 20px;
}

.txt_area.faq_page .wrapper{
    background: transparent;
}
.section__img-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.img_item img {
    max-width: 400px;
    border-radius: 5px;
    border: 1px solid var(--azure);
}

.button-content.align-center {
    text-align: center;
    margin: 2rem 0;
}

.button-content__control {
    font-weight: 700;
    font-size: 14px;
    background-color: var(--azure);
    background-image: linear-gradient(252deg, var(--darkTurquoise), var(--azure) 47%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 15px 30px;
    max-height: 100%;
    border: none;
    cursor: pointer;
}

.button-content__control::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 20%;
    background-color: var(--darkTurquoise);
    opacity: .4;
    left: -25%;
    top: 1%;
    transform: skewX(-20deg);
}

.button-content__control:hover:after {
    left: 100%;
    transition: all .4s;
}

table {
    width: 100%;
    table-layout: fixed;
}

.txt_area table p{
    color: var(--fontYellow)
}
.tbl-header {
    background-color: var(--azure);
}

.tbl-content {
    margin-top: 0px;
    border: 1px solid #74777f;
    margin: 40px auto;
}

.tbl-content table{
    width: 100%;
    border-collapse: collapse;
}

th {
    padding: 10px 8px;
    text-align: left;
    font-weight: 500;
    font-size: 10px;
    color: var(--azure);
    text-transform: uppercase;
}

td {
    padding: 5px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
}


.txt_area .wrapper .faq details {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 31px 42px 10px 53px;
    margin-bottom: 0px;
    position: relative;
    line-height: 142%
}

.txt_area .wrapper .faq summary {
    font-weight: 700;
    font-size: 20px;
    line-height: 142.69%;
    outline: 0;
    cursor: pointer;
    display: block;
    margin-right: -10px;
    color: #fff;
    text-align: left;
}

.faq details p{
    text-align: left;
    margin-top: 10px;
}

.txt_area .wrapper .faq summary::marker {
    display: none;
    content: ""
}

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

.txt_area .wrapper .faq details[open] summary::after {
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.mob_sidebar {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    outline: 0;
    z-index: 1001;
    position: fixed;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
    background-color: var(--burgerBgColor) !important;
    color: rgba(0, 0, 0, 0.87);
    overflow-y: hidden;
    transform: translate(200%, 0px);
    transition: all 0.5s ease 0s;
}

.mob_sidebar._active {
    transform: translate(0px, 0px);
}


.mob_sidebar .wrapper {
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: left;
    padding: 20px 40px 0;
    position: relative;
}

.mob_sidebar nav {
    margin-top: 10%;
}

.mob_sidebar nav a {
    align-items: center;
    color: var(--white);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    text-transform: uppercase;
}


.mob_sidebar .buttons {
    display: flex;
    flex-direction: column;
}

.mob_sidebar .buttons button {
    margin-bottom: 10px;
}

.mob_sidebar .links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 0 30px;
    width: 100%;
}

.mob_sidebar .links {
    border: none;
    display: block;
    margin: 0;
    padding: 2% 0 10%;
}

.mob_sidebar .links a {
    color: var(--grey13);
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    justify-content: center;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    text-transform: capitalize;
    width: 100%;
    text-decoration: none;
}

.modal_reg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal__dialog {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    background-color: rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    padding-top: 50px;

}

.modal__content {
    position: relative;
    max-width: 400px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 15px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 0px auto;

}

.modal__content form {
    width: 300px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal__close,
.modal__close-reg {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 50px;
    color: var(--brown2);
    opacity: .5;
    font-weight: 100;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.modal__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.modal__content p {
    text-align: center;
    color: var(--colorTabsCabinet)
}

.modal__content.signUp {
    padding: 0;
}

.modal__subTitle {
    text-align: center;
    color: var(--azure);
    cursor: pointer;
}

.frgt__pswrd {
    text-align: center;
    color: var(--SecondBlue);
    font-weight: 900;
    cursor: pointer;
}


.modal__input {
    border-radius: 10px;
    width: 365px;
    height: 50px;
    background: #1A1A1A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    font-size: 18px;
    text-align: left;
    padding: 0 20px;
    outline: 0;
    border: 1px solid var(--colorTabsCabinet);
}

.modal__input.username {
    background: #fff;
    background-size: 25px;
    color: #000;
    font-size: 14px;
    padding-left: 10px;
}

.modal__input.password {
    background: url('../img/eye-slash-solid.svg') no-repeat 95% 50%;
    background-size: 25px;
    color: #000;
    font-size: 14px;
    padding-left: 10px;
}

.modal_reg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal_reg .modal__close-reg {
    color: var(--black)
}

.title__section {
    background: url('../img/signup-bg_1.webp') no-repeat 100%;
    background-size: cover;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 190px;
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 16px;
    padding-top: 0px;
    text-align: center;
}

.title__section .modal__title {
    color: #fff;
}

.title__section p {
    color: var(--grey14)
}

.title__section h1,
.title__section p {
    margin: 5px !important;
}

.title__section span {
    color: var(--gold);
    font-weight: 600;
}

.modal_reg .title__section .signupBonusInfo h1,
.modal_reg .title__section .signupBonusInfo h2 {
    -webkit-text-stroke: 0.5px #af7213;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(103deg, #ffd140 23%, #ffaa29 67%);
    font-family: Impact !important;
    font-size: 48px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
    margin: 0;
    text-align: center;
}

.modal_reg .title__section .signupBonusInfo h2 {
    font-size: 2rem;
}

.modal_reg .modal__content form {
    gap: 10px;
}

.modal_reg .form__wrapper {
    padding: 5px 20px 20px 20px;
}

.modal_reg .form__wrapper .modal__input {
    width: 109%;
}

.firstLast {
    width: 358px;
    display: flex;
    gap: 20px;
}

.btn.primary {
    opacity: .5;
    background-color: var(--azure);
    background-image: linear-gradient(252deg, var(--darkTurquoise), var(--azure) 47%) !important;
    border: none;
    color: var(--white);
}

footer {
    margin-top: 40px;
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .links ul {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding-left: 0;
}

footer .links ul li {
    list-style-type: none;
    cursor: pointer;
}

footer .links ul li a {
    color: var(--greyText6);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

footer .links ul li a:hover {
    color: #fff;
}

footer .payment {
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 0;
    margin-top: 32px;
    padding: 10px;
    position: relative;
}

footer .payment .title{
    background-color: #1c1e27;
    color: var(--grey9);
    font-size: 1rem;
    font-weight: 700;
    padding: 0 8px;
    position: absolute;
    text-transform: uppercase;
    top: -25px;
}

.payment .methods {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .payment .payment__methods img {
    max-width: 70px;
    max-height: 40px;
}

footer .partners {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    padding-bottom: 40px;
}

footer .partners img {
    max-width: 70px;
    max-height: 40px;
}

.divider {
    height: 40px;
    width: 100%;
    border-top: 1px solid var(--grey10);
}

.footer__parners img {
    height: 40px;
    margin-bottom: 14px;
    margin-right: 14px;
    opacity: .8;
}

.support__section {
    padding: 0 40px;
}

.support__section .wrap .subTitle {
    color: var(--grey9);
    font-size: 14px;
    line-height: 1.43;
    margin-top: 40px;
}

.support__section-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.support__secition-form {
    display: flex;
    flex-direction: column;
    width: 600px;
}

.support__secition-form div {
    margin-bottom: 10px;

}

.support__secition-form div input {
    border: none;
    background-color: var(--greyDark2);
    color: var(--white);
    border-radius: 5px;
    width: 93.5%;
    height: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    padding: 0 20px;
    outline: 0;
}

.phone_input {
    position: relative;
    display: flex;
}

.phone_input .input__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: var(--greyDark2);
    border-radius: 5px;
    margin-right: 10px;
    padding: 0 5px;
    cursor: pointer;
}

.phone_input input {
    width: 100% !important;
}

.phone_input img {
    display: block;
    width: 30px;
    border-radius: 2px;
}

.phone_input svg {
    color: #fff
}

.input__img span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.5;
}

textarea {
    width: 98%;
    border: none;
    background-color: var(--greyDark2);
    color: var(--white);
    border-radius: 5px;
    height: 100px;
    font-weight: 600;
    padding-left: 10px;
}

textarea:focus,
input:focus {
    outline: none;
}

.support__section-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

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

.contacts_descr span {
    color: var(--azure);
    font-size: 0.8rem;
    font-weight: 600;
}

.contacts_descr a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.support__secition-form .btn.primary {
    opacity: 1;
    max-width: 200px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}

@media(min-width: 1450px) {
    .container,
    header {
        width: var(--containerMaxWidth);
    }

    .game_section,
    .promo_section,
    .bottom_banner {
        width: 100%;
    }
}


@media (max-width: 1200px) {
    .header {
        height: var(--headerHeightMobile);
    }

    .header__container {
        padding: 9px 24px !important;
    }

    .header_wrapper .menu_wrapper .icons .burger {
        position: relative;
        display: flex;
    }

    .header__nav-links {
        display: none !important;
    }

    .header_slider-slots img {
        width: 500px;
    }

    .switcher{
        display: none;
    }
}

@media (max-width:1023px) {
    .header .header_menu .header-logo {
        left: 18%;
        position: absolute;
        top: 0;
        transform: translate(-50%, 32%);
    }

    .header_slider-slots img {
        width: 400px;
    }

    .header__slider-flex {
        gap: 30px;
    }

    .game_section{
        display: none;
    }

    .game_section,
    .promo_section,
    .bottom_banner {
        width: 95%;
        margin: 0 auto;
}

.game_section-mobile{
    display: block;
}
}


@media(max-width: 767px) {
    header .header_menu .header-logo {
        left: 60%;
    }

    .header__btns .btns_wrapper button {
        padding: 10px 10px;
        font-size: 10px;
    }

    .switcher .language_item {
        padding: 5px 0px;
    }

    .switcher span {
        display: none;
    }

    .slider_item.amount {
        background-image: url('../img/banner-3-mobile.webp');
        background-size: cover;
        padding-top: 0px;
    }

    .slider_item.amount .header_slider-promo .promo__item h1 {
        margin-top: 100px;
    }

    .slider_item.slots {
        background-image: url('../img/banner-4-desktop.webp');

    }

    .slider_item.slots .header__slider-flex {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: start;
        gap: 0px;
    }

    .slider_item.slots .header__slider-flex img {
        margin-top: 0;
        margin-bottom: 0;
    }

    .header_slider-slots img {
        width: 300px;
    }

    .slider_item.amount .provider__img {
        margin-top: 80px;
    }

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

    footer .wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    footer .links {
        width: 90%;
        margin: 0 auto 20px auto;

    }

    footer .links ul {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        gap: 10px;
    }

    footer .links ul li {
        padding-bottom: 10px;
        text-align: left;
        border-bottom: 1px solid var(--greyMid);
        width: 100%;
    }

    footer .partners {
        justify-content: center;
        text-align: center;
    }

    .mob_sidebar nav {
        margin-top: 30%;
    }

    .modal__content {
        max-width: 300px;
    }

    .modal_reg .modal__content {
        max-width: 400px;
    }


    .modal__input {
        width: 270px;
    }

    .support__secition-form div input {
        width: 89%;
    }

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

    .bottom_banner .banner_promo{
        display: none;
    }

    

    .bottom_banner {
        margin: 40px auto;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .bottom_banner img {
        width: calc(50% - 5px);
        border-radius: 15px
    }

    .swiper-slide:nth-child(3) .promo__item{
        margin-left: auto;
    }

    .swiper-slide:nth-child(3) .promo__item img {
        width: 80%;
    }

    .main_slider {
        height: 480px;
    }
    
    .slider_item{
        height: 500px;
    }

    .main_slider {
        margin-bottom: 20px;
    }

    .txt_area .wrapper {
        background-image: linear-gradient(90deg, rgba(28, 30, 39, .314), rgba(50, 55, 70, .314) 15%, rgba(50, 55, 70, .314) 86%, rgba(28, 30, 39, .314));
        padding: 20px;
        border-radius: 20px;
    }
    
    .promo_item .promo_img {
        width: 50%;
    }
}

@media (max-width: 424px) {
    header .header_menu .header-logo .logo__wrapper .pc__logo {
        display: none;
    }

    header .header_menu .header-logo .logo__wrapper .mobile__logo {
        display: block;
    }

    header .header_menu .header-logo {
        left: 60%;
        position: absolute;
        top: 0;
        transform: translate(-50%, 60%);
    }

    .img_item img {
        max-width: 300px;
    }

    .section__wrapper .faq summary::after {
        right: 0px;

    }

    .support__secition-form div input {
        width: 87%;
    }


    .mob_sidebar nav {
        margin-top: 20%;
    }

    .modal__content {
        max-width: 280px;
    }

    .modal_reg .modal__content {
        max-width: 340px;
    }


    .modal_reg .form__wrapper .modal__input {
        width: 90%;
    }


    .firstLast {
        width: 300px;
        display: flex;
        gap: 20px;
    }

    .modal__input {
        width: 250px;
    }

    .main_slider {
        height: 430px;
    }
    
    .slider_item{
        height: 450px;
    }
}

@media(max-width: 374px) {
    .header__container {
        padding: 15px 10px !important;
    }

    .modal__content {
        max-width: 230px;
    }

    .modal_reg .modal__content {
        max-width: 300px;
        overflow-x: hidden;
    }


    .modal_reg .form__wrapper .modal__input {
        width: 75%;
    }


    .firstLast {
        width: 255px;
        display: flex;
        gap: 20px;
    }

    .support__section {
        padding: 0 10px;
    }


    .modal__input {
        width: 200px;
    }

    header .header_menu .header-logo {
        left: 70%;
    }

    .main_slider {
        height: 400px;
    }
    
    .slider_item{
        height: 400px;
    }

}

/* @media (min-width: 1200px){
    .container {
        max-width: var(--containerMaxWidth);
    }
} */

.hide {
    display: none;
}

._active {
    display: block;
}

.arrow {
    border: solid #9f9684;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}