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

:root{
    --black: #121212;
    --black2: #1c1e27;
    --black3: #212633;
    --white: #fff;
    --greyText1: #292e3b;
    --greyText3: #3a3e4a;
    --greyText4: #424651;
    --greyText5: #4a4e59;
    --greyText6: #74777f;
    --greyText7: #5b5e68;
    --greyText8: #666a73;
    --greyText9: #6b6f77;
    --goldLight: #9f9684;
    --brown2: #5e594f;
    --greenBg: #72ae04;
    --burgerBgColor: rgba(50,55,70,.7);
    --grey: #5e594f;
    --grey2: #393630;
    --grey3: #23201d;
    --grey4: #303132;
    --grey5: #222324;
    --grey5Lighter: rgba(34,35,36,.7);
    --grey5Light: rgba(34,35,36,.9);
    --grey6: #292b2c;
    --grey7: #404142;
    --grey8: #3d3d3d;
    --grey9: #9698a1;
    --grey10: #40424b;
    --grey11: #525763;
    --grey12: #646773;
    --grey13: #81838d;
    --grey14: #c3c6d4;
    --greyLight1: #f5f5f5;
    --inputGreyBorder: #e6e6e6;
    --darkGreyBg1: #2d3140;
    --colorTabsCabinet: #9f9684;
    --inputBgColor: #23201d;
    --orange: #ffbd53;
    --orange2: #ffb02e;
    --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: #3498fd;
    --bgBlue4: #3498fd;
    --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;
}

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

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

.container {
    margin: 0 auto;
    
}

.header__container-logo{
    display: flex;
    flex: 1;
    flex-direction: row;
}

.header__container .header__container-menu{
    display: flex;
    justify-content: flex-start;
    z-index: 1200;
}

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

.header__container .header__container-menu .icons .burger{
    display: none;
}

.header__container .header__container-menu .icons .burger svg{
    height: 36px;
    width: 36px;
}

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

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

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

.header__container .header__container-menu .icons .header__nav-links, .header__container .header__container-menu .icons .header__nav-links .nav-links{
    display: flex;
    flex-wrap: wrap;
}
.nav-links .games{
    position: relative;
    margin-inline-end: 10px;
}
.nav-links .games > a{
    margin: 0 !important;
}
.nav-links .games div{
    position: absolute;
    inset-block-start: 100%;
    inset-inline-start: 0;
    background-color: #323746;
    padding: 15px;
    display: none;
}
.nav-links .games div a{
    white-space: pre;
    margin-block-end: 10px;
    padding: 5px 0 !important;
}
.nav-links .games div a:last-of-type{
    margin-block-end: 0;
}
.nav-links .games:hover{
    background-color: #323746;
}
.nav-links .games:hover div{
    background-color: #323746;
    display: block;
}

.header__container .header__container-menu .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;
    padding: 5px 15px;
}

.header__container .header__container-menu .icons .header__nav-links .nav-links a:hover{
    color: #fff;
}

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

.header .header__container-logo .header__logo .logo__wrapper{
    cursor: pointer;
}

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

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

.header__buttons {
    display: none;
}

.header__buttons .header_buttons-wrapp{
    display: flex;
}

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

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

.language__switcher{
    position: relative;
}

.language__switcher .language__wrapper{
    align-items: center;
    background-color: var(--greyDark2);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    padding: 6px 12px;
    cursor: pointer;
}

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

.language__switcher .language__wrapper img{
    height: 16px;
    margin: 0 7.5px;
    width: 23px;
}

.language__switcher .language__wrapper svg{
    fill: #9698a1;
}

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

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


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


.header__slider-img.amount{
    padding-top: 50px;
}

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

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

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

.amount__img{
    width: 300px;
}

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

}

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


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

.content__section .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 20px auto;
}

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

.content__section h1{
    font-size: 1.9rem;
}

.content__section h2{
    font-size: 1.5rem;
}

.content__section h3{
    font-size: 1.2rem;
}


.content__section p {
    color: var(--greyText6);
}

.content__section ul li, .content__section ol li{
    color: #fff;
    line-height: 2rem;
}

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

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

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

.navigation__item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100px;
    gap: 5px;
    padding: 10px 0;
    cursor: pointer;

}

.navigation__img{
 display: flex;
 justify-content: center;
}

.navigation__img svg{
    color: var(--azure)
}

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

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

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

.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;
  }
  .tbl-header{
    background-color: var(--azure);
   }
  .tbl-content{
    height:400px;
    overflow-x:auto;
    margin-top: 0px;
    border: 1px solid rgba(255,255,255,0.3);
  }
  th{
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
  }
  td{
    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    border-bottom: solid 1px rgba(255,255,255,0.1);
}


.section__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%
}

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

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

.section__wrapper .faq summary::after {
    content: "\203A";
    position: absolute;
    top: 24px;
    right: 30px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 3rem;
    color: #fff;
    width: 12px;
    height: 40px
}

.section__wrapper .faq details[open] summary::after {
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}
  
.mobile__menu{
    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(-100%,0px);
    transition: all 0.5s ease 0s;
}

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


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

.MobileMainNav{
    margin-top: 10%;
}

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


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

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

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

.mobile__menu .FooterMenu {
    border: none;
    display: block;
    margin: 0;
    padding: 8% 0 10%;
}

.mobile__menu .FooterMenu 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_login {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.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 .payment__title{
    background-color: #1c1e27;
    color: var(--grey9);
    font-size: 1rem;
    font-weight: 700;
    padding: 0 8px;
    position: absolute;
    text-transform: uppercase;
    top: -25px;
}

.footer__payment .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: 60%;
    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 (max-width: 1200px) {
    .header {
        height: var(--headerHeightMobile);
    }

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

    .header__container .header__container-menu .icons .burger{
        position: relative;
        display: flex;
    }

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

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

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

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

    .header__slider-flex{
        gap: 30px; 
    }
}


@media(max-width: 767px){
    .header .header__container-logo .header__logo{
        left: 30%;
    }

    .header__buttons .header_buttons-wrapp button{
        padding: 10px 10px;
        font-size: 10px;
    }

    .language__switcher .language__wrapper{
        padding: 5px 0px;
    }

    .language__switcher span{
        display: none;
    }

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

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

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

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

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

    .header__slider-img.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{
        margin: 0 auto;

    }

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

    .footer__links ul li {
        padding-bottom: 10px;
    }

    .footer__partners{
        justify-content: center;
        text-align: center;
    }

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

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

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

    .header .header__container-logo .header__logo{
        left: 25%;
        position: absolute;
        top: 0;
        transform: translate(-50%,45%);
    }

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

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

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

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

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

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

.hide {
    display: none;
}

._active {
    display: block;
}