@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
    box-sizing: border-box;
    color: #fff;
  }

  :root {
    --bg-mobile-menu: #151424;
    --bg-header-block: #151424;
    --bg-producer: #151424;
    --bg-sidebar: #151424;
    --border-radius: 0.625rem;
    --margin: 0 10px;
    --transition-duration: .3s;
}
  
  body{
    overflow-x: hidden;
    background-color: #0b0c2a;
    line-height: 1.5;
  }

  a{
    text-decoration: none;
  }

  .link{
    cursor: pointer;
  }

  header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 65px;
    background-color: #fff;
    z-index: 99;
  }

  .header_logo,
  .footer_logo{
    width: 60px;
  }

  .container{
   width: 90%;
    max-width: 1140px;
    height: 100%;
    margin: 0 auto;
  }

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

  nav a {
    color: #000;
    font-size: 14px;
    padding: 20px;
    font-weight: 700;
    transition: all, 0.5s;
  }

 nav a.active,
 nav a:hover{
    background-color: #167abf;
    color: #fff;
 }

 .header_btns{
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .header_btns a.btn{
    background-color: green;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 12px;
 }

 .header_btns a.btn.demo{
    background: red;
    color: #fff;
    border-color: red;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
 }


 @keyframes glowing{
    0% {
        background-color: red;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
    50% {
        background-color: darkred;
        -webkit-box-shadow: 0 0 10px #FF0000;
    }
    100% {
        background-color: red;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
 }

 .main_slider{
    margin-top: 100px;
    box-sizing:border-box;
    overflow-y: hidden;
 }

 .swiper-slide img{
    width: 100%;
 }

 .swiper-pagination-bullet{
    width: 30px !important;
    height: 4px !important;
    border-radius: 1px !important; 
    background-color: #fff !important;
 }

 h1{
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 20px;
    position: relative;
    margin: 10px 0;
 }

 h1::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 4px;
    background-color:#e53637;
 }

 .exchange_section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
 }

 .exchange_item{
    position: relative;
 }

 .item_title{
    color: #ffffff;
    background: #ff0000;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 4px;
    position: absolute;
    left: 15px;
    top: 25px;
    text-transform: uppercase;
    font-weight: 700;
 }

 .exchange_section img{
    width: 100%;
 }

 .middle_banner{
    width: 100%;
    background-color: #000;
    margin: 20px 0;
    padding: 20px 0;
 }

 .middle_banner .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 .middle_banner .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
 }

 .middle_banner .content h2{
    color: #167abf;
    font-weight: 900;
    font-size: 2rem;
 }

 .middle_banner .content ul li {
    list-style-type: none;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
 }

 .middle_banner img{
   width: 50%;
 }

 .providers{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 20px 0;
 }

 .providers_item img{
    box-shadow: inset 0 0 4px 0 #1f407f;
    height: 100px;
    object-fit: contain;
    padding: 15px;
    width: 100% 
 }

 .providers_item img:hover{
    border: 1px solid #167abf;
 }

 .txt_area {
   margin: 40px auto;
   color: #fff;
 }
 
 .txt_area h1,
 .txt_area h2,
 .txt_area h3 {
   margin: 20px auto;
 }
 
 .txt_area h1 {
   font-size: 3rem;
 }
 
 .txt_area h2 {
   font-size: 2rem;
 }
 
 .txt_area h3 {
   font-size: 1.825rem;
 }
 
 .txt_area a {
   color: red;
   text-decoration: underline;
 }
 
 .txt_area p {
   line-height: 1.5rem;
 }
 
 .txt_area ul,
 .txt_area ol {
   margin: 20px auto;
   margin-left: 20px;
 }
 
 .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: red;
 }
 
 .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;
 }
 
 table {
   width: 100%;
   table-layout: fixed;
 }
 
 
 .tbl-header {
   background-color: var(--blue);
 }
 
 table {
   margin: 40px auto;
 }
 
 table .title {
   background-color: red;
 }
 
 th {
   padding: 10px 8px;
   text-align: left;
   font-weight: 500;
   color: var(--azure);
   text-transform: uppercase;
   border: 1px solid var(--blue);
 }
 
 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;
 }
 footer{
    background-color: #fff;
    padding: 40px 0;
 }

 footer .container{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 15px;
   height: 50px;
 }

 .footer_item{
   display: flex;
   flex-direction: column;
   width: 50%;
   gap: 10px;
 }

 .footer_item p{
   color: #000;
   font-size: 14px;
   font-weight: 400;
   display: flex;
   flex-direction: column;
 }

 footer p{
   color: #1a315d;
   width: 50%;
   text-align: end;

 }

 .footer_item p span{
   color: #1a315d;
   font-weight: 700;
   font-size: 14px;
 }

 .footer_item .social{
   width: 150px;
 }

 .footer_item h4{
   position: relative;
   font-size: 22px;
   font-weight: 800;
   margin-bottom: 10px;
   text-transform: uppercase;
   color: #1a315d; 
 }

 .footer_item h4::after{
   content: '';
   background: #ddd;
   height: 1px;
   width: 50%;
   position: absolute;
   left: 0;
   bottom: -8px;
 }
 .footer_item .payment {
   display: flex;
   flex-direction: column;
 }

 .footer_item .payment img{
   width: 300px;
 }

 .footer_item ul li a{
   font-size: 14px;
   color: #707070;
   display: block;
   font-weight: 700;
   margin-bottom: 10px;
 }

 .footer_item ul li a:hover{
   opacity: .5;
 }

 .securitylogo img{
   width: 80px;
 }
 
 .securitylogo img.adult{
   width: 40px;
 }

 .burger__menu{
  display: none;
 }

 @media(max-width: 769px)
 {
   nav{
      position: fixed;
      right: -100%;
      top: 63px;
      width: 100%;
      display: flex;
      flex-direction: column;
      background-color: #0b0c2a;
      transition: all .5s ease;
      height: 100%;
      z-index: 5;
      padding-top: 100px;
   }

   nav._active{
      right: 0;
   }

   nav a{
      color: #fff;
   }



   .burger__menu{
      z-index: 999;
      display: block;
      position: relative;
      width: 30px;
      height: 20px;
      cursor: pointer;
      margin-left: 20px;
  }
  
  .burger__menu span, .burger__menu::before, .burger__menu::after{
      left: 0;
      position: absolute;
      height: 15%;
      width: 100%;
      transition: all 0.3s ease 0s;
      background-color: #000;
      border-radius: 5px
  }
  
  .burger__menu::after{
      height: 12%;
  }
  
  .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%);
  }

  .item_title{
   left: 15px;
   top: 10px;
   font-size: 14px;
  }
 }

 @media(max-width: 600px)
 {
   .exchange_section {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }

   .providers {
      grid-template-columns: repeat(4, 1fr);
  }

  .middle_banner .wrapper {
   flex-direction: column;
  }

  .middle_banner .content{
   width: 100%;
  }

  .middle_banner img{
   width: 100%;
  }

   footer .container{
      flex-direction: column;
      gap: 20px;
   }

   .license {
      display: flex;
      gap: 40px;
   }

   table.table-wrap {
      border: 0;
    }
  
    table.table-wrap tr.title {
      display: none;
    }
  
    table.table-wrap td.colored {
      background-color: red;
    }
  
    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 red;
      border-right: 2px solid red;
    }
  
    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;
    }
 }

 @media(max-width: 424px)
 {

   .burger__menu{
      margin-left: 0;
   }

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

  h1{
    font-size: 24px;
  }
 }