/* Стиль по умолчанию */
* {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
}
img{
    max-width: 100%;
    height: auto;
}
body {
    background: #1B2B38;
    color: #fff;
}
h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 25px;
}
h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 25px;
}
h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 25px;
}
h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
}
h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}
h6 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.btn {
    padding: 10px 0;
    border-radius: 20px 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    background: #dafe31;
    color: #000;
    width: 150px;
    min-height: 40px;
    text-align: center;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e1fe5a;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #735cfc;
    color: #fff;
    background: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(115, 92, 252, .2);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: #151A22;
    z-index: 100;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 55px 0;
}

.sidebar.close {
    width: 60px;
}

.bx-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    cursor: pointer;
}
.bx-menu svg{
fill: rgba(212,225,245,.2);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.bx-menu:hover svg{
    fill: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sidebar.close .bx-menu {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.sidebar-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.sidebar.close .sidebar-auth {
    display: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar .btn-auth {
    margin-bottom: 20px;

}

.sidebar .nav-links {
    height: 100%;
    padding: 0 0 150px 0;
    overflow: auto;
}

.sidebar.close .nav-links {
    overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar {
    display: none;
}

.sidebar .nav-links li {
    position: relative;
    list-style: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar .nav-links li:hover {
    background: #1a2c3d;
}

.sidebar .nav-links li .iocn-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.sidebar.close .nav-links li .iocn-link {
    display: block
}

.sidebar .nav-links li span.bx {
    height: 25px;
    min-width: 25px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 15px;
}

.sidebar .nav-links li span.bx svg {
    width: 100%;
    height: 100%;
}

.sidebar .nav-links li.showMenu i.arrow {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
    display: none;
}

.sidebar .nav-links li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.45;
    padding: 5px 25px;
    height: 40px;
}
.sidebar.close .nav-links li a{
    padding: 5px 18px;
}
.sidebar .nav-links li a .link_name {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar.close .nav-links li a .link_name {
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links li .sub-menu {
    padding: 6px 6px 14px 80px;
    margin-top: -10px;
    background: #1d1b31;
    display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
    display: block;
}

.sidebar .nav-links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover {
    opacity: 1;
}

.sidebar.close .nav-links li .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.sidebar.close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar .nav-links li .sub-menu .link_name {
    display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
}

.sidebar .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.one {
    width: 80%;
    margin-left: 10%;
    background-color: black;
    height: 400px;
}

.sidebar .profile-details {
    position: fixed;
    bottom: 0;
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #1d1b31;
    padding: 12px 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar.close .profile-details {
    background: none;
}

.sidebar.close .profile-details {
    width: 78px;
}

.sidebar .profile-details .profile-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.sidebar .profile-details img {
    height: 52px;
    width: 52px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background: #1d1b31;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar.close .profile-details img {
    padding: 10px;
}

.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
    display: none;
}

.sidebar .profile-details .job {
    font-size: 12px;
}

.home-section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    min-height: 100vh;
    left: 250px;
    width: calc(100% - 250px);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar.close~.home-section {
    left: 60px;
    width: calc(100% - 60px);
}

.home-section .home-content {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.home-section .home-content .bx-menu,
.home-section .home-content .text {
    color: #11101d;
    font-size: 35px;
}

.home-section .home-content .bx-menu {
    margin: 0 15px;
    cursor: pointer;
}

.home-section .home-content .text {
    font-size: 26px;
    font-weight: 600;
}

.header-navbar {
    padding: 20px 40px;
    padding-left: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    background: #1B2B38;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}

.sidebar.close~.home-section .header-navbar {

    padding-left: 100px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}
.header {
    padding-top: 100px;
}
.header-navbar__nav{
    width: 100%;
}
.header-navbar__nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
    list-style: none;
}
.header-navbar__nav ul li a{
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-navbar__nav ul li a:hover{
    color: #ff7a00;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
 .header-slider{
    position:relative;
    width: 100%;

 }
.header-slider .swiper-slide {
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  

  .header-slide{
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
  }
  .header-slide:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(transparent));
    background: -o-linear-gradient(top, #000000, transparent);
    background: linear-gradient(to bottom, #000000, transparent);
  }
  .header-slide img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  .header-slide:hover img{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  .header-slide__content{
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 50px;
    z-index: 2;
  }
  .header-slide__content-title{
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .header-slide__content-btn{
    margin-top: 50px;
  }
  .header-slide__img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    max-width: 660px;
}
  .header__swiper-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    bottom: 20px;
    right: 10%;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
.section{
    padding: 40px 20px;
}
.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.section-features{
    overflow: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.section-features::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
.features{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.feature-item{
    background: #13212d;
    border-radius: 20px;
    padding: 15px 35px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    min-width: 280px;
}
.feature-item__icon img{
    height: 70px;
    min-width: 70px;
}
.feature-item__content-title{
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.feature-item__content-text{
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
}
.feature-item__content-text a{
    text-decoration: none;
    color: #dafe31;
    font-weight: bold;
}
.feature-item__content-stars{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
}
.feature-item__content-stars span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25px;
    height: 25px;
}
.feature-item__content-stars span:before{
    content: '';
    background: url(../img/icons/star-icon.svg) no-repeat center center;
    display: block;
    width: 25px;
    height: 25px;
}
.section-navbar{
    overflow: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    padding: 0 20px;
}
.section-navbar::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
.section-navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
}
.section-navbar ul li{
    padding-bottom: 7px;
    border-bottom: 3px solid transparent;
    border-radius: 1px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.section-navbar ul li a{
text-decoration: none;
color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-transition: all .3s linear;
-o-transition: all .3s linear;
transition: all .3s linear;
}
.section-navbar ul li:hover{
    border-bottom: 3px solid #ff7a00; 

    -webkit-transition: all .3s linear; 

    -o-transition: all .3s linear; 

    transition: all .3s linear; 
}
@-webkit-keyframes iconScale {
    55% {
      -webkit-transform: scale(1.25) rotate(10deg);
              transform: scale(1.25) rotate(10deg);
    }
    100% {
      -webkit-transform: scale(1) rotate(0deg);
              transform: scale(1) rotate(0deg);
    }
  }
@keyframes iconScale {
    55% {
      -webkit-transform: scale(1.25) rotate(10deg);
              transform: scale(1.25) rotate(10deg);
    }
    100% {
      -webkit-transform: scale(1) rotate(0deg);
              transform: scale(1) rotate(0deg);
    }
  }
.section-navbar ul li:hover a .icon{
    -webkit-animation: iconScale 0.6s ease-out;
            animation: iconScale 0.6s ease-out;
}
.section-navbar ul li.active{
    border-bottom: 3px solid #ff7a00;
}
.section-navbar ul li.active a{
    color: #ff7a00;
}
.section-navbar ul li a .icon{
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-navbar ul li a .text{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.games{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
}
.game-item {
    border-radius: 20px;
    overflow: hidden;
   -webkit-box-flex: 1;
       -ms-flex: 1 1 18%;
           flex: 1 1 18%;

}
.game-item:after{
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(47%, transparent));
    background: -o-linear-gradient(bottom, #000 0%, transparent 47%);
    background: linear-gradient(360deg, #000 0%, transparent 47%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-permalink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
}
.game-item:hover::after{
opacity: 0;
-webkit-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
}
.game-item:hover .game-title{
    opacity: 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-item:hover .game-play{
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(19,33,45,.8);
    z-index: 1;
    opacity: 1;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-play__icon{
    opacity: 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-play__icon:before{
    content: '';
    background: url(../img/icons/game-play.svg) no-repeat center center;
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-item:hover .game-play__icon{
    opacity: 1;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.game-title {
    position: absolute;
    bottom: 10px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 5px 15px;
    width: 100%;
    font-weight: bold;
    color: #fff;
    z-index: 2;
}
.game-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.game-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.tour-columns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 25px;
}
.tour-column{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30%;
            flex: 1 1 30%;
   
}
.tour-column:last-child{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
            flex: 1 1 70%;
}
.tour-winners{
    background-color: #13212d;
    border-radius: 20px;
    overflow: hidden;
    padding: 80px 35px 35px;
    min-height: 410px;
}
.winners-badge{
    padding: 5px 32px;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
    min-width: 120px;
    text-align: center;
    background: #735cfc;
    border-radius: 0 100px 100px 0;
    font-size: 12px;
}
.winners-badge:before{
    content: '';
    background: url(../img/icons/recent.svg) no-repeat center center;
    background-size: contain;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.winner-item{
    margin-bottom: 5px;
}
.winner-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    color: #fff;
    text-decoration: none;
}
.winner-game{
    width: 85px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.winner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}
.winner-nick {
    font-size: 14px;
    margin-bottom: 10px;
}
.winner-game__title {
    font-weight: bold;
    font-size: 14px;
}
.winner-value {
    font-size: 16px;
    font-weight: bold;
}
.tour-wrapper{
    background-color: #13212d;
    background: url(../img/Tournaments.png) no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    min-height: 410px;
}
.tour-wrapper:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, color-stop(35%, #13212d), color-stop(77%, rgba(19, 33,45,0)), to(rgba(19, 33,45,0)));
    background: -o-linear-gradient(left, #13212d 35%, rgba(19, 33,45,0) 77%, rgba(19, 33,45,0) 100%);
    background: linear-gradient(90deg, #13212d 35%, rgba(19, 33,45,0) 77%, rgba(19, 33,45,0) 100%);
}

.tour-badge{
    padding: 5px 32px;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
    min-width: 120px;
    text-align: center;
    background: #ff7a00;
    border-radius: 0 100px 100px 0;
    font-size: 12px;
}
.tour-badge:before{
    content: '';
    background: url(../img/icons/tournaments.svg) no-repeat center center;
    background-size: contain;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.tour-content {
    z-index: 2;
    padding: 80px 35px 35px;
}

.tour-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}
.tour-prize {
    background: #1b2b38;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;    
    -webkit-box-pack: justify;    
        -ms-flex-pack: justify;    
            justify-content: space-between;
    gap: 25px;
    padding: 10px 25px;
    margin-bottom: 15px;
}
.tour-prize__title{
    font-size: 14px;
    margin-bottom: 5px;
}
.tour-prize__value{
    font-size: 14px;
    font-weight: bold;
}
.tour-time{
font-size: 22px;
font-weight: bold;
border-left: 2px solid #d4e1f533;
padding-left: 25px;
}
.tour-subtitle{
    font-size: 14px;
    margin-bottom: 100px;
}
.loyalty-wrapper{
    background: #13212d;
    border-radius: 20px;
    padding: 60px 120px;
}
.loyalty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap; */
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    gap: 25px;
    
}
.loyalty::-webkit-scrollbar{
    display: none;
}
.loyalty-item{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 18%;
            flex: 1 1 18%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}
.loyalty-item__link{
    text-decoration: none;
    color: #fff;
}
.loyalty-item__img{
    width: 190px;
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 35px;
}
.loyalty-item__img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.loyalty-item__title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}
.loyalty-item__value{
    display: block;

}
.loyalty-more{
   margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.jackpot{
    background: url(../img/jackpot_desktop.jpeg) no-repeat top center;
    background-size: cover;
    padding: 0;
    text-align: center;
    border-radius: 20px;
}
@-webkit-keyframes pulse {
    0% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.1;
    }
    100% {
      opacity: 0.3;
    }
  }
@keyframes pulse {
    0% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.1;
    }
    100% {
      opacity: 0.3;
    }
  }
  @-webkit-keyframes rotateRight {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes rotateRight {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @-webkit-keyframes rotateLeft {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
              transform: rotate(-360deg);
    }
  }
  @keyframes rotateLeft {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
              transform: rotate(-360deg);
    }
  }
  .jackpot-decor__left{
    -webkit-animation: rotateRight 60s linear infinite;
            animation: rotateRight 60s linear infinite;
    position: absolute;
    left: 150px;
    top: 20px;
  }
.jackpot-decor__right{
    -webkit-animation: rotateLeft 60s linear infinite;
            animation: rotateLeft 60s linear infinite;
    position: absolute;
    right: 150px;
    top: 20px;
}
.jackpot-wrapper{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    /* position: absolute; 
    top: 0;
    left: 50%;
    transform: translateX(-50%); */
    margin-bottom: 20px;
}
.jackpot-title {
    background: #735cfc;
    border-radius: 0 0 100px 100px;
    padding: 10px 55px;
    font-size: 36px;
    font-weight: bold;
   margin-bottom: 20px;
}

.jackpot-value{
    font-size: 95px;
    font-weight: bold;

    
}
.jackpot-games{
    width: 80%;
    margin: 0 auto;
}
/* .jackpot-games .game-item{
    max-width: 200px;
    width: 100%;
    flex: none;
} */
.btn-jackpot{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 35px 0;
}
.soft-carousel{
    padding-top: 60px;
    margin-top: -60px;
}
.soft__swiper-nav {
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.swiper-button-next, .swiper-button-prev{
    width: 40px;
    height: 40px;
    background: #ff7a00;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    position: static;
    margin-top: 0;
}
.swiper-button-disabled{
    background-color: #4b545b;
    opacity: 1 !important;
}
.swiper-button-prev:after, .swiper-button-next:after{
    font-size: 12px;
}
.soft-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #13212D;
    padding: 10px 35px;
    border-radius: 20px;
}
.soft-item img{
    height: 49px;
}
.payments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 25px;
}
.payments svg {
    height: 55px;
    width: 120px;
}
.payments svg path{
    fill: #606B74;
}
.footer{
    padding: 20px;
  
}
.footer-columns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 20px;
}
.footer-logo{
    margin-bottom: 20px;
}
.footer-nav__title  {
    color: #ff7a00;
    font-weight: bold;
}
.footer-nav ul{
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.footer-nav ul li{
    margin-bottom: 10px;
}
.footer-nav ul li a{
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer-nav ul li a:hover{
    color: #ff7a00; 
    -webkit-transition: all 0.3s ease; 
    -o-transition: all 0.3s ease; 
    transition: all 0.3s ease;
}
.footer-nav__img {
    height: 45px;
    width: 120px;
}
.footer-nav__img img{
    margin-bottom: 20px;
}
.footer-text{
    color: #fff;
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 780px;
    width: 100%;
}
.footer-copyright{
    color: #fff;
    font-size: 12px;
}

.section-content{
    font-size: 18px;
    line-height: 28px;
    padding: 20px;
}
.section-breadcrumbs{
    padding: 20px;
}
.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d4e1f5;
}
.breadcrumbs a{
    text-decoration: none;
    color: #d4e1f5;
}
.section-game{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.related-title{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
padding: 35px 0 65px;
}
.related-games{
    width: 60%;
    margin: 0 auto;
   
}
.single__game-title{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 35px;
    gap: 35px;
}
.single__game-title h1{
    margin-bottom: 0;
}
li a {
    color: currentColor;
}