@font-face {
    font-family: "Firs";
    src: url("../fonts/TTFirs-regular.woff") format("woff"), url("../fonts/TTFirs-regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "Firs";
    src: url("../fonts/TTFirs-700.woff") format("woff"), url("../fonts/TTFirs-700.woff2") format("woff2");
    font-weight: 700;
    font-display: swap
}

*, *::before, *::after {
    box-sizing: border-box
}

ul[class], ol[class] {
    padding: 0
}

body, h1, h2, h3, h4, p, li, figure, figcaption, blockquote, dl, dd {
    margin: 0
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5
}

ul[class], ol[class] {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    max-width: 100%;
    display: block
}

section > * + *, article > * + * {
    margin-top: 1em
}

section nav a {
    text-decoration: none;
    color: #2f30df;
    transition: .3s
}

section nav a:hover {
    color: #ffc400;
    transition: .3s
}

input, button, textarea, select {
    font: inherit
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

html {
    font-size: 10px
}

p {
    font-size: 1.6rem;
    font-weight: 100
}

p:not([class]) + p:not([class]) {
    margin-top: 1em
}

body {
    position: relative;
    font-family: sans-serif;
    font-size: 1.6rem;
    font-weight: 100;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body.is-overflow {
    overflow: hidden
}

.o-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media (min-width: 1200px) {
    .o-container {
        padding-left: 4rem;
        padding-right: 4rem;
        max-width: 1920px;
        margin: 0 auto
    }
}

.o-container--fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media (min-width: 1170px) {
    .o-container--fluid {
        max-width: 1170px;
        margin: 0 auto
    }
}

.o-btn {
    display: inline-block;
    font-size: 1.4rem;
    padding: 0.4em 1.42em;
    border-radius: 0.71em;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    color: #000;
    font-weight: 700;
    transition: background-color 0.3s linear
}

.o-btn--primary {
    border: 2px solid #ffc400
}

.o-btn--primary:hover {
    border: 2px solid #ffa300
}

.o-btn--secondary {
    background-color: #ffc400
}

.o-btn--secondary:hover {
    background-color: #ffa300
}

.o-btn--purple {
    color: #fff;
    background-color: #c700cb
}

.o-btn--purple:hover {
    background-color: #ff00ff
}

.o-align-center {
    text-align: center
}

.o-margin {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem
}

.o-title-h1, .o-title-h2, .o-title-h3 {
    margin-top: 0.5em;
    margin-bottom: 0.5em
}

.o-title-h1 {
    font-size: 2.4rem;
    text-align: center;
    text-transform: uppercase
}

.o-title-h2 {
    font-size: 2.2rem
}

.o-img {
    margin: 1.2rem auto;
    width: 100%;
    height: auto
}

.o-table-wrap {
    overflow-x: auto
}

@media (min-width: 768px) {
    .o-title-h1 {
        font-size: 3.6rem
    }

    .o-title-h2 {
        font-size: 3.2rem
    }

    .o-title-h3 {
        font-size: 2.2rem
    }
}

.c-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.c-header__left {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.c-header__right {
    display: none
}

.c-burger {
    cursor: pointer;
    display: flex
}

.c-logo a {
    display: flex
}

.c-panel__btns {
    padding: 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

.c-panel__btn {
    min-width: 140px;
    text-align: center
}

.c-panel__btn--log {
    margin-bottom: 1rem
}

.c-panel-backdrop {
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: 0.3s linear
}

.c-panel-backdrop.is-active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5)
}

.c-menu {
    padding: 2rem 0;
}

.c-menu__list[class] {
    margin: 0
}

.c-menu__item {
    margin: 3px;
}

.c-menu__link {
    background: #f3f5fc;
    display: inline-block;
    text-decoration: none;
    border-radius: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    color: #000;
    font-weight: 700;
    font-size: 1.4rem;
    transition: background 0.3s linear
}

.c-menu__link:hover {
    background: #bfc8dc
}

@media (min-width: 555px) {
    .c-header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .c-header__right {
        display: block
    }

    .c-header__log {
        display: none
    }

    .c-burger {
        margin-right: 2rem
    }
}

@media (min-width: 992px) {
    .c-menu {
        padding: 0
    }

    .c-menu__list[class] {
        margin: 0 0 0 1rem
    }

    .c-menu__list {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .c-menu__item {
        margin-left: 2.5rem;
        margin-bottom: 0
    }

    .c-menu__link {
        font-size: 1.6rem;
        background-color: transparent;
        padding: 0
    }

    .c-menu__link:hover {
        color: #2f2fde;
        background-color: transparent
    }

    .c-burger {
        display: none
    }

    .c-panel {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        max-height: none;
        background-color: transparent;
        transform: translateX(0);
        visibility: visible;
        overflow-y: visible
    }

    .c-panel__top {
        display: none
    }

    .c-panel__btns {
        display: none
    }
}

.c-main ul:not([class]), .c-main ol:not([class]) {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 100
}

@media (min-width: 767px) {
    .c-main ul:not([class]), .c-main ol:not([class]) {
        padding-left: 3rem
    }
}

.c-main ul:not([class]) > li, .c-main ol:not([class]) > li {
    padding: 4px 0 0 5px
}

.c-main ul:not([class]) {
    list-style-type: none
}

.c-main ul:not([class]) li {
    position: relative
}

.c-main ul:not([class]) li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffa300;
    border-radius: 50%;
    left: -12px;
    top: 13px
}

.c-main table:not([class]) {
    border-collapse: separate;
    border-spacing: 2px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    width: 100%;
    font-weight: 100
}

.c-main table:not([class]) tr:nth-child(even) {
    background-color: #11553f
}

.c-main table:not([class]) th {
    background-color: #189670;
    color: #fff;
    padding: 1.4rem 1.3rem
}

.c-main table:not([class]) td {
    min-width: 100px;
    padding: 1.4rem 1.5rem;
    background-color: #f3f5fc;
    color: #000;
    border-right: 0;
    border-bottom: 0;
    text-align: left;
    vertical-align: top;
    border-radius: 5px
}

.c-main-block {
    min-height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    background: #bfc8dc;
    overflow: hidden;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    border-radius: 10px;
}

.c-main-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.c-main-block__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right
}

.c-main-block__content {
    width: 100%;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.c-main-block__title {
    line-height: 1.45;
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
    text-align: center
}

.c-main-block__btn {
    margin-top: 2rem
}

.c-main-block__decor {
    display: none
}

@media (min-width: 768px) {
    .c-main-block {
        margin-left: 0;
        margin-right: 0
    }

    .c-main-block__content {
        flex-direction: column;
        align-items: flex-start
    }

    .c-main-block__title {
        font-size: 3.6rem
    }

    .c-main-block__decor {
        display: block;
        position: absolute;
        z-index: 1;
        bottom: -2%;
        left: 50%
    }

    .c-main-block__decor img {
        display: block;
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: inherit;
        object-position: inherit;
        will-change: transform;
        max-height: 300px
    }
}

@media (min-width: 992px) {
    .c-main-block {
        min-height: 300px
    }
}

@media (min-width: 1200px) {
    .c-main-block__content {
        max-width: 1170px;
        margin: 0 auto
    }

    .c-main-block__title {
        font-size: 4.8rem
    }
}

.c-masonry-block {
    border-radius: 10px;
    background-color: #f3f5fc;
    padding: 2rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem
}

.c-masonry-block__head {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem
}

.c-masonry-block__text {
    margin-bottom: 1.5rem
}

@media (min-width: 768px) {
    .c-masonry-block {
        width: max-content
    }
}

.c-device, .c-providers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-left: -1rem;
    margin-right: -1rem
}

.c-device__item, .c-providers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 1.5rem;
    border: 2px solid #f3f5fc;
    border-radius: 5px;
    margin: .5rem 1rem 1.5rem;
    position: relative;
    transition: background-color .3s ease
}

.c-device__item:hover, .c-providers__item:hover {
    background-color: #f3f5fc
}

.c-device__icon, .c-providers__icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1b9d11;
    z-index: 2
}

.c-device__icon svg, .c-providers__icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #fff;
    stroke: none
}

.c-device__icon--mod, .c-providers__icon--mod {
    background: red
}

.c-device__icon--mod svg, .c-providers__icon--mod svg {
    stroke-width: 1px
}

.c-faq {
    margin-bottom: 4rem
}

.c-faq details {
    border-radius: 5px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.17);
    position: relative;
    margin-bottom: 1rem
}

.c-faq details[open] summary {
    display: block
}

.c-faq summary {
    padding: 2rem;
    font-weight: 700;
    font-size: 1.8rem;
    cursor: pointer;
    outline: none
}

.c-faq svg {
    display: none
}

.c-faq details > div {
    padding: 0 2rem 1.5rem
}

.c-faq summary::-webkit-details-marker {
    display: none
}

@media (min-width: 555px) {
    .c-faq details {
        margin: 1rem 0px 0px 7.5rem
    }

    .c-faq details::before {
        display: none;
        content: "";
        position: absolute;
        top: 50%;
        left: -12.5px;
        margin: -12.5px 0px 0px 0px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12.5px 12.5px 12.5px 0;
        border-color: transparent #ffffff transparent transparent
    }

    .c-faq details[open]::before {
        display: block;
        list-style: none
    }

    .c-faq svg {
        display: block;
        position: absolute;
        top: 50%;
        left: -70px;
        margin: -25px 0px 0px 0px;
        width: 50px;
        height: 50px;
        fill: #0083c3
    }
}

.c-reviews__item {
    padding: 2rem;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    display: flex;
    margin-bottom: 1.5rem
}

.c-reviews__info {
    width: 90%
}

.c-reviews__img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    background-color: #0083c3
}

@media (min-width: 555px) {
    .c-reviews__img {
        width: 65px;
        height: 65px
    }
}

.c-reviews__top {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700
}

.c-reviews__name {
    font-size: 1.8rem;
    margin-bottom: .5rem
}

.c-reviews__country {
    font-size: 1.4rem;
    margin-bottom: 1rem
}

.c-reviews__descr {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e1e6ea
}

.c-reviews__btn {
    text-align: right;
    padding-top: 1.5rem
}

.c-reviews__btn a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    background-color: #0083c3;
    padding: 10px 20px;
    border-radius: 24px;
    text-align: center
}

.c-reviews__btn a:hover {
    background-color: #0094dd
}

.c-footer {
    margin-top: 5rem
}

.c-footer__nav {
    margin-bottom: 2rem
}

.c-footer__menu[class] {
    margin: 0
}

.c-footer__menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.c-footer__item {
    margin: 0 1rem 1rem
}

.c-footer__link {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 1.5rem;
    color: #000;
    font-weight: 700;
    font-size: 1.4rem;
    background-color: #f3f5fc;
    border-radius: 1rem
}

.c-footer__link:hover {
    background-color: #bfc8dc
}

.c-footer__list[class] {
    padding: 2rem
}

.c-footer__list {
    background-color: #0083c3;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center
}

.c-footer__list li {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem
}

.c-footer__copyright {
    color: #fff
}

.c-tournamentof-wrap {
    max-width: 420px;
    width: 100%;
    padding: 30px 20px 30px 20px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.c-tournamentof {
    position: relative;
    border-radius: 10px;
    background-color: #f3f5fc;
    background-image: url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.jpg");
    background-image: -webkit-image-set(url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.webp") 1x, url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.webp") 2x);
    background-image: -webkit-image-set(url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.jpg") 1x, url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.jpg") 2x);
    background-image: image-set(url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.jpg") 1x, url("../img/tournaments/Frozen_Jackpot_hunt_15000FS.jpg") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    max-height: 380px;
}

.c-tournamentof__inner {
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat
}

.c-tournamentof__box {
    border-radius: 0 0 1.1rem 1rem
}

.c-tournamentof__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.c-tournamentof__banner {
    color: #001001;
    font-weight: 800;
    font-size: 1.61rem;
    line-height: 1.45;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    min-width: 140px;
    text-align: center;
    background: #ffc401;
    border-radius: 10px 0 10px 0
}

.c-tournamentof__info {
    padding: 1.1rem 2rem;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.c-tournamentof__info svg {
    margin-right: 1rem
}

.c-tournamentof__info span {
    font-weight: 700
}

.c-tournamentof__descr {
    margin-bottom: 3rem
}

.c-tournamentof__descr p {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    font-style: normal;
    color: #001001;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.45
}

.c-tournamentof__buttons a {
    margin-top: .5rem
}

@media (min-width: 768px) {
    .c-tournamentof__box {
    }

    .c-tournamentof__descr {
        margin-bottom: 3rem
    }
}

.c-tournamentof {
    padding: 20px;
}

.c-tournamentof__buttons {
    display: flex;
    flex-direction: column;
}

.c-tournamentof__more {
    white-space: nowrap;
}

@media (min-width: 450px) {
    .c-tournamentof__buttons {
        flex-direction: row;
    }

    .c-tournamentof__more {
        margin-left: 10px;
    }
}

.c-tournamentof__info-item {
    display: flex;
    align-items: center;
}

.c-tournamentof__info-left {
    margin-right: 10px;
}

.c-tournamentof__info-main p {
    font-size: 14px;
}

.c-tournamentof__info-main span {
    font-size: 14px;
    display: block;
    font-weight: 800;
}

.c-tournamentof__info-right {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 2px solid rgba(0, 0, 0, .7);
}

.o-btn-biggerpadding {
    padding: 0.7em 3em;
}

.c-tournamentof2 {
    padding: 20px;
    position: relative;
    border-radius: 10px;
    background-color: #f3f5fc;
    background-image: url("../img/tournaments/Weekly_Freespins_15000FS.jpg");
    background-image: -webkit-image-set(url("../img/tournaments/Weekly_Freespins_15000FS.webp") 1x, url("../img/tournaments/Weekly_Freespins_15000FS.webp") 2x);
    background-image: -webkit-image-set(url("../img/tournaments/Weekly_Freespins_15000FS.jpg") 1x, url("../img/tournaments/Weekly_Freespins_15000FS.jpg") 2x);
    background-image: image-set(url("../img/tournaments/Weekly_Freespins_15000FS.jpg") 1x, url("../img/tournaments/Weekly_Freespins_15000FS.jpg") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    max-height: 450px;
}

.c-tournamentof3 {
    padding: 20px;
    position: relative;
    border-radius: 10px;
    background-color: #f3f5fc;
    background-image: url("../img/tournaments/Exclusive_VIP_5000FS.jpg");
    background-image: -webkit-image-set(url("../img/tournaments/Exclusive_VIP_5000FS.webp") 1x, url("../img/tournaments/Exclusive_VIP_5000FS.webp") 2x);
    background-image: -webkit-image-set(url("../img/tournaments/Exclusive_VIP_5000FS.jpg") 1x, url("../img/tournaments/Exclusive_VIP_5000FS.jpg") 2x);
    background-image: image-set(url("../img/tournaments/Exclusive_VIP_5000FS.jpg") 1x, url("../img/tournaments/Exclusive_VIP_5000FS.jpg") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    max-height: 500px;
}

.c-masonry-blockMirror {
    border-radius: 10px;
    background-color: #f3f5fc;
    padding: 2rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem
}

.c-masonry-blockMirror__head {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem
}

.c-masonry-blockMirror__text {
    margin-bottom: 1.5rem
}

@media (min-width: 768px) {
    .c-masonry-blockMirror {
        width: max-content
    }
}

.c-tournamentof4 {
    padding: 20px;
    position: relative;
    border-radius: 10px;
    background-color: #f3f5fc;
    background-image: url("../img/tournaments/imege.jpg");
    background-image: -webkit-image-set(url("../img/tournaments/imege.webp") 1x, url("../img/tournaments/imege.webp") 2x);
    background-image: -webkit-image-set(url("../img/tournaments/imege.jpg") 1x, url("../img/tournaments/imege.jpg") 2x);
    background-image: image-set(url("../img/tournaments/imege.jpg") 1x, url("../img/tournaments/imege.jpg") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    max-height: 450px;
}

.iphone_img {
    max-width: 25%;
    height: auto;
    min-width: 200px;
}

.c-menu__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.c-logo {
    margin-right: 20px;
}
@media (max-width: 850px) {
    .c-header__inner, .c-header__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .c-logo {
        margin-right: 0;
    }
}
h1 {
    font-size: 3rem;
    margin-top: 30px;
}
main .o-container--fluid img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}
