/*
100 Thin
200 Extra Light
300 Light
400 Regular / Normal
500 Medium;
600 Semibold / Demibold
700 Bold
800 Heavy / Extra Bold / Ultra Bold
900 Black
*/

@font-face {
    font-family: "Roboto";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/RobotoRegular.woff") format("woff");
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/RobotoBold.woff") format("woff");
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/RobotoBlack.woff") format("woff");
}

.container, .container-fluid, .container-hero, .container-small {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: calc(1355px + 80px);
        padding-left: 40px;
        padding-right: 40px;
    }
    .container-fluid {
        max-width: calc(1495px + 80px);
        padding-left: 40px;
        padding-right: 40px;
    }
    .container-hero {
        max-width: calc(1417px + 80px);
        padding-left: 40px;
        padding-right: 40px;
    }
    .container-small {
        max-width: calc(994px + 80px);
        padding-left: 40px;
        padding-right: 40px;
    }
}

:root {
    --ff: 'Roboto', sans-serif;
    --accent: #00CC44;
    --orange: #FF4200;
}

::-moz-selection {
    background-color: var(--accent);
    color: #fff;
    -moz-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

::selection {
    background-color: var(--accent);
    color: #fff;
    transition: background-color 0.3s ease-out;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

select:focus, select:hover, option:hover, option:focus {
    box-shadow: none;
    border: none;
    outline: none;
    border: transparent;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

::placeholder {
    opacity: 1;
}

button {
    border: none;
    transition: 0.2s linear all;
    cursor: pointer;
}

select[disabled], button[disabled] {
    cursor: not-allowed;
}

label, a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:focus, a:focus, * [role="button"]:focus, input:focus, textarea:focus {
    outline: none !important;
}

body {
    font-family: var(--ff);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    min-width: 320px;
    text-rendering: optimizeLegibility;
    background-color: #313438;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

html, body, .wrapper {
    min-height: 100vh;
}

.footer {
    margin-top: auto;
}

body input, body select {
    color: var(--text);
}

body input:focus, body input:hover, body textarea:focus, body textarea:hover, body select:focus {
    border-color: rgba(59, 50, 95, 0.3);
}

body input:invalid:focus, body select:invalid:focus {
    box-shadow: none;
    border-color: var(--accent);
}

/* firefox hide arrows */

input[type="number"] {
    -moz-appearance: textfield;
}

/* webkit hide arrows */

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

textarea {
    resize: vertical;
}

ul {
    list-style-type: none;
}

ul, ol {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
    max-width: 100%;
}

.responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.cover {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tal {
    text-align: left;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

b, strong {
    font-weight: 700;
}

.hidden {
    display: none;
}

a, input, svg path, svg rect {
    transition: 0.2s linear all;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--accent);
}

.btn {
    cursor: pointer;
    text-align: center;
    display: inline-grid;
    place-items: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 1px;
    min-height: 50px;
    min-width: 148px;
    font-size: 18px;
    line-height: 133%;
    color: #292C31;
    border-radius: 10em;
    background: var(--accent);
    font-weight: 700;
}

.btn:hover {
    background: #00ff55;
    color: #292C31;
}

@media only screen and (max-width: 576px) {
    .btn {
        min-width: auto;
        padding-bottom: 0;
    }
}

/* Swiper Slider */

.swiper-container__wrapper {
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 27px;
}

/* Hamburger button menu */

.hamburger {
    --width: 34px;
    --humb-line-height: 5px;
    --border-radius: 0px;
    --height: 25px;
    position: relative;
    display: block;
    width: var(--width);
    height: var(--height);
    background: transparent;
    border: none;
    transition: 0.25s ease-in-out;
    outline: none;
    z-index: 2;
    cursor: pointer;
    transform: rotate(0deg);
    padding: 0;
}

@media only screen and (min-width: 992.1px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    position: absolute;
    height: var(--humb-line-height);
    width: var(--width);
    background: #d3531a;
    border-radius: var(--border-radius);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    pointer-events: none;
}

.hamburger span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.hamburger span:nth-child(2) {
    top: calc((var(--height) / 2) - var(--humb-line-height) / 2);
    transform-origin: left center;
}

.hamburger span:nth-child(3) {
    top: calc(var(--height) - var(--humb-line-height));
    transform-origin: left center;
}

/* active */

.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: -2px;
    left: 5px;
}

.hamburger.is-active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 4px;
}

/* Popups */

.fancybox-bg {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-content {
    overflow-x: hidden;
    border-radius: 10px;
    padding: 40px;
    background: transparent;
}

.fancybox-slide {
    overflow: hidden;
}

.fancybox-slide--html .fancybox-close-small {
    color: #fff;
    font-size: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
}

.fancybox-lock {
    overflow: hidden;
    margin-right: 0 !important;
}

.fancybox-lock .fancybox-overlay {
    overflow: hidden;
    overflow-y: hidden;
}

body.compensate-for-scrollbar {
    overflow-y: auto;
}

.compensate-for-scrollbar {
    margin-right: 0 !important;
}

@media screen and (max-width: 768px) {
    .fancybox-slide--html {
        padding: 32px 0;
    }
    .fancybox-content {
        padding: 32px;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 26px;
    padding-bottom: 26px;
    background: rgba(34, 28, 28, 0.56);
}

.header-logo {
    max-width: 233px;
}

.header-logo, .header-logo img {
    display: block;
}

.lags {
    width: 91px;
    display: flex;
    align-items: center;
    background: #412D51;
    border-radius: 6px;
    margin-right: auto;
    margin-left: 47px;
}

.lang-item {
    width: 50%;
}

.lang-item a {
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    height: 24px;
    color: #8D7D9A;
    text-align: center;
    display: block;
    line-height: 24px;
}

.lang-item a:hover {
    color: #fff;
}

.current-lang a {
    background: #FF4200;
    color: #fff;
}

.header-btn {
    padding-left: 55px;
    padding-right: 55px;
}

@media only screen and (max-width: 1400px) {
    .header-btn {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .header-btn {
        font-size: 14px;
        min-height: 35px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .header-logo {
        max-width: 30vw;
    }
}

@media only screen and (max-width: 576px) {
    .lags {
        width: 78px;
        margin-left: auto;
    }
    .lang-item a {
        height: 21px;
        font-size: 12px;
        line-height: 20px;
    }
    .header-btn {
        min-height: 29px;
        text-transform: none;
    }
}

@media only screen and (max-width: 400px) {
    .header-btn {
        font-size: 12px;
        min-height: 27px;
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* hero screen */

.hero {
    padding-bottom: 33px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-slide__left {
    display: flex;
    padding-left: 22px;
}

.hero-slide {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 12px;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .hero-slide {
        grid-template-columns: 1fr;
    }
}

.hero-slide__right img {
    max-height: 614px;
}

.hero-slide__content {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 34px;
}

.hero-slide__content h1 {
    font-weight: 900;
    font-size: 68px;
    line-height: 100%;
}

@media only screen and (max-width: 1400px) {
    .hero-slide__content h1 {
        font-size: 54px;
    }
    .hero-slide__content {
        padding-top: 0;
    }
}

@media only screen and (max-width: 992px) {
    .hero-slide__content h1 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 768px) {
    .hero-slide__content h1 {
        font-size: 37px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-slide__content h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 25px;
    }
    .hero-slide__right img {
        height: 80vw;
        margin-left: auto;
        margin-right: auto;
    }
}

.slider-btn {
    margin-top: 35px;
    padding-left: 43px;
    padding-right: 43px;
    font-size: 21px;
}

.swiper-hero__container {
    background: url('../img/hero-bg.svg') no-repeat center / cover;
}

.swiper-container__hero .swiper-button-prev, .swiper-container__hero .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-container__hero .swiper-button-prev {
    background: #0D1E30 url('../img/nav/left.svg') no-repeat center / 27px;
    left: -7.6vw;
}

.swiper-container__hero .swiper-button-next {
    background: #0D1E30 url('../img/nav/right.svg') no-repeat center / 27px;
    right: -7.6vw;
}

@media only screen and (max-width: 1700px) {
    .swiper-container__hero .swiper-button-prev {
        left: -4.6vw;
    }
    .swiper-container__hero .swiper-button-next {
        right: -4.6vw;
    }
}

@media only screen and (max-width: 1600px) {
    .swiper-container__hero .swiper-button-prev, .swiper-container__hero .swiper-button-next {
        display: none;
    }
    .hero-slide__content {
        padding-right: 20px;
    }
}

.swiper-container__hero .swiper-button-prev::after, .swiper-container__hero .swiper-button-next::after {
    content: "";
}

.swiper-pagination-bullet {
    background: #d1d1d1f1;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    position: relative;
    opacity: 1;
    margin: 0 7px;
    border: 6px solid #3f3f3f;
}

.swiper-pagination-bullet-active {
    background: #FFFFFF;
    border: 6px solid var(--orange);
}

.swiper-container__hero .swiper-pagination {
    margin-top: 62px;
}

@media only screen and (max-width: 992px) {
    .swiper-container__hero .swiper-pagination {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .hero {
        padding-top: 20px;
    }
    .slider-btn--pc {
        display: none;
    }
    .slider-btn--mobile {
        margin-left: auto;
        margin-right: auto;
        display: grid;
        max-width: 30%;
        font-size: 18px;
        text-transform: capitalize;
        min-height: 43px;
        margin-top: 22px;
    }
    .swiper-container__hero .swiper-button-prev, .swiper-container__hero .swiper-button-next {
        display: block;
        top: auto;
        bottom: -3px;
    }
    .swiper-container__hero .swiper-button-prev {
        left: 10px;
    }
    .swiper-container__hero .swiper-button-next {
        right: 10px;
    }
}

@media only screen and (min-width: 576.1px) {
    .slider-btn--mobile {
        display: none;
    }
}

/* hero categories */

.hero-categories {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 106px;
}

.hero-categories h2 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
}

.hero-categories p {
    font-size: 18px;
    line-height: 140%;
    margin-top: 23px;
}

.hero-categories ul {
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
}

.hero-categories ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #E7C3EE;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.hero-categories ul a svg {
    display: block;
    margin-bottom: 9px;
}

.hero-categories ul a:hover {
    color: #fff;
}

.hero-categories ul a:hover svg rect {
    fill: var(--orange);
}

.hero-categories ul a:hover svg path {
    fill: #fff;
}

.subtitle {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.subtitle h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    text-transform: uppercase;
}

@media only screen and (max-width: 576px) {
    .subtitle h3 {
        font-size: 17px;
        line-height: 1;
    }
}

@media only screen and (max-width: 400px) {
    .subtitle h3 {
        font-size: 15px;
    }
}

.subtitle::before {
    content: '';
    display: block;
    background: url('../img/title-decor.svg') no-repeat center / 22px;
    width: 22px;
    height: 31px;
    margin-right: 12px;
}

@media only screen and (max-width: 992px) {
    .hero-categories h2 {
        font-size: 35px;
    }
    .hero-categories ul a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .hero-categories__scroll {
        overflow-x: auto;
        padding-bottom: 20px;
    }
    .hero-categories__scroll ul {
        width: 690px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-categories__scroll {
        margin-left: -15px;
        margin-right: -15px;
    }
    .hero-categories h2 {
        font-size: 25px;
    }
    .hero-categories p {
        font-size: 16px;
        order: 3;
    }
    .hero-categories {
        display: flex;
        flex-direction: column;
    }
    .hero-categories ul {
        order: 2;
    }
    .hero-categories ul a {
        font-size: 12px;
    }
}

.skulls-up {
    position: relative;
    padding-top: 61px;
    padding-bottom: 89px;
    background: #261E2D;
}

@media only screen and (min-width: 1200.1px) {
    .skulls-up::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 649px;
        height: 100%;
        background: #8F00FF;
    }
}

.skulls-up__content {
    display: grid;
    grid-template-columns: auto 649px;
    grid-column-gap: 20px;
    position: relative;
    z-index: 1;
}

.skulls-up h2 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
    margin-top: 35px;
}

.skulls-up p {
    font-size: 18px;
    line-height: 140%;
    margin-top: 13px;
}

@media only screen and (min-width: 576.1px) {
    .skulls-up h2, .skulls-up p {
        padding-left: 10px;
    }
}

.skulls-up__btn {
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 35px;
    text-transform: uppercase;
}

.skulls-up__right {
    position: relative;
}

@media only screen and (min-width: 1200.1px) {
    .skulls-up__right--pc img {
        position: absolute;
        width: min(max(270px, 45.19vw), 831px);
        height: min(max(128px, 24.03vw), 442px);
        max-width: none;
        top: 64%;
        transform: translateY(-50%);
    }
    .skulls-up__left {
        padding-right: 100px;
    }
    .skulls-up__right--mobile {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .skulls-up__content {
        grid-template-columns: 1fr;
    }
    .skulls-up__right--pc {
        display: none;
    }
    .skulls-up__right--mobile {
        margin-top: 20px;
    }
    .skulls-up h2 {
        margin-top: -20px;
    }
}

@media only screen and (max-width: 576px) {
    .skulls-up__right--mobile {
        background: #8F00FF;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 16px;
    }
    .skulls-up h2 {
        margin-top: 30px;
    }
    .skulls-up__right--mobile img {
        margin-bottom: -26px;
    }
    .skulls-up {
        padding-top: 25px;
        padding-bottom: 35px;
    }
    .skulls-up__btn {
        margin-top: 20px;
    }
    .skulls-up__btn {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/* page-hero */

.page-hero {
    padding-top: 46px;
    padding-bottom: 55px;
    height: 100%;
    flex-grow: 1;
    width: 100%;
}

@media only screen and (min-width: 1410.1px) {
    .page-hero--decor {
        background: url('../img/hero-decor.svg') no-repeat top -5vw center / 100%;
    }
}

.page-hero h1 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (max-width: 1400px) {
    .page-hero h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1400px) {
    .page-hero h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 1400px) {
    .page-hero h1 {
        font-size: 30px;
    }
}

.breadcrumbs {
    margin-top: 25px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

@media only screen and (max-width: 1400px) {
    .breadcrumbs ul {
        font-size: 14px;
    }
    .breadcrumbs {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .breadcrumbs ul {
        font-size: 12px;
    }
    .breadcrumbs {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 576px) {
    .breadcrumbs ul {
        font-size: 12px;
    }
}

.breadcrumbs ul li {
    margin-left: 15px;
    margin-right: 15px;
}

.breadcrumbs ul a {
    color: #A4A4A4;
    line-height: 100%;
}

.breadcrumbs ul a:hover {
    color: var(--accent);
}

.breadcrumbs ul span {
    color: #FFE5DC;
    text-transform: uppercase;
}

.page-content {
    padding-top: 13px;
}

@media only screen and (max-width: 576px) {
    .page-content {
        padding-top: 0;
    }
}

.page-content h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 170%;
    margin-top: 30px;
}

.page-content h3 {
    font-size: 35px;
    line-height: 100%;
    margin-top: 27px;
    line-height: 100%;
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .page-content h2 {
        font-size: 35px;
    }
    .page-content h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .page-content h2 {
        font-size: 30px;
    }
    .page-content h3 {
        font-size: 25px;
    }
}

.page-content p {
    line-height: 190%;
}

/* sliders */

.home-sliders {
    padding-top: 75px;
    overflow: hidden;
}

.slider-4x {
    padding-bottom: 57px;
}

@media only screen and (max-width: 576px) {
    .slider-4x {
        padding-bottom: 40px;
    }
    .home-sliders {
        padding-top: 35px;
    }
}

.slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248.5px, 1fr));
    grid-gap: 25px;
}

.slider-head__link {
    display: block;
    font-weight: bold;
    font-size: 14px;
    line-height: 100%;
    color: #F9F9FF;
    text-align: center;
    border: 1px solid #F06723;
    border-radius: 10em;
    padding: 12px 29px;
}

.home-slider__link {
    display: block;
    overflow: hidden;
    width: 255px;
    height: 195px;
}

@media only screen and (max-width: 1200px) {
    .home-slider__link {
        max-width: 100%;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(max(170px, 13.33vw), 255px), 1fr));
    }
}

.home-slider__link img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.swiper-container__home .swiper-button-prev::after, .swiper-container__home .swiper-button-next::after {
    content: '';
}

.swiper-container__home .swiper-button-prev {
    left: -72px;
    background: url('../img/nav/prev-gray.svg') no-repeat center / 27px;
}

.swiper-container__home .swiper-button-next {
    right: -72px;
    background: url('../img/nav/right-gray.svg') no-repeat center / 27px;
}

.swiper-container__home .swiper-button-prev, .swiper-container__home .swiper-button-next {
    content: '';
}

@media only screen and (max-width: 768px) {
    .swiper-container__home .swiper-button-prev, .swiper-container__home .swiper-button-next {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .slider-head__link {
        padding-left: 25px;
        padding-right: 25px;
        white-space: nowrap;
    }
}

/* tonybet-mobile */

.tonybet-mobile {
    background: url('../img/tonybet-mobile/bg.svg') no-repeat center / cover;
}

.tonybet-mobile__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
}

.tonybet-mobile__content h2 {
    font-weight: 900;
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 8px;
}

.tonybet-mobile__content h3 {
    font-weight: 900;
    font-size: 35px;
    line-height: 100%;
    color: #ADADAD;
}

.tonybet-mobile__content p {
    font-size: 18px;
    line-height: 140%;
    margin-top: 26px;
}

.tonybet-mobile__btn {
    margin-top: 39px;
    font-size: 21px;
    padding-left: 78px;
    padding-right: 78px;
    text-transform: capitalize;
}

.tonybet-mobile__image img {
    display: block;
}

@media only screen and (min-width: 1200.1px) {
    .tonybet-mobile__content {
        margin-bottom: 62px;
    }
}

@media only screen and (max-width: 1200px) {
    .tonybet-mobile {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .tonybet-mobile__grid {
        grid-template-columns: 1fr;
    }
    .tonybet-mobile__content h2 {
        font-size: 40px;
    }
    .tonybet-mobile__content h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .home-slider__link {
        width: auto;
        height: auto;
    }
    .tonybet-mobile {
        padding-bottom: 40px;
    }
    .tonybet-mobile__content h2 {
        font-size: 30px;
    }
    .tonybet-mobile__content h3 {
        font-size: 25px;
    }
    .tonybet-mobile__content p {
        font-size: 16px;
    }
    .tonybet-mobile__content p br {
        display: none;
    }
    .tonybet-mobile__btn {
        margin-top: 25px;
        padding-left: 36px;
        padding-right: 36px;
        font-size: 18px;
    }
}

/* footer */

.footer {
    background: #282B30;
    padding-top: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 320px;
    grid-column-gap: 30px;
}

.footer p {
    line-height: 183%;
    color: #A6A6A6;
    font-size: 18px;
}

.footer p:not(:last-child) {
    margin-bottom: 20px;
}

.footer a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #15AAB8;
}

.footer a:hover {
    color: var(--accent);
}

.footer-grid__right img {
    display: inline-block;
    vertical-align: middle;
}

.footer-bottom {
    margin-top: 21px;
    border-top: 2px solid #313438;
    overflow: hidden;
}

.footer-bottom__flex {
    display: flex;
    align-items: center;
}

.footer-bottom a {
    font-size: 18px;
    line-height: 21px;
    color: #C9D5E4;
    display: block;
    padding: 21px;
    background: #20252E;
    border-left: 2px solid #313438;
    text-decoration: none;
    white-space: nowrap;
}

.footer-bottom a:last-child {
    border-right: 2px solid #313438;
}

@media only screen and (min-width: 1200.1px) {
    .footer-grid__right {
        padding-top: 9px;
    }
}

@media only screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
    .footer-bottom__flex {
        margin-left: -17px;
        margin-right: -17px;
    }
}

@media only screen and (min-width: 768.1px) {
    .footer-logos {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .footer-bottom a {
        width: 50%;
    }
    .footer-grid__right {
        display: none;
    }
    .footer-logos {
        padding-top: 10px;
        padding-left: 37px;
        padding-right: 37px;
        padding-bottom: 14px;
    }
    .footer-logos img {
        vertical-align: middle;
        display: inline-block;
    }
}

@media only screen and (max-width: 576px) {
    .footer-bottom a {
        padding: 18px 12px;
    }
}

@media only screen and (max-width: 400px) {
    .footer-bottom a {
        font-size: 16px;
        text-align: center;
    }
}

@media only screen and (max-width: 350px) {
    .footer-bottom a {
        font-size: 14px;
        text-align: center;
    }
}

/* popup */

.popup {
    color: #858991;
}

.form__title {
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    text-transform: uppercase;
    color: #292C31;
    margin-bottom: 17px;
    text-align: center;
}

.popup__signup {
    max-width: 578px;
}

.popup-form {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 31px 50px 48px;
}

.popup__signup input {
    background: #FBFBFB;
    border-radius: 10em;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #292C31;
    min-height: 40px;
    border: 2px solid var(--orange);
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
}

.popup__submit {
    background: #B5BCC9;
    color: #fff;
    border-radius: 10em;
    display: grid;
    min-height: 40px;
    place-items: center;
    font-weight: 900;
    font-size: 14px;
    line-height: 12px;
    text-align: center;
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 24px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2px;
}

.popup__submit:hover {
    background: var(--orange);
}

.popup-policy {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #858991;
    margin-top: 24px;
}

.popup-policy a, .mycheckbox__descr a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #15AAB8;
}

.popup-policy a:hover, .mycheckbox__descr a:hover {
    color: var(--orange);
}

@media only screen and (max-width: 576px) {
    .popup-form {
        padding: 33px 30px 30px;
    }
    .popup-policy br {
        display: none;
    }
}

/* Стилизация checkbox */

.mycheckbox {
    cursor: pointer;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0;
}

.mycheckbox__default {
    display: none;
}

.mycheckbox__new {
    width: 22px;
    height: 22px;
    background: #FFFFFF;
    background: #FFFFFF;
    margin-right: 10px;
    position: relative;
    display: block;
    flex-shrink: 0;
    border: 3px solid #D5E3E4;
}

.mycheckbox__new::before {
    position: absolute;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    border: 1px solid #52999D;
}

.mycheckbox__new::after {
    content: "";
    background: #52999D;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: 0.11s ease-in;
}

.mycheckbox__default:checked+.mycheckbox__new::after {
    height: 7px;
    width: 7px;
}

.mycheckbox__descr {
    font-size: 12px;
    line-height: 14px;
    color: #858991;
}

/* /стилизация чекбокса */

/* Single game */

.game-hero {
    padding-top: 37px;
    padding-bottom: 57px;
}

@media only screen and (min-width: 1420.1px) {
    .game-hero {
        background: url('../img/hero-decor.svg') no-repeat top -9vw center / 100%;
    }
}

.game-hero h1 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
    text-align: center;
}

@media only screen and (max-width: 1400px) {
    .game-hero h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .game-hero h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .game-hero h1 {
        font-size: 25px;
    }
}

.game-hero__image {
    margin-top: 21px;
    text-align: center;
}

.game-hero__image img {
    border-radius: 6px;
}

@media only screen and (max-width: 576px) {
    .game-hero__image {
        margin-left: -15px;
        margin-right: -15px;
    }
    .game-hero__image img {
        border-radius: 0px;
    }
}

.game-hero__grid {
    display: grid;
    grid-column-gap: 37px;
    margin-top: 46px;
}

@media only screen and (min-width: 992.1px) {
    .game-hero__grid {
        grid-template-columns: 261px auto;
    }
}

.game-hero__description p {
    margin-bottom: 25px;
}

@media only screen and (max-width: 420px) {
    .game-hero__description p {
        text-align: center;
    }
}

@media only screen and (max-width: 992px) {
    .game-hero__thumb-image {
        text-align: center;
        margin-bottom: 7px;
    }
    .game-hero__thumb-image {
        padding-bottom: 25px;
    }
}

@media only screen and (max-width: 730px) {
    .game-hero__thumb-image {
        background: url('../img/hero-decor.svg') no-repeat top -6vw left 0 / cover;
        margin-left: -15px;
        margin-right: -15px;
        padding-top: 20px;
    }
    .game-hero__grid {
        margin-top: 26px;
    }
    .game-hero__thumb-image img {
        max-width: 35vw;
    }
}

/* features */

.features {
    background: #3E454E;
    padding-top: 38px;
    padding-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-column-gap: 37px;
    grid-row-gap: 25px;
}

@media only screen and (min-width: 992.1px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features h2 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
}

@media only screen and (max-width: 1400px) {
    .features h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .features h2 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .features h2 {
        font-size: 25px;
    }
}

.features-left__content p {
    margin-top: 25px;
}

.features-right table {
    border-spacing: 3px;
    border-collapse: initial;
}

.features-right table td {
    border-radius: 5px;
    color: #313438;
    padding: 11px 34px;
}

@media only screen and (max-width: 992px) {
    .features-right table td {
        padding: 11px 19px;
    }
}

.features-right table tr:nth-child(odd) td {
    background: #fff;
}

.features-right table tr:nth-child(even) td {
    background: #F3F8FF;
}

.features-right table td:first-child {
    white-space: nowrap;
    vertical-align: top;
}