/* Простой сброс стилей */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gray-txt {
    color: #86898E;
}
.green-color {
    background: #058E76;
}
.font-icon {
    fill: #86898E;
    width: 24px;
    height: 24px;
}

.red-btn {
    font-size: 16px;
    font-weight: 500;
    background-color: #FB2401;
    padding: 12px 24px;
    cursor: pointer;
    transition: .3s ease-in-out;
    border-radius: 3px;
}
.transparent-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #FB2401;
    transition: .3s ease-in-out;
    cursor: pointer;
    border-radius: 3px;
}
.white-border-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #FFF;
    transition: .3s ease-in-out;
    cursor: pointer;
    border-radius: 3px;
}

.btn-100 {
    width: 100px !important;
    max-width: 100px !important;
}

.orange-txt {
    color: #FB9701;
}

.red-btn:hover {
    background-color: #FB9701;
}
.transparent-btn:hover {
    background-color: #FB2401;
}
.white-border-btn:hover {
    background-color: #FB2401;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0D131C;
  color: #fff;
  padding-top: 20px;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* nav */
.nav {
    height: 100vh;
    position: fixed;
    left: 0;
}
.nav-block {
    padding-left: 20px;
}

.nav-ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.li-nav {
    display: flex;
}

.nav-link {
    display: flex;
    gap: 5px;
}

.nav__span-icon {
    display: flex;
    width: 24px;
    height: 24px;
}

/* .nav-icon {
    width: 100%;
    height: 100%;
} */

.nav-li-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.green-color {
    height: 1.5px;
    width: 70%;
}

.main {
    display: flex;
    flex-direction: row;
    padding-right: 20px;
    justify-content: flex-end;
}

.nav {
    width: 20%;
}

.main__block {
    width: 80%;
}

.nav-link {
    display: flex;
    gap: 10px;
    align-items: center;
    transition: .3s ease-in-out;
}

.nav-link .nav-text {
    transition: .3s ease-in-out;
}
.nav-link .nav__span-icon svg {
    transition: .3s ease-in-out;
}

.nav-link:hover .nav-text {
    color: #fff
}
.nav-link:hover .nav__span-icon svg {
    fill: #fff;
}
.main__block-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main__block-head-left-block {
    display: flex;
    align-items: center;
    gap: 10px
}


.main__block-head-left-block .gray-txt {
    transition: .3s ease-in-out;
}
.main__block-head-left-block svg {
    transition: .3s ease-in-out;
}

.main__block-head-left-block:hover .gray-txt {
    color: #fff
}
.main__block-head-left-block:hover svg {
    fill: #fff;
}

.main__block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.main__block-head-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main__block-head-right-txt {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
}
.main__block-banners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.main__block-banner {
    padding: 30px 20px;
    background: linear-gradient(235deg, #FA0000 0%, #000000 100%);
    border-radius: 15px;
    width: 50%;
    position: relative;
    height: 330px;
}

.main__block-banner-green {
    background: linear-gradient(235deg, #049C81 0%, #000000 100%);
}

.main__block-banner-title-1 {
    font-size: 46px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: italic;
    line-height: 34px;
}
.main__block-banner-title-2 {
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: italic;
}
.main__block-banner-title-3 {
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    margin-top: 20px;
}
.main__block-banner-title-4 {
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
    margin-top: 10px;
    line-height: 34px;
    margin-bottom: 40px;
    margin-left: 50px;
}

.main__block-banner .red-btn {
    margin-top: 20px;
}

.main__block-banner img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.main__block-content {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main__block-content h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}
.main__block-content h2 {
    font-size: 48px;
    font-weight: 700;
    
    text-transform: uppercase;
}

.main__block-content-p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 2px solid #FF0000;
    padding-bottom: 8px;
}

.main__block-content-p-theme {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 2px solid #049C81;
    padding-bottom: 8px;
}
.main__block-content-slots {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.main__block-content-slots a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #86898E;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 20px;
}

.main__block-content-slots a:first-child {
    border-bottom: 2px solid #FF0000;
}

.main__block-content-slots-imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.main__block-content-slots-img {
    position: relative;
}
.main__block-content-slots-img div {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main__block-content-slots-img:hover div {
    opacity: 1;
    visibility: visible;
}

.main__block-content-slots-imgs img {
    width: 100%;
}

.main__block-content-slots-imgs:first-child {
    margin-top: 80px;
    margin-bottom: 20px;
}
.main__block-content-slots-imgs-2 {
    margin-top: 20px;
}

.main__block-content-slots-btn {
    margin-top: 30px;
}

.main__block-content-games {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}

.main__block-content-game {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #13171F;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
    border-radius: 10px;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.main__block-content-game:hover {
    border: 1px solid #fff;
}

.main__block-info {
    border-radius: 40px;
    background-color: #13171F;
    padding: 30px 20px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.main__block-info-item h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.zerkalo-img {
    margin-bottom: 20px;
}
.main__block-info-item p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.main__block-info ul {
    padding-left: 40px;
    margin-bottom: 20px;
}
.main__block-info ul li {
    list-style: disc;
}

.main__block-info--btn {
    margin: 0 auto;
}

table {
    background-color: transparent;
    width: 100%;
    margin-block-end: 15px;
    font-size: .9em;
    border-spacing: 0;
    border-collapse: collapse;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0,0%,50.2%,.0705882353);
}

table td, table th {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0, 0%, 50.2%, .0705882353);
}

table tbody tr:hover>td, table tbody tr:hover>th {
    background-color: hsla(0, 0%, 50.2%, .1019607843);
}

.ac {
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.5) !important;
    padding-bottom: 15px !important;
}

.ac .ac-trigger {
    color: #fff !important;
}

.ac .ac-panel .ac-text {
    color: #fff !important;
}

.main__block-content-qr {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
}
.main__block-content-qr a svg {
    fill: white;
    width: 20px;;
}
.main__block-content-qr a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main__block-footer {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.link-blue {
    color: #00C4FF;
}

.main__block-bottom {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
}


.main-logo {
    display: none;
}
@media screen and (max-width: 1080px) {
    .nav {
        display: none;
    }
    .main__block {
        width: 100%;
        padding-left: 20px;
    }
    .main-logo {
        display: block;
    }
    .main__block-head-left-block {
        display: none;
    }
    .main__block-head-right-txt {
        display: none;
    }
    .main__block-banners {
        flex-direction: column;
    }
    .main__block-banner {
        width: 100%;
    }
    .main__block-content-slots {
        overflow: auto;
        width: 100%;
    }
    .main__block-content-slots a {
        flex-shrink: 0;
    }
    .main__block-content-games {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

.numeric-li {
    list-style: decimal !important;
}

ul {
    line-height: 27px !important;
}