:root {
    /* body */
    --body-min-width: 20rem;
    --body-max-width: 100%;
    /* --body-background-color-rgb: rgb(20, 20, 20);
	--body-background-color: 20, 20, 20; */
    --body-background-color-rgb: rgb(13, 5, 2);
    --body-background-color: 13, 5, 2;
    --content-bg-rgb: rgb(242, 242, 239);
    --content-bg: 242, 242, 239;
    /* container */
    --container-width: 87.5rem;
    /* fonts */
    --font-0: "Spectral", "Times New Roman", Times, serif;
    --font-1: "Philosopher", "Open Sans", Tahoma, Arial, sans-serif;
    --font-2: "Montserrat", Arial, sans-serif;
    --font-3: "Alice", "Times New Roman", Times, serif;
    --font-ico: "gwi";
    /* colors */
    --color-light-rgb: rgb(232, 209, 166);
    --color-light: 232, 209, 166;
    --color-dark-rgb: rgb(0, 0, 0);
    --color-dark: 0, 0, 0;
    --color-red-rgb: rgb(255, 59, 59);
    --color-red: 255, 59, 59;
    --color-yellow-rgb: rgb(255, 255, 0);
    --color-yellow: 255, 255, 0;
    --color-orange-rgb: rgb(255, 165, 0);
    --color-orange: 255, 165, 0;
    --color-pink-rgb: rgb(255, 192, 203);
    --color-pink: 255, 192, 203;
    --color-purple-rgb: rgb(128, 0, 128);
    --color-purple: 128, 0, 128;
    --color-blue-rgb: rgb(68, 132, 216);
    --color-blue: 68, 132, 216;
    --color-green-rgb: rgb(67, 248, 67);
    --color-green: 67, 248, 67;
    --color-grey-rgb: rgb(128, 128, 128);
    --color-grey: 128, 128, 128;
    --color-white-rgb: rgb(255, 255, 255);
    --color-white: 255, 255, 255;
    --color-black-rgb: rgb(0, 0, 0);
    --color-black: 0, 0, 0;
    --color-brown-rgb: rgb(165, 42, 42);
    --color-brown: 165, 42, 42;
    --color-aqua-rgb: rgb(0, 255, 255);
    --color-aqua: 0, 255, 255;
    /* color palette */
    --color-0-rgb: rgb(255, 233, 211);
    --color-0: 255, 233, 211;
    --color-1-rgb: rgb(255, 255, 255);
    --color-1: 255, 255, 255;
    --color-2-rgb: rgb(255, 186, 99);
    --color-2: 255, 186, 99;
    --color-3-rgb: #fff;
    --color-3: #fff;
    --color-4-rgb: #fff;
    --color-4: #fff;
    --color-5-rgb: #fff;
    --color-5: #fff;
    --color-6-rgb: #fff;
    --color-6: #fff;
    --color-7-rgb: #fff;
    --color-7: #fff;
    --color-8-rgb: #fff;
    --color-8: #fff;
    --color-9-rgb: #fff;
    --color-9: #fff;
    --color-accent-rgb: rgb(255, 186, 112);
    --color-accent: 255, 186, 112;
    --color-accent-hover-rgb: rgb(255, 143, 23);
    --color-accent-hover: 255, 143, 23;
    /* --color-accent-rgb: rgb(255, 168, 1);
	--color-accent: 255, 168, 1;

	--color-accent-hover-rgb: rgb(255, 202, 26);
	--color-accent-hover: 255, 202, 26; */
    --color-accent-2-rgb: rgb(255, 136, 0);
    --color-accent-2: 255, 136, 0;
    --color-accent-2-hover-rgb: rgb(255, 136, 0);
    --color-accent-2-hover: 255, 136, 0;
    /* other colors */
    --color-url-rgb: rgb(255, 186, 112);
    --color-url: 255, 186, 112;
    --color-url-hover-rgb: rgb(255, 155, 49);
    --color-url-hover: 255, 155, 49;
    /* input */
    --input-width: auto;
    --input-height: 3.125rem;
    --input-bg: #18130d;
    --input-border: 1px solid #482e1e;
    --input-border-radius: 0.625rem;
    --input-color: rgb(255, 186, 112);
    --input-text-align: left;
    --input-font-family: var(--font-0);
    --input-font-size: 1rem;
    --input-font-weight: 400;
    --input-padding: 0.1875rem 0.625rem;
    --input-box-shadow: none;
    --input-outline: none;
    --input-disabled-bg: #3d3d3d;
    /* input:placeholder */
    --input-placeholder-color: #81674e;
    --input-placeholder-color-focus: transparent;
    /* input:focus */
    --input-focus-width: var(--input-width);
    --input-focus-height: var(--input-height);
    --input-focus-bg: var(--input-bg);
    --input-focus-border: var(--input-border);
    --input-focus-border-radius: var(--input-border-radius);
    --input-focus-color: var(--input-color);
    --input-focus-text-align: var(--input-text-align);
    --input-focus-font-family: var(--input-font-family);
    --input-focus-font-size: var(--input-font-size);
    --input-focus-font-weight: var(--input-font-weight);
    --input-focus-padding: var(--input-padding);
    --input-focus-box-shadow: var(--input-box-shadow);
    --input-focus-outline: var(--input-outline);
    --input-focus-disabled-bg: var(--input-disabled-bg);
    /* margin */
    --margin: 0.625rem;
    --margin-x2: calc(var(--margin * 2));
    --margin-half: calc(var(--margin) / 2);
    --margin-third: calc(var(--margin) / 3);
    --negative-margin: calc(var(--margin) * -1);
    /* other */
    --border-radius: 0.3125rem;
    --border-width: 1px;
    --border-type: solid;
    --border-color: rgba(255, 178, 111, 0.14);
    --border: var(--border-width) var(--border-type) var(--border-color);
    --shadow: 0px 0.4375rem 3.375rem rgba(36, 30, 10, 0.1);
    --thumb-url: url(../images/thumb.jpg);
    --arrow-down: url(../images/icons/arrow-down.svg);
    --arrow-down-width: 1rem;
    --arrow-down-height: 0.625rem;
    --icon-play: url(../images/icons/play.png);
    /* table */
    --table-heading-bg: #727272;
    --table-bg: #c9c9c9;
    --table-border-width: 1px;
    --table-border-type: solid;
    --table-border-color: rgba(59, 59, 59, 0.21);
    /* tippy */
    --tippy-bg-color: #fff;
    --tippy-text-color: rgba(var(--color-1), 1);
    --tippy-font-size: 0.875rem;
    --tippy-border-radius: 0.625rem;
    --tippy-border-color: #f1c93c;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
    border-color: rgba(0, 0, 0, 0.15);
}

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

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;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

button,
input {
    /* 1 */
    overflow: visible;
}

button,
select {
    /* 1 */
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -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 {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -0.125rem;
    /* 2 */
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

img {
    border-style: none;
    display: inline-block;
    max-width: 100%;
}

video,
iframe {
    max-width: 100%;
}

a {
    background-color: transparent;
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-url), 1);
    transition-duration: 0.2s;
    transition-property: opacity, color, background-color;
    outline: 0;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* убираем выделение ссылок пунктирной рамкой в FF и IE */
a:active,
a:focus {
    outline: 0;
}

::-webkit-input-placeholder {
    color: #81674e;
    color: var(--input-placeholder-color);
    opacity: 1;
}

::-moz-placeholder {
    color: #81674e;
    color: var(--input-placeholder-color);
    opacity: 1;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #81674e;
    color: var(--input-placeholder-color);
    opacity: 1;
}

/* Firefox 18- */
:-ms-input-placeholder {
    color: #81674e;
    color: var(--input-placeholder-color);
    opacity: 1;
}

:focus::-webkit-input-placeholder {
    color: transparent;
    color: var(--input-placeholder-color-focus);
}

:focus::-moz-placeholder {
    color: transparent;
    color: var(--input-placeholder-color-focus);
}

:focus:-moz-placeholder {
    color: transparent;
    color: var(--input-placeholder-color-focus);
}

:focus:-ms-input-placeholder {
    color: transparent;
    color: var(--input-placeholder-color-focus);
}

/* gwi */
[class^="gwi_"]:before,
[class*=" gwi_"]:before {
    margin: 0;
    width: auto;
}

/* list */
ul,
ol {
    padding-left: 1.375em;
    margin: 0.625em 0;
}

/* table */
table {
    border: 1px solid rgba(59, 59, 59, 0.21);
    border: var(--table-border-width) var(--table-border-type) var(--table-border-color);
    border-collapse: collapse;
    background-color: #141210;
    border-radius: 0.125rem;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
}

td,
th {
    border: 1px solid rgba(255, 178, 111, 0.14);
    border: var(--border);
    padding: 0.625em 1em;
}

th {
    color: rgb(237, 159, 77);
    background-color: rgb(32, 26, 22);
    font-weight: bold;
}

tr:where(:nth-child(odd)) {
    background-color: #1b1916;
}

/* scrollbar */
::-webkit-scrollbar {
    width: max(0.375rem, 0.375rem);
    height: max(0.125rem, 0.125rem);
    background-color: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb {
    background-color: #6b4725;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9b6635;
}

/* main */
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 100%;
    font-weight: 400;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    cursor: default;
}

/* @media (--v5) {
		font-size: 87%;
	}

	@media (--v8) {
		font-size: 100%;
	} */
@media (min-width: 1200px) {
    html {
        font-size: calc(max(0.5vw, 0.25rem) + max(0.5vh, 0.25rem))
    }
}

/* overflow-x: clip;
	overflow: hidden; */
@media (min-width: 2060px) {
    html {
        font-size: calc(max(0.4vw, 0.25rem) + max(0.6vh, 0.25rem))
    }
}

@media (min-width: 2600px) AND (min-height: 1000px) {
    html {
        font-size: calc(max(0.2vw, 0.25rem) + max(1.1vh, 0.3125rem))
    }
}

@media (min-width: 1200px) AND (min-height: 750px) {
    .section-slider-active {
        overflow: hidden;
        margin: 0 !important
    }
}

@media (min-width: 2600px) AND (max-height: 1100px) {
    .section-slider-active {
        overflow: auto
    }
}

@media (min-width: 1200px) AND (min-height: 750px) {
    .section-slider-active body {
        margin: 0 !important
    }
}

.section-slider-active [data-section="navigation"] {
    margin-right: 0 !important;
}

body {
    top: 0 !important;
    position: relative !important;
    z-index: 0;
    overflow-x: clip;
    margin: 0;
    background-color: rgba(13, 5, 2, 1);
    background-color: rgba(var(--body-background-color), 1);
    background-image: none;
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 20rem;
    min-width: var(--body-min-width);
    display: flex;
    flex-direction: column;
}

.page {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    min-width: 20rem;
    min-width: var(--body-min-width);
    max-width: 100%;
    max-width: var(--body-max-width);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: 0.3s all;
    box-sizing: border-box;
}

.section {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.container {
    max-width: calc(87.5rem + 0.625rem * 4);
    max-width: calc(var(--container-width) + var(--margin) * 4);
    width: 100%;
    min-width: 0;
    padding-right: calc(0.625rem * 2);
    padding-right: calc(var(--margin) * 2);
    padding-left: calc(0.625rem * 2);
    padding-left: calc(var(--margin) * 2);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.container_fluid {
    max-width: 100%;
}

.spacer {
    flex-grow: 1;
    min-height: 12.5rem;
}

.compensate-navigation {
    height: 4.375rem;
    height: var(--navigation-height);
    box-sizing: border-box;
}

.decline {
    height: 0.125rem;
    background-color: #626262;
    -webkit-mask: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 12.5rem,
            rgb(0, 0, 0) calc(100% - 12.5rem),
            rgba(0, 0, 0, 0) 100%);
    mask: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 12.5rem,
            rgb(0, 0, 0) calc(100% - 12.5rem),
            rgba(0, 0, 0, 0) 100%);
}

.decline_pos_bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
}

.decline_pos_top {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
}

/* link */
.link {
    text-decoration: underline;
    color: currentColor;
}

.link:hover {
    text-decoration: none;
}

.link_tdn {
    text-decoration: none;
}

.link_hover_tdu:hover {
    text-decoration: underline;
}

/* gwtab */
[data-tab] {
    display: none;
    opacity: 0;
    -webkit-animation: tab 1s ease forwards;
    animation: tab 1s ease forwards;
}

@-webkit-keyframes tab {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tab {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* scroll */
.scroll {
    overflow-x: auto;
    scrollbar-width: none;
    /* padding-bottom: 22px; */
}

.scroll::-webkit-scrollbar {
    width: max(0.3125rem, 0.3125rem);
    height: max(0.75rem, 0.75rem);
    /* background-color: rgba(221, 221, 221, 1); */
    /* border-radius: calc(max(0.3125rem, 5px) * var(--g-size)); */
    /* border-top: 20px solid rgba(0, 0, 0, 0); */
    border-bottom: 0.3125rem solid #212023;
    background-color: transparent;
    /* background: #212023; */
}

.scroll::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* background: rgba(var(--color-accent), 1); */
    height: max(0.3125rem, 0.3125rem);
    width: max(0.3125rem, 0.3125rem);
    /* border-radius: calc(max(0.3125rem, 5px) * var(--g-size)); */
    border-top: max(0.5rem, 0.5rem);
    border-bottom: max(0.3125rem, 0.3125rem) solid rgba(255, 165, 0, 1);
    border-bottom: max(0.3125rem, 0.3125rem) solid rgba(var(--color-orange), 1);
}

/* author */
.author {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-size: 0.75rem;
    color: rgba(#fff, 1);
    color: rgba(var(--color-4), 1);
    text-decoration: none;
    transition: 0.2s all;
}

@media (min-width: 1050px) {
    .author {
        font-size: 0.875rem
    }
}

@media (min-width: 1200px) {
    .author {
        justify-content: flex-end;
        text-align: right
    }
}

[href].author:hover {
    color: rgba(255, 255, 255, 1);
    color: rgba(var(--color-1), 1);
}

.author__logo_ml {
    margin-left: 0.1875rem;
}

/* auth */
.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 2.5rem;
    gap: 2.5rem;
}

.auth__btn {
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    transition: 0.2s all;
    text-transform: uppercase;
}

.auth__btn:hover {
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
}

/* title */
.title {
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

@media (min-width: 720px) {
    .title {
        font-size: 3.125rem
    }
}

@media (min-width: 1200px) {
    .title {
        font-size: 4.5rem
    }
}

.title_size_small {
    font-size: 1.75rem;
}

@media (min-width: 720px) {
    .title_size_small {
        font-size: 2.125rem
    }
}

@media (min-width: 1200px) {
    .title_size_small {
        font-size: 2.625rem
    }
}

/* subtitle */
.subtitle {
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 720px) {
    .subtitle {
        font-size: 1.125rem
    }
}

@media (min-width: 1200px) {
    .subtitle {
        font-size: 1.375rem
    }
}

.subtitle_size_small {
    font-size: 0.875rem;
}

@media (min-width: 720px) {
    .subtitle_size_small {
        font-size: 0.9375rem
    }
}

@media (min-width: 1200px) {
    .subtitle_size_small {
        font-size: 1rem
    }
}

/* ttl */
.ttl {
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    margin: 0;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 840px) {
    .ttl {
        font-size: 1.5rem
    }
}

.ttl_mt {
    margin-top: 1rem;
}

.ttl_mb {
    margin-bottom: 1rem;
}

.ttl_size_large {
    font-size: 1.5rem;
}

@media (min-width: 840px) {
    .ttl_size_large {
        font-size: 2.125rem
    }
}

/* heading */
.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.heading_mb {
    margin-bottom: 2.5rem;
}

.heading_mt {
    margin-top: 2.5rem;
}

/* caption  */
.caption {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 0.75rem;
    gap: 0.75rem;
}

.caption_mt {
    margin-top: 1rem;
}

.caption_mt_large {
    margin-top: 1.375rem;
}

.caption_mb {
    margin-bottom: 1rem;
}

.caption_mb_large {
    margin-bottom: 1.375rem;
}

/* list */
.list {
    padding-left: 0;
    list-style-type: none;
    display: grid;
    grid-gap: 1.125rem;
    gap: 1.125rem;
}

.list li {
    position: relative;
    z-index: 0;
    padding-left: 1.75rem;
}

.list li:before {
    content: "";
    background-color: rgba(255, 186, 112, 1);
    background-color: rgba(var(--color-accent), 1);
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 0.5625rem;
    height: 0.5625rem;
    /* border-radius: 50%; */
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* itm */
.itm {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 0.5rem;
    gap: 0.5rem;
}

.itm__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    margin: 0;
    text-transform: uppercase;
}

.itm__box {
    padding-top: 0.3125rem;
}

/* cover */
.cover {
    width: 100%;
    display: block;
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
}

.cover_mb {
    margin-bottom: 1rem;
}

/* tablebox */
.tbl {
    background-color: rgb(242, 240, 237);
    border-radius: 0.375rem;
    box-sizing: border-box;
    padding: 0.375rem 0.625rem;
    font-family: "Philosopher", "Open Sans", Tahoma, Arial, sans-serif;
    font-family: var(--font-1);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 100%;
    overflow-x: auto;
}

@media (min-width: 840px) {
    .tbl {
        padding: 1rem 1.875rem
    }
}

.tbl__table {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgb(69, 69, 69);
}

@media (min-width: 840px) {
    .tbl__table {
        min-width: 62.5rem
    }
}

.tbl__tr {
    background: transparent;
}

.tbl__tr:where(:nth-child(even)) {
    display: table-row;
    border: 0;
    position: relative;
    z-index: 0;
}

.tbl__tr:where(:nth-child(even)):after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(227, 223, 218);
    border-radius: 0.25rem;
}

.tbl__td {
    border: 0;
    padding: 0.375rem 0.625rem;
}

@media (min-width: 840px) {
    .tbl__td {
        padding: 0.9375rem 2.8125rem
    }
}

.tbl__td_head {}

.tbl__td_mobile_hide {
    display: none;
}

@media (min-width: 840px) {
    .tbl__td_mobile_hide {
        display: table-cell
    }
}

/* tblbox */
.tblbox {
    max-width: 100%;
    overflow: auto;
    min-width: 0;
}

.tblbox>table {
    width: 100%;
    min-width: 56.25rem;
}

/* play */
.play {
    flex-shrink: 0;
    width: 3.125rem;
    height: 3.125rem;
    background-color: transparent;
    background-image: url(../images/icons/play.png);
    background-image: var(--icon-play);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 1.25rem rgba(196, 170, 148, 0.6));
}

/* back */
.back-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0.5rem;
}

.back {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.375rem;
    gap: 0.375rem;
    text-decoration: none;
    color: rgba(var(--color-accent-0), 1);
    font-size: 1.375rem;
    font-weight: 400;
    transition: 0.2s all;
}

.back:hover {
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
}

.back__ico {
    font-size: 0.9em;
}

.back__ico:after {
    content: "←";
    /* content: "\ea40";
	font-family: var(--font-ico); */
    font-style: normal;
}

[type="text"],
[type="email"],
[type="tel"],
[type="url"],
[type="password"],
[type="number"],
[type="search"],
[type="button"],
[type="color"],
[type="time"],
[type="date"],
[type="datetime-local"],
[type="file"],
[type="image"],
[type="month"],
[type="reset"],
[type="week"],
select,
textarea {
    box-sizing: border-box;
    transition: none;
    width: auto;
    width: var(--input-width);
    height: 3.125rem;
    height: var(--input-height);
    background-color: #18130d;
    background-color: var(--input-bg);
    border: 1px solid #482e1e;
    border: var(--input-border);
    border-radius: 0.625rem;
    border-radius: var(--input-border-radius);
    padding: 0.1875rem 0.625rem;
    padding: var(--input-padding);
    color: rgb(255, 186, 112);
    color: var(--input-color);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--input-font-family);
    font-size: 1rem;
    font-size: var(--input-font-size);
    line-height: 1rem;
    line-height: var(--input-font-size);
    font-weight: 400;
    font-weight: var(--input-font-weight);
    text-align: left;
    text-align: var(--input-text-align);
    outline: none;
    outline: var(--input-outline);
    box-shadow: none;
    box-shadow: var(--input-box-shadow);
    min-width: 0;
}

textarea {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    height: 4.375rem;
    resize: none;
    max-height: 4.375rem;
    text-align: left;
    padding: 0.3125rem 0.625rem;
    line-height: calc(1rem + 0.125rem);
    line-height: calc(var(--input-font-size) + 0.125rem);
}

textarea:focus {
    height: auto;
    max-height: none;
    resize: vertical;
}

[type="text"]:focus,
[type="email"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="color"]:focus,
[type="time"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="file"]:focus,
[type="image"]:focus,
[type="month"]:focus,
[type="reset"]:focus,
[type="week"]:focus {
    box-sizing: border-box;
    transition: none;
    width: auto;
    width: var(--input-focus-width);
    height: 3.125rem;
    height: var(--input-focus-height);
    background-color: #18130d;
    background-color: var(--input-focus-bg);
    border: 1px solid #482e1e;
    border: var(--input-focus-border);
    border-radius: 0.625rem;
    border-radius: var(--input-focus-border-radius);
    padding: 0.1875rem 0.625rem;
    padding: var(--input-focus-padding);
    color: rgb(255, 186, 112);
    color: var(--input-focus-color);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--input-focus-font-family);
    font-size: 1rem;
    font-size: var(--input-focus-font-size);
    line-height: 1rem;
    line-height: var(--input-focus-font-size);
    font-weight: 400;
    font-weight: var(--input-focus-font-weight);
    text-align: left;
    text-align: var(--input-focus-text-align);
    outline: none;
    outline: var(--input-focus-outline);
    box-shadow: none;
    box-shadow: var(--input-focus-box-shadow);
    min-width: 0;
}

option {
    background-color: #482e1e;
    color: rgb(255, 186, 112);
    color: var(--input-color);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--input-font-family);
    font-size: 1rem;
    font-size: var(--input-font-size);
    font-weight: 400;
    font-weight: var(--input-font-weight);
    text-align: left;
}

option:hover {
    color: #000;
    background-color: #313131;
}

/* Оформление checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}

.checkbox__label {
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    /*   padding-right: 10px; */
}

.checkbox__name {
    margin-right: 0.625rem;
}

.checkbox__block {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #18130d;
    background-color: var(--input-bg);
    /* background: #ffffff; */
    border: 1px solid #482e1e;
    border: var(--input-border);
    box-sizing: border-box;
    border-radius: 0.1875rem;
    position: relative;
    cursor: pointer;
    margin-right: 0.625rem;
}

.checkbox__block:after {
    font-family: "gwi";
    content: "\e904";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.2s all;
    pointer-events: none;
    font-size: 1.125rem;
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    transform: scale(1.5);
}

.checkbox__input {
    display: none;
}

.checkbox__input:checked+.checkbox__block:after {
    opacity: 1;
    transform: scale(1);
}

.checkbox__content {
    padding-top: 0.1875rem;
}

/* field */
.field {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    transition: none;
    height: 3.125rem;
    height: var(--input-height);
    background-color: #18130d;
    background-color: var(--input-bg);
    border: 1px solid #482e1e;
    border: var(--input-border);
    border-radius: 0.625rem;
    border-radius: var(--input-border-radius);
    padding: 0;
    color: rgb(255, 186, 112);
    color: var(--input-color);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--input-font-family);
    font-size: 1rem;
    font-size: var(--input-font-size);
    line-height: 1rem;
    line-height: var(--input-font-size);
    font-weight: 400;
    font-weight: var(--input-font-weight);
    text-align: left;
    text-align: var(--input-text-align);
    outline: none;
    outline: var(--input-outline);
    box-shadow: none;
    box-shadow: var(--input-box-shadow);
    min-width: 0;
}

.field_inlnie {
    width: auto;
    display: inline-flex;
}

.field_mb {
    margin-bottom: 1rem;
}

.field_mb_xs {
    margin-bottom: 0.3125rem;
}

.field__input,
.field__input:focus {
    border: 0;
    background-color: transparent;
    flex-grow: 1;
    align-self: stretch;
    height: auto;
    min-width: 0;
    width: auto;
}

.field__desc {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.1875rem 0.625rem;
    padding: var(--input-padding);
    background: #51372c;
    border: 1px solid #513e2c;
    box-sizing: border-box;
}

.field__pic {
    width: 2.5rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    color: #81674e;
    color: var(--input-placeholder-color);
}

.field__bonus {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: #ffa114;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3125rem;
    order: 100;
}

.field__bonus~.field__input {
    padding-right: 0.625rem;
}

.field__prefix {
    height: auto;
    width: auto;
    min-width: 0;
    padding: 0 0.9375rem;
    background: #482e1e;
    cursor: pointer;
    border-radius: 0;
}

.field__refresh,
.field__refresh:focus {
    background: #482e1e;
    width: 1.875rem;
    cursor: pointer;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.field__prefix:hover,
.field__prefix:focus,
.field__refresh:hover,
.field__refresh:focus {
    background: #69422a;
}

/* selection */
.selection {
    padding-left: 0;
    padding-right: 2.25rem;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../images/selection-arrow-down.svg) no-repeat calc(100% - 0.3125rem) center;
    font-size: 1.5rem;
    line-height: 1;
    /* color: var(--color-main); */
    font-family: var(--font-primary);
}

/* preload */
.preload {
    background-color: rgb(13, 5, 2);
    min-width: 20rem;
    min-width: var(--body-min-width);
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.64, 0.14, 0.34, 1.32);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 0.625rem;
}

.preload__logo {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.preload_fade {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.4);
}

@-webkit-keyframes preanimateout {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

@keyframes preanimateout {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

.preload__progress {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 0;
    height: 0.3125rem;
    background: rgb(200, 129, 107);
}

.preload__items {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 1.25rem;
    gap: 1.25rem;
    margin-top: 0.9375rem;
}

.preload__item {
    width: 0.875rem;
    height: 0.875rem;
    background: rgb(167, 86, 46);
    border-radius: 50%;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* gw-anime */
[data-gw-anime] {
    opacity: 0;
    transition: 1s all;
}

[data-gw-anime-custom] {
    opacity: 1;
}

.zoomIn {
    -webkit-animation: zoomIn 1s ease forwards;
    animation: zoomIn 1s ease forwards;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.zoomInDown {
    -webkit-animation: zoomInDown 1s ease forwards;
    animation: zoomInDown 1s ease forwards;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-5vh);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-5vh);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.zoomInUp {
    -webkit-animation: zoomInUp 1s ease forwards;
    animation: zoomInUp 1s ease forwards;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(5vh);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(5vh);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeIn {
    -webkit-animation: fadeIn 1s ease forwards;
    animation: fadeIn 1s ease forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeInLeft {
    -webkit-animation: fadeInLeft 1s ease forwards;
    animation: fadeInLeft 1s ease forwards;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation: fadeInRight 1s ease forwards;
    animation: fadeInRight 1s ease forwards;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 1s ease forwards;
    animation: fadeInUp 1s ease forwards;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(5vh);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(5vh);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInDown {
    -webkit-animation: fadeInDown 1s ease forwards;
    animation: fadeInDown 1s ease forwards;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-5vh);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-5vh);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.turnRight {
    -webkit-animation: turnRight 1s ease forwards;
    animation: turnRight 1s ease forwards;
    transform-origin: center;
}

@-webkit-keyframes turnRight {
    0% {
        opacity: 0;
        transform: translateX(-15%) rotate(-15deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes turnRight {
    0% {
        opacity: 0;
        transform: translateX(-15%) rotate(-15deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.turLeft {
    -webkit-animation: turLeft 1s ease forwards;
    animation: turLeft 1s ease forwards;
    transform-origin: center;
}

@-webkit-keyframes turLeft {
    0% {
        opacity: 0;
        transform: translateX(15%) rotate(15deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes turLeft {
    0% {
        opacity: 0;
        transform: translateX(15%) rotate(15deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

/* logo */
:root {
    --logo-height: auto;
}

.logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    flex-shrink: 0;
}

.logo__img {
    display: block;
    margin: 0;
    height: auto;
    height: var(--logo-height);
    width: auto;
}

.logo__img_hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    width: 100%;
}

.logo:hover .logo__img_hover {
    -webkit-animation: logo 0.3s ease;
    animation: logo 0.3s ease;
}

@-webkit-keyframes logo {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes logo {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* logotype */
.logotype {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.75rem;
    position: relative;
    z-index: 0;
}

.logotype__img {
    display: block;
    transition: .3s all;
}

.logotype__img_hover_effect:hover {
    filter: brightness(120%);
}

.logotype__img_hover_animation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: .2s all;
    pointer-events: none;
}

.logotype:hover .logotype__img_hover_animation {
    -webkit-animation: logotype .3s ease;
    animation: logotype .3s ease;
}

@-webkit-keyframes logotype {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: .3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes logotype {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: .3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* button */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5rem;
    gap: 0.5rem;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    flex-shrink: 0;
    font-style: normal;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s all;
    box-shadow: none;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
    outline: 0;
    background: transparent;
    border: 0;
    line-height: 1;
    padding: 0.3125rem 1.5rem;
    min-width: 6.25rem;
    min-height: 2.625rem;
    max-width: 100%;
    will-change: transform;
    text-shadow: 0 1px 0.125rem rgb(0, 0, 0);
}

.button:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.2s all;
    background-image: linear-gradient(to bottom,
            rgb(191, 140, 91),
            rgba(79, 53, 28, 0.8));
    border-radius: 0.1875rem;
}

.button:hover:after {
    filter: brightness(130%);
}

/* btn */
:root {
    --btn-w: 12.5rem;
    --btn-h: 3.125rem;
    --btn-fs: 1rem;
    --btn-scale: 1;
    --btn-img-url: url(../images/btn/btn.png);
    --btn-letter-spacing: 0;
}

@media (min-width: 1200px) {
    :root {
        --btn-fs: 1.25rem
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5rem;
    gap: 0.5rem;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    flex-shrink: 0;
    font-style: normal;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: calc(1rem * 1);
    font-size: calc(var(--btn-fs) * var(--btn-scale));
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s all;
    box-shadow: none;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
    outline: 0;
    background: transparent;
    border: 0;
    line-height: 1;
    padding: 0.3125rem calc(1.875rem * 1);
    padding: 0.3125rem calc(1.875rem * var(--btn-scale));
    min-width: calc(12.5rem * 1);
    min-width: calc(var(--btn-w) * var(--btn-scale));
    height: calc(3.125rem * 1);
    height: calc(var(--btn-h) * var(--btn-scale));
    max-width: 100%;
    text-wrap: balance;
    letter-spacing: 0;
    letter-spacing: var(--btn-letter-spacing);
    will-change: transform;
    text-shadow: 0 1px 0.125rem rgb(0, 0, 0);
    filter: drop-shadow(0 0.125rem 0 rgba(0, 0, 0, 0.5)) drop-shadow(0 0.1875rem 1.5625rem rgba(255, 188, 100, 0.3));
}

.btn:hover {}

.btn:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.2s all;
    background-image: url(../images/btn/btn.png);
    background-image: var(--btn-img-url);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    /* transform-style: preserve-3d;
	perspective: 700px; */
    pointer-events: none;
    filter: grayscale(0%) brightness(100%);
    -webkit-clip-path: polygon(calc(100% - 0.625rem) 0,
            calc(100% - 2.75rem) 1rem,
            calc(100% - 0.5625rem) 0.3125rem,
            100% 50%,
            calc(100% - 0.625rem) 100%,
            0.625rem 100%,
            1.625rem calc(100% - 1.5rem),
            0.5rem calc(100% - 0.25rem),
            0 50%,
            0.625rem 0);
    clip-path: polygon(calc(100% - 0.625rem) 0,
            calc(100% - 2.75rem) 1rem,
            calc(100% - 0.5625rem) 0.3125rem,
            100% 50%,
            calc(100% - 0.625rem) 100%,
            0.625rem 100%,
            1.625rem calc(100% - 1.5rem),
            0.5rem calc(100% - 0.25rem),
            0 50%,
            0.625rem 0);
}

.btn_accent_no:before {
    filter: grayscale(100%) brightness(50%);
}

.btn:hover:before,
.btn_active:before,
[data-open-tab-active="true"]:before {
    filter: grayscale(0%) brightness(125%);
}

/* btn_tt_u */
.btn_tt_u {
    text-transform: uppercase;
}

/* btn_size_small */
.btn_size_small {
    --btn-w: 10rem;
    --btn-h: 2.625rem;
    --btn-fs: 0.875rem;
}

@media (min-width: 1200px) {
    .btn_size_small {
        padding: 0.3125rem calc(1rem * 1);
        padding: 0.3125rem calc(1rem * var(--btn-scale))
    }
}

/* btn_size_large */
@media (min-width: 1200px) {
    .btn_size_large {
        --btn-w: 20rem;
        --btn-h: 5rem;
        --btn-fs: 1.75rem
    }
}

.btn_size_large:before {
    -webkit-clip-path: polygon(calc(100% - 1rem) 0,
            calc(100% - 3.375rem) 1.375rem,
            calc(100% - 0.875rem) 0.375rem,
            100% 50%,
            calc(100% - 1rem) 100%,
            1rem 100%,
            1.875rem calc(100% - 1.875rem),
            0.875rem calc(100% - 0.3125rem),
            0 50%,
            1rem 0);
    clip-path: polygon(calc(100% - 1rem) 0,
            calc(100% - 3.375rem) 1.375rem,
            calc(100% - 0.875rem) 0.375rem,
            100% 50%,
            calc(100% - 1rem) 100%,
            1rem 100%,
            1.875rem calc(100% - 1.875rem),
            0.875rem calc(100% - 0.3125rem),
            0 50%,
            1rem 0);
}

/* btn_color_1 */
.btn_color_1 {
    --btn-img-url: url(../images/btn/btn_color_1.png);
    filter: drop-shadow(0 0.125rem 0 rgba(0, 0, 0, 0.5)) drop-shadow(0 0.1875rem 1.5625rem rgba(255, 255, 255, 0.3));
}

/* lang */
.lang {
    --lang-img-size: 2.125rem;
    --lang-list-offset: 1rem;
    width: auto;
    box-sizing: border-box;
    padding-right: 1rem;
    position: relative;
    flex-shrink: 0;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-size: 1.125rem;
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
}

@media (min-width: 1200px) {
    .lang {
        --lang-img-size: 2.5rem
    }
}

.lang__current {
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 0.5rem;
    gap: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    grid-template-columns: var(--lang-img-size) 1fr;
    flex-shrink: 0;
    line-height: 1;
    text-decoration: none;
    padding: 1px 0;
    width: 100%;
    box-sizing: border-box;
}

.lang__current-img {
    border-radius: 50%;
    transition: 0.3s all;
    /* box-shadow: 0 0 0 1px #fff; */
    display: block;
}

.lang:hover .lang__current-img {}

.lang__current:after {
    display: block;
    content: "";
    background-color: transparent;
    background-image: url(../images/lang/arrow-down.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.375rem;
    color: #878076;
    font-size: 0.75rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(calc(-50%));
    transition: all 0.3s;
    cursor: pointer;
    pointer-events: none;
}

.lang__link {
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 0.5rem;
    gap: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    grid-template-columns: var(--lang-img-size) 1fr;
    flex-shrink: 0;
    line-height: 1.31;
    text-decoration: none;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    padding: 0.3125rem 0 0.3125rem 0.625rem;
    width: 100%;
    box-sizing: border-box;
}

.lang__link:hover {
    opacity: 1;
}

.lang__name {
    /* text-transform: uppercase; */
    display: none;
    flex-shrink: 0;
}

@media (min-width: 540px) {
    .lang__name {
        display: block
    }
}

.lang__img {
    display: block;
    height: var(--lang-img-size);
    width: var(--lang-img-size);
    flex-shrink: 0;
    border: 0.3125rem solid rgba(255, 178, 111, 0.14);
    box-sizing: border-box;
    border-radius: 50%;
}

.lang__link_sub {}

.lang__link_sub:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.lang__list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    transform: translateY(0);
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + var(--lang-list-offset));
    left: -0.6875rem;
    width: calc(100% + 1.375rem);
    padding: 0.3125rem 0;
    border-radius: 0.1875rem;
    -webkit-backdrop-filter: blur(0.1875rem);
    backdrop-filter: blur(0.1875rem);
    background: rgba(13, 8, 5, 0.8);
    border: 1px solid rgba(255, 178, 111, 0.14);
}

.lang__list:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: var(--lang-list-offset);
}

.lang:hover .lang__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* points */
.points {
    display: none;
}

@media (min-width: 1200px) {
    .points {
        display: flex;
        position: fixed;
        right: 3.125rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        list-style-type: none;
        padding: 0;
        margin: 0;
        left: auto;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .points__overlay {
        display: block;
        content: "";
        position: absolute;
        top: -0.625rem;
        right: 100%;
        bottom: -0.625rem;
        width: 13.75rem;
        z-index: -1;
        border: 0;
        opacity: 0;
        transition: 0.2s all;
        visibility: hidden;
        background: linear-gradient(to right,
                rgba(15, 15, 15, 0.4) 44.27%,
                rgba(0, 0, 0, 0) 100%);
        -webkit-backdrop-filter: blur(0.125rem);
        backdrop-filter: blur(0.125rem);
    }

    .points:hover .points__overlay {
        opacity: 1;
        visibility: visible;
    }

    .point {
        justify-content: flex-start;
        align-items: center;
        font-size: 1.0625rem;
        color: rgb(74, 53, 35);
        font-family: "Spectral", "Times New Roman", Times, serif;
        font-family: var(--font-0);
        cursor: pointer;
        display: flex;
        position: relative;
        z-index: 0;
        margin: 0 0;
        opacity: 0.5;
        transition: 0.2s all;
    }

    .point:hover,
    .point_active {
        opacity: 1;
    }

    .point__dot {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        transition: 0.2s all;
        position: relative;
        z-index: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .point__dot:before {
        display: block;
        content: "";
        background-color: transparent;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        border: 0.1875rem solid #ac7b42;
        width: 1rem;
        height: 1rem;
        z-index: -5;
        transition: 0.2s all;
        flex-shrink: 0;
        position: absolute;
        top: 0.125rem;
        left: 0.125rem;
        box-sizing: border-box;
        transform: rotate(45deg);
        /* filter: grayscale(100%) brightness(60%); */
        /* opacity: 0.7; */
    }

    .point__line {
        position: absolute;
        right: calc(100% - 0.125rem);
        top: calc(50% - 1px);
        z-index: -5;
        /* height: 2px;
		width: 25px;
		background-color: #626262; */
        background-color: #ac7b42;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        width: 2rem;
        height: 0.125rem;
    }

    /* .point__line:before {
		display: block;
		content: "";
		background-color: transparent;
		background-image: url(../images/points/dot.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		width: 8px;
		height: 8px;
		z-index: -5;
		transition: 0.2s all;
		flex-shrink: 0;
		position: absolute;
		top: calc(50% - 4px);
		left: -4px;
	} */
    .point_active .point__dot:before,
    .point_active:hover .point__dot:before {
        opacity: 1;
        /* filter: grayscale(0%) brightness(100%); */
    }

    .point__content {
        position: absolute;
        white-space: nowrap;
        /* pointer-events: none; */
        transition: 0.2s all;
        transform-origin: right center;
        display: block;
        bottom: auto;
        right: 4.625rem;
        top: calc(50% - 1.625rem);
        box-sizing: border-box;
        padding-left: 1.25rem;
        text-align: right;
        line-height: 1.2;
        visibility: hidden;
        opacity: 0;
        opacity: 1;
        visibility: visible;
    }

    .points:hover .point__content {
        opacity: 1;
        visibility: visible;
    }

    .point:hover .point__content {
        visibility: visible;
        /* color: rgba(var(--color-accent), 0.7); */
    }

    .point_active,
    .point_active:hover .point__content {
        /* color: rgba(var(--color-accent), 1); */
    }

    .point__title {
        color: #d3a168;
        font-size: 1.375rem;
        font-weight: 400;
    }

    .point__desc {
        color: #966f44;
        font-size: 0.875rem;
        font-weight: 400;
    }

    .point__devider {
        display: block;
        width: 0.125rem;
        height: 3rem;
        background-color: #ac7b42;
        opacity: 0.5;
        /* background-color: rgba(var(--color-0), 0.6); */
        margin: 0.375rem 0;
    }

    .point__devider_pos_start {
        -webkit-mask: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 1) 100%);
        mask: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 1) 100%);
    }

    .point__devider_pos_end {
        -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        mask: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }
}

/* mdl */
.mdl {
    max-width: 72.5rem;
    width: 100%;
    /* box-shadow: none; */
    box-sizing: border-box;
    background-color: transparent;
    padding: 0;
    /* box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.5); */
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    filter: drop-shadow(0 2rem 8rem rgba(255, 188, 100, 0.16));
}

.mdl__close {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    cursor: pointer;
    transition: 0.3s all;
    background-size: contain;
    border-radius: 50%;
    z-index: 20;
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
}

@media (min-width: 540px) {
    .mdl__close {
        top: 1.25rem;
        right: 1.25rem
    }
}

@media (min-width: 840px) {
    .mdl__close {
        width: 2.25rem;
        height: 2.25rem;
        top: 1.875rem;
        right: 1.875rem
    }
}

.mdl__close:before,
.mdl__close:after {
    display: block;
    content: "";
    background: rgb(154, 135, 113);
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    height: 0.125rem;
    border-radius: 0;
    transition: 0.3s all;
}

.mdl__close:before {
    transform: rotate(-45deg);
}

.mdl__close:after {
    transform: rotate(45deg);
}

.mdl__close:hover:before,
.mdl__close:hover:after {
    filter: brightness(120%);
    transform: rotate(0);
}

.mdl__inner {
    background-color: #111111;
    background-image: url(../images/mdl/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0.375rem;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    width: 100%;
    box-sizing: border-box;
    border: 0;
    padding: 1.875rem 1rem;
    box-shadow: 0 0 3.125rem rgba(255, 179, 93, 0.1) inset;
}

@media (min-width: 540px) {
    .mdl__inner {
        padding: 2.5rem 1.5rem
    }
}

@media (min-width: 840px) {
    .mdl__inner {
        padding: 3.4375rem 1.875rem
    }
}

.mdl__body {
    background-size: auto;
    background-position: center center;
    background-repeat: repeat;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    /* overflow: hidden; */
    /* box-shadow: 0px 0.375rem 1.5rem rgba(0, 0, 0, 0.1); */
    border: 0;
    border-radius: 0;
}

/* fancybox */
.fancybox-container {
    z-index: 666 !important;
}

.fancybox-content {
    padding: 0;
    background: transparent;
}

.fancybox-bg {
    background: rgb(13, 9, 6);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.8;
}

.gw-modal-close {
    display: none;
}

/* Custom animation */
.fancybox-is-open .mdl_animated {
    -webkit-animation: modalIn 0.5s ease;
    animation: modalIn 0.5s ease;
}

.fancybox-is-closing .mdl_animated {
    -webkit-animation: modalout 0.5s ease;
    animation: modalout 0.5s ease;
}

@-webkit-keyframes modalIn {
    0% {
        opacity: 0;
        /* transform: translateY(-10vh); */
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalIn {
    0% {
        opacity: 0;
        /* transform: translateY(-10vh); */
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes modalout {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
        /* transform: translateY(10vh); */
    }
}

@keyframes modalout {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
        /* transform: translateY(10vh); */
    }
}

/* swiper */
/* arrow */
.arrow {
    background-color: transparent;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 3.5rem;
    height: 4.25rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.3s all;
}

.arrow:hover {
    filter: brightness(120%);
}

.arrow_prev {
    background-image: url(../images/swiper/arrow-prev.svg);
}

.arrow_next {
    background-image: url(../images/swiper/arrow-next.svg);
}

.arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* arrows */
.arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 2.5rem;
    gap: 2.5rem;
}

/* dots */
.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.625rem;
    gap: 0.625rem;
    width: auto !important;
}

.dot {
    width: 1.25rem;
    height: 1.25rem;
    box-sizing: border-box;
    opacity: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    background-image: url(../images/swiper/dot.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.dot_active {
    background-image: url(../images/swiper/dot-active.svg);
    filter: drop-shadow(0px 0px 0.6875rem #5865f2);
}

/* control */
.control__arrow {
    margin-bottom: 1.5625rem;
}

@media (min-width: 1200px) {
    .control__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        margin: 0
    }
}

.control__arrow_prev {
    margin-right: 0.625rem;
}

@media (min-width: 1200px) {
    .control__arrow_prev {
        right: calc(100% + 1.875rem)
    }
}

.control__arrow_next {
    margin-left: 0.625rem;
}

@media (min-width: 1200px) {
    .control__arrow_next {
        left: calc(100% + 1.875rem)
    }
}

/* server */
.server {
    --server-status-color: var(--color-red);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    line-height: 1;
}

[data-server-status="on"] {
    --server-status-color: var(--color-green);
}

[data-server-status="off"] {
    /* color: rgba(var(--server-status-color), 1); */
}

.server__status {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--server-status-color), 0.4);
    border-radius: 50%;
    margin-right: 0.625rem;
}

.server__status:after {
    display: block;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgba(var(--server-status-color), 1);
    border-radius: 50%;
}

.server__count {
    position: relative;
    z-index: 0;
    margin-left: 0.375rem;
    color: rgba(var(--server-status-color), 1);
}

.server__count-hide {
    opacity: 0;
    pointer-events: none;
}

.server__count-visible {
    position: absolute;
    left: 0;
    top: 0;
}

/* servers */
.servers-desktop {
    position: absolute;
    top: 5.25rem;
    left: 1.25rem;
    z-index: 10;
    display: grid;
    grid-gap: 0.625rem;
    gap: 0.625rem;
}

@media (min-width: 1200px) {
    .servers-desktop {
        top: 8.75rem;
        left: 4rem;
        grid-gap: 1.25rem;
        gap: 1.25rem
    }
}

/* downloads */
.downloads {}

.downloads__list {
    box-sizing: border-box;
    padding: 1.5625rem 0;
    display: grid;
    grid-gap: 1.25rem;
    gap: 1.25rem;
}

.downloads__box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    grid-gap: 1.25rem;
    gap: 1.25rem;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 0.25rem;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    padding: 1rem 1.25rem;
}

@media (min-width: 1200px) {
    .downloads__box {
        text-align: left;
        display: grid;
        grid-template-columns: 17.5rem 1fr;
        padding: 1rem 2.5rem
    }
}

.downloads__title {
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.downloads__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 0.625rem;
    gap: 0.625rem;
}

@media (min-width: 840px) {
    .downloads__btns {
        justify-content: flex-start;
        grid-gap: 1.25rem;
        gap: 1.25rem
    }
}

.downloads__button {
    min-width: 10rem;
}

.downloads__invite {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
}

/* spoiler */
.spoiler {
    --spoiler-container-rows: 0fr;
    --spoiler-container-opacity: 0;
    --spoiler-container-maring: 0 0;
    --spoiler-container-padding: 0 1rem;
    --spoiler-bgc-heading: rgb(32, 26, 22);
    --spoiler-transition: 0.3s all;
    --spoiler-arrow-transform: rotate(0deg);
    box-sizing: border-box;
    transition: var(--spoiler-transition);
    color: rgb(231, 206, 162);
    border-radius: 0.125rem;
    overflow: hidden;
}

[data-spoiler="active"] {
    --spoiler-container-rows: 1fr;
    --spoiler-container-opacity: 1;
    --spoiler-container-maring: 0;
    --spoiler-container-padding: 1rem;
    /* --spoiler-arrow-transform: rotate(90deg); */
}

.spoiler__heading {
    background: var(--spoiler-bgc-heading);
    transition: var(--spoiler-transition);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 0.625rem;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    line-height: 1.1;
    min-height: 2.5rem;
    box-sizing: border-box;
    color: rgb(255, 170, 100);
}

[data-spoiler-trigger] {
    cursor: pointer;
}

.spoiler__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    color: rgb(255, 170, 100);
    margin-left: auto;
    transition: var(--spoiler-transition);
    transform: var(--spoiler-arrow-transform);
}

.spoiler__arrow:after {
    content: "\e906";
    font-family: "gwi";
    font-family: var(--font-ico);
    font-size: 1rem;
    position: relative;
    z-index: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    /* background-color: rgba(7, 7, 20, 0.7); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spoiler__content {
    display: grid;
}

.spoiler__title {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (min-width: 840px) {
    .spoiler__title {
        font-size: 1rem
    }
}

.spoiler__container {
    margin: var(--spoiler-container-maring);
    padding: var(--spoiler-container-padding);
    display: grid;
    grid-template-rows: var(--spoiler-container-rows);
    overflow: hidden;
    opacity: var(--spoiler-container-opacity);
    transition: var(--spoiler-transition);
    box-sizing: border-box;
    background: #141210;
}

.spoiler__content {
    min-height: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (min-width: 840px) {
    .spoiler__content {
        font-size: 1rem
    }
}

/* spoiler-list */
.spoiler-list {
    display: grid;
    grid-gap: 0.5rem;
    gap: 0.5rem;
}

/* scl */
:root {
    /* --scl-bg-color: rgba(66, 35, 19, 0.92); */
    --scl-bg-color: rgba(49, 34, 26, 0.92);
    --scl-font-size: 1.375rem;
    --scl-item-border: 1px solid rgba(255, 255, 255, 0.1);
    --scl-list-direction: column;
}

.scl {}

.scl_type_mobile {
    --scl-item-border: none;
    --scl-list-direction: row;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scl_type_desk {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.scl__list {
    background-color: rgba(49, 34, 26, 0.92);
    background-color: var(--scl-bg-color);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-direction: var(--scl-list-direction);
}

.scl__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 3.5rem;
    height: 3.5rem;
    box-sizing: border-box;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    font-size: 1.375rem;
    font-size: var(--scl-font-size);
}

.scl__item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
}

.scl__item:where(:not(:last-child)) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: var(--scl-item-border);
}

.scl__ico {}

@media (max-width: 1199.99px) {

    /* mbar */
    .mbar {
        height: 4.375rem;
        height: var(--navigation-height);
        display: flex;
    }

    .mbar__box {
        flex-basis: 50%;
        display: flex;
    }

    /* gw-burger */
    .gw-burger {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        position: relative;
        z-index: 10;
        cursor: pointer;
        pointer-events: all;
    }

    .gw-burger__box {
        position: relative;
        z-index: 5;
        background-color: transparent;
        width: 1.5rem;
        height: 1.1875rem;
        border-radius: 0;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .gw-burger__line {
        height: 0.125rem;
        position: absolute;
        left: 0;
        right: 0;
        background-color: rgba(255, 233, 211, 1);
        background-color: rgba(var(--color-0), 1);
        border-radius: 0;
        transition: 0.3s top 0.3s, 0.3s right 0.3s, 0.3s left 0.2s, 0.3s bottom 0.3s,
            0.3s opacity 0.4s, 0.3s transform 0s;
    }

    .gw-burger__line_pos_top {
        top: 0;
    }

    .gw-burger__line_pos_middle {
        top: 50%;
        left: 25%;
        transform: translateY(-50%);
        transition: 0s all 0.4s;
    }

    .gw-burger__line_pos_bottom {
        bottom: 0;
        left: 50%;
    }

    .mob-menu-active .gw-burger__line {
        background-color: rgba(255, 233, 211, 1);
        background-color: rgba(var(--color-0), 1);
    }

    .mob-menu-active .gw-burger__line_pos_top {
        transform: rotate(45deg) translateY(-50%);
        transform-origin: center top;
        top: 50%;
        right: 0;
        transition: 0.3s top 0.1s, 0.3s right 0.1s, 0.3s left 0s, 0.3s bottom 0.1s,
            0s opacity 0.1s, 0.3s transform 0.4s;
    }

    .mob-menu-active .gw-burger__line_pos_middle {
        opacity: 0;
        transition: 0.3s opacity 0.3s, 0.3s transform 0.1s, 0.3s left 0.3s;
        left: 100%;
    }

    .mob-menu-active .gw-burger__line_pos_bottom {
        transform: rotate(-45deg) translateY(50%);
        transform-origin: center bottom;
        bottom: 50%;
        right: 0;
        left: 0;
        transition: 0.3s top 0.1s, 0.3s right 0.1s, 0.1s left 0.3s, 0.3s bottom 0.1s,
            0s opacity 0.1s, 0.3s transform 0.4s;
    }

    /* menu */
    .menu {
        position: absolute;
        top: 4.375rem;
        top: var(--navigation-height);
        right: 0;
        left: 0;
        z-index: 2;
        box-sizing: border-box;
        padding-top: 0;
        padding-bottom: 4.375rem;
        padding-bottom: var(--navigation-height);
        height: 100vh;
        overflow-x: hidden;
        overflow-y: hidden;
        display: flex;
        justify-content: flex-start;
        /* align-items: center; */
        background-color: rgba(13, 5, 2);
        background-color: rgba(var(--body-background-color));
        opacity: 0;
        transition: 0.5s all 0.3s;
        visibility: hidden;
        box-shadow: 0 0 0 100vh rgba(13, 5, 2, 1);
        box-shadow: 0 0 0 100vh rgba(var(--body-background-color), 1);
    }

    @supports (height: 100dvh) {
        .menu {
            height: 100dvh;
        }
    }

    .mob-menu-active .menu {
        visibility: visible;
        opacity: 1;
        transition: 0.5s all;
    }

    .menu__content {
        /* margin: auto 0; */
        /* transform: translateY(-40px); */
        transition: 0.3s all;
        opacity: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        display: flex;
    }

    .mob-menu-active .menu__content {
        /* transform: translateX(0); */
        opacity: 1;
        transition: 0.5s all 0.3s;
    }

    .menu__list {
        width: 100%;
        list-style-type: none;
        padding: 1.25rem 0;
        margin: auto;
        /* height: 70vh; */
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        box-sizing: border-box;
        /* padding-top: var(--navigation-height); */
        /*
		padding-bottom: var(--navigation-height); */
    }

    .menu__dot {
        display: none;
    }

    .menu__el {
        width: 100%;
        position: relative;
        z-index: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu__el_auth {
        margin-top: 1.25rem;
    }

    .menu__el_scl {
        margin-top: 1.25rem;
    }

    .menu__el_atop {
        position: relative;
        z-index: 5;
    }

    .menu__el_bar {
        margin-bottom: 1.875rem;
    }

    .menu__el_continer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.25rem;
    }

    .menu__el_continer_divider {
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-top: 1px solid rgba(var(--color-1), 0.2);
    }

    .menu__el_continer:hover {
        z-index: 10;
    }

    .menu__item {
        padding: max(0.625rem, 0.625rem) max(0.9375rem, 0.9375rem);
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        color: rgba(255, 233, 211, 1);
        color: rgba(var(--color-0), 1);
        cursor: pointer;
        font-style: normal;
        font-size: 1.25rem;
        font-weight: 400;
        white-space: nowrap;
        text-transform: uppercase;
        width: 100%;
        min-height: 3.125rem;
        transition: 0.2s all;
        font-family: "Spectral", "Times New Roman", Times, serif;
        font-family: var(--font-0);
    }

    .menu__item_open,
    .menu__item:hover {}

    .menu__sub-wrapper {
        display: none;
    }

    .subnav__container {
        padding: 0;
    }

    .mob-menu-active {
        overflow: hidden;
    }

    [data-menu-open-sub-list]:after {
        display: block;
        content: "";
        background: url(../images/menu/arrow-down.svg) no-repeat;
        width: 0.625rem;
        height: 0.875rem;
        margin-left: 0.625rem;
        position: relative;
        top: 0;
        transition: 0.5s all;
    }

    .menu__item_open:after {
        transform: rotateX(180deg);
    }

    .menu__item_open {
        background: rgba(255, 233, 211, 0.05);
        background: rgba(var(--color-0), 0.05);
    }

    /* menu__sub-list */
    .menu__sub-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: none;
        background: rgba(255, 233, 211, 0.05);
        background: rgba(var(--color-0), 0.05);
    }

    .menu__item_open~.menu__sub-list {
        display: block;
    }

    .menu__sub-item {
        display: flex;
        align-items: center;
        text-decoration: none;
        box-sizing: border-box;
        padding: 0.5rem 1.25rem;
        transition: 0.3s all;
        position: relative;
        z-index: 0;
        color: rgba(#fff, 1);
        color: rgba(var(--color-4), 1);
        cursor: pointer;
        font-style: normal;
        font-size: max(1rem, 1rem);
        text-align: left;
        min-height: 3.125rem;
    }

    .menu__sub-item:hover {
        color: rgba(255, 233, 211, 1);
        color: rgba(var(--color-0), 1);
    }

    .menu__sub-content {
        min-width: 0;
        flex-grow: 1;
    }

    .menu__sub-name {
        font-size: 1.125rem;
        line-height: 1.125rem;
        color: #000;
        transition: 0.2s all;
    }

    .menu__sub-desc {
        padding-top: 0.1875rem;
        font-size: 0.875rem;
        line-height: 1rem;
        color: rgba(0, 0, 0, 0.6);
        transition: 0.2s all;
    }

    /* .menu__sub-item:hover {
        background: rgba(255, 255, 255, 0.05);
    } */
    .menu__scl {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(var(--color-bg-0), 1);
        --scl-flex-basis: 100%;
    }

    .menu__btnbar {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        grid-gap: 0.5rem;
        gap: 0.5rem;
        background-color: transparent;
        box-sizing: border-box;
        padding: 0.625rem 1.5rem;
        transition: 0.2s all;
        font-family: "Montserrat", Arial, sans-serif;
        font-family: var(--font-2);
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        height: 4.375rem;
    }

    .menu__btnbar:after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        background-color: rgba(60, 44, 34, 0.6);
        background-image: url(../images/menu/btnbarbg.png);
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        transition: 0.2s all;
    }

    .menu__btnbar-txt {
        color: #bdb1a5;
        background: var(--text-gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0px 0.0625rem 0.25rem rgba(0, 0, 0, 0.5));
    }
}

@media (min-width: 1200px) {

    /* gw-burger  */
    .gw-burger {
        display: none;
    }

    /* menu */
    .menu {
        display: flex;
        align-self: stretch;
    }

    .menu__content {
        display: flex;
        width: 100%;
    }

    .menu__list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        /* overflow: hidden; */
        opacity: 1;
        visibility: visible;
        width: 100%;
        padding-left: 0;
        box-sizing: border-box;
        grid-gap: 1.25rem;
        gap: 1.25rem;
    }

    .nav-static .menu__list {}

    .menu__el {
        display: flex;
        position: relative;
        z-index: 0;
    }

    .menu__el_desktop_none {
        display: none;
    }

    .menu__item {
        padding: 1.25rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        color: rgba(255, 233, 211, 1);
        color: rgba(var(--color-0), 1);
        cursor: pointer;
        font-style: normal;
        font-size: 1.125rem;
        font-weight: 400;
        white-space: nowrap;
        position: relative;
        z-index: 0;
        box-sizing: border-box;
        transition: 0.3s all;
        font-family: "Spectral", "Times New Roman", Times, serif;
        font-family: var(--font-0);
        text-shadow: 0 1px 0.125rem rgb(0, 0, 0);
        /* text-transform: uppercase; */
    }

    .menu__el:hover [data-menu-open-sub-list],
    .menu__item:hover,
    .menu__item_open:hover {
        color: rgba(255, 186, 112, 1);
        color: rgba(var(--color-accent), 1);
    }

    .menu__item:after {
        display: block;
        content: "";
        background-color: rgba(255, 186, 112, 1);
        background-color: rgba(var(--color-accent), 1);
        width: 100%;
        height: 0.625rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: -1;
        filter: blur(0.875rem);
        opacity: 0;
        transition: 0.3s all;
    }

    .menu__el:hover [data-menu-open-sub-list]:after,
    .menu__item:hover:after,
    .menu__item_open:hover:after {
        opacity: 1;
    }

    .menu__dot {
        background-color: transparent;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 0.375rem;
        height: 0.375rem;
        display: block;
        flex-shrink: 0;
        border: 0.125rem solid rgba(255, 233, 211, 0.5);
        border: 0.125rem solid rgba(var(--color-0), 0.5);
        transform: rotate(45deg);
        align-self: center;
    }

    .menu__el_continer {
        display: none;
    }

    /* menu__sub-list */
    .menu__sub-list {
        position: absolute;
        left: 50%;
        top: calc(100%);
        list-style: none;
        margin: 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s all;
        display: block !important;
        min-width: 100%;
        /* width: 10rem; */
        /* filter: drop-shadow(0 0 1px #cccccc62); */
        transform: translateX(-50%) translateY(0);
        padding: 1rem 0;
        background-color: rgba(var(--navigation-bg), 0.85);
        -webkit-backdrop-filter: blur(0.5625rem);
        backdrop-filter: blur(0.5625rem);
        /* background-color: rgba(var(--color-5), 0.85);
		backdrop-filter: blur(9px); */
        /* border: 1px solid rgba(var(--color-3), 1); */
        border-top: 0;
    }

    /* .menu__el_nav:before {
		display: block;
		content: "";
		background-color: transparent;
		background-image: url(../images/menu/decor.svg);
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
		width: 2.5rem;
		height: 2.5rem;
		position: absolute;
		top: calc(100% - 1.25rem);
		left: calc(50% - 1.25rem);
		z-index: 130;
		transition: 0.3s all;
		pointer-events: none;
		transform: translateY(50%);
		opacity: 0;
	}

	.menu__el_nav:hover:before,
	.menu__sub-list:hover:before {
		transform: translateY(0);
		opacity: 1;
	} */
    [data-menu-open-sub-list] .menu__item-arrow {
        display: block;
        content: "";
        background-color: transparent;
        background-image: url(../images/menu/arrow-down.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        width: 0.875rem;
        height: 0.875rem;
        margin-left: 0.625rem;
        position: relative;
        top: 0;
        transition: 0.5s all;
    }

    .menu__item_open .menu__item-arrow {
        transform: rotateX(180deg);
    }

    [data-menu-open-sub-list]:hover~.menu__sub-list,
    .menu__sub-list:hover {
        opacity: 1;
        visibility: visible;
        top: calc(100%);
        transform: translateX(-50%) translateY(0);
    }

    .menu__sub-item {
        padding: 0.625rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-decoration: none;
        color: rgba(255, 233, 211, 1);
        color: rgba(var(--color-0), 1);
        fill: rgba(255, 136, 0, 1);
        fill: rgba(var(--color-accent-2), 1);
        cursor: pointer;
        font-style: normal;
        font-size: 1rem;
        font-weight: 400;
        white-space: nowrap;
        position: relative;
        z-index: 0;
        box-sizing: border-box;
        transition: 0.3s all;
    }

    .menu__sub-item:hover {
        background-color: rgba(255, 233, 211, 0.06);
        background-color: rgba(var(--color-0), 0.06);
    }
}

/* navigation */
:root {
    /* navigation */
    --navigation-height: 4.375rem;
    --navigation-height-scroll: 4.375rem;
}

@media (min-width: 1200px) {
    :root {
        --navigation-height: 5.625rem;
        --navigation-height-scroll: 5.625rem
    }
}

[data-section="navigation"] {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    background-color: transparent;
    /* box-shadow: 0px 0.25rem 1.25rem 0px rgba(0, 0, 0, 0.25); */
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(0.1875rem);
    backdrop-filter: blur(0.1875rem);
}

[data-section="navigation"]:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    /* opacity: 0.8; */
    background: rgba(13, 8, 5, 0.8);
    border-bottom: 1px solid rgba(255, 178, 111, 0.14);
}

.nav-scroll [data-section="navigation"] {}

[data-container="navigation"] {
    z-index: 10;
}

@media (min-width: 1200px) {
    [data-container="navigation"] {
        padding: 0;
        max-width: 100%
    }
}

.navigation {
    display: flex;
    justify-content: flex-start;
    height: 4.375rem;
    height: var(--navigation-height);
    transition: 0.2s all;
}

.nav-scroll .navigation {
    height: 4.375rem;
    height: var(--navigation-height-scroll);
}

.navigation__gw-burger {
    align-self: center;
    flex-shrink: 0;
}

.navigation__menu {
    flex-grow: 1;
}

.navigation__box {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    align-self: stretch;
    box-sizing: border-box;
    max-width: none;
}

.navigation__box_side_left {
    justify-content: flex-start;
    grid-gap: 1.25rem;
    gap: 1.25rem;
}

@media (min-width: 540px) {
    .navigation__box_side_left {
        grid-gap: 2rem;
        gap: 2rem
    }
}

@media (min-width: 1200px) {
    .navigation__box_side_left {
        margin-right: 3.75rem;
        padding-left: 3.75rem
    }
}

.navigation__box_side_right {
    justify-content: flex-end;
    /* display: none; */
    margin-left: auto;
    margin-right: 1.25rem;
}

@media (min-width: 1200px) {
    .navigation__box_side_right {
        margin-left: 2.5rem;
        margin-right: 0;
        padding-right: 3.75rem;
        display: flex
    }
}

.navigation__el_desktop {
    display: none;
}

@media (min-width: 1200px) {
    .navigation__el_desktop {
        display: flex;
        justify-content: center
    }
}

/* .navigation__lang {
	margin: 0 40px 0 20px;
} */
.navigation__auth {
    margin-left: 1.25rem;
    border-left: 1px solid rgba(255, 178, 111, 0.14);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 3.125rem;
}

@media (min-width: 1200px) {
    .navigation__auth {
        margin-left: 2.5rem;
        padding-left: 2.5rem
    }
}

/* hero */
[data-section="hero"] {
    background-color: transparent;
    background-image: url(../images/hero/bg.jpg);
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
}

@media (min-width: 720px) {
    [data-section="hero"] {
        background-position: center top
    }
}

@media (min-width: 1200px) {
    [data-section="hero"] {
        background-image: url(../images/hero/bg-ultra.jpg)
    }
}

[data-container="hero"] {
    max-width: calc(50rem + 0.625rem * 4);
    max-width: calc(50rem + var(--margin) * 4);
}

@media (min-width: 1200px) {
    [data-container="hero"] {
        max-width: calc(82.5rem + 0.625rem * 4);
        max-width: calc(82.5rem + var(--margin) * 4)
    }
}

.hero {
    min-height: 100vh;
    /* min-height: 100dvh; */
    box-sizing: border-box;
    padding-top: 8.75rem;
    padding-bottom: 5rem;
    transition: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 720px) {
    .hero {
        align-items: flex-start
    }
}

@media (min-width: 1200px) {
    .hero {
        padding-top: 15.625rem;
        padding-bottom: 6.25rem
    }
}

.hero__box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 31.25rem;
    width: 100%;
}

@media (min-width: 1200px) {
    .hero__box {
        max-width: 50rem
    }
}

.hero__logotype {
    margin-bottom: 1.5625rem;
}

.hero__title {
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 1);
}

@media (min-width: 540px) {
    .hero__title {
        font-size: 2.5rem
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4rem
    }
}

.hero__subtitle {
    color: rgba(255, 233, 211, 0.7);
    color: rgba(var(--color-0), 0.7);
    font-family: "Spectral", "Times New Roman", Times, serif;
    font-family: var(--font-0);
    font-size: 1.125rem;
    font-weight: 400;
    margin: 1.25rem 0 0 0;
    line-height: 1.3;
}

@media (min-width: 1200px) {
    .hero__subtitle {
        font-size: 1.375rem;
        line-height: 1.5
    }
}

.hero__btns {
    margin-top: 2.5rem;
}

/* post */
.post {
    --size-title: 1.125rem;
    --size-desc: 0.875rem;
    --size-date: 0.75rem;
    --size-status: 0.875rem;
    --desc-max-height: 4.125rem;
    --line-clamp: 5;
    position: relative;
    z-index: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5rem 1.875rem 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: 21.875rem;
    background-color: rgb(18, 17, 15);
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    /* box-shadow: 0px 0.5rem 1.5rem rgba(0, 0, 0, 0.15); */
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 178, 111, 0.14);
    border: var(--border);
}

@media (min-width: 720px) {
    .post {
        min-height: 28.125rem
    }
}

@media (min-width: 1200px) {
    .post {
        min-height: 34.375rem
    }
}

@media (min-width: 1200px) {
    .post {
        --size-title: 1.375rem;
        --size-desc: 1rem;
        --size-date: 0.875rem;
        --size-status: 1rem
    }
}

.post:after {
    display: block;
    content: "";
    background: linear-gradient(to top,
            rgba(19, 9, 3, 0.96) 20%,
            rgba(37, 33, 33, 0) 80%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    /* opacity: 0.65; */
}

.post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    text-decoration: none;
    display: block;
}

.post__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
    transition: 0.3s all;
    /* opacity: 0.45; */
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.post:hover .post__bg {
    transform: scale(1.1);
}

.post__date {
    position: absolute;
    top: 2rem;
    left: 1.875rem;
    color: rgba(255, 255, 255, 1);
    color: rgba(var(--color-1), 1);
    text-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 1);
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size-date);
    grid-gap: 0.625rem;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.post__date-ico {
    position: relative;
    top: -1px;
}

.post__container {
    margin-top: auto;
    max-width: 37.5rem;
}

.post__title {
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    font-size: var(--size-title);
    font-weight: 700;
    margin: 0;
}

.post__desc {
    color: rgba(255, 255, 255, 0.7);
    color: rgba(var(--color-1), 0.7);
    font-size: var(--size-desc);
    line-height: 1.6;
    font-weight: 400;
    margin-top: 0.75rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line-clamp);
    overflow: hidden;
    /* max-height: var(--desc-max-height); */
}

.post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    text-decoration: none;
}

.post__status {
    position: absolute;
    right: 1.875rem;
    top: 1.5rem;
    background-color: rgba(0, 0, 0, 0.63);
    font-size: var(--size-status);
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    padding: 0.5rem 1.25rem;
    border-radius: 0.875rem;
}

.post__status_hot:before {
    content: "\0E80";
    font-family: "gwi";
    font-family: var(--font-ico);
    margin-right: 0.625rem;
}

.post__bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1.5rem;
    grid-gap: 1.875rem;
    gap: 1.875rem;
}

/* news */
[data-section="news"] {
    background-color: transparent;
    background-image: url(../images/news/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

[data-container="news"] {}

.news {
    box-sizing: border-box;
    min-height: 100vh;
    /* min-height: 100dvh; */
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media (min-width: 1200px) {
    .news {
        padding-top: 12.5rem;
        padding-bottom: 6.25rem
    }
}

.news__heading {
    margin-bottom: 3.125rem;
}

.news__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    max-width: 25rem;
}

@media (min-width: 720px) {
    .news__wrap {
        max-width: 62.5rem
    }
}

@media (min-width: 1200px) {
    .news__wrap {
        max-width: none
    }
}

.news__list {
    width: 100%;
    overflow: hidden;
    /* padding-bottom: 20px; */
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
}

@media (min-width: 1200px) {
    .news__list {
        padding-bottom: 0
    }
}

.news__swiper-wrapper {
    display: flex;
    align-items: stretch;
}

[data-news-post] {
    -webkit-animation: post 1s ease forwards;
    animation: post 1s ease forwards;
}

.news__swiper-slide {
    height: auto;
}

.news__swiper-slide {
    display: flex;
}

@-webkit-keyframes post {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes post {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* footer */
[data-section="footer"] {
    margin-top: auto;
    border-top: 1px solid rgba(255, 178, 111, 0.14);
    background: rgba(13, 8, 5, 0.8);
}

@media (min-width: 1200px) {
    [data-section="footer"] {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3
    }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    box-sizing: border-box;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
}

.footer__copyright {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
}

.footer__desc {
    font-size: 1rem;
    margin-top: 0.3125rem;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.625rem;
    grid-gap: 0.625rem 2.5rem;
    gap: 0.625rem 2.5rem;
}

.footer__link {
    text-decoration: none;
    transition: 0.2s all;
    color: rgba(255, 233, 211, 0.6);
    color: rgba(var(--color-0), 0.6);
    font-size: 1rem;
}

.footer__link:hover {
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
}

/* bg */
.bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: transparent;
    background-image: url(../images/bg/bg-repeat.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat-y;
    overflow: hidden;
    pointer-events: none;
}

.bg:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 111rem;
    z-index: 2;
    background-color: transparent;
    background-image: url(../images/bg/bg-top.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-mask: linear-gradient(to bottom,
            rgba(0, 0, 0) 0%,
            rgb(0, 0, 0) calc(100% - 25rem),
            rgba(0, 0, 0, 0) 100%);
    mask: linear-gradient(to bottom,
            rgba(0, 0, 0) 0%,
            rgb(0, 0, 0) calc(100% - 25rem),
            rgba(0, 0, 0, 0) 100%);
}

/* static */
[data-section="static"] {}

[data-container="static"] {
    /* max-width: calc(1400px + var(--margin) * 4); */
}

.static {
    box-sizing: border-box;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media (min-width: 840px) {
    .static {
        padding-top: 15.625rem;
        padding-bottom: 18.75rem
    }
}

.static__heading {
    margin-bottom: 2.5rem;
}

@media (min-width: 840px) {
    .static__heading {
        margin-bottom: 5.625rem
    }
}

.static__content {
    background: rgba(12, 10, 9, 0.8);
    border: 1px solid rgba(255, 178, 111, 0.14);
    border: var(--border);
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

@media (min-width: 1050px) {
    .static__content {
        padding: 2.5rem
    }
}

/* stream */
.stream {
    height: 15rem;
    display: flex;
    color: rgba(215, 215, 215, 0.5);
    font-size: 1rem;
    font-weight: 400;
    cursor: default;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 0;
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 186, 112, 0.5);
    border: 1px solid rgba(var(--color-accent), 0.5);
    box-shadow: inset 0 0 3.125rem rgba(0, 0, 0, 0.35);
    background-color: rgba(41, 27, 20, 0.8);
    /* background-image: url(../images/stream/bg.jpg); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.stream iframe {
    width: 100%;
    height: 100%;
}

.stream__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    color: rgba(255, 233, 211, 1);
    color: rgba(var(--color-0), 1);
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    font-family: "Philosopher", "Open Sans", Tahoma, Arial, sans-serif;
    font-family: var(--font-1);
}

.stream__ico {
    display: inline-block;
    font-size: 2.5rem;
}

.stream__desc {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.stream__link {
    text-decoration: none;
    color: rgba(255, 186, 112, 1);
    color: rgba(var(--color-accent), 1);
    transition: 0.2s all;
}

.stream__link:hover {
    color: rgba(255, 143, 23, 1);
    color: rgba(var(--color-accent-hover), 1);
}

/* streams */
[data-section="streams"] {
    background-color: transparent;
    background-image: url(../images/streams/bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.streams {
    box-sizing: border-box;
    min-height: 100vh;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media (min-width: 1200px) {
    .streams {
        padding-top: 12.5rem;
        padding-bottom: 6.25rem
    }
}

.streams__heading {
    margin-bottom: 3.125rem;
}

.streams__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    max-width: 31.25rem;
}

@media (min-width: 720px) {
    .streams__wrap {
        max-width: 62.5rem
    }
}

@media (min-width: 1200px) {
    .streams__wrap {
        max-width: 75rem
    }
}

.streams__list {
    overflow: hidden;
    width: 100%;
    min-width: 0;
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
}

@media (min-width: 1350px) {
    .streams__list {
        margin: 0 auto
    }
}

.streams__swiper-slide {
    display: grid;
}

.streams__stream {
    width: calc(100% - 0.625rem * 2);
    margin: 0.625rem;
}

@media (min-width: 1350px) {
    .streams__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }
}

@media (min-width: 1350px) {
    .streams__arrow_prev {
        right: 100%
    }
}

@media (min-width: 1350px) {
    .streams__arrow_next {
        left: 100%
    }
}

/* aboutus */
[data-section="aboutus"] {
    background-color: transparent;
    background-image: url(../images/aboutus/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

[data-container="aboutus"] {}

.aboutus {
    box-sizing: border-box;
    min-height: 100vh;
    /* min-height: 100dvh; */
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .aboutus {
        padding-top: 9.375rem;
        padding-bottom: 11.25rem
    }
}

.aboutus__heading {
    margin-bottom: 3.125rem;
}

.aboutus__container {
    display: grid;
    grid-gap: 3.125rem;
}

@media (min-width: 720px) {
    .aboutus__container {
        grid-template-columns: 18.75rem 1fr
    }
}

@media (min-width: 1200px) {
    .aboutus__container {
        /* flex-grow: 1; */
        min-height: 0;
        overflow: hidden;
        grid-template-columns: 25rem 1fr;
        grid-gap: 3.75rem;
        height: 31.25rem
    }
}

.aboutus__content {
    font-size: 1rem;
}

@media (min-width: 1200px) {
    .aboutus__content {
        font-size: 1.125rem
    }
}

.aboutus__madia {
    height: 25rem;
    overflow: hidden;
    display: none;
    text-decoration: none;
    margin: 0 auto;
    background-color: rgb(18, 17, 15);
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
    box-sizing: border-box;
    border: 1px solid rgba(255, 178, 111, 0.14);
    border: var(--border);
}

@media (min-width: 720px) {
    .aboutus__madia {
        display: block
    }
}

@media (min-width: 1200px) {
    .aboutus__madia {
        height: 100%
    }
}

.aboutus__img {
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

/* registration */
.registration__form {
    max-width: 31.25rem;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: rgba(12, 10, 9, 0.8);
    border: 1px solid rgba(255, 178, 111, 0.14);
    border: var(--border);
    border-radius: 0.3125rem;
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

@media (min-width: 1050px) {
    .registration__form {
        padding: 2.5rem
    }
}

.registration__box {}

/* protection */
.protection {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    text-align: left;
}

.protection__pic {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: 1.5625rem;
    color: rgba(255, 136, 0, 1);
    color: rgba(var(--color-accent-2), 1);
    font-size: 1.5rem;
}

.protection__content {
    padding: 0.3125rem 1.5625rem;
    box-sizing: border-box;
    color: white;
    font-size: 0.875rem;
    font-weight: 400;
}

/* def */
.pr {
    padding-right: var(--margin);
}

.pl {
    padding-left: var(--margin);
}

.pt {
    padding-top: var(--margin);
}

.pb {
    padding-bottom: var(--margin);
}

.mr {
    margin-right: var(--margin);
}

.ml {
    margin-left: var(--margin);
}

.mt {
    margin-top: var(--margin);
}

.mb {
    margin-bottom: var(--margin);
}

.m {
    margin: var(--margin);
}

.mra {
    margin-right: auto;
}

.mla {
    margin-left: auto;
}

.mta {
    margin-top: auto;
}

.ma {
    margin: auto;
}

.mba {
    margin-bottom: auto;
}

.mr0 {
    margin-right: 0;
}

.ml0 {
    margin-left: 0;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.m0 {
    margin: 0;
}

/* colors */
.color-light {
    color: rgba(var(--color-light), 1);
}

.color-dark {
    color: rgba(var(--color-dark), 1);
}

.color-red {
    color: rgba(var(--color-red), 1);
}

.color-yellow {
    color: rgba(var(--color-yellow), 1);
}

.color-orange {
    color: rgba(var(--color-orange), 1);
}

.color-pink {
    color: rgba(var(--color-pink), 1);
}

.color-purple {
    color: rgba(var(--color-purple), 1);
}

.color-blue {
    color: rgba(var(--color-blue), 1);
}

.color-green {
    color: rgba(var(--color-green), 1);
}

.color-grey {
    color: rgba(var(--color-grey), 1);
}

.color-white {
    color: rgba(var(--color-white), 1);
}

.color-black {
    color: rgba(var(--color-black), 1);
}

.color-brown {
    color: rgba(var(--color-brown), 1);
}

.color-aqua {
    color: rgba(var(--color-aqua), 1);
}

/* color palette */
.color-0 {
    color: rgba(var(--color-0), 1);
}

.color-1 {
    color: rgba(var(--color-1), 1);
}

.color-2 {
    color: rgba(var(--color-2), 1);
}

.color-3 {
    color: rgba(var(--color-3), 1);
}

.color-4 {
    color: rgba(var(--color-4), 1);
}

.color-5 {
    color: rgba(var(--color-5), 1);
}

.color-6 {
    color: rgba(var(--color-6), 1);
}

.color-7 {
    color: rgba(var(--color-7), 1);
}

.color-8 {
    color: rgba(var(--color-8), 1);
}

.color-9 {
    color: rgba(var(--color-9), 1);
}

.color-accent {
    color: rgba(var(--color-accent), 1);
}

/* alternative naming */
.color-main {
    color: rgba(var(--color-0), 1);
}

.color-primary {
    color: rgba(var(--color-1), 1);
}

.color-secondary {
    color: rgba(var(--color-2), 1);
}

/* other */
.clear {
    clear: both;
}

.hidden {
    display: none;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-none {
    text-decoration: none;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* flex */
.flex,
.d-flex {
    display: flex;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: end;
}

/* fs */
.fs_minus_5 {
    font-size: 0.5em;
}

.fs_minus_4 {
    font-size: 0.6em;
}

.fs_minus_3 {
    font-size: 0.7em;
}

.fs_minus_2 {
    font-size: 0.8em;
}

.fs_minus_1 {
    font-size: 0.9em;
}

.fs_plus_1 {
    font-size: 1.1em;
}

.fs_plus_2 {
    font-size: 1.2em;
}

.fs_plus_3 {
    font-size: 1.3em;
}

.fs_plus_4 {
    font-size: 1.4em;
}

.fs_plus_5 {
    font-size: 1.5em;
}

/* font-family */
.font-family-0 {
    font-family: var(--font-0);
}

.font-family-1 {
    font-family: var(--font-1);
}

.font-family-2 {
    font-family: var(--font-2);
}

.font-family-3 {
    font-family: var(--font-3);
}

.font-family-4 {
    font-family: var(--font-4);
}

/* font-weight */
.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

/* width */
.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}