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

        html,
        body {
            height: 100%;
            width: 100%;
            -ms-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }

        nav,
        footer,
        header,
        aside,
        main {
            display: block;
        }

        html {
            line-height: 1.15;
            -webkit-text-size-adjust: 100%;
        }

        hr {
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            height: 0;
            overflow: visible;
        }

        ul,
        ol {
            padding-left: 1.5em;
        }

        pre {
            font-family: monospace, monospace;
            font-size: 1em;
        }

        a {
            background-color: transparent;
        }

        abbr[title] {
            border-bottom: none;
            text-decoration: underline;
            -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
        }

        b,
        strong {
            font-weight: bolder;
        }

        code,
        kbd,
        samp {
            font-family: monospace, monospace;
            font-size: 1em;
        }

        small {
            font-size: 80%;
        }

        sub,
        sup {
            font-size: 75%;
            line-height: 0;
            position: relative;
            vertical-align: baseline;
        }

        sub {
            bottom: -0.25em;
        }

        sup {
            top: -0.5em;
        }

        img {
            border-style: none;
        }

        button,
        input,
        optgroup,
        select,
        textarea {
            font-family: inherit;
            font-size: 100%;
            line-height: 1.15;
            margin: 0;
        }

        button,
        input {
            overflow: visible;
        }

        button,
        select {
            text-transform: none;
        }

        button,
        [type="button"],
        [type="reset"],
        [type="submit"] {
            appearance: button;
            -webkit-appearance: button;
        }

        button::-moz-focus-inner,
        [type="button"]::-moz-focus-inner,
        [type="reset"]::-moz-focus-inner,
        [type="submit"]::-moz-focus-inner {
            border-style: none;
            padding: 0;
        }

        button:-moz-focusring,
        [type="button"]:-moz-focusring,
        [type="reset"]:-moz-focusring,
        [type="submit"]:-moz-focusring {
            outline: 1px dotted ButtonText;
        }

        fieldset {
            padding: 0.35em 0.75em 0.625em;
        }

        legend {
            color: inherit;
            display: table;
            max-width: 100%;
            padding: 0;
            white-space: normal;
        }

        progress {
            vertical-align: baseline;
        }

        textarea {
            overflow: auto;
        }

        [type="checkbox"],
        [type="radio"] {
            padding: 0;
        }

        [type="number"]::-webkit-inner-spin-button,
        [type="number"]::-webkit-outer-spin-button {
            height: auto;
        }

        [type="search"] {
            appearance: textfield;
            -webkit-appearance: textfield;
            outline-offset: -2px;
        }

        [type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

        ::-webkit-file-upload-button {
            -webkit-appearance: button;
            font: inherit;
        }

        details {
            display: block;
        }

        summary {
            display: list-item;
        }

        template {
            display: none;
        }

        [hidden] {
            display: none;
        }

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

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

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

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

        :root {
            --site-bg: #202a58;
            --site-bg-deep: #0d132b;
            --site-surface: #172049;
            --site-surface-soft: #2a3569;
            --site-accent: #f7c948;
            --site-accent-hover: #ffe16a;
            --site-accent-dark: #182350;
            --site-text-muted: #c2c8da;
        }

        body {
            font-family: "Rubik", sans-serif;
            background-color: var(--site-bg);
            color: #fff;
        }

        html {
            scroll-behavior: smooth;
        }

        .page {
            position: relative;
            min-height: 100%;
            min-width: 100%;
            overflow: hidden;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .main {
            padding-top: 64px;
            -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
        }

        .container {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 20px;
        }

        ._lock {
            overflow: hidden;
        }

        .go-top {
            position: fixed;
            z-index: 5;
            bottom: 0;
            right: 0;
            -webkit-transition: -webkit-transform 0.3s ease 0s;
            transition: -webkit-transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
            transform: translateX(100%);
        }

        .go-top._active {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

        .go-top a {
            display: block;
            padding: 15px;
            border: none;
            background: none;
        }

        .go-top img {
            width: 50px;
            height: 50px;
        }

        .button {
            background: none;
            border: none;
            text-decoration: none;
            display: block;
            text-align: center;
            padding: 10px 16px;
            min-width: 130px;
            text-transform: capitalize;
            font-weight: 500;
            border-radius: 16px;
            background-color: rgba(247, 201, 72, 0.08);
            color: var(--site-accent);
            border: 2px solid var(--site-accent);
            box-shadow: 0 0 0 rgba(247, 201, 72, 0);
            -webkit-transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        }

        .button:hover,
        .button:focus {
            background-color: rgba(247, 201, 72, 0.16);
            border-color: var(--site-accent-hover);
            color: var(--site-accent-hover);
            box-shadow: 0 8px 22px rgba(247, 201, 72, 0.22);
            -webkit-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            transform: translateY(-2px);
        }

        .button:active {
            -webkit-transform: scale(0.95);
            -ms-transform: scale(0.95);
            transform: scale(0.95);
        }

        .button-primary {
            background-color: var(--site-accent);
            color: var(--site-accent-dark);
        }

        .button-primary:hover,
        .button-primary:focus {
            border: 2px solid var(--site-accent-hover);
            background-color: var(--site-accent-hover);
            color: #0d132b;
        }

        .error-404 {
            text-align: center;
            margin: 40px 0;
            color: #fff;
        }

        .error-404 h1 {
            font-size: 34px;
            line-height: 44px;
            margin: 0 0 15px 0;
        }

        .error-404 p {
            font-size: 18px;
            line-height: 22px;
        }

        .error-404 a {
            color: var(--site-accent);
        }

        .header {
            position: fixed;
            z-index: 5;
            width: 100%;
            height: auto;
            top: 0;
            left: 0;
            background-color: var(--site-bg-deep);
            box-shadow: 0 8px 24px rgba(5, 8, 24, 0.25);
        }

        .header .container {
            max-width: 1440px;
        }

        .header-inner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
        }

        .header-top {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            box-shadow: 0 16px 34px rgba(5, 8, 24, 0.24);
        }

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

        .header-logo a {
            display: block;
            text-decoration: none;
            padding: 6px 10px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(5, 8, 24, 0.24);
        }

        .header-logo img {
            display: block;
            max-width: 100px;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .header-burger {
            background: none;
            border: none;
        }

        .header-burger img {
            display: block;
            width: 40px;
            height: 40px;
        }

        .header-nav {}

        .header-nav .menu {
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-nav .menu-item {
            list-style-type: none;
            position: relative;
        }

        .header-nav .menu-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
            padding: 10px 15px;
            text-transform: capitalize;
            color: #fff;
            border-radius: 10px;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        .header-nav .menu-item.current a,
        .header-nav .menu-item a:hover {
            color: var(--site-accent);
            background-color: rgba(247, 201, 72, 0.08);
        }

        .header-nav .menu-item>a>img {
            display: block;
            transition: transform 0.3s ease;
            transform: rotate(-90deg);
            margin-left: 5px;
            margin-right: -10px;
        }

        .header-nav .sub-menu {
            padding: 0;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--site-bg-deep);
            min-width: 150px;
            padding: 5px 0;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
        }

        .header-nav .menu-item:hover>a>img {
            transform: rotate(0deg);
        }

        .header-nav .menu-item:hover>.sub-menu {
            transition-delay: 0s;
            opacity: 1;
            visibility: visible;
        }

        .header-nav .sub-menu .menu-item a {
            padding: 8px 15px;
        }

        .header-buttons {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .header-button:not(:last-child) {
            margin-right: 10px;
        }

        @media (min-width: 991.98px) {
            .header-burger {
                display: none;
            }
        }

        @media (max-width: 1240px) {
            .header-nav {
                display: none;
            }
        }

        .footer {
            background-color: var(--site-bg-deep);
            padding: 30px 0;
        }

        .footer-nav {
            margin-bottom: 25px;
        }

        .footer-nav .menu {
            padding: 0;
            list-style-type: none;
            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;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .footer-nav .menu-item a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            line-height: 22px;
            padding: 5px 20px;
            display: inline-block;
            text-transform: uppercase;
            -webkit-transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s, color 0.3s ease 0s;
            transition: transform 0.3s ease 0s, color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        }

        .footer-nav .menu-item a:hover {
            -webkit-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            transform: translateY(-3px);
            color: var(--site-accent);
        }

        .footer-nav .menu-item.current>a {
            -webkit-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            transform: translateY(-3px);
            color: var(--site-accent);
        }

        .footer-copyright {
            font-size: 14px;
            line-height: 18px;
            text-align: center;
            color: var(--site-text-muted);
        }

        .mnav {
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            z-index: 10;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            -webkit-transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
            transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
            opacity: 0;
            visibility: hidden;
        }

        .mnav._active {
            -webkit-transition-delay: 0s;
            transition-delay: 0s;
            opacity: 1;
            visibility: visible;
        }

        .mnav._active .mnav-inner {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

        .mnav .menu {
            width: 100%;
            list-style-type: none;
            padding: 0;
        }

        .mnav .menu-item {
            position: relative;
            width: 100%;
        }

        .mnav .menu-item a {
            display: block;
            width: 100%;
            padding: 15px 30px;
            font-size: 24px;
            line-height: 26px;
            font-weight: 600;
            text-decoration: none;
            text-transform: capitalize;
            color: #fff;
            -webkit-transition: padding-left 0.3s ease 0s, background-color 0.3s ease 0s;
            transition: padding-left 0.3s ease 0s, background-color 0.3s ease 0s;
        }

        .mnav .menu-item a>img {
            display: none;
        }

        .mnav .menu-item a:hover,
        .mnav .menu-item a:focus {
            background-color: var(--site-surface-soft);
            padding-left: 50px;
        }

        .mnav .menu-item.current>a {
            background-color: var(--site-surface-soft);
            padding-left: 50px;
        }

        .mnav .sub-menu {
            padding: 0;
            list-style-type: none;
        }

        .mnav-inner {
            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: 400px;
            width: 100%;
            height: 100%;
            background-color: var(--site-surface);
            overflow: auto;
            -webkit-transition: -webkit-transform 0.3s ease 0s;
            transition: -webkit-transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            -webkit-transform: translateX(-400px);
            -ms-transform: translateX(-400px);
            transform: translateX(-400px);
        }

        .mnav-close {
            position: absolute;
            z-index: 1;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
        }

        .mnav-close img {
            display: block;
            width: 40px;
            height: 40px;
        }

        .mnav-logo {
            width: 100%;
        }

        .mnav-logo a {
            margin: 10px 25px;
            padding: 6px 10px;
            display: inline-block;
            text-decoration: none;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(5, 8, 24, 0.24);
        }

        .mnav-logo img {
            display: block;
            max-width: 100px;
            width: 100%;
            height: auto;
        }

        .mnav-buttons {
            margin: 0 25px 20px;
            padding-top: 20px;
        }

        .mnav-button {
            padding: 12px 20px;
            font-size: 18px;
            width: 100%;
        }

        .mnav-button:not(:last-child) {
            margin-bottom: 15px;
        }

        .content-inner {
            border-radius: 25px;
            padding: 20px 0;
            color: #fff;
            font-size: 17px;
            line-height: 24px;
        }

        .content-inner p {
            padding: 5px 0;
            margin-bottom: 10px;
        }

        .content-inner h1 {
            padding: 10px 0;
            margin-bottom: 10px;
            font-size: 34px;
            line-height: 40px;
        }

        .content-inner h2 {
            padding: 10px 0;
            margin: 15px 0 10px;
            border-bottom: 2px solid #fff;
            font-size: 30px;
            line-height: 36px;
        }

        .content-inner h3 {
            padding: 5px 0;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .content-inner .img-full {
            display: block;
            width: 100%;
            height: auto;
            margin: 10px auto;
        }

        .content-inner .img-fit {
            display: block;
            width: 100%;
            height: auto;
            margin: 10px auto;
            min-height: 250px;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .content-inner .img-half {
            display: block;
            max-width: 500px;
            width: 100%;
            height: auto;
            margin: 10px auto;
        }

        .content-inner .img-login {
            box-shadow: 0 0 0 4px #191f3e;
            border-radius: 10px;
        }

        .content-inner ul,
        .content-inner ol {
            padding-bottom: 10px;
        }

        .content-inner li {
            padding: 3px 0;
        }

        .content-inner h2,
        .content-inner h3,
        .content-inner span {
            scroll-margin: 74px 0 0;
        }

        .content-inner .button-wrap {
            border: none;
            background: none;
            display: block;
            width: 100%;
        }

        a:not(.button) {
            color: var(--site-accent);
        }

        .content-inner .button-content {
            display: block;
            margin: 10px auto;
            padding: 10px 30px;
            font-size: 18px;
            line-height: 24px;
            min-width: 150px;
        }

        .content-inner .button-content:hover,
        .content-inner .button-content:focus {
            -webkit-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            transform: translateY(-3px);
        }

        .content-inner .button-content:active {
            -webkit-transform: scale(0.95);
            -ms-transform: scale(0.95);
            transform: scale(0.95);
        }

        .content-image {
            border-radius: 25px;
            margin-bottom: 15px;
            overflow: hidden;
            position: relative;
            min-height: 400px;
            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;
        }

        .content-image img {
            display: block;
            position: absolute;
            z-index: 0;
            top: 50%;
            left: 50%;
             transform: translate(-50%, -50%) scale(1.08);
            -o-object-fit: cover;
            object-fit: cover;
            -webkit-transition: -webkit-transform 0.5s ease 0s;
            transition: -webkit-transform 0.5s ease 0s;
            transition: transform 0.5s ease 0s;
            transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
            margin: 0;
            border-radius: 25px;
        }

        .content-image:hover img {

           transform: translate(-50%, -50%) scale(1.18);
           
        }

        .content-image .overlay {
            position: relative;
            z-index: 1;
            padding: 35px;
            margin: 20px;
            background-color: rgba(13, 19, 43, 0.86);
            color: #fff;
            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;
            border-radius: 25px;
            max-width: 80%;
            border: 1px solid rgba(247, 201, 72, 0.16);
            box-shadow: 0 12px 28px rgba(5, 8, 24, 0.25);
        }

        @media (max-width: 992px) {
            .content-image .overlay {
                max-width: unset;
            }
        }

        .content-image .overlay>*:not(:last-child) {
            margin-bottom: 15px;
        }

        .content-image .overlay p {
            font-size: 36px;
            line-height: 40px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0;
        }

        .content-image .overlay span {
            color: var(--site-accent);
        }

        .content-image .overlay .button {
            margin: 0 auto;
        }

        .content-nav._active .open {
            display: none;
        }

        .content-nav._active .close {
            display: block;
        }

        .content-nav._active .nav-inner {
            height: auto;
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        .content-nav .nav-inner {
            overflow: hidden;
            height: 0;
            opacity: 0;
            -webkit-transform: translateY(-20px);
            -ms-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        }

        .content-nav .nav-toggle {
            background: rgba(247, 201, 72, 0.08);
            border: 1px solid rgba(247, 201, 72, 0.28);
            border-radius: 12px;
            padding: 8px 12px;
            margin: 5px 0;
            font-size: 24px;
            font-weight: 700;
            color: inherit;
            -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
            transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
        }

        .content-nav .nav-toggle:hover,
        .content-nav .nav-toggle:focus {
            background-color: rgba(247, 201, 72, 0.16);
            color: var(--site-accent-hover);
            -webkit-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            transform: translateY(-2px);
        }

        .content-nav .open {
            display: block;
        }

        .content-nav .close {
            display: none;
        }

        .content-nav .nav-list {
            padding: 0;
            border-radius: 20px;
            padding: 10px;
            -webkit-columns: 330px 2;
            -moz-columns: 330px 2;
            columns: 330px 2;
            background-color: var(--site-surface-soft);
            border: 4px solid var(--site-bg-deep);
        }

        .content-nav .nav-list li {
            list-style-type: none;
        }

        .content-nav .nav-list .emoji {
            display: inline;
            width: 15px;
            margin: 0 5px 0 0;
            vertical-align: -2px;
        }

        .content-nav .nav-list a {
            color: #fff;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            padding: 2px;
            font-size: 17px;
            line-height: 22px;
            border-radius: 8px;
            -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: color 0.3s ease 0s, background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: color 0.3s ease 0s, background-color 0.3s ease 0s, transform 0.3s ease 0s;
            transition: color 0.3s ease 0s, background-color 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        }

        .content-nav .nav-list a:hover,
        .content-nav .nav-list a:focus {
            color: var(--site-accent-hover);
            background-color: rgba(13, 19, 43, 0.28);
            -webkit-transform: translateX(3px);
            -ms-transform: translateX(3px);
            transform: translateX(3px);
        }

        .content-nav .nav-list a:before {
            content: "#";
            font-size: 18px;
            padding-right: 3px;
            color: var(--site-accent);
        }

        .content-nav ul {
            padding: 0;
        }

        .acc-list {
            padding: 0 !important;
            list-style-type: none;
        }

        .acc-item .acc-inner {
            overflow: hidden;
            width: 100%;
            margin-bottom: 10px;
            border-radius: 20px;
            background-color: var(--site-surface-soft);
            border: 4px solid var(--site-bg-deep);
            color: #fff;
            -webkit-transition: border-color 0.3s ease, box-shadow 0.3s ease;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .acc-item .acc-inner._active .acc-body {
            height: auto;
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        .acc-item .acc-inner._active .arrow {
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        }

        .acc-item .acc-head {
            padding: 16px;
            width: 100%;
            text-align: left;
            color: #fff;
            background: none;
            border: none;
            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;
            background-color: var(--site-bg-deep);
            -webkit-transition: background-color 0.3s ease, color 0.3s ease;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .acc-item .acc-head h3 {
            margin: 0;
            padding: 0;
            margin-right: 10px;
            font-size: 22px;
        }

        .acc-item .acc-head .arrow {
            -webkit-transition: -webkit-transform 0.3s ease 0s;
            transition: -webkit-transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s;
            transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        }

        .acc-item .acc-head .arrow img {
            display: block;
            width: 25px;
            margin: 0;
        }

        .acc-item .acc-body {
            overflow: hidden;
            height: 0;
            opacity: 0;
            -webkit-transform: translateY(-20px);
            -ms-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
            transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        }

        .acc-item .acc-body p {
            padding: 0;
            margin: 0;
            font-size: 16px;
            padding: 20px;
        }

        .trustpilot_container {
            display: -ms-grid;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .trustpilot_item {
            margin-top: 16px;
            border-radius: 8px;
            padding: 24px;
            border: 1px solid #e5e5dd;
            background-color: #fff;
            height: -webkit-fit-content;
            height: -moz-fit-content;
            height: fit-content;
        }

        .trustpilot-link a {
            display: block;
            text-align: center;
            padding: 10px 0 0;
        }

        .trustpilot_item p,
        .trustpilot_item h2,
        .trustpilot_item h3 {
            margin: 0;
            padding: 0;
            color: #000;
        }

        .trustpilot_top {
            margin-bottom: 16px;
            border-bottom: 1px solid #e5e5dd;
            padding-bottom: 16px;
        }

        .trustpilot_content {
            width: 100%;
            margin-top: 16px;
        }

        .trustpilot_bottom {
            margin-top: 16px;
            border-top: 1px solid #e5e5dd;
            padding-top: 16px;
        }

        .trustpilot_top,
        .trust_header,
        .trustpilot_bottom {
            width: 100%;
            position: relative;
            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;
        }

        .trustpilot_header,
        .trust_foot,
        .trust_cont,
        .trust_header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .trustpilot_avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .trustpilot_avatar img {
            display: block;
            width: 100%;
            height: 100%;
            max-width: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .trustpilot_info {
            margin-left: 8px;
        }

        .trustpilot_info p {
            margin: 0;
        }

        .trustpilot_info h3 {
            font-style: normal !important;
            margin-bottom: 0;
            margin-top: 0;
            font-size: 16px !important;
            color: #000;
            font-weight: 600;
        }

        .trustpilot_header,
        .trust_foot,
        .trust_cont,
        .trust_header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .trustpilot_info p,
        .trustpilot_info span {
            font-size: 14px;
            font-weight: 400;
            color: #696a6a;
        }

        .trustpilot_info .trust_local {
            margin-left: 12px;
        }

        .trustpilot_info p,
        .trustpilot_info span {
            font-size: 14px;
            font-weight: 400;
            color: #696a6a;
        }

        .trustpilot_content {
            width: 100%;
            margin-top: 16px;
        }

        .trustpilot_header,
        .trust_foot,
        .trust_cont,
        .trust_header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .trustpilot_content .trust_star {
            width: 108px;
            height: 20px;
        }

        .trustpilot_content .trust_star img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .trustpilot_content .trust_update p {
            color: #696a6a;
            font-size: 14px;
        }

        .trustpilot_content .trust_head {
            margin-top: 12px;
        }

        .trustpilot_content .trust_head p {
            margin: 12px 0;
            color: #000;
        }

        .trustpilot_content .trust_head h3 {
            color: #000;
            font-size: 20px !important;
        }

        .trust_date {
            font-size: 14px;
            color: #000;
        }

        .trustpilot_bottom {
            margin-top: 16px;
            border-top: 1px solid #e5e5dd;
            padding-top: 16px;
        }

        .trustpilot_top,
        .trust_header,
        .trustpilot_bottom {
            width: 100%;
            position: relative;
            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;
        }

        .trustpilot_header,
        .trust_foot,
        .trust_cont,
        .trust_header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .trust_like,
        .trust_share {
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .trust_like p,
        .trust_share p {
            margin-left: 4px;
            font-size: 14px;
            color: #696a6a;
            font-weight: 300;
        }

        .trust_like p span,
        .trust_share p span {
            font-weight: 600;
            margin-left: 4px;
        }

        .trust_foot div:last-child {
            margin-left: 30px;
        }

        .contact-form {
            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: 450px;
            width: 100%;
            margin: 20px auto;
        }

        .contact-form label {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .contact-form span {
            margin-bottom: 5px;
        }

        .contact-form input,
        .contact-form textarea {
            display: block;
            width: 100%;
            padding: 12px;
            line-height: 1;
            border-radius: 5px;
            background: none #fff;
            border: none;
            -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
            color: #3b2859;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
            text-transform: none;
            letter-spacing: normal;
            resize: none;
        }

        .contact-form input::-webkit-input-placeholder,
        .contact-form textarea::-webkit-input-placeholder {
            color: #3b2859;
        }

        .contact-form input::-moz-placeholder,
        .contact-form textarea::-moz-placeholder {
            color: #3b2859;
        }

        .contact-form input:-ms-input-placeholder,
        .contact-form textarea:-ms-input-placeholder {
            color: #3b2859;
        }

        .contact-form input::-ms-input-placeholder,
        .contact-form textarea::-ms-input-placeholder {
            color: #3b2859;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #3b2859;
        }

        .contact-form button {
            padding: 12px 30px;
            margin: 15px auto 0;
        }

        .logos-list {
            padding: 0;
            list-style-type: none;
            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;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 10px
        }

        .footer .payment-list {
            margin-bottom: 15px;
            gap: 15px;
        }

        .footer .security-list {
            margin-bottom: 20px;
            gap: 15px;
        }

        .logos-item {
            padding: 0 !important;
        }

        .logos-inner {
            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;
            text-decoration: none;
            background: none;
            border: none;
            opacity: 0.7;
            -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
        }

        .payment-list .logos-inner,
        .security-list .logos-inner {
            max-width: 120px;
            height: 60px;
            padding: 10px;
        }

        .providers-list .logos-inner {
            max-width: 170px;
            height: 65px;
            padding: 10px;
        }

        .logos-inner:hover {
            opacity: 1;
        }

        .logos-inner img {
            display: block;
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            margin: 0 auto;
        }

        @media (max-width: 767.98px) {

            .payment-list .logos-inner,
            .security-list .logos-inner {
                max-width: 100px;
                height: 45px;
                padding: 10px;
            }

            .providers-list .logos-inner {
                max-width: 135px;
                height: 45px;
                padding: 5px;
            }
        }

        .games-list {
            padding: 0;
            list-style-type: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: -8px;
        }

        .game {
            padding: 0 !important;
            user-select: none;
            width: 20%;
            max-width: 215px;
        }

        .game-inner {
            margin: 8px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
            -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        }

        .game-inner:hover {
            -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            transform: translateY(-5px);
            box-shadow: 0 14px 28px rgba(5, 8, 24, 0.35), 0 0 0 2px rgba(247, 201, 72, 0.28);
        }

        .game-image img {
            display: block;
            max-width: 100%;
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .game-inner:hover .game-image img {
            transform: scale(1.1);
        }

        .game-overlay {
            position: absolute;
            z-index: 1;
            width: 0;
            height: 0;
            border-radius: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(13, 19, 43, 0.78);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
        }

        .game-inner:hover .game-overlay {
            width: 150%;
            height: 150%;
            opacity: 1;
        }

        .game-overlay img {
            display: block;
            width: 35px;
            height: 35px;
        }

        @media (max-width: 1199.98px) {
            .game {
                width: 33.333%;
            }
        }

        @media (max-width: 599.98px) {
            .game {
                width: 50%;
            }
        }

        .columns {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .columns .column {
            padding: 8px;
        }

        .columns.col-3 .column {
            width: 33.333%;
        }

        .columns.col-2 .column {
            width: 50%;
        }

        @media (max-width: 1199.98px) {
            .columns.col-3 .column {
                width: 50%;
            }
        }

        @media (max-width: 599.98px) {
            .columns .column {
                padding: 0;
            }

            .columns.col-3 .column {
                width: 100%;
            }

            .columns.col-2 .column {
                width: 100%;
            }
        }

        table {
            border-collapse: collapse;
            color: #fff;
            margin: 0 auto;
            width: 100%;
        }

        thead tr,
        tbody tr:nth-child(even) {
            background-color: var(--site-bg-deep);
        }

        thead tr th:not(:last-child),
        thead tr td:not(:last-child),
        tbody tr:nth-child(even) th:not(:last-child),
        tbody tr:nth-child(even) td:not(:last-child) {
            border-right: 2px solid var(--site-surface-soft);
        }

        tbody tr:nth-child(odd) {
            background-color: var(--site-surface-soft);
        }

        tbody tr:nth-child(odd) th:not(:last-child),
        tbody tr:nth-child(odd) td:not(:last-child) {
            border-right: 2px solid var(--site-bg-deep);
        }

        table th,
        table td {
            padding: 10px;
        }

        table p {
            padding: 0 !important;
            margin: 0 !important;
        }

        @media (max-width: 1199.98px) {
            .content-image {
                min-height: 400px;
            }

            .content-image .overlay p {
                font-size: 32px;
                line-height: 36px;
            }

            .trustpilot_container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1240px) {
            .main {
                padding-top: 114px;
            }

            .container {
                max-width: 1330px;
                padding: 0 15px;
            }

            .header-inner {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

            .header-top {
                width: 100%;
                -webkit-box-flex: unset;
                -ms-flex: unset;
                flex: unset;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
            }

            .header-logo {
                -webkit-box-flex: unset;
                -ms-flex: unset;
                flex: unset;
            }

            .header-burger-wrap {
                -webkit-box-flex: unset;
                -ms-flex: unset;
                flex: unset;
            }

            .header-burger {
                display: block;
            }

            .header-buttons {
                -webkit-box-flex: unset;
                -ms-flex: unset;
                flex: unset;
                width: 100%;
                margin-bottom: 8px;
            }

            .header-button {
                min-height: unset;
                min-width: unset;
                padding: 10px 20px;
                width: 100%;
            }

            .mnav .menu-item a {
                font-size: 20px;
                line-height: 22px;
                padding: 13px 25px;
            }

            .content-inner {
                padding: 15px 0;
                font-size: 16px;
                line-height: 22px;
            }

            .content-inner h1 {
                font-size: 28px;
                line-height: 34px;
            }

            .content-inner h2 {
                font-size: 26px;
                line-height: 30px;
            }

            .content-inner h3 {
                font-size: 20px;
            }

            .content-inner h2,
            .content-inner h3,
            .content-inner span {
                scroll-margin: 124px 0 0;
            }

            .content-image {
                min-height: 330px;
            }

            .content-image .overlay {
                padding: 25px;
                margin: 10px;
            }

            .content-image .overlay p {
                font-size: 28px;
                line-height: 34px;
            }

            .acc-item .acc-head {
                padding: 15px;
            }

            .acc-item .acc-head h3 {
                font-size: 20px;
            }

            .acc-item .acc-head {
                font-size: 18px;
            }

            .acc-item .acc-body p {
                padding: 15px;
            }
        }

        @media (max-width: 767.98px) {
            .error-404 h1 {
                font-size: 30px;
                line-height: 36px;
            }

            .error-404 p {
                font-size: 16px;
                line-height: 20px;
            }

            .footer-nav .menu {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

            .mnav .menu-item a {
                font-size: 18px;
                line-height: 20px;
            }

            .content-inner {
                padding: 10px 0;
            }

            .content-inner h1 {
                font-size: 26px;
                line-height: 30px;
            }

            .content-inner h2 {
                font-size: 22px;
                line-height: 26px;
            }

            .content-image {
                min-height: 250px;
            }

            .content-image .overlay {
                padding: 20px;
            }

            .content-image .overlay p {
                font-size: 24px;
                line-height: 30px;
            }

            .acc-item .acc-head {
                padding: 13px;
            }

            .acc-item .acc-head h3 {
                font-size: 18px;
            }

            .acc-item .acc-body p {
                padding: 13px;
                font-size: 15px;
            }

            .trustpilot_container {
                display: block;
            }

            table {
                display: block;
                width: 100%;
            }

            table tbody,
            table thead {
                display: block;
            }

            table tr {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                width: 100%;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                text-align: center;
            }

            table th,
            table td {
                display: block;
                width: 100%;
            }

            thead tr,
            tbody tr:nth-child(even) {
                background-color: var(--site-bg-deep);
            }

            thead tr th:not(:last-child),
            thead tr td:not(:last-child),
            tbody tr:nth-child(even) th:not(:last-child),
            tbody tr:nth-child(even) td:not(:last-child) {
                border-right: none;
                border-bottom: 2px solid var(--site-surface-soft);
            }

            tbody tr:nth-child(odd) {
                background-color: var(--site-surface-soft);
            }

            tbody tr:nth-child(odd) th:not(:last-child),
            tbody tr:nth-child(odd) td:not(:last-child) {
                border-right: none;
                border-bottom: 2px solid var(--site-bg-deep);
            }
        }

        @media (max-width: 599.98px) {

            .mnav .menu-item a:hover,
            .mnav .menu-item a:focus {
                padding-left: 40px;
            }

            .mnav .menu-item.current>a {
                padding-left: 40px;
            }

            .acc-item .acc-head {
                font-size: 16px;
            }

            .acc-item .acc-head h3 {
                font-weight: 500;
            }
        }

        @media (max-width: 479.98px) {
            .mnav-inner {
                max-width: 100%;
            }
        }

        @media (pointer: fine) {

            a,
            button,
            input[type="submit"],
            .pic {
                cursor: pointer;
            }
        }

        @media (pointer: coarse) {

            a,
            button,
            input[type="submit"],
            .pic {
                cursor: default;
                -webkit-tap-highlight-color: transparent;
            }
        }

        .promo-list {
            padding: 0;
            list-style-type: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin: -8px;
        }

        .promo-list ul {
            list-style-type: disc;
        }

        .promo-list.col-2 .promo {
            width: 50%;
            max-width: 500px;
            margin: 0 auto;
        }

        .promo {
            padding: 0 !important;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 33.333%;
        }

        .promo-inner {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            padding: 20px;
            margin: 8px;
            background-color: var(--site-surface);
            border-radius: 15px;
            -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
            overflow: hidden;
        }

        .promo-inner:hover {
            background-color: var(--site-surface-soft);
            -webkit-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(5, 8, 24, 0.25);
        }

        .promo-inner h3 {
            text-align: center;
            margin: 0 0 10px 0;
        }

        .promo-image {
            margin-bottom: 10px;
            margin: -20px -20px 15px;
        }

        .promo-image img {
            display: block;
            max-width: 100%;
            width: 100%;
            height: auto;
        }

        .promo-text {
            text-align: left;
        }

        @media (max-width: 1199.98px) {
            .promo {
                width: 50%;
            }
        }

        @media (max-width: 767.98px) {
            .promo {
                width: 100% !important;
                max-width: 500px;
                margin: 0 auto;
            }

            .promo-inner {
                padding: 15px;
            }

            .promo-image {
                margin: -15px -15px 15px;
            }
        }

        .table-link {
            text-decoration: underline;
            color: var(--site-accent);
        }

        .table-link:hover {
            text-decoration: none;
        }

        .BigBillyBob {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            margin-right: 0.5rem;
            background-color: #ffdebf;
            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;
            text-align: center;
            color: #000;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 700;
        }

        .BigBillyBob--person1 {
            background-color: #d1f9ea;
        }

        .BigBillyBob--person2 {
            background-color: #d1f9ea;
        }

        .BigBillyBob--person3 {
            background-color: #fffbd6;
        }

        .BigBillyBob--person4 {
            background-color: #ffdebf;
        }

        .BigBillyBob--person5 {
            background-color: #ef6c00;
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: 500;
        }

        .BigBillyBob--person6 {
            background-color: #004d40;
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: 500;
        }

        .BigBillyBob--person7 {
            background-color: #fddce5;
        }

        .BigBillyBob--person8 {
            background-color: #78909c;
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: 500;
        }

        .BigBillyBob--person9 {
            background-color: #f4511e;
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: 500;
        }

        .BigBillyBob--person10 {
            background-color: #bf360c;
            color: rgb(255, 255, 255);
            font-size: 24px;
            font-weight: 500;
        }

        .faq__item-n {
            border-radius: 8px;
            background: #0f1428;
            padding: 16px;
            margin-bottom: 16px;
        }

        .lang_block {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 !important;
            position: relative;
            z-index: 1
        }

        .lang_list {
            max-width: 62px;
            padding-left: 0;
            top: -10px;
            position: absolute;
            overflow: hidden;
            height: 0;
            opacity: 0;
            -webkit-transform: translateY(50px);
            -ms-transform: translateY(50px);
            transform: translateY(50px);
            -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
            transition: opacity 0.3s ease, -webkit-transform .3s ease;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
        }

        .lang_block.active .lang_list {
            height: auto;
            opacity: 1;
        }

        .lang_list button {
            background-color: #fff;
            display: flex;
            gap: 2px;
            align-items: center;
        }

        .lang_list button:hover {
            background-color: var(--bg-sec)
        }

        .selected_lang {
            max-width: 62px;
            border: 0;
            padding: 10px;
            display: flex;
            align-items: center;
            background-color: var(--site-bg);
            color: #fff;
            gap: 4px;
        }

        .lang_list li img {
            width: 20px;
            object-fit: cover;
        }

        .lang_list li {
            background-color: var(--site-bg);
            padding: 10px;
        }

        .lang_list li a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            color: #fff;
            text-decoration: none;
            gap: 4px;
        }

        @media (max-width: 768px) {
            .mult-table {
                overflow: scroll;
            }

            .mult-table table {
                display: table !important;
                width: 100% !important;
                border: 1px solid #000;
            }

            .mult-table table thead,
            .mult-table table tbody {
                display: table-header-group !important;
                display: table-row-group !important;
            }

            .mult-table table tr {
                display: table-row !important;
                width: auto !important;
                flex-direction: row !important;
                -webkit-box-orient: horizontal !important;
                -webkit-box-direction: normal !important;
                -ms-flex-direction: row !important;
                text-align: left !important;
            }

            .mult-table table th,
            .mult-table table td {
                display: table-cell !important;
                width: auto !important;
                border: 1px solid #000;
            }
        }

        .providers-list {
            gap: 15px;
        }

        .lang_list img {
            width: 20px;
            height: 13px
        }

        .selected_lang img {
            width: 20px;
            height: 13px
        }

:root {
            --bg-main: #fff;
            --color-main: #1d1d1d;
        }

        .no-scroll {
            overflow: hidden
        }

        #custom-alert-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .6);
            z-index: 999;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center
        }

        #custom-alert {
            opacity: 1;
            transition: opacity .2s ease-in-out;
            position: relative;
            padding: 20px;
            width: 300px;
            background-color: var(--bg-main);
            color: var(--color-main);
            font-size: 14px;
            line-height: 18px;
            border-radius: 8px;
            -webkit-box-shadow: 0 4px 10px rgba(67, 67, 67, .4);
            box-shadow: 0 4px 10px rgba(67, 67, 67, .4);
            text-align: center;
            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
        }

        #custom-alert-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px
        }

        #close-alert {
            position: absolute;
            width: 40px;
            height: 40px;
            top: 0;
            right: 2px;
            background: 0 0;
            border: none;
            cursor: pointer
        }

        #ok-button {
            margin-top: 15px;
            cursor: pointer
        }

        #custom-alert-ok {
            margin-top: 12px;
        }

        .oficcial-greeting__button {
            color: var(--site-accent-dark);
            font-weight: 700;
            padding: 12px 20px;
            text-transform: uppercase;
            background: var(--site-accent);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .oficcial-greeting__button:hover {
            background: var(--site-accent-hover);
            box-shadow: 0 10px 22px rgba(247, 201, 72, 0.25);
            transform: translateY(-2px);
        }


.reviews-section {
  margin: 40px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  background: var(--site-bg-deep);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  height: 100%;
  border: 1px solid rgba(247, 201, 72, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 201, 72, 0.3);
  box-shadow: 0 14px 28px rgba(5, 8, 24, 0.28);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--site-text-muted);
}

.review-card__rating {
  font-size: 14px;
  line-height: 1;
  color: var(--site-accent);
  white-space: nowrap;
  letter-spacing: 1px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #d3d7e6;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 18px;
    border-radius: 16px;
  }

}
