@charset "UTF-8";
:root {
    --main-accent-bg-color: #1e283f;
    --color-bg-header: #090f1e;
    --main-nav-color: #ffffff;
    --header-bg-color: #000000;
    --footer-bg-color: #000000;
    --content-button-bg-color: #2ecc71;
    --content-button-color: #ffffff;
    --offsets: 30px
}

.container {
    max-width: 1440px;
    padding: 0 var(--offsets);
    margin: 0 auto
}

.container-full {
    max-width: 100%
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 100;
    margin-top: 1rem
}

a {
    font-size: 1rem;
    font-weight: 300;
    color: var(--main-accent-bg-color)
}

a:hover {
    text-decoration: none
}

ol, ul {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding-left: 25px;
    margin-top: 1rem
}

img {
    max-width: 100%;
    height: auto
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.5rem;
    margin-bottom: 1rem
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.3rem;
    margin-bottom: 1rem
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.1rem;
    margin-bottom: 1rem
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.9rem;
    margin-bottom: 1rem
}

h5 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin-bottom: 1rem
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    margin-bottom: 1rem
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase
}

.wrap > .wp-block-table, .wrap > blockquote, .wrap > h1, .wrap > h2, .wrap > h3, .wrap > h4, .wrap > h5, .wrap > h6, .wrap > ol, .wrap > p, .wrap > ul {
    padding: 0 var(--offsets);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto
}

.wp-block-table > table {
    border-collapse: collapse;
}

.wrap > ol, .wrap > ul {
    padding-left: 50px
}

.wrap blockquote, blockquote {
    padding: 1rem var(--offsets) 1rem 2rem;
    border-left: 5px solid var(--main-accent-bg-color);
    background-color: #f0f8ff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    margin-top: 1rem
}

.wrap > :last-child {
    margin-bottom: 2rem
}

table {
    border: 1px solid var(--main-accent-bg-color);
    margin-top: 1rem
}

table th {
    padding: .5rem 1rem;
    text-align: center;
    background-color: var(--main-accent-bg-color);
    color: #fff
}

table td {
    padding: .5rem 1rem;
    border: 1px solid var(--main-accent-bg-color)
}

.wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

html {
    font-size: 17px
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local(""), url(../fonts/roboto-v29-latin-regular.woff2) format("woff2")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(""), url(../fonts/roboto-v29-latin-300.woff2) format("woff2")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(""), url(../fonts/roboto-v29-latin-500.woff2) format("woff2")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(""), url(../fonts/roboto-v29-latin-700.woff2) format("woff2")
}

body {
    font-family: Roboto, Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    font-weight: 100;
    overflow-x: hidden
}

.accent-button {
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: 0;
    background: 0 0;
    padding: 9px 19px;
    font-size: 18px;
    font-weight: 300;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.accent-button.fill-button {
    background: var(--main-accent-bg-color);
    border: 2px solid var(--main-accent-bg-color)
}

.accent-button.fill-button:hover {
    -webkit-filter: brightness(105%);
    filter: brightness(105%)
}

.accent-button.outline-button {
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .5)
}

.accent-button.outline-button:hover {
    background-color: rgba(255, 255, 255, .1)
}

.button-content {
    margin-top: 2rem
}

.button-content.alight-left {
    text-align: left
}

.button-content.align-right {
    text-align: right
}

.button-content.align-center {
    text-align: center
}

.button-content a, .button-content button {
    background: var(--content-button-bg-color);
    display: inline-block;
    border: 2px solid var(--content-button-bg-color);
    padding: .7rem 2rem;
    font-size: 1.2rem;
    font-weight: 100;
    border-radius: 5px;
    color: var(--content-button-color);
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    cursor: pointer;
    text-decoration: none
}

.button-content a:hover, .button-content button:hover {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95)
}

.page-header {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin-bottom: 30px
}

.page-header p {
    padding: 0;
    margin: 0
}

.page-header__container {
    position: fixed;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 100
}

.page-header .backgroundGrayContainer {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .49)), to(rgba(0, 0, 0, .43)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .49) 0, rgba(0, 0, 0, .43) 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .49) 0, rgba(0, 0, 0, .43) 100%);
    background-color: rgba(255, 255, 255, 0)
}

.page-header .changeBackground {
    background-color: #000000ab;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.page-header .pageHeaderPromo {
    padding: 15% 0 0;
    height: 100vh;
    text-align: center;
    color: #fff;
    font-weight: 700
}

.page-header .pageHeaderPromo__title {
    font-size: 38px;
    display: block;
    margin-bottom: 20px
}

.page-header .pageHeaderPromo__description {
    font-size: 28px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 36px
}

.page-header .pageHeaderPromo .pageHeaderPromoButtons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px
}

.page-header .pageHeaderPromo .pageHeaderPromoButtons .secondButton {
    background-color: var(--content-button-bg-color)
}

.page-header .pageHeaderPromo .pageHeaderPromoButtons a, .page-header .pageHeaderPromo .pageHeaderPromoButtons button, .page-header .pageHeaderPromo .pageHeaderPromoButtons span {
    padding: 14px 30px;
    border-radius: 3px;
    margin: 15px;
    text-decoration: none;
    color: #fff;
    background-color: #00000073;
    font-weight: 700;
    border: 3px solid #fff
}

.page-header .pageHeaderPromo .pageHeaderPromoButtons a:hover, .page-header .pageHeaderPromo .pageHeaderPromoButtons button:hover, .page-header .pageHeaderPromo .pageHeaderPromoButtons span:hover {
    border: 3px solid #00000000;
    background-color: #ffffff24;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.page-header__logo {
    max-width: 150px;
    width: 100%;
    margin-left: 10px;
    margin-right: auto
}

.page-header__nav {
    margin: 0 auto
}

.page-header__buttons a {
    font-weight: 400
}

.page-header__buttons a, .page-header__buttons button {
    margin: 1rem
}

.page-header__burger {
    display: none;
    -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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 25px
}

.page-header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--main-accent-bg-color);
    border-radius: 20%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.page-header__burger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotateZ(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotateZ(45deg)
}

.page-header__burger.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0)
}

.page-header__burger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotateZ(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotateZ(-45deg)
}

.page-header-style-2 {
    height: auto;
    margin-bottom: 94px
}

.page-header-style-2 .page-header__container {
    background-color: var(--header-bg-color)
}

.disable_sticky_menu {
    margin-bottom: 0
}

.disable_sticky_menu .page-header__container {
    position: relative
}

.header-menu {
    margin: 0 auto;
    z-index: 100
}

.header-menu .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-top: 0;
    padding-left: 0
}

.header-menu .menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    margin-right: 25px;
    text-transform: uppercase
}

.header-menu .menu a:hover {
    color: var(--main-nav-color);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.header-menu .menu li {
    margin-right: 10px;
    position: relative
}

.header-menu .menu li.current-menu-item a {
    color: var(--main-nav-color);
    font-weight: 700
}

#menu-header-menu li ul {
    display: none;
    position: absolute;
    left: 0;
    text-align: left;
    z-index: 300;
    margin: 0;
    padding: 10px;
    border-radius: 5px;
    list-style: none;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, .49)), to(rgba(0, 0, 0, .43)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .49) 0, rgba(0, 0, 0, .43) 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .49) 0, rgba(0, 0, 0, .43) 100%);
    background-color: var(--header-bg-color)
}

#menu-header-menu li ul li a {
    text-decoration: none;
    border-bottom: none;
    text-align: center;
    font-size: 16px;
    display: block;
    padding-bottom: 8px;
    padding-left: 0;
    text-transform: none
}

#menu-header-menu li:hover > ul {
    display: block
}

#menu-header-menu li ul ul {
    left: 140px;
    top: 10px;
    list-style: none
}

#menu-header-menu li li a {
    border: 0;
    width: 100%;
    border-bottom: 1px solid #bcbcbc;
    color: #fff;
    text-align: left;
    padding-left: 10px;
    text-decoration: none
}

ul#menu-header-menu > .menu-item-has-children > a::after {
    content: "▼";
    top: 0;
    position: absolute;
    font-size: 13px;
    padding-left: 3px
}

.columns {
    padding: 2rem 0
}

.columns__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: -1rem
}

.columns__container.reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.columns__item {
    margin: 1rem
}

.columns__item img {
    display: block;
    margin: 0 auto
}

.columns.align-center .columns__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.columns.align-top .columns__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.columns.align-bottom .columns__container {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.columns.align-stretch .columns__container {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.columns.col-1 .columns__item {
    width: calc(100% - 2rem)
}

.columns.col-2 .columns__item {
    width: calc(100% / 2 - 2rem)
}


/*.columns.col-2 .columns__item {*/
/*    width: calc(100%  - 2rem)*/
/*}*/

@media (max-width: 1100px) {
    .columns.col-2 .columns__item {
        width: calc(100% - 2rem)
    }
}

.columns.col-3 .columns__item {
    width: calc(100% / 3 - 2rem)
}

.columns.col-4 .columns__item {
    width: calc(100% / 4 - 2rem)
}

.columns.col-5 .columns__item {
    width: calc(100% / 5 - 2rem)
}

.columns.col-6 .columns__item {
    width: calc(100% / 6 - 2rem)
}

.wp-block-columns {
    max-width: calc(1380px + var(--offsets) + var(--offsets));
    padding: 2rem var(--offsets);
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-gap: 30px
}

.wp-block-columns .wp-block-column {
    margin: 0
}

.wp-block-columns.col-1 {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
}

.wp-block-columns.col-2 {
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr)
}

.wp-block-columns.col-3 {
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr)
}

.wp-block-columns.col-4 {
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr)
}

.wp-block-columns.col-5 {
    -ms-grid-columns:(1fr) [ 5 ];
    grid-template-columns:repeat(5, 1fr)
}

.wp-block-columns.col-6 {
    -ms-grid-columns:(1fr) [ 6 ];
    grid-template-columns:repeat(6, 1fr)
}

.wp-block-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.wp-block-column > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1
}

.wp-block-column > :not(:first-child) {
    margin-top: 30px
}

.wp-block-column .row {
    padding: 0
}

.icon-blocks {
    padding: 2rem 0
}

.icon-blocks__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.icon-blocks__item {
    background-color: var(--main-accent-bg-color);
    width: calc(100% / 6);
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #fff
}

.icon-blocks__item:hover .icon-blocks__image {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

.icon-blocks__image {
    text-align: center;
    margin-top: 2rem;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.icon-blocks__image img {
    max-width: 100px
}

.icon-blocks__content {
    text-align: center;
    margin: 1rem 0 0;
    color: #fff;
    font-size: .9rem
}

.bonus {
    border: 1px solid var(--main-accent-bg-color);
    border-radius: 10px;
    height: 100%;
    padding: 1rem;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.bonus__title {
    font-size: 2rem;
    text-align: center;
    color: var(--main-accent-bg-color)
}

.bonus__value {
    margin: 2rem 0;
    font-size: 4rem;
    line-height: 4.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--main-accent-bg-color)
}

.bonus__text {
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: 500;
    text-align: center;
    color: #000;
    margin-bottom: 2rem
}

.bonus__button {
    margin-top: auto;
    padding: 1rem 3rem;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    text-decoration: none
}

.bonus__button:hover {
    background-color: var(--main-accent-bg-color);
    border: 1px solid var(--main-accent-bg-color);
    color: #fff
}

.bonus.accented {
    background-color: var(--main-accent-bg-color)
}

.bonus.accented .bonus__text, .bonus.accented .bonus__title, .bonus.accented .bonus__value {
    color: #fff
}

.bonus.accented .bonus__button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

.bonus.accented .bonus__button:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--main-accent-bg-color)
}

.review {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    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-sizing: border-box;
    box-sizing: border-box
}

.review__text {
    margin-top: 0;
    color: rgba(33, 33, 33, .7);
    font-weight: 500;
    margin-bottom: .5rem
}

.review__user {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.review__user-image {
    max-width: 60px;
    border-radius: 50%
}

.review__user-name {
    margin-top: 0;
    margin-left: 1rem;
    color: #6ec1e4;
    font-size: 1.1rem;
    font-weight: 600
}

.show-posts {
    background: #fbfbfb
}

.show-posts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 10px;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    background-color: #fff
}

.show-posts__item:hover {
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1)
}

.show-posts__item:hover .show-posts__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.show-posts__image {
    height: 150px;
    overflow: hidden
}

.show-posts__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.show-posts__title {
    color: var(--main-accent-bg-color);
    margin-top: 1rem;
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 1.7rem
}

.show-posts__text {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 10px
}

.show-posts__link {
    text-decoration: underline;
    color: var(--main-accent-bg-color);
    margin-top: auto;
    padding: 0 10px
}

.show-posts__hidden-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2
}

.video {
    max-width: 650px
}

.video.align-center {
    margin: 0 auto
}

.video.align-right {
    margin-left: auto
}

.video__container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000
}

.video__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: 0 0;
    border: none
}

.video__button-shape {
    fill: #212121;
    fill-opacity: .8
}

.video__button-icon {
    fill: #fff
}

.video__button:focus {
    outline: 0
}

.video__button:focus .video__button-shape, .video__button:hover .video__button-shape {
    fill: red;
    fill-opacity: 1
}

.video__button:hover {
    cursor: pointer
}

.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.page-footer {
    background-color: var(--header-bg-color)
}

.page-footer h2, .page-footer h3, .page-footer h4, .page-footer h5, .page-footer h6 {
    font-size: 20px;
    margin-bottom: 5px
}

.page-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.page-footer ul li a {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    text-decoration: none
}

.page-footer__list {
    margin-top: 0
}

.page-footer__list a {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--main-nav-color);
    text-decoration: none
}

.page-footer__list a:hover {
    color: var(--main-accent-bg-color)
}

.page-footer__list .sub-menu {
    margin: .2rem 0
}

.page-footer__text {
    color: var(--main-nav-color);
    font-weight: 300;
    font-size: .9rem;
    line-height: 1.4rem
}

.page-footer .columns__item {
    width: 30%
}

.page-footer .columns__item * {
    color: var(--main-nav-color)
}

.faq {
    margin: 20px auto
}

.faq__item {
    margin: 25px 0;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    /*-webkit-box-shadow: 5px 5px 15px 4px rgba(163, 163, 163, .29);*/
    /*box-shadow: 5px 5px 15px 4px rgba(163, 163, 163, .29)*/
}

.faq__toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.faq__question {
    margin: 0;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    position: relative
}

.faq__question:before {
    content: ' + ';
    position: absolute;
    left: 6px;
    top: 6px;
    font-size: 24px;
    color: var(--content-button-bg-color)
}

.faq .hideQuestion:before {
    content: ' - ';
    position: absolute;
    font-size: 24px;
    left: 6px;
    top: 6px;
    color: var(--content-button-bg-color)
}

.faq__answer {
    height: auto;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    background-color: #8080800d;
    border-radius: 0 0 10px 10px;
    font-weight: 400
}

.faq__answer.active {
    max-height: 1000px;
    padding: 1rem
}

.toc {
    display: inline-block;
    /*padding: .5rem 1rem;*/
    /*margin: 1rem 0;*/
    /*background-color: #f3f4f4;*/
    border-radius: 10px
}

.toc.active .toc__list {
    max-height: 1000px;
    margin-top: 1.75rem
}

/*.toc.active .toc__title::after {*/
/*    -webkit-transform: translateY(-30%) rotateZ(180deg);*/
/*    -ms-transform: translateY(-30%) rotate(180deg);*/
/*    transform: translateY(-30%) rotateZ(180deg)*/
/*}*/

.toc__title {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
    color: #333;
    display: inline-block;
    padding-right: 15px;
    position: relative;
    cursor: pointer;
    margin: 0;
}

/*.toc__title::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    -webkit-transform: translateY(-30%);*/
/*    -ms-transform: translateY(-30%);*/
/*    transform: translateY(-30%);*/
/*    right: 0;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-style: solid;*/
/*    border-width: 8.7px 5px 0;*/
/*    border-color: var(--main-accent-bg-color) transparent transparent transparent;*/
/*    -webkit-transition: 250ms;*/
/*    -o-transition: 250ms;*/
/*    transition: 250ms*/
/*}*/

.toc__list {
    margin-top: 0;
    height: auto;
    max-height: 0;
    overflow: hidden
}

.toc__link {
    display: inline-block;
    color: var(--main-accent-bg-color);
    padding: .3rem 0
}

.page-single {
    max-width: 1440px;
    margin: 0 auto 3rem;
    padding: 0 10px
}

.breadcrumbs {
    padding: .5rem 0
}

.breadcrumbs__list {
    list-style: none;
    margin-top: 0;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.breadcrumbs__item {
    margin-right: 10px
}

.breadcrumbs__current, .breadcrumbs__link {
    font-size: .9rem;
    font-weight: 300;
    text-decoration: none;
    color: var(--main-accent-bg-color)
}

.breadcrumbs__separator {
    color: var(--main-accent-bg-color)
}

.promocode {
    padding: 1rem 0
}

.promocode__container {
    max-width: 670px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 1rem 2rem
}

.promocode__title {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6rem;
    text-align: center
}

.promocode__controls {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 3px;
    background-color: #fff;
    border-radius: 8px
}

.promocode__value {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 10%
}

.promocode__button {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    outline: 0;
    text-decoration: none;
    text-align: center;
    padding: .6rem 1rem;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    border-radius: 7px;
    background-color: var(--main-accent-bg-color);
    border: 2px solid var(--main-accent-bg-color);
    cursor: pointer
}

.promocode__button:hover {
    background-color: #fff;
    color: var(--main-accent-bg-color)
}

.promocode__text {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center
}

.promocode__bottom {
    display: block;
    margin: 1.2rem auto 0;
    max-width: 300px;
    width: 100%;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    outline: 0;
    text-align: center;
    text-decoration: none;
    background-color: #f23e71;
    border: 2px solid #f23e71;
    border-radius: 7px;
    cursor: pointer
}

.promocode__bottom:hover {
    background-color: #fff;
    color: #f23e71
}

.mobileButtonContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mobileButton {
    max-width: 100%;
    margin: 0 10px;
    position: fixed;
    bottom: 10px;
    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;
    padding: 10px;
    background-color: gray;
    border-radius: 5px
}

.mobileButton__description {
    text-align: center;
    padding: 0 10px
}

.mobileButton__link {
    text-align: center
}

.mobileButton img {
    max-width: 80px
}

.mobileButton a, .mobileButton button {
    margin: 10px;
    display: block;
    padding: 10px;
    background: #fff;
    color: var(--main-nav-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 100;
    border: none
}

.slots {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    height: 100%
}

.slots__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.slots__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.slots__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5
}

.slots__title {
    color: #fff
}

.slots .slots__button {
    font-weight: 300;
    width: 80%;
    padding: .3rem 1rem
}

.slots__text {
    color: #fff;
    font-size: .9rem;
    text-align: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 5px
}

.background-block {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.advantages {
    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;
    padding: 1rem;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    border-radius: 10px;
    height: 100%
}

.advantages__image {
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.advantages__title {
    margin-top: 1rem
}

.rating {
    padding: 1rem 0
}

.rating__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.rating__item {
    font-size: 1.3rem;
    padding: 0 .2rem;
    color: #888
}

.difference__element {
    padding: 1rem;
    border: 1px solid var(--main-accent-bg-color);
    border-radius: 10px
}

.difference__list {
    list-style: none;
    padding-left: 0
}

.difference__item {
    margin: 1rem 0;
    padding-left: 25px;
    position: relative
}

.difference__item::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.difference__item_plus::before {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzY3LjgwNSAzNjcuODA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNjcuODA1IDM2Ny44MDU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIHN0eWxlPSJmaWxsOiMzQkI1NEE7IiBkPSJNMTgzLjkwMywwLjAwMWMxMDEuNTY2LDAsMTgzLjkwMiw4Mi4zMzYsMTgzLjkwMiwxODMuOTAycy04Mi4zMzYsMTgzLjkwMi0xODMuOTAyLDE4My45MDINCgkJUzAuMDAxLDI4NS40NjksMC4wMDEsMTgzLjkwM2wwLDBDLTAuMjg4LDgyLjYyNSw4MS41NzksMC4yOSwxODIuODU2LDAuMDAxQzE4My4yMDUsMCwxODMuNTU0LDAsMTgzLjkwMywwLjAwMXoiLz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRDRFMUY0OyIgcG9pbnRzPSIyODUuNzgsMTMzLjIyNSAxNTUuMTY4LDI2My44MzcgODIuMDI1LDE5MS4yMTcgMTExLjgwNSwxNjEuOTYgMTU1LjE2OCwyMDQuODAxIA0KCQkyNTYuMDAxLDEwMy45NjggCSIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)
}

.difference__item_minus::before {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiBjbGFzcz0iIj48Zz48ZWxsaXBzZSBzdHlsZT0iZmlsbDojRTA0RjVGOyIgY3g9IjI1NiIgY3k9IjI1NiIgcng9IjI1NiIgcnk9IjI1NS44MzIiIGRhdGEtb3JpZ2luYWw9IiNFMDRGNUYiIGNsYXNzPSIiLz48cmVjdCB4PSIxMTMuMiIgeT0iMjI4IiBzdHlsZT0iZmlsbDojRkZGRkZGIiB3aWR0aD0iMjg1LjY3MiIgaGVpZ2h0PSI1NiIgZGF0YS1vcmlnaW5hbD0iI0ZGRDA3RCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iI0ZGRDA3RCIvPjwvZz4gPC9zdmc+Cg==)
}

.comments {
    margin: 2rem -10px -10px
}

.comments .comment {
    margin: 10px
}

.comments .comment__author {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0
}

.comments .comment__date {
    font-size: .9rem;
    margin-left: 15px;
    color: #a2a2a2
}

.comments .comment__content {
    padding: 10px 0 0 10px;
    margin-left: 10px;
    border-left: 1px solid var(--main-accent-bg-color);
    margin-top: 0;
    font-size: 1rem;
    font-weight: 300
}

.comments .comment__karma {
    margin-left: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comments .comment__karma .karma__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
    outline: 0;
    border: none;
    width: 15px;
    height: 15px;
    line-height: 16px;
    border-radius: 50%;
    color: #fff;
    opacity: .1
}

.comments .comment__karma .karma__control.decrease {
    background-color: #dc3545
}

.comments .comment__karma .karma__control.increase {
    background-color: #28a745
}

.comments .comment__karma .karma__control:hover {
    opacity: 1
}

.comments .comment__karma .value {
    font-size: 1rem;
    font-weight: 300;
    color: #a2a2a2
}

.comments .comment__reply {
    background-color: transparent;
    border: none;
    outline: 0;
    cursor: pointer;
    color: #888
}

.comments .comment__child {
    padding-left: 20px;
    position: relative
}

.comment-footer {
    margin-top: 2rem
}

.comment-form-footer {
    margin: 3rem 0
}

.comment-form__title {
    text-align: center
}

.comment-form__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto 0;
    max-width: 700px
}

.comment-form__field {
    padding: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    outline: 0;
    font-size: 1rem;
    font-weight: 300;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.comment-form__field:active, .comment-form__field:focus, .comment-form__field:hover {
    border: 1px solid var(--main-accent-bg-color)
}

.comment-form__field.error {
    border: 1px solid #dc3545;
    background-color: rgba(220, 53, 69, .05)
}

.comment-form__input {
    width: calc(100% / 2 - 20px);
    margin: 10px
}

.comment-form__textarea {
    width: calc(100% - 20px);
    margin: 10px;
    min-height: 100px
}

.comment-form__button {
    margin: 10px
}

.comment-form__alert {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: .8rem;
    font-weight: 300;
    color: #000;
    opacity: 0;
    -webkit-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
    display: block;
    text-align: center;
    width: calc(100% - 20px)
}

.comment-form__alert.error {
    opacity: 1;
    color: #dc3545
}

.comment-form__alert.success {
    opacity: 1;
    color: #28a745
}

.page-404__title {
    text-align: center;
    font-size: 5rem;
    margin-top: 2rem
}

.page-404__subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 2rem
}

.page-404__link {
    margin: 2rem 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.scroll-top {
    position: fixed;
    bottom: 70px;
    right: 15px
}

.scroll-top__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--main-accent-bg-color);
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    font-size: 20px
}

.scroll-top__button svg {
    width: 15px;
    height: 30px
}

.slider__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.slider__content {
    margin: 1rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.slider__title {
    font-weight: 400;
    font-size: 2rem;
    line-height: 4.2rem;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: right
}

.slider__button {
    font-size: 1.2rem;
    padding: 1rem 6rem;
    border-radius: 31px;
    height: 67px;
    background: #03a528;
    border: 3px solid #03a528;
    margin-left: 4rem
}

.slider__button:hover {
    background: #fff;
    color: #03a528
}

.slider .swiper-pagination {
    position: relative;
    bottom: 0
}

.small-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.small-icons__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 150px;
    flex: 1 1 150px;
    padding: 1rem 2rem;
    position: relative
}

.small-icons__item:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: calc(50% - .5rem);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 40px;
    border-left: 1px dotted #cdcdcd
}

.small-icons__item a {
    text-decoration: none
}

.small-icons__image {
    width: 35px;
    height: 35px;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #0083c3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto
}

.small-icons__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.small-icons__text {
    text-align: center;
    margin-top: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #0083c3;
    font-size: 1rem
}

.author-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1rem 0
}

.author-block_outlined {
    border: 1px solid var(--main-accent-bg-color);
    padding: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1rem
}

.author-block__avatar {
    width: 60px;
    height: 60px
}

.author-block__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.author-block__avatar_scaled {
    width: 150px;
    height: 150px
}

.author-block__content {
    margin-left: 1rem;
    max-width: 600px
}

.author-block__name {
    font-size: 1rem;
    font-weight: 600
}

.author-block__description {
    font-size: .9rem;
    font-weight: 300;
    opacity: .8;
    margin-top: .5rem
}

.author-block__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin: .5rem -5px -5px
}

.author-block__social li {
    width: 25px;
    height: 25px;
    margin: 5px
}

.author-block__social li:hover {
    opacity: .7
}

#cookie-law-div {
    z-index: 10000000;
    position: fixed;
    bottom: 3%;
    right: 2%;
    padding: 1em;
    max-width: 400px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    font-size: 15px;
    -webkit-box-shadow: rgba(23, 43, 99, .4) 0 7px 28px;
    box-shadow: rgba(23, 43, 99, .4) 0 7px 28px
}

#cookie-law-div a {
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5)
}

#cookie-law-div a:hover {
    opacity: .7
}

#cookie-law-div p {
    margin: 0;
    color: #000;
    padding-right: 50px
}

#cookie-law-div button {
    height: 20px;
    width: 20px;
    position: absolute;
    right: .5em;
    top: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    line-height: 1;
    color: #fff;
    background-color: #000;
    border: none;
    opacity: .6;
    font-size: 12px;
    cursor: pointer;
    border-radius: 50px
}

#cookie-law-div button:hover {
    opacity: 1
}

.acceptButton {
    width: 113px !important;
    background-color: green !important;
    top: 124px !important
}

.toc-auto {
    max-width: 500px;
    background: #f3f4f4;
    margin-bottom: 30px;
    padding: 17px 30px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, .1);
    box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, .1)
}

.toc-auto ul {
    counter-reset: item
}

.toc-auto li {
    display: block
}

.toc-auto li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    font-weight: 100;
    color: gray
}

.toc-auto p {
    margin: 0;
    padding: 0
}

.toc-auto h2 {
    font-size: 20px;
    text-transform: none;
    margin: 0 20px 0 0;
    padding: 0
}

.toc-auto button {
    background: 0 0
}

.toc-auto .toc-hide-block {
    display: block;
    position: relative;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    border: none
}

.toc-auto .toc-hide-block:hover {
    cursor: pointer
}

.toc-auto a {
    text-decoration: none;
    color: var(--content-button-bg-color);
    font-weight: 100
}

.toc-auto a:hover {
    color: #333
}

.toc-auto ul {
    display: none;
    margin: 0 0 0 10px;
    padding: 0
}

.toc-auto li {
    margin: 10px 0;
    padding: 0
}

.tocOpen ul {
    margin-top: 20px;
    display: block;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.tocOpen ul li ul {
    margin-top: 0
}

.autoToc__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.sidenav {
    position: fixed;
    z-index: 1;
    top: 99px;
    right: -200vh;
    background-color: var(--header-bg-color);
    overflow-x: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding-top: 0
}

.sidenav li.menu-item-has-children:after {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='25' height='25' x='0' y='0' viewBox='0 0 512.002 512.002' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(6.123233995736766e-17,1,-1,6.123233995736766e-17,512.0016722679138,0.0004363059997558594)'%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M388.425,241.951L151.609,5.79c-7.759-7.733-20.321-7.72-28.067,0.04c-7.74,7.759-7.72,20.328,0.04,28.067l222.72,222.105 L123.574,478.106c-7.759,7.74-7.779,20.301-0.04,28.061c3.883,3.89,8.97,5.835,14.057,5.835c5.074,0,10.141-1.932,14.017-5.795 l236.817-236.155c3.737-3.718,5.834-8.778,5.834-14.05S392.156,245.676,388.425,241.951z' data-original='%23000000' style='' class=''%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='25' height='25' x='0' y='0' viewBox='0 0 512.002 512.002' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(6.123233995736766e-17,1,-1,6.123233995736766e-17,512.0016722679138,0.0004363059997558594)'%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M388.425,241.951L151.609,5.79c-7.759-7.733-20.321-7.72-28.067,0.04c-7.74,7.759-7.72,20.328,0.04,28.067l222.72,222.105 L123.574,478.106c-7.759,7.74-7.779,20.301-0.04,28.061c3.883,3.89,8.97,5.835,14.057,5.835c5.074,0,10.141-1.932,14.017-5.795 l236.817-236.155c3.737-3.718,5.834-8.778,5.834-14.05S392.156,245.676,388.425,241.951z' data-original='%23000000' style='' class=''%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat 50% 50%;
    position: absolute;
    opacity: .7;
    right: 25px;
    top: -4px;
    width: 20px;
    height: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: var(--main-nav-color)
}

.sidenav ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidenav ul li {
    position: relative;
    margin: 0;
    padding: 0
}

.sidenav ul li ul {
    display: none;
    padding: 0
}

.sidenav ul li a {
    display: block;
    text-decoration: none;
    margin: 16px 0;
    color: var(--main-nav-color);
    font-size: 19px;
    font-weight: 100
}

.menu-header-mobile ul li.active:after {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: absolute;
    right: 12px;
    top: 0;
    width: 20px;
    height: 20px
}

.menu-header-mobile ul li.active ul {
    display: block
}

.menu-header-mobile ul li.active ul.sub-menu {
    margin-left: 10px
}

.menuFullWidth {
    right: 0;
    width: 100%
}

.withoutButtons {
    top: 42px
}

#openButton {
    width: 44px;
    height: 45px;
    position: relative;
    right: 10px;
    top: 10px;
    margin-left: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    order: 3
}

#openButton span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-nav-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#openButton span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

#openButton span:nth-child(2) {
    top: 12px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

#openButton span:nth-child(3) {
    top: 25px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

#openButton.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -1px;
    left: 8px
}

#openButton.open span:nth-child(2) {
    width: 0%;
    opacity: 0
}

#openButton.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 32px;
    left: 8px
}

@media (max-width: 9500px) {
    .page-header .backgroundGrayContainer {
        height: 100vh
    }
}

@media (max-width: 1300px) {
    .columns.col-6 .columns__item {
        width: calc(100% / 5 - 2rem)
    }

    .wp-block-columns.col-6 {
        -ms-grid-columns:(1fr) [ 5 ];
        grid-template-columns:repeat(5, 1fr)
    }
}

@media screen and (max-width: 1200px) {
    :root {
        --offsets: 20px
    }
}

@media (max-width: 1200px) {
    .columns.col-5 .columns__item, .columns.col-6 .columns__item {
        width: calc(100% / 4 - 2rem)
    }

    .wp-block-columns.col-5, .wp-block-columns.col-6 {
        -ms-grid-columns:(1fr) [ 4 ];
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (max-width: 1050px) {
    .wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 16px
    }

    .page-header__container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        padding: var(--offsets) 0;
        position: relative
    }

    .page-header__logo {
        max-width: 100px
    }

    .page-header__nav {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .page-header__buttons {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .page-header__burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
}

@media (max-width: 1000px) {
    .columns.col-3 .columns__item {
        width: calc(100% / 2 - 2rem)
    }

    .columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
        width: calc(100% / 3 - 2rem)
    }

    .icon-blocks__item {
        width: calc(100% / 3)
    }
}

@media screen and (max-width: 900px) {
    :root {
        --offsets: 16px
    }
}

@media (max-width: 900px) {
    .wp-block-columns.col-3, .wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }
}


@media (max-width: 750px) {
    .page-header__container {
        background-color: var(--header-bg-color)
    }

    .page-header .changeBackground {
        background-color: transparent
    }

    .page-header .pageHeaderPromo {
        height: 76.5vh;
        padding: 0 20px;
        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: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .page-header .pageHeaderPromo__title {
        font-size: 22px;
        margin-top: 10px
    }

    .page-header .pageHeaderPromo__description {
        font-size: 18px;
        line-height: 19px
    }

    .page-header__logo img {
        width: auto;
        max-height: 20px
    }

    .page-header-style-2 {
        margin-bottom: 0
    }

    .columns.col-3 .columns__item {
        width: calc(100% - 2rem)
    }

    .columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
        width: calc(100% / 2 - 2rem)
    }

    .wp-block-columns.col-2, .wp-block-columns.col-3, .wp-block-columns.col-4, .wp-block-columns.col-5, .wp-block-columns.col-6 {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .faq__question {
        font-size: 15px
    }

    .scroll-top {
        bottom: 130px
    }

    .toc-auto {
        margin-top: 20px
    }

    .toc-auto .toc-hide-block {
        width: 100%
    }
}

@media (max-width: 740px) {
    .page-header .pageHeaderPromo .pageHeaderPromoButtons a, .page-header .pageHeaderPromo .pageHeaderPromoButtons button, .page-header .pageHeaderPromo .pageHeaderPromoButtons span {
        padding: 14px 10px
    }
}

@media (max-width: 700px) {
    html {
        font-size: 15px
    }

    .slider__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .slider__title {
        text-align: center
    }

    .slider__button {
        margin-left: 0;
        margin-top: 1rem
    }
}

@media screen and (max-width: 700px) {
    #cookie-law-div p {
        padding-bottom: 36px
    }

    .acceptButton {
        left: calc(50% - 60px)
    }
}

@media (max-width: 650px) {
    .icon-blocks__item {
        width: calc(100% / 2)
    }
}

@media (max-width: 600px) {
    .promocode__controls {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .promocode__button {
        max-width: none;
        margin-top: .5rem
    }

    .promocode__text {
        margin-left: 0;
        text-align: center
    }

    #cookie-law-div {
        border-radius: 0;
        max-width: 100%;
        right: 0;
        bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .acceptButton {
        top: 100px !important
    }

    #cookie-law-div p {
        padding-bottom: 50px
    }
}

@media (max-width: 550px) {
    .page-header__buttons {
        margin: 0 -.2rem
    }

    .page-header__buttons a, .page-header__buttons button {
        margin: 0 .2rem
    }

    .columns.col-4 .columns__item, .columns.col-5 .columns__item, .columns.col-6 .columns__item {
        width: calc(100% - 2rem)
    }

    .page-footer__logo {
        text-align: center
    }
}

@media (max-width: 500px) {
    html {
        font-size: 14px
    }

    .page-header__buttons {
        width: 100%;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        text-align: center;
        margin-top: 1rem
    }

    .comment-form__button, .comment-form__input {
        width: calc(100% - 20px)
    }
}

@media screen and (max-width: 400px) {
    .acceptButton {
        top: 127px !important
    }
}

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

body {
    background-color: #090f1e;
    color: #fff;
}

.header {
    background: linear-gradient(92deg, #1e283f, rgba(20, 27, 46, .6));
}

.wrapper .custom-columns {
    border-radius: 12px;
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46, .6) 100%);
    padding: var(--offsets);
}

.wrapper:first-child {
    margin-top: 2rem;
}

.footer__logo {
    left: var(--offsets);
}

@media (max-width: 1023px) {
    .footer__logo {
        left: 50%;
    }
}

.footer p {
    color: white;
}

.footer__dcma {
    text-align: center;
}

.accent-button.fill-button {
    background-color: var(--content-button-bg-color);
    color: var(--content-button-color);
    border: none;
}

main a:not([class]),
.breadcrumbs__current,
.breadcrumbs__link,
.breadcrumbs__separator {
    color: #fff;
}

/* How to */
.how-to {
    margin-top: 3rem;
    margin-bottom: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.how-to.container {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.how-to__title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.how-to__subtitle {
    margin: 0 0 50px 0;
    color: #fff;
}

.how-to__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.how-to__item:not(:last-child) {
    margin-bottom: 30px;
}

.how-to__item:last-child::after,
.how-to__item:last-child::before {
    display: none;
}

.how-to__item:last-child .how-to__item-content {
    padding-left: 0;
}

.how-to__item {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.how-to__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 20px;
    width: 3px;
    background-color: var(--main-accent-bg-color);
}

.how-to__item::after {
    content: "";
    position: absolute;
    left: -8px;
    bottom: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 9px 0 9px;
    border-color: var(--main-accent-bg-color) transparent transparent transparent;
}

.how-to__item-label {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--main-accent-bg-color);
}

.how-to__item-label-counter {
    padding: 16px 29px;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    text-transform: uppercase;
}

.how-to__item-content {
    position: relative;
    align-self: flex-start;
    padding: 50px 20px 20px;
    flex: 1 1 670px;
    color: #fff;
}

.how-to__item-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 160px;
    height: 1px;
    background-color: #dcdcdc;
}

.how-to__item-content p {
    margin: 0;
    max-width: 500px;
    font-family: inherit;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}

.how-to__item-content a {
    color: var(--main-accent-bg-color);
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
}

.how-to__item-content a:hover {
    text-decoration: none;
}

.how-to__item-title {
    display: inline-block;
    margin: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}

.how-to__item-subtitle {
}

.how-to__item-image {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.how-to__item-image p {
    margin: 0;
    height: 100%;
}

.how-to__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}

@media (max-width: 767px) {

    .how-to__item-label {
        top: -5px;
    }

    .how-to__item-label-counter {
        padding: 13px 26px;
        font-size: 14px;
        line-height: 19px;
    }

    .how-to__item {
        flex-direction: column-reverse;
    }

    .how-to__item:last-child .how-to__item-image {
        margin-left: 0;
    }

    .how-to__item::before {
        top: 35px;
    }

    .how-to__item-content {
        flex-basis: auto;
        width: 100%;
        padding: 30px 15px 10px;
    }

    .how-to__item-content p {
        width: 100%;
    }

    .how-to__item-content::before {
        left: 170px;
    }

    .how-to__item-image {
        margin-left: 20px;
        margin-bottom: 15px;
    }
}

.toc {
    width: 100%;
}

.toc:not(.active) .toc__title {
    /*margin-bottom: 1rem;*/
    margin: 0;
}


.toc .toc__list {
    display: flex;
    gap: 10px 50px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .toc.active .toc__list {
        flex-direction: column;
    }
}

.toc.active .toc__item::marker {
    /*color: var(--main-accent-bg-color);*/
}

.faq__item {
    background-color: var(--main-accent-bg-color);
    color: #f3f4f4;
}

@media (max-width: 1024px) {
    .page-header-style-2 {
        margin-bottom: 0;
    }
}

.promocode__container {
    background-color: var(--header-bg-color);
    border-radius: 4px;
}

.promocode__value {
    color: var(--main-accent-bg-color);
}

.promocode__bottom {
    background-color: var(--content-button-bg-color);
    border: 2px solid var(--content-button-bg-color);
    transition: 150ms;
}

.promocode__bottom:hover {
    background-color: var(--content-button-bg-color);
    color: unset;
    transform: scale(.95);
}

/* Popup */
.popup-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 900;
}

.popup-bg.active {
    display: flex;
}

.popup {
    width: 1243px;
}

.popup .popup__cross {
    cursor: pointer;
}

.slots-popup {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
}

.slots-popup .slots-popup__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 16px 12px 20px;
    background: linear-gradient(90deg, #1C273D 0%, #12192B 100%);
}

.slots-popup .slots-popup__title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    flex: 1 1;
    margin-top: 0;
    margin-bottom: 0;
}

.slots-popup .slots-popup__buttons {
    display: flex;
    justify-content: center;
    flex: 1 1;
}

.slots-popup .slots__button {
    width: auto;
    padding: 10px 12.5px;
}

.slots-popup .slots-popup__cross-container {
    display: flex;
    justify-content: flex-end;
    flex: 1 1;
}

.slots-popup .slots-popup__content {
    min-height: 630px;
    background-color: #12192B;
}

.slots-popup .slots-popup__iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1412px) {
    .popup {
        margin: 0 20px;
    }

    .slots-popup .slots-popup__content {
        min-height: 540px;
    }
}

@media (max-width: 1200px) {
    .popup {
        margin: 0 16px;
    }
}

@media (max-width: 760px) {
    .slots-popup .slots-popup__content {
        min-height: 300px;
    }

    .slots-popup .slots-popup__title {
        order: 1;
    }

    .slots-popup .slots-popup__buttons {
        order: 3;
        flex: 1 1 100%;
        margin-top: 8px;
    }

    .slots-popup .slots-popup__cross-container {
        flex: 0 0 32px;
        order: 2;
    }

    .slots-popup .slots-popup__header {
        padding: 12px 20px;
    }
}

/* Popup */

.footer-menu a:hover {
    text-decoration: underline;
}

.slider__image img {
    object-fit: contain;
    max-height: 560px;
    /*max-height: 400px;*/
}

.swiper-container {
    overflow: hidden;
}

.advantages-block ul {
    list-style: none;
    padding-left: 0;
}

.slots__title {
    margin-top: 0;
    margin-bottom: 1rem;
}

main a:not([class]) {
    color: #0180b2;
    font-weight: bold;
}

.swiper-wrapper {
    padding-left: 0;
    list-style: none;
}

/* header lang */

.header__current-lang,
.header__lang img {
    min-width: 23px;
    height: 22px;
}

.header__current-lang {
    cursor: pointer;
}

/*.header__lang:hover{*/
/*  opacity: .7;*/
/*}*/

.header__lang .header__lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0;
    list-style: none;
    background-color: #000;
    border-radius: 0 0 5px 5px;
}

.header__lang .header__lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.header__current-lang, .header__lang img {
    width: 33px;
    height: 23px;
    object-fit: cover;
}

.header__lang {
    position: relative;
    display: flex;
    background-color: #000;
    border-radius: 5px;
    margin: 0 10px;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
    flex-shrink: 0;
}

.header__current-lang,
.header__lang img {
    width: auto;
    height: 22px;
    object-fit: contain;
}

.header__current-lang {
    cursor: pointer;
}

.header__lang .header__lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0;
    list-style: none;
    background-color: #000;
    border-radius: 0 0 5px 5px;
}

@media (min-width: 901px) {
    .header__lang:hover .header__lang-list {
        display: flex;
    }
}

.header__lang._open .header__lang-list {
    display: flex;
}


.header__lang .header__lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* header lang */
.header__buttons {
    margin-left: auto;
}

.header__wrapper {
    flex-grow: 1;
}

.page-header__burger {
    margin-left: 16px;
}

.header__current-lang, .header__lang img {
    width: 32px;
    height: 22px;
    object-fit: cover;
}

.header__current-lang {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.header__lang img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.header__lang {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.lang__code {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.header__lang .header__lang-list {
    width: 100%;
}

.header__lang .header__lang-list:before {
    content: '';
    width: 100%;
    height: 2px;
}

.header__lang .header__lang-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    padding: 0;
}

.header__lang .header__lang-list > li {
    padding: 8px 9px;
}

.header__lang,
.header__lang._open {
    border-radius: 10px;
}

.header__lang img {
    width: 32px;
    height: 23px;
    object-fit: cover;
}

.header__lang .header__lang-item p {
    margin: 0;
}

.header__lang .header__lang-list {
    background-color: unset;
}

.header__lang .header__lang-list > li {
    display: flex;
    justify-content: flex-end;
    background-color: #1f2841;
}

.header__lang .header__lang-list > li:first-child {
    border-radius: 10px 10px 0 0;
}

.header__lang .header__lang-list > li:last-child {
    border-radius: 0 0 10px 10px;
}

.header__lang-close,
.header__lang-close._show {
    display: none;
}

.header__lang .header__lang-list > li {
    position: relative;
}


.header__lang-list .lang__code {
    position: absolute;
    top: 0;
    left: 9px;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

@media (min-width: 901px) {
    .header__lang:hover .header__lang-list {
        display: flex;
    }
}

@media (max-width: 900px) {
    .header__lang._open {
        position: absolute;
        top: 100%;
        width: 100vw;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        padding: 12px var(--offsets);
        z-index: 999;
    }

    .header__lang._open > svg {
        display: none;
    }

    .header__lang._open .header__lang-list {
        width: 100%;
    }

    .header__lang._open .header__lang-list::before {
        content: unset;
    }

    .header__lang._open .header__lang-list > li {
        background-color: #090f1e;
        padding: 0;
        margin: 0 -var(--offsets);
    }

    .header__lang._open .header__lang-list > li:first-child {
        border-radius: 0;
    }

    .header__lang._open .header__lang-list > li:last-child {
        border-radius: 0;
    }

    .header__lang._open .header__lang-list > li:not(:last-child) {
        border-bottom: 1px solid #1F2841;
    }

    .header__lang._open .header__lang-item {
        padding: 12px var(--offsets);
    }

    .header__lang-close {
        display: none;
        background: transparent;
        border: none;
    }

    .header__lang-close._show {
        display: flex;
        z-index: 999;
    }

    .header__lang._open {
        padding: 12px var(--offsets);
    }

    .header__lang._open .header__lang-list .lang__code {
        left: var(--offsets);
    }
}

@media (max-width: 767px) {
    .header__toggle-button {
        margin-left: 10px;
    }

    .header__lang {
        margin-left: auto;
    }

    .header__lang._open + .header__toggle-button {
        margin-left: auto;
    }
}

/* header lang */
.swiper-pagination-bullet {
    background-color: #fff !important;
}

.mobileButton,
.scroll-top {
    z-index: 10;
}

.mobileButton__description {
    text-align: left;
}

/*-------------------------LINKS--------------------------------*/
.links-section__links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .links-section__links-list {
        gap: .5rem
    }

    .links-section__links-list .link, .links-section__links-list li {
        width: 100%
    }
}

.link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    width: 19.4rem;
    height: 4.5rem;
    padding: .75rem .75rem .75rem 0;
    border-radius: .25rem;
    background: var(--bg, linear-gradient(90deg, #1e283f 0, #141c2e 100%));
    color: #fff;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform .2s ease 0s;
    transition: -webkit-transform .2s ease 0s;
    transition: transform .2s ease 0s;
    transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
    overflow: hidden;
    text-decoration: none;
}

.link:hover::after {
    border-radius: 0;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.link::after {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='12' viewBox='0 0 21 12' fill='none'%3E%3Cpath d='M20.5303 6.53033C20.8232 6.23744 20.8232 5.76256 20.5303 5.46967L15.7574 0.696698C15.4645 0.403804 14.9896 0.403804 14.6967 0.696698C14.4038 0.989591 14.4038 1.46446 14.6967 1.75736L18.9393 6L14.6967 10.2426C14.4038 10.5355 14.4038 11.0104 14.6967 11.3033C14.9896 11.5962 15.4645 11.5962 15.7574 11.3033L20.5303 6.53033ZM6.55671e-08 6.75L20 6.75L20 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z' fill='white'/%3E%3C/svg%3E");
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 3.875rem;
    height: 3.25rem;
    border-radius: 62px 0 0 0;
    background: #089e4e;
    -webkit-transform: translate(11px, 10px);
    -ms-transform: translate(11px, 10px);
    transform: translate(11px, 10px);
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.link img {
    background: rgba(9, 15, 30, .4);
    width: 4.5rem;
    height: 4.5rem
}

.link > p {
    margin: 0;
    display: contents;
}

/*-----------------------SLOTS V2--------------------------------*/

.slots-section {
    padding: 2rem;
    border-radius: .625rem;
    background: var(--bg, linear-gradient(90deg, #1e283f 0, #141c2e 100%));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem
}

.slots-section__header {
    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
}

.slots-section__header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0abd5e !important;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.slots-section__header a:active svg, .slots-section__header a:hover svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px)
}

.slots-section__header a svg {
    width: 1.3125rem;
    height: .8125rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.slots-section__title {
    margin-bottom: 0
}

.slots-section__slots-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1875rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slots-section__slot {
    width: 11.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .5rem;
    border-radius: 10px;
    background: #090f1e
}

.slots-section__slot-img {
    position: relative;
    width: 100%;
    height: 9.25rem;
    border-radius: .5rem;
    overflow: hidden
}

.slots-section__slot-img:hover .slots-section__slot-img-buttons {
    left: 0
}

.slots-section__slot-img-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .5rem;
    background-color: rgba(0, 0, 0, .6);
    left: -100%;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.slots-section__slot-img-buttons .btn {
    width: 100%;
    padding: .5rem;
    text-wrap: balance;
    text-transform: none
}

.slots-section__slot-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.slots-section__slot-name {
    padding: .625rem;
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

@media (max-width: 576px) {
    .slots-section {
        padding: 1rem
    }

    .slots-section__header {
        display: contents
    }

    .slots-section__header a {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .slots-section__slot {
        width: 8.75rem
    }

    .slots-section__slot-img {
        height: 6.375rem
    }

    .slots-section__slot-img-buttons .btn {
        width: 95%;
        font-size: .875rem
    }
}

.btn {
    position: relative;
    max-width: 12rem;
    padding: 1rem;
    gap: .625rem;
    border-radius: .1875rem;
    color: #000;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    cursor: pointer
}

.btn:hover {
    -webkit-transform: scale(.96);
    -ms-transform: scale(.96);
    transform: scale(.96)
}

.btn svg {
    display: none
}

.btn--yellow {
    background: var(--Primary-yellow, #f8ff13);
    -webkit-box-shadow: 0 0 20px 0 rgba(248, 255, 19, .3);
    box-shadow: 0 0 20px 0 rgba(248, 255, 19, .3)
}

.btn--white {
    background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, .16);
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, .16)
}

.btn--full-width {
    width: 100%;
    max-width: unset;
    padding: 1.125rem 2rem
}

.btn--with-svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .25rem;
    padding: .625rem 2rem;
    border-radius: 1.75rem
}

.btn--with-svg svg {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem
}


.btn {
    position: relative;
    max-width: 12rem;
    padding: 0.75rem 1rem;
    gap: 0.625rem;
    border-radius: 0.1875rem;
    color: #fff;
    font-family: Arial;
    font-size: 1.275rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    -webkit-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
}

.btn svg {
    display: none;
}

.btn--green {
    background: #089e4e;
}

.btn--white {
    background: #fff;
    color: #1e283f;
}

.btn--full-width {
    width: 100%;
    max-width: unset;
}

.btn--with-svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.btn--with-svg svg {
    display: inline-block;
    width: 1.3125rem;
    height: 1.3125rem;
}


/*-----------------------SLOTS V3--------------------------------*/
.live-games-section {
    padding: 2rem;
    border-radius: 0.625rem;
    background: var(--bg, linear-gradient(90deg, #1e283f 0%, #141c2e 100%));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
}

.live-games-section__header {
    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;
}

.live-games-section__header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0abd5e !important;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.live-games-section__header a:hover svg,
.live-games-section__header a:active svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.live-games-section__header a svg {
    width: 1.3125rem;
    height: 0.8125rem;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.live-games-section__title {
    margin-bottom: 0;
}

.live-games-section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    align-items: center;
}

.live-games-section__img {
    max-width: 26.125rem;
    min-width: 26.125rem;
    height: 25.875rem;
}

.live-games-section__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 26.4rem;
}

@media (max-width: 576px) {
    .live-games-section__img img {
        height: 17.5625rem;
    }
}

.live-games-section__img > p {
    margin: 0;
}

.live-games-section__slots-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1875rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.live-games-section__slot {
    width: 11.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 0.625rem;
    background: #090f1e;
}

.live-games-section__slot-img {
    position: relative;
    width: 100%;
    height: 9.25rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.live-games-section__slot-img:hover .live-games-section__slot-img-buttons {
    left: 0;
}

.live-games-section__slot-img-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    left: -100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.live-games-section__slot-img-buttons .btn {
    width: 100%;
    padding: 0.5rem;
    text-wrap: balance;
    text-transform: none;
}

.live-games-section__slot-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.live-games-section__slot-name {
    padding: 0.625rem;
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 141.176% */
}

@media (max-width: 1380px) {
    .live-games-section__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .live-games-section__img {
        max-width: unset;
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .live-games-section {
        padding: 1rem;
    }

    .live-games-section__header {
        display: contents;
    }

    .live-games-section__header a {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .live-games-section__img {
        height: 17.5625rem;
    }

    .live-games-section__slot {
        width: 8.75rem;
    }

    .live-games-section__slot-img {
        height: 6.375rem;
    }

    .live-games-section__slot-img-buttons .btn {
        width: 95%;
        font-size: 0.875rem;
    }
}

.live-games-section__slot-img > p {
    margin: 0;
}

.slots-section__slot-img > p {
    margin: 0;
}


/*-----------------------SLOTS V4--------------------------------*/


.games-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.125rem;
    padding: 0;
}

.games-section__title {
    margin-bottom: 0;
}

.games-section__slots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 42.0625rem;
    height: 100%;
    padding: 2rem;
    border-radius: 0.625rem;
    background: var(--bg, linear-gradient(90deg, #1e283f 0%, #141c2e 100%));
}

.games-section__slots-header {
    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;
}

.games-section__slots-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0abd5e !important;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.games-section__slots-header a:hover svg,
.games-section__slots-header a:active svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.games-section__slots-header a svg {
    width: 1.3125rem;
    height: 0.8125rem;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.games-section__slots-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.1875rem;
    -moz-column-gap: 1.1875rem;
    column-gap: 1.1875rem;
    row-gap: 1.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
}

.games-section__slot {
    position: relative;
    width: 11.875rem;
    height: 9.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0.375rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
    overflow: hidden;
}

.games-section__slot:hover .games-section__slot-content {
    left: 0;
}

.games-section__slot-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.games-section__slot-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.games-section__slot-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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    z-index: 2;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
}

.games-section__slot-content .btn {
    padding: 0.625rem 1.125rem;
    max-width: 8.625rem;
    font-size: 1rem;
    width: 100%;
    text-transform: math-auto;
}

.games-section__poker {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    max-width: 41.5625rem;
    /*max-height: 27.5625rem;*/
    padding: 2rem;
    border-radius: 0.625rem;
}

.games-section__poker-img > p > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.games-section__poker-img > p {
    margin: 0;
}

.games-section__poker-title {
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: Roboto;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.games-section__poker-description {
    color: #fff;
    font-family: SFProDisplay;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.games-section__poker .btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.3125rem;
    max-width: 12.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
}

@media (max-width: 1380px) {
    .games-section {
        -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;
    }

    .games-section__slots {
        width: 100%;
    }

    .games-section__poker {
        width: 100%;
        min-height: 19.3125rem;
    }
}

@media (max-width: 576px) {
    .games-section__slots {
        padding: 1rem;
    }

    .games-section__slots-header {
        display: contents;
    }

    .games-section__slots-header a {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .games-section__slots-list {
        gap: 1rem;
    }

    .games-section__slot {
        width: 8.75rem;
        height: 6.875rem;
    }

    .games-section__slot-content {
        font-size: 0.875rem;
        padding: 0.3125rem 0.625rem 0.625rem 0.625rem;
        gap: 0.3125rem;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .games-section__slot-content .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.375rem;
    }
}

.games-section__slot-img > p {
    margin: 0;
}

.games-section__slot-content > p {
    font-weight: 400;
    margin: 0;
}

.live-games-section__slots-list, .slots-section__slots-list, .games-section__slots-list {
    padding: 0;
}

.btn.btn--green.btn--with-svg.sf-link {
    text-transform: math-auto;
}

.container.links-section {
    padding: 0;
}


/*-----------------------PROMOCODE--------------------------------*/

.promocode {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 42rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.375rem;
    padding: 1.75rem 2.125rem;
    border-radius: 0.625rem;
    background: #1e283f;
    overflow: hidden;
    margin: 1.0625rem auto 0 auto;
}

.promocode__title {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 1.16875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.promocode__title::after,
.promocode__title::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 0.125rem;
    width: 7.3125rem;
}

.promocode__title::before {
    left: -0.625rem;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(77%, rgb(8, 158, 78)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(8, 158, 78) 77%);
}

.promocode__title::after {
    right: -0.625rem;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background: -webkit-gradient(linear, left top, right top, from(rgb(8, 158, 78)), color-stop(77%, rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgb(8, 158, 78) 0%, rgba(0, 0, 0, 0) 77%);
}

.promocode__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    background: transparent;
}

.promocode__input {
    width: 100%;
    height: 2.9375rem;
    gap: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.25rem;
    border: 1px solid #536182;
}

.promocode__input input {
    max-width: 11.875rem;
    background-color: transparent;
    color: #fff;
    font-family: Roboto;
    font-size: 1.275rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 1rem 1.25rem;
    border: none;
}

.promocode__input input:focus {
    outline: none;
}

.btn-promocode {
    text-decoration: none;
    text-transform: math-auto;
}

.promocode__copy-btn {
    margin-right: 0.125rem;
    padding: 0.75rem 1.25rem;
    min-width: 5.25rem;
    max-height: 2.6875rem;
    height: 100%;
    border-radius: 0.1875rem;
    background: #536182;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem;
    color: #fff;
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    border: none;
    cursor: pointer;
}

.promocode__copy-btn:hover {
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}

.promocode__copy-btn.active {
    background-color: rgb(16, 236, 16);
}

.promocode__copy-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.promocode__copy-btn svg use {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.promocode__copy-btn:hover use {
    scale: 1.02;
}

@media (max-width: 1440px) {
    .promocode__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .promocode__title {
        font-size: 0.875rem;
    }

    .promocode__title::after,
    .promocode__title::before {
        width: 1.875rem;
    }

    .promocode__input input {
        max-width: 11.25rem;
        font-size: 1rem;
    }

    .promocode {
        width: 100%;
        padding: 1.25rem;
    }
}

.promocode-container {
    padding: 0;
}

/*---------------------------MP PROMOCODE-------------------------*/


.mp-promocode {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 39.6875rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.125rem;
    padding: 1.5rem;
    border-radius: 0.625rem;
    background: #1e283f;
    overflow: hidden;
    margin: 1.0625rem auto 0 auto;
}

.mp-promocode__buttons {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.875rem;
}

.mp-promocode__buttons .btn {
    padding: 0.75rem;
    font-size: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    text-transform: math-auto;
}

.mp-promocode__title {
    display: block;
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 1.16875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.mp-promocode__content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.mp-promocode__content::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgb(124, 127, 125)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(124, 127, 125) 50%, rgba(0, 0, 0, 0) 100%);
}

.mp-promocode__description {
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.mp-promocode__description span {
    color: #00da66;
    font-weight: 700;
}

.mp-promocode__input {
    width: 100%;
    height: 2.9375rem;
    gap: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.25rem;
    border: 1px solid #536182;
}

.mp-promocode__input input {
    max-width: 11.875rem;
    background-color: transparent;
    color: #fff;
    font-family: Roboto;
    font-size: 1.275rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 1rem 1.25rem;
    border: none;
}

.mp-promocode__input input:focus {
    outline: none;
}

.mp-promocode__copy-btn {
    margin-right: 0.125rem;
    padding: 0.75rem 1.25rem;
    min-width: 5.25rem;
    max-height: 2.6875rem;
    height: 100%;
    border-radius: 0.1875rem;
    background: #536182;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem;
    color: #fff;
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    border: none;
    cursor: pointer;
}

.mp-promocode__copy-btn:hover {
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}

.mp-promocode__copy-btn.active {
    background-color: rgb(16, 236, 16);
}

.mp-promocode__copy-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mp-promocode__copy-btn svg use {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.mp-promocode__copy-btn:hover use {
    scale: 1.02;
}

@media (max-width: 768px) {
    .mp-promocode {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mp-promocode__buttons {
        width: 100%;
    }

    .mp-promocode__content {
        padding-left: 0;
    }

    .mp-promocode__content::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .mp-promocode__input input {
        max-width: 11.25rem;
    }

    .mp-promocode {
        width: 100%;
    }
}


/*---------------------------TOC-------------------------*/

.toc-section {
    max-width: 85.75rem;
    padding: 2rem !important;
    border-radius: 10px;
    background: var(--bg, linear-gradient(90deg, #1e283f 0, #141c2e 100%))
}

.toc-section__title {
    position: relative;
    color: #fff;
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer
}

.toc-section__title::after {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg width='27' height='28' viewBox='0 0 27 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.5' width='27' height='27' rx='5' fill='%23089E4E'/%3E%3Cpath d='M8 16.5L13.5 11.5L19 16.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.toc-section__toc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*gap: 1.75rem*/
}

.toc-section__toc.active .toc-section__title::after {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1)
}

.toc-section__toc.active .toc-section__toc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.toc-section__toc-list {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 3.4375rem;
    -moz-column-gap: 3.4375rem;
    column-gap: 3.4375rem;
    row-gap: 1.25rem;
    color: rgba(255, 255, 255, .9);
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline
}

.toc-section__toc-item {
    -ms-flex-preferred-size: 16%;
    flex-basis: 16%
}

.toc-section__toc-item a {
    color: rgba(255, 255, 255, .9);
    font-family: Roboto;
    font-size: 1.0625rem;
    font-style: normal;
    /*font-weight: 400;*/
    line-height: normal;
    text-decoration-line: underline
}

@media (max-width: 1380px) {
    .toc-section__toc-item {
        -ms-flex-preferred-size: 22%;
        flex-basis: 22%
    }
}

@media (max-width: 1100px) {
    .toc-section__toc-item {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
}

@media (max-width: 768px) {
    .toc-section__toc-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media (max-width: 576px) {
    .toc-section {
        padding: 1.25rem !important
    }

    .toc-section__title {
        font-size: 1.25rem
    }

    .toc-section__toc-list {
        padding-left: 1.25rem
    }
}

.columns__container {
    flex-direction: row;
}

@media (max-width: 1100px) {
    .columns__container {
        flex-direction: column;
    }

    .columns.align-stretch .columns__container {
        align-items: center;
    }
}

.slots-section__slot-img-buttons {
    padding: 0 8px;
}

.live-games-section__slot-img-buttons {
    padding: 0 8px;
}

.mobileButton__description {
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.mobileButton__description > span {
    color: #089E4E;
}

.mobileButton a, .mobileButton button {
    margin: 0;
    padding: 13px 21px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobileButton {
    padding: 8px;
}

.mobileButton img {
    margin: -30px 0 0 0;
}

.mobileButtonContainer {
    position: relative;
}

.mobileButton__description {
    padding: 0;
}

.mobileButton {
    border-radius: 12px 12px 0px 0px;
    bottom: 0;
    margin: 0;
    display: flex;
    gap: 9px;
    width: 100%;
}

.mobileButton__description {
    max-width: 130px;
}


.mobileButton-link-img {
    position: absolute;
    bottom: 0;
    right: 8px;
}


.mobile-btn-img {
    margin: 0 !important;
    padding: 13px 75px 13px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}