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

:before, :after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

footer, header, menu, nav, section {
    display: block;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: top;
    max-width: 100%;
}

:root {
    --font-size-main: 1rem;
    --line-height-main: 1;
    --font-size: 0.875rem;
    --line-height: 1.125rem;
    --bg-main: #141414;
    --color-text: #ffffff;
    --bg-items: #031717;
    --card-txt-1: #D2EEED;
    --card-txt-2: #3B6F6D;
    --card-txt-2-contrast: #68ABA8;
    --card-txt-3: #444852;
    --card-txt-4: #444852;
    --card-txt-5: #ffffff;
    --menu-text: #D2EEED;
    --menu-text-hover: #ffffff;
    --menu-text-active: #ffffff;
    --button-primary-txt-pressed: #c2c4c9;
    --link-color: var(--card-txt-1);
    --link-color-hover: #ffffff;
    --sidebar-width: 13.125rem;
    --sidebar-bg: #00100E;
    --sidebar-bg-secondary: #0d1016;
    --sidebar-line: #1b1f28;
    --brand-primary: #ff2400;
    --brand-secondary: #04CFAA;
    --brand-secondary-light: rgba(0, 207, 166, .15);
    --additionals-danger: #ff2400;
    --additionals-success: #00CFA6;
    --additionals-warning: #ffc700;
    --additionals-favorites: #ffc700;
    --button-primary-bg: #ff2400;
    --button-primary-bg-animation: rgba(255, 36, 0, .5);
    --button-primary-bg-hover: linear-gradient(0deg, rgba(49, 51, 52, .15), rgba(49, 51, 52, .15)), #ff2400;
    --button-primary-bg-pressed: linear-gradient(0deg, rgba(13, 16, 22, .2), rgba(13, 16, 22, .2)), #ff2400;
    --button-color-first: #E61F00;
    --button-color-second: linear-gradient(0deg, rgba(49, 51, 52, .15), rgba(49, 51, 52, .15)), #ff2400;
    --button-color-third: rgba(255, 36, 0, .5);
    --button-color-type2-first: none;
    --button-color-type2-second: #ff2400;
    --button-color-type2-third: rgba(255, 36, 0, .5);
    --buttons-height: 2.5rem;
    --buttons-width: 18.5rem;
    --buttons-font-size: 1rem;
    --buttons-color: rgba(0, 0, 0, .9);
    --buttons-radius: 0.25rem;
    --sections-radius: 0.25rem;
    --h2-size: 3rem;
    --h1-size: calc(var(--h2-size) * 1.3);
    --h3-size: calc(var(--h2-size) * 0.7);
    --gradient-menu: linear-gradient(90deg, rgba(0, 207, 166, 0) 0%, rgba(0, 207, 166, .35) 27.6%, rgba(0, 207, 166, .7) 52.62%, rgba(0, 207, 166, .35) 74.48%, rgba(0, 207, 166, 0) 100%);
}

@media (max-width: 47.9375rem) {
    :root {
        --h2-size: 2.125rem;
    }
}

@font-face {
    font-family: 'icomoon';
    src: url('./css/fonts/icomoon.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

body, html {
    overflow-x: hidden;
    min-width: 21.875rem;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var(--font-size-main);
    color: var(--color-text);
    line-height: var(--line-height-main);
    background: var(--sidebar-bg);
}

body.hidden_scroll-y {
    overflow-y: hidden;
}

h1 {
    font-size: var(--h1-size);
    color: var(--card-txt-1);
}

h2 {
    font-size: var(--h2-size);
    color: var(--card-txt-1);
}

h3 {
    font-size: var(--h3-size);
    color: var(--card-txt-1);
}

a {
    color: var(--link-color);
    outline: none !important;
    transition: 0.2s;
}

a:hover {
    color: var(--link-color-hover);
}

a:active {
    color: var(--link-color-hover);
}

.style, [class*="section-box"], section, footer {
    width: 100%;
    float: left;
}

[class*="section-box"], section, footer {
    position: relative;
}

section, header, nav, article, aside, footer, address {
    display: block;
}

.container {
    min-width: 300px;
}

.bold {
    font-weight: 700;
}

.container, .container-fluid {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    max-width: 120rem;
}

@media (min-width: 36rem) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 62rem) {
    .container {
        max-width: 62rem;
    }
}

@media (min-width: 75rem) {
    .container {
        max-width: 73.125rem;
    }
}

@media (min-width: 87.5rem) {
    .container {
        max-width: 82.5rem;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-top: 0;
}

.col {
    flex: 1 0 0%;
}

@media (min-width: 36rem) {
    .col-sm {
        flex: 1 0 0%;
    }
}

@media (min-width: 48rem) {
    .col-md {
        flex: 1 0 0%;
    }
}

@media (min-width: 62rem) {
    .col-lg {
        flex: 1 0 0%;
    }
}

@media (min-width: 75rem) {
    .col-xl {
        flex: 1 0 0%;
    }
}

@media (min-width: 87.5rem) {
    .col-xxl {
        flex: 1 0 0%;
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 36rem) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 48rem) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 62rem) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 75rem) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 87.5rem) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-6 {
    order: 6 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 36rem) {
    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-6 {
        order: 6 !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 48rem) {
    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-6 {
        order: 6 !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 62rem) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-6 {
        order: 6 !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 75rem) {
    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-6 {
        order: 6 !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 87.5rem) {
    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-6 {
        order: 6 !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    border-right: 0.0625rem solid var(--sidebar-line);
    background: var(--sidebar-bg);
    z-index: 9;
}

.header:before {
    content: '';
    right: -0.0625rem;
    top: 0;
    bottom: 0;
    width: 0.0625rem;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 207, 166, 0) 15%, #00cfa6 50%, rgba(0, 207, 166, 0) 85%);
    opacity: 0;
    transform: scaleY(0);
    transition: 0.2s;
}

.header:hover:before {
    opacity: 1;
    transform: scaleY(1);
    transition: 0.5s;
}

.header__logo {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: var(--sidebar-bg);
    z-index: 3;
}

.header__support {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 1rem;
    right: 0;
    background: var(--sidebar-bg);
    z-index: 3;
    padding-top: 1rem;
}

.header__support:before {
    content: '';
    width: 100%;
    height: 2.375rem;
    position: absolute;
    left: 0;
    top: -2.3125rem;
    z-index: 2;
    background: linear-gradient(180deg, rgba(14, 17, 24, 0) 0%, #0f1218 100%);
}

.header__support_title {
    text-align: center;
    color: var(--link-color);
    font-size: var(--font-size);
}

.header__support_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header__support_items_item {
    width: 6.3125rem;
    padding: 1rem 0.375rem 0 0.375rem;
}

.header__support_items_item a {
    border: 0.0625rem solid var(--card-txt-2);
    border-radius: var(--buttons-radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: var(--buttons-height);
    font-size: 0.75rem;
    transition: 0.2s;
}

.header__support_items_item a:hover {
    background: var(--card-txt-2);
}

.header__support_items_item a:hover span:before {
    color: var(--link-color-hover);
}

.header__support_items_item a span {
    position: relative;
    padding-left: 2.125rem;
}

.header__support_items_item a span:before {
    color: var(--card-txt-2);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.25rem;
    height: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.header__support_items_item a.chat span:before {
    font-family: 'icomoon';
    content: '\e970';
}

.header__support_items_item a.tg {
    padding-left: 0;
}

.header__support_items_item a.tg span {
    width: 2.5rem;
}

.header__support_items_item a.tg span:before {
    font-family: 'icomoon';
    content: '\ea95';
    width: 2.5rem;
}

.header__menu {
    overflow: hidden;
    height: 100vh;
}

.header__menu_section {
    overflow: auto;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    padding-top: 4.5625rem;
    padding-bottom: 8.1875rem;
    z-index: 2;
}

.header__nav li {
    list-style: none;
}

.header__nav li a {
    padding-left: 1rem;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    font-size: var(--font-size);
    min-height: 2.5rem;
    align-items: center;
}

.header__nav li a[class*="icon-type-"] {
    padding-left: 2.875rem;
    position: relative;
    text-overflow: ellipsis;
}

.header__nav li a[class*="icon-type-"]:before {
    font-family: 'icomoon';
    position: absolute;
    left: 1rem;
    top: 50%;
    margin-top: -0.75rem;
    height: 1.5rem;
    width: 1.5rem;
    color: var(--card-txt-2);
    font-size: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.header__nav li a[class*="icon-type-"]:hover:before {
    color: var(--link-color-hover);
    transform: scale(1.2);
}

.header__nav li.active a {
    color: var(--link-color-hover);
}

.header__nav li.active a:before {
    color: var(--link-color-hover);
    transform: scale(1.2);
}

.header__download {
    position: relative;
    margin-top: 1rem;
    padding-top: 1.6875rem;
    width: var(--sidebar-width);
}

.header__download:before {
    position: absolute;
    content: '';
    left: 1rem;
    top: 0;
    right: 1.0625rem;
    height: 0.0625rem;
    background: var(--gradient-menu);
}

.header__download_title {
    text-align: center;
    color: var(--link-color);
    font-size: var(--font-size);
}

.header__download_rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: var(--link-color);
    font-size: var(--font-size);
    padding-top: 1rem;
}

.header__download_rating_stars {
    margin-left: 0.5rem;
    width: 6.875rem;
    height: 1.125rem;
    background-image: url('./images/icons/star-full.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: relative;
    top: -0.0625rem;
}

.header__download_item {
    display: flex;
    flex-wrap: wrap;
}

.header__download_item a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    width: 11.25rem;
    max-width: 100%;
    height: var(--buttons-height);
    border: 0.0625rem solid var(--card-txt-2);
    border-radius: var(--buttons-radius);
    position: relative;
    overflow: hidden;
    padding-left: 2.5rem;
    font-size: 0.75rem;
    transition: 0.2s;
}

.header__download_item a:hover {
    background: var(--card-txt-2);
    color: var(--link-color-hover);
}

.header__download_item a:hover span {
    color: var(--link-color-hover);
}

.header__download_item a span {
    text-align: center;
}

.header__download_item a i {
    display: block;
    font-style: normal;
    width: 100%;
    font-size: 1rem;
}

.header__download_item a:before {
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    top: -0.0625rem;
    bottom: -0.0625rem;
    width: 2.5rem;
    background: var(--card-txt-2);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    border-right: 0.0625rem solid var(--bg-main);
}

.header__download_item a.android:before {
    content: "\eac0";
}

.header__download_item a.ios:before {
    content: "\eabe";
}

.header__nav li a.icon-type-1:before {
    content: "\e900";
}

.header__nav li a.icon-type-2:before {
    content: "\e901";
    font-size: 0.875rem;
}

.header__nav li a.icon-type-3:before {
    content: "\e902";
}

.header__nav li a.icon-type-4:before {
    content: "\e903";
}

.header__nav li a.icon-type-5:before {
    content: "\e904";
}

.header__nav li a.icon-type-6:before {
    content: "\e905";
}

.header__nav li a.icon-type-7:before {
    content: "\e906";
}

.header__nav li a.icon-type-8:before {
    content: "\e907";
}

.header__nav li a.icon-type-9:before {
    content: "\e908";
}

.header__nav li a.icon-type-10:before {
    content: "\e909";
}

.header__nav li a.icon-type-11:before {
    content: "\e90a";
}

.header__nav li a.icon-type-12:before {
    content: "\e90b";
}

.header__nav li a.icon-type-13:before {
    content: "\e90c";
}

.header__nav li a.icon-type-14:before {
    content: "\e90d";
}

.header__nav li a.icon-type-15:before {
    content: "\e915";
}

.header__nav li a.icon-type-16:before {
    content: "\e916";
}

.header__nav li a.icon-type-17:before {
    content: "\e917";
}

.header__nav li a.icon-type-18:before {
    content: "\e918";
}

.header__nav li a.icon-type-19:before {
    content: "\e91a";
}

.header__nav li a.icon-type-20:before {
    content: "\e91b";
}

.header__nav li a.icon-type-21:before {
    content: "\e941";
}

.header__nav li a.icon-type-22:before {
    content: "\e94e";
}

.header__nav li a.icon-type-23:before {
    content: "\e964";
}

.header__nav li a.icon-type-24:before {
    content: "\e96b";
}

.header__nav li a.icon-type-25:before {
    content: "\e970";
}

.header__nav li a.icon-type-26:before {
    content: "\e99e";
}

.header__nav li a.icon-type-27:before {
    content: "\e99f";
}

.header__nav li a.icon-type-28:before {
    content: "\e9a9";
}

.header__nav li a.icon-type-29:before {
    content: "\e9b3";
}

.header__nav li a.icon-type-30:before {
    content: "\ea95";
}

.header__nav li a.icon-type-31:before {
    content: "\eabe";
}

.header__nav li a.icon-type-32:before {
    content: "\eac0";
}

.header-section {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding-left: var(--sidebar-width);
    z-index: 8;
}

.header-section > .container-fluid {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: var(--sidebar-bg);
}

.header-section__menu_button {
    width: 1.5rem;
    position: relative;
    height: 1rem;
    cursor: pointer;
    margin-right: 0.5rem;
}

.header-section__menu_button:before {
    border-radius: var(--buttons-radius);
    position: absolute;
    content: '';
    left: -0.5rem;
    right: -0.5rem;
    top: -0.5625rem;
    bottom: -0.5625rem;
    transition: 0.2s;
    background: var(--card-txt-2);
}

.header-section__menu_button span {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0.75rem;
    width: 100%;
    height: 0.125rem;
    background: #fff;
    transition: 0.2s;
}

.header-section__menu_button span:first-child {
    margin-top: 0.1875rem;
}

.header-section__menu_button span:first-child:before {
    margin-top: 0;
}

.header-section__menu_button.open span {
    transform: rotate(-45deg);
    margin-top: 0.375rem;
}

.header-section__menu_button.open span:first-child {
    transform: rotate(45deg);
    margin-top: 0.375rem;
}

.header-section__text {
    font-size: var(--font-size-main);
    color: var(--card-txt-1);
    cursor: default;
}

.header-section__text:hover {
    color: #ffffff;
}

@media (min-width: 20000px) {
    .header-links {
        display: flex;
        flex-wrap: wrap;
        font-weight: 700;
    }

    .header-links li {
        float: left;
        padding: 0 1rem;
        position: relative;
        list-style: none;
        width: 100%;
    }

    .header-links li .anchor-scroll {
        cursor: pointer;
        position: relative;
        line-height: 1.5625rem;
        font-size: 1rem;
        display: block;
        font-weight: 700;
        margin: 0.1875rem 0;
        padding-top: 0.4375rem;
        padding-bottom: 0.4375rem;
        color: var(--color-text);
        display: inline-block;
        align-items: center;
    }

    .header-links li .anchor-scroll:hover, .header-links li .anchor-scroll.active {
        text-decoration: none;
    }

    .header-links li .anchor-scroll:hover {
        color: var(--link-color);
    }

    .header-links li .anchor-scroll.active {
        color: var(--link-color-hover);
    }

    .header-button {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -0.375rem;
    }

    .header-button > div {
        padding: 0 0.375rem;
    }

    .button-mobile-menu {
        width: 1.5rem;
        float: left;
        position: fixed;
        right: 1.5rem;
        margin-top: 0;
        top: 1.3125rem;
        height: 1rem;
        cursor: pointer;
        z-index: 6;
    }

    .button-mobile-menu:before {
        border-radius: var(--buttons-radius);
        position: absolute;
        content: '';
        left: -0.5rem;
        right: -0.5rem;
        top: -0.5625rem;
        bottom: -0.5625rem;
        transition: 0.25s;
        background: var(--button-color-first);
    }

    .button-mobile-menu div {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 0.875rem;
        width: 100%;
        height: 0.125rem;
        background: #333;
        transition: 0.22s;
    }

    .button-mobile-menu div:first-child {
        margin-top: 0;
    }

    .button-mobile-menu div:first-child:before {
        margin-top: 0;
    }

    .button-mobile-menu div:before {
        width: 100%;
        height: 100%;
        position: absolute;
        content: '';
        top: 0;
        margin-top: -0.4375rem;
        left: 0;
        background: #333;
        transition: 0.22s;
    }

    .button-mobile-menu.open div {
        transform: rotate(-45deg);
        margin-top: 0.375rem;
    }

    .button-mobile-menu.open div:first-child {
        transform: rotate(45deg);
        margin-top: 0.375rem;
    }

    .button-mobile-menu.open div:before {
        margin-top: 0;
    }

    .mobile-menu {
        padding-right: 3.75rem;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        overflow-y: scroll;
        background: #1e1e1e;
        height: 100%;
        margin-right: -110%;
        transition: 0.35s;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        padding-bottom: 2.5rem;
        padding-top: 3.4375rem;
        z-index: 5;
    }

    .mobile-menu.open {
        margin-right: 0;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
    }

    .mobile-menu .header-button {
        margin-top: 1.75rem;
        margin-right: -3.75rem;
    }

    header {
        position: fixed;
        bottom: auto;
        top: 0;
        left: auto;
        right: 0;
    }
}

@media (min-width: 20000px) and (min-width: 48rem) {
    .header-button {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    header {
        width: var(--sidebar-width);
        left: 0;
        top: 0;
        bottom: 0;
    }

    header:before {
        content: '';
        position: absolute;
        right: -0.125rem;
        top: var(--header-height);
        bottom: var(--footer-height);
        width: 0.1875rem;
        background: var(--color-green-contrast-2);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--color-green) 45%, var(--color-green) 55%, rgba(0, 0, 0, 0) 100%);
        filter: blur(0.0625rem);
    }

    header > .container-fluid {
        overflow: hidden;
    }

    header > .container-fluid > .row {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        overflow-y: scroll;
        height: 100vh;
        width: 16.6875rem;
    }

    header nav {
        display: flex;
        flex-wrap: wrap;
        width: 11.875rem;
        max-width: 100%;
    }

    header .header-links {
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
    }

    header .header-links li {
        padding: 0;
        position: relative;
        width: 100%;
        margin-top: 0.875rem;
    }

    header .header-links li:first-child {
        margin-top: 0;
    }

    header .header-links li .anchor-scroll {
        padding-top: 0;
        padding-bottom: 0;
        display: block;
        color: var(--color-text);
        transition: 0.15s;
        position: relative;
        margin: 0;
        line-height: 1.2;
        font-size: 0.75rem;
        text-transform: uppercase;
    }

    header .header-links li .anchor-scroll:hover {
        text-decoration: underline;
    }

    header .header-button {
        padding-top: 2.25rem;
        transform: translateX(-3.75rem);
        opacity: 0;
        transition: 0.25s;
    }

    header .header-button > div {
        margin-top: 0.75rem;
    }

    .mobile-menu {
        flex: 0 0 auto;
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        overflow: auto;
        background: none;
        height: auto;
        margin: 0;
        opacity: 1;
        padding-top: 3rem;
        padding-bottom: 0;
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    .header-section__text {
        font-size: var(--font-size);
        line-height: var(--line-height);
    }
}

@media (min-width: 48rem) and (max-width: 51.5625rem) {
    .header-section__text {
        font-size: 0.6875rem;
    }
}

@media (max-width: 47.9375rem) {
    .header {
        left: auto;
        right: 0;
        margin-right: -13.125rem;
        opacity: 0;
        transition: 0.2s;
        border-left: 1px solid var(--sidebar-line);
        border-right: 0;
    }

    .header.open {
        margin-right: 0;
        opacity: 1;
    }

    .header:before {
        right: auto;
        left: -0.0625rem;
        opacity: 1;
        transform: scaleY(1);
    }

    .header-section {
        padding-left: 0;
        transition: 0.35s;
    }

    .header-section .buttons {
        font-size: 0.875rem;
        height: 1.75rem;
    }

    .header-section > .container-fluid {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }

    .header__menu_section {
        padding-top: 1.125rem;
    }
}

@media (max-width: 35.9375rem) {
    .header-section .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    .header-section .row > * {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }

    .header-section__menu_button {
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }
}

@media (max-width: 26.25rem) {
    .header-section__menu_button {
        margin-left: 0.1875rem;
        margin-right: 0.1875rem;
        width: 1.25rem;
    }

    .header-section__menu_button:before {
        left: -0.3125rem;
        right: -0.3125rem;
        top: -0.4375rem;
        bottom: -0.375rem;
    }
}

@media (max-width: 22.5rem) {
    .header-section {
        padding-left: 0;
        transition: 0.35s;
    }

    .header-section .buttons {
        font-size: 0.875rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

main {
    padding-top: 4.375rem;
    padding-left: var(--sidebar-width);
    overflow: hidden;
}

.pages-title {
    color: var(--card-txt-1);
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.main-banner {
    margin-top: 1rem;
}

.main-banner__items {
    margin-top: 2rem;
    position: relative;
    padding-left: 5rem;
}

.main-banner__items:first-child {
    margin-top: 1.375rem;
}

.main-banner__items_title {
    font-size: 1.625rem;
}

.main-banner__items p {
    margin-top: 1rem;
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-weight: normal;
    font-family: 'Arial', sans-serif;
}

.main-banner__items_img {
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: 0.1875rem;
    left: 0;
}

.main-banner__items_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
}

.main-banner__items_img .hover {
    opacity: 0;
    transition: 0.2s;
}

.main-banner__items:hover h3 {
    color: #ffffff;
}

.main-banner__items:hover .main-banner__items_img .hover {
    opacity: 1;
}

.main-banner__big {
    padding-top: 62.5%;
    padding-top: calc(62.5% - 2rem);
    position: relative;
    max-width: 51.9375rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.main-banner__big:hover .main-banner__big_bg div {
    transform: scaleX(1);
}

.main-banner__big_bg {
    position: absolute;
    top: 1.5rem;
    right: 2.25rem;
    left: 0.0625rem;
    bottom: 0.0625rem;
    z-index: 1;
}

.main-banner__big_bg:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.57) 26%, rgba(0, 0, 0, 0.39) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 5;
    border-radius: 0.75rem;
}

.main-banner__big_bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
    border-radius: 0.75rem;
    z-index: 4;
}

.main-banner__big_bg div {
    position: absolute;
    background: #fff;
    background: linear-gradient(110.74deg, #fff, #fff0);
    left: -0.0625rem;
    right: -0.0625rem;
    top: -0.0625rem;
    bottom: -0.0625rem;
    z-index: 2;
    border-radius: 0.75rem;
    transform: scaleX(0);
    transition: 0.25s;
    transform-origin: left;
    box-shadow: 0 0 6px var(--card-txt-1);
}

.main-banner__big_bg div:before {
    content: '';
    position: absolute;
    left: 0.0625rem;
    right: 0.0625rem;
    top: 0.0625rem;
    bottom: 0.0625rem;
    background: var(--sidebar-bg);
    z-index: 3;
    border-radius: 0.75rem;
}

.main-banner__big_girl {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    left: 0;
}

.main-banner__big_girl img {
    width: auto;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.main-banner__big_text {
    position: absolute;
    z-index: 4;
    top: 1.5rem;
    right: 2.25rem;
    left: 0.0625rem;
    bottom: 0.0625rem;
    padding: 1rem;
    padding-bottom: 4.5rem;
}

.main-banner__big_text div {
    color: var(--card-txt-1);
    margin-top: 1rem;
}

.main-banner__big_text div:first-child {
    margin-top: 0;
}

.main-banner__big_text div.bold {
    font-weight: 700;
}

.main-banner__big_text div.small {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.main-banner__big_text div.medium {
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.main-banner__big_text div.big {
    font-size: 3rem;
    text-transform: uppercase;
}

.main-banner__big_text_button {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

.main-banner__big_text .buttons {
    width: 13.125rem;
    margin-left: 0;
}

@media (min-width: 99.9375rem) {
    .main-banner__items_title {
        font-size: var(--h3-size);
    }

    .main-banner__items p {
        font-size: var(--font-size-main);
    }

    .main-banner__big {
        padding-top: calc(56.25% - 2rem);
    }
}

@media (max-width: 82.5rem) {
    .main-banner__big {
        padding-top: 80%;
    }
}

@media (max-width: 74.9375rem) {
    .main-banner__big {
        padding-top: 45%;
    }

    .main-banner__items:first-child {
        margin-top: 2.4375rem;
    }
}

@media (max-width: 61.9375rem) {
    .main-banner__big {
        padding-top: 0;
        height: 21.875rem;
    }
}

@media (max-width: 47.9375rem) {
    .main-banner__big_text div.small {
        font-size: 1.35rem;
        text-transform: none;
    }

    .main-banner__big_text div.medium {
        font-size: 1.8rem;
        text-transform: none;
    }

    .main-banner__big_text div.big {
        font-size: 2.25rem;
        text-transform: none;
    }
}

.main-thematic {
    margin-top: 3.6875rem;
}

.main-thematic__col {
    padding-top: 2.5rem;
}

.main-thematic__col_item a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    text-transform: uppercase;
    font-size: 1.625rem;
    padding-bottom: 1.5rem;
    background: var(--bg-items);
    border-radius: var(--sections-radius);
    height: 11.5rem;
    width: 34.125rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.main-thematic__col_item a > * {
    z-index: 2;
    position: relative;
}

.main-thematic__col_item a:hover b {
    opacity: 0.55;
}

.main-thematic__col_item a:hover img {
    transform: scale(1.2);
}

.main-thematic__col_item a:hover:before, .main-thematic__col_item a:hover:after {
    opacity: 1;
}

.main-thematic__col_item a:before, .main-thematic__col_item a:after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: 0.2s;
}

.main-thematic__col_item a:before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: var(--sections-radius);
    filter: blur(0.25rem);
    background: linear-gradient(110.74deg, #fff6, #fff0);
    z-index: -1;
}

.main-thematic__col_item a:after {
    mask: linear-gradient(#fff 0%) content-box, linear-gradient(#fff 100%);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--sections-radius);
    padding: 0.0625rem;
    background: linear-gradient(110.74deg, #fff, #fff0);
    z-index: 1;
}

.main-thematic__col_item a b {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    transition: 0.2s;
}

.main-thematic__col_item a b:before {
    content: '';
    overflow: hidden;
    position: absolute;
    left: -5rem;
    right: -5rem;
    top: -5rem;
    bottom: -5rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 986 323" xml:space="preserve"><g transform="translate(0.000000,323.000000) scale(0.100000,-0.100000)"><path fill="rgb(15, 34, 34)" d="M2385,3223c-261-24-594-126-875-269c-303-153-422-233-1155-768C7,1932-13,1912,13,1833c9-29,22-43,57-61c41-21,54-23,137-18c134,8,207,40,530,234c461,278,658,379,930,478c255,92,426,119,700,111c335-10,565-84,853-274c257-170,464-363,769-718c256-298,397-444,526-548c255-206,482-318,752-372c213-44,492-34,723,25c343,87,705,285,1155,630c427,327,659,491,849,600c323,186,599,270,883,270c159,0,264-15,408-60c118-37,163-36,206,6c180,173-217,358-766,357c-369,0-721-86-1102-268c-173-83-274-140-533-303c-472-297-653-397-859-474c-210-78-354-103-543-95c-293,11-526,117-798,362c-91,82-177,176-370,406c-178,211-325,366-461,485c-271,239-588,426-894,528C2949,3206,2617,3244,2385,3223z"/><path fill="rgb(15, 34, 34)" d="M2038,1549c-342-36-696-160-1031-361c-132-80-333-225-404-293c-54-52-63-65-63-96c0-50,38-84,93-84c37,1,65,16,217,119c646,435,1365,555,2005,336c255-87,487-219,863-488c373-268,549-375,777-473C4809,75,5098,13,5461,3c219-6,346,3,569,43c313,56,532,136,1000,364c379,184,488,231,660,283c250,76,466,107,740,107c281,0,503-31,752-106c180-54,236-75,409-153c75-34,144-61,154-61c36,0,88,34,101,67c18,43,1,90-47,125c-135,100-489,248-765,318c-249,64-409,84-689,84c-266,1-347-8-600-69c-240-58-401-120-771-300c-466-227-709-314-1059-376c-114-21-161-24-385-24c-220,1-272,4-379,23c-233,42-436,106-639,203c-156,74-275,146-524,321c-406,284-590,397-813,498C2807,1516,2399,1587,2038,1549z"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 34.375rem;
    background-position: 50% 50%;
    transform: rotate(31deg);
}

.main-thematic__col_item a i {
    position: absolute;
    left: 0;
    right: 0;
    top: -1.5rem;
    height: 8.125rem;
}

.main-thematic__col_item a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.2s;
}

.main-thematic__col:nth-child(1) .main-thematic__col_item a b:before {
    background-position: 50% 62%;
    background-size: 50rem;
    transform: rotate(-40deg);
}

.main-thematic__col:nth-child(2) .main-thematic__col_item a b:before {
    background-position: 50% 4%;
    background-size: 37.5rem;
    transform: rotate(25deg);
}

.main-thematic__col:nth-child(3) .main-thematic__col_item a b:before {
    background-position: 59% 72%;
    background-size: 62.5rem;
    transform: rotate(-142deg);
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    .main-thematic__col_item a i {
        left: 1.25rem;
        right: 1.25rem;
        height: 7.1875rem;
    }
}

@media (max-width: 47.9375rem) {
    .main-thematic {
        margin-top: 2.375rem;
    }
}

.headers-text {
    color: var(--card-txt-1);
    position: relative;
    padding-bottom: 1.125rem;
}

.headers-text:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.0625rem;
    background: linear-gradient(90deg, rgba(0, 207, 166, 0) 15%, #00cfa6 50%, rgba(0, 207, 166, 0) 85%);
}

.headers-text:after {
    content: '';
    position: absolute;
    width: 7.5rem;
    left: 50%;
    margin-left: -3.75rem;
    bottom: -0.0625rem;
    height: 0.1875rem;
    background: var(--brand-secondary);
    border-radius: 0.1875rem;
    box-shadow: 0 0 0.375rem var(--brand-secondary), 0 0 1.875rem var(--brand-secondary);
}

.headers-text h2 {
    text-align: center;
}

.headers-text p {
    margin-top: 1rem;
}

.slots {
    margin-top: 4.875rem;
}

.slots__row {
    margin-top: 1.625rem;
}

.slots__col {
    padding-top: 1rem;
}

.slots__col_item {
    max-width: 16.3125rem;
    margin-left: auto;
    margin-right: auto;
}

.slots__col_item a:hover {
    text-decoration: underline;
}

.slots__col_item a:hover .slots__col_item_img:before, .slots__col_item a:hover .slots__col_item_img:after {
    opacity: 1;
    transform: scaleX(1);
}

.slots__col_item_img {
    display: block;
    position: relative;
    padding-top: 67.5%;
}

.slots__col_item_img picture {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: var(--sections-radius);
    overflow: hidden;
}

.slots__col_item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 3;
}

.slots__col_item_img:before, .slots__col_item_img:after {
    content: '';
    position: absolute;
    border-radius: var(--sections-radius);
    opacity: 0;
    transition: 0.2s;
    transform: scaleX(0);
    transform-origin: left;
}

.slots__col_item_img:before {
    z-index: 2;
    left: -0.0625rem;
    right: -0.0625rem;
    top: -0.0625rem;
    bottom: -0.0625rem;
    background: linear-gradient(110.74deg, #fff, #fff0);
}

.slots__col_item_img:after {
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--sidebar-bg);
}

.slots__col_item_name {
    font-size: var(--font-size);
    text-align: center;
    padding-top: 0.5rem;
    display: block;
}

.content {
    margin-top: 4.25rem;
}

.content__tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
    margin-top: 1.1875rem;
}

.content__tabs li {
    padding: 1rem 1rem 0 1rem;
    list-style: none;
}

.content__tabs li span {
    color: var(--card-txt-1);
    text-transform: uppercase;
    font-size: 1.125rem;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.content__tabs li span:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.0625rem;
    background: var(--card-txt-1);
    background: linear-gradient(90deg, rgba(0, 207, 166, 0) 0%, var(--card-txt-1) 50%, rgba(0, 207, 166, 0) 100%);
    z-index: -1;
    transition: 0.2s;
}

.content__tabs li span:hover:before {
    background: linear-gradient(90deg, rgba(0, 207, 166, 0) 5%, var(--card-txt-1) 50%, rgba(0, 207, 166, 0) 95%);
}

.content__tabs li.active span:before {
    display: none;
}

.comments {
    margin-top: 4.25rem;
}

.comments__col_item {
    text-align: center;
    margin-top: 1.5rem;
    border-radius: var(--sections-radius);
    background: var(--card-txt-2);
    padding: 1rem;
    position: relative;
    color: #fff;
    max-width: 33.625rem;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100% - 1.5rem);
}

.comments__col_item > * {
    position: relative;
    z-index: 2;
}

.comments__col_item:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url('<?= $t->baseUrl() ?>/assets/images/banners/comments.webp') 0 0 repeat;
    z-index: 1;
    opacity: 0.075;
    filter: blur(0.125rem);
}

.comments__col_item_author {
    font-weight: 700;
    font-size: 1.5rem;
}

.comments__col_item_date {
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.comments__col_item_date:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0) 15%, #fff 50%, rgba(0, 255, 255, 0) 85%);
    height: 0.0625rem;
}

.comments__col_item_text {
    font-size: var(--font-size);
    line-height: var(--line-height);
    margin-top: 1rem;
}

@media (min-width: 48rem) and (max-width: 53.125rem) {
    .comments__col {
        width: 100%;
    }
}

.faq {
    margin-top: 4.25rem;
}

.faq amp-accordion {
    display: flex;
    flex-wrap: wrap;
}

.faq amp-accordion section {
    width: auto;
    float: none;
    overflow: hidden;
    padding-bottom: 0.125rem;
    margin-top: 1.5rem;
    background: var(--bg-items);
    border-radius: var(--sections-radius);
}

.faq amp-accordion section:hover h3 {
    color: #fff;
}

.faq amp-accordion section:hover h3 .arrow:before, .faq amp-accordion section:hover h3 .arrow:after {
    background: #ffffff;
}

.faq amp-accordion section h3 {
    position: relative;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    padding: 0.9375rem 4.0625rem 0.9375rem 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: var(--card-txt-1);
    transition: 0.2s;
}

.faq amp-accordion section h3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0);
    transition: 0.2s;
}

.faq amp-accordion section h3 .arrow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: -0.125rem;
    width: 3.125rem;
}

.faq amp-accordion section h3 .arrow:before, .faq amp-accordion section h3 .arrow:after {
    position: absolute;
    content: '';
    background: var(--card-txt-1);
    border-radius: 0.125rem;
    top: 50%;
    transition: 0.3s;
    width: 14px;
    height: 2px;
    margin-top: -1px;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.4, 0.7);
}

.faq amp-accordion section h3 .arrow:before {
    left: 0.875rem;
    transform: rotate(45deg);
}

.faq amp-accordion section h3 .arrow:after {
    right: 0.8125rem;
    transform: rotate(-45deg);
}

.faq amp-accordion section > div {
    height: 0;
    overflow: hidden;
    transition: 0.2s;
    position: relative;
}

.faq amp-accordion section > div div {
    height: auto;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    padding-left: 0.75rem;
    padding-right: 3.125rem;
    color: var(--card-txt-2-contrast);
    font-size: var(--font-size);
    line-height: var(--line-height);
}

.faq amp-accordion section > div div > * {
    margin-top: 1rem;
}

.faq amp-accordion section > div div > *:first-child {
    margin-top: 1.125rem;
}

.faq amp-accordion section > div div > *:last-child {
    margin-bottom: 1rem;
}

.faq amp-accordion section.open:before {
    opacity: 0;
}

.faq amp-accordion section.open:last-child {
    margin-bottom: 0;
}

.faq amp-accordion section.open h3 {
    color: #fff;
}

.faq amp-accordion section.open h3:before {
    border-bottom: 0.0625rem solid var(--brand-secondary);
}

.faq amp-accordion section.open h3 .arrow:before {
    transform: rotate(-45deg);
}

.faq amp-accordion section.open h3 .arrow:after {
    transform: rotate(45deg);
}

@media (max-width: 47.9375rem) {
    .faq amp-accordion {
        column-count: 1;
        column-gap: 0;
    }

    .faq amp-accordion section:first-child {
    }

    .faq amp-accordion section h3 {
        padding: 1.125rem 3.25rem 0.9375rem 0.75rem;
        font-size: 1rem;
    }

    .faq amp-accordion section h3 .arrow {
        width: 2.5rem;
    }

    .faq amp-accordion section h3 .arrow:before {
        left: 0.5625rem;
    }

    .faq amp-accordion section h3 .arrow:after {
        right: 0.5rem;
    }

    > div div > * {
        margin-top: 0.875rem;
    }

    > div div > *:last-child {
        margin-bottom: 1.1875rem;
    }
}

@media (min-width: 74.9375rem) {
    .faq amp-accordion {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .faq amp-accordion .column {
        width: 50%;
        padding: 0 0.75rem;
    }
}

@media (max-width: 47.9375rem) {
    main {
        padding-left: 0;
        transition: 0.35s;
    }
}

.buttons {
    height: var(--buttons-height);
    border-radius: var(--buttons-radius);
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    font-size: var(--buttons-font-size);
    color: #ffffff;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 700;
    background: var(--button-color-first);
    transition: 0.2s;
}

.buttons span {
    line-height: 1;
}

.buttons:hover {
    background: var(--button-primary-bg-hover);
    color: var(--button-primary-txt-pressed);
}

.buttons:active {
    background: var(--button-primary-bg-pressed);
    color: var(--button-primary-txt-pressed);
}

.buttons.login {
    background: none;
    border: 0.0625rem solid var(--button-color-first);
}

.buttons.login:hover {
    background: var(--button-color-first);
    border: 0.0625rem solid var(--button-color-first);
}

.buttons.animation:before {
    content: "";
    animation: button-pulse 1.6s ease-out infinite .5s;
    position: absolute;
    border-radius: .25rem;
    transform: scale(0.7, 0.5);
    background: var(--button-primary-bg-animation);
    z-index: -1;
    transition: transform .5s linear;
    left: -0.75rem;
    right: -0.75rem;
    top: -0.75rem;
    bottom: -0.75rem;
}

.buttons.animation:active:before {
    display: none;
}

@keyframes button-pulse {
    0% {
        transform: scale(0.7, 0.5);
        opacity: 0;
        border-radius: .25rem;
    }
    12% {
        opacity: 1;
    }
    34% {
        transform: scale(1);
    }
    38% {
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 0;
        border-radius: .5rem;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        border-radius: .25rem;
    }
}

.button-type-2 {
    color: var(--color-text);
    background: none;
    border: 1px solid var(--button-color-first);
}

.button-type-3 {
    background: var(--color-green-contrast-2);
}

.button-type-3:hover {
    background: var(--color-green);
}

.button-type-1, .button-type-2, .button-type-3 {
    width: auto;
    max-width: 11.875rem;
}

.button-type-1 span, .button-type-2 span, .button-type-3 span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
    .buttons {
        width: 10.25rem;
    }

    .btn-login {
        width: 6.875rem;
    }
}

@media (max-width: 47.9375rem) {
    .buttons {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .btn-login {
        width: 5.875rem;
    }
}

.content__text {
    padding-top: 1.375rem;
    position: relative;
    z-index: 4;
    font-size: var(--font-size);
    line-height: var(--line-height);
}

.content__text a {
    color: var(--link-color-hover);
    text-decoration: underline;
}

.content__text a:hover {
    color: var(--link-color-hover);
    text-decoration: none;
}

.content__text a:active {
    color: var(--link-color-hover);
}

.content__text > h2:first-child, .content__text h1:first-child {
    position: relative;
    z-index: 1;
}

.content__text h1, .content__text h2, .content__text h3, .content__text h4, .content__text h5, .content__text h6 {
    margin-top: 2.125rem;
    padding-bottom: 0.25rem;
    color: var(--card-txt-1);
    font-weight: 700;
    line-height: 1;
}

.content__text h4 {
    font-size: 1.875rem;
}

.content__text h5 {
    font-size: 1.5rem;
}

.content__text h6 {
    font-size: 1.375rem;
}

.content__text > * {
    margin-top: 1.5rem;
}

.content__text > *:first-child {
    margin-top: 0;
}

.content__text > *:first-child h1, .content__text > *:first-child h2, .content__text > *:first-child h3 {
    padding-bottom: 0;
}

.content__text ul, .content__text ol {
    margin-top: 1.5rem;
}

.content__text ul li, .content__text ol li {
    position: relative;
    margin-top: 0.875rem;
}

.content__text ol {
    list-style: none;
    list-style-position: inside;
    counter-reset: item;
}

.content__text ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: var(--brand-primary);
    font-weight: 700;
}

.content__text ul li {
    padding-left: 1rem;
    list-style: none;
}

.content__text ul li:before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 100%;
    left: 0;
    top: 0.375rem;
    position: absolute;
    background: var(--brand-primary);
}

.content__text hr {
    display: block;
    border: 0;
    height: 0.0625rem;
    background: var(--button-color-first);
    margin-top: 1.5rem;
}

.content__text .editor-table {
    margin-top: 3.125rem;
    border-radius: var(--buttons-radius);
    overflow: hidden;
}

.content__text .editor-table table {
    margin-top: 0;
}

.content__text table {
    width: 100%;
    max-width: 100%;
    margin: 2.25rem auto 0 auto;
    overflow: hidden;
    border-collapse: separate;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content__text table td, .content__text table th {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    vertical-align: middle;
    padding-top: 0.375rem;
    padding-bottom: 0.5rem;
    line-height: 1.3;
    height: 3.125rem;
}

.content__text table td {
    transition: 0.15s;
    font-size: 0.875rem;
    border-bottom: 0.125rem solid var(--button-color-first);
    border-left: 0;
}

.content__text table th {
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    height: 3.125rem;
    border: 0.125rem solid var(--button-color-first);
    border-left: 0;
    padding-bottom: 0.25rem;
}

.content__text table th:first-child {
    border-top-left-radius: var(--buttons-radius);
    border-left: 0.125rem solid var(--button-color-first);
}

.content__text table th:last-child {
    border-top-right-radius: var(--buttons-radius);
}

.content__text table tr td:first-child {
    border-left: 0.125rem solid var(--button-color-first);
}

.content__text table tr td:last-child {
    border-right: 0.125rem solid var(--button-color-first);
}

.content__text table tr:hover td {
    background: rgba(255, 255, 255, 0.2);
    transition: 0.25s;
}

.content__text img {
    border-radius: 0.375rem;
}

.content__text .buttons {
    text-decoration: none;
}

.content__text .buttons.margin-left {
    margin-left: 0.375rem;
}

.content__text .buttons.margin-right {
    margin-right: 0.375rem;
}

@media (max-width: 87.4375rem) {
    .editor-text h1 {
        font-size: 3.375rem;
    }

    .editor-text h2 {
        font-size: 2.75rem;
    }

    .editor-text h3 {
        font-size: 2rem;
    }

    .editor-text h4 {
        font-size: 1.625rem;
    }

    .editor-text h5 {
        font-size: 1.25rem;
    }

    .editor-text h6 {
        font-size: 1.125rem;
    }
}

@media (max-width: 74.9375rem) {
    .editor-text h1 {
        font-size: 2.875rem;
    }

    .editor-text h2 {
        font-size: 2.375rem;
    }

    .editor-text h3 {
        font-size: 1.75rem;
    }

    .editor-text h4 {
        font-size: 1.375rem;
    }

    .editor-text h5 {
        font-size: 1.1875rem;
    }

    .editor-text h6 {
        font-size: 1.125rem;
    }
}

@media (max-width: 61.9375rem) {
    .editor-text h1, .editor-text h2, .editor-text h3, .editor-text h4, .editor-text h5, .editor-text h6 {
        margin-top: 3rem;
        padding-bottom: 0rem;
    }

    .editor-text h1 {
        font-size: 2.5rem;
    }

    .editor-text h2 {
        font-size: 2rem;
    }

    .editor-text h3 {
        font-size: 1.5rem;
    }

    .editor-text h4 {
        font-size: 1.25rem;
    }

    .editor-text h5 {
        font-size: 1.125rem;
    }

    .editor-text h6 {
        font-size: 1.125rem;
    }
}

@media (max-width: 47.9375rem) {
    .editor-text hr {
        margin-top: 1.0625rem;
    }

    .editor-text ul li {
        padding-left: 1rem;
    }

    .editor-text ul li:before {
        position: absolute;
        top: 0.4375rem;
        left: 0;
        margin-right: 0;
    }

    .editor-text .editor-table {
        padding-right: 0.75rem;
    }

    .editor-text .editor-table table {
        max-width: none;
    }

    .editor-text table {
        box-shadow: none;
    }

    .editor-text h1, .editor-text h2, .editor-text h3, .editor-text h4, .editor-text h5, .editor-text h6 {
        margin-top: 2.375rem;
    }

    .editor-text h4, .editor-text h5, .editor-text h6 {
        color: var(--color-text);
    }

    .editor-text h1 {
        font-size: 2.875rem;
    }

    .editor-text h2 {
        font-size: 2.375rem;
    }

    .editor-text h3 {
        font-size: 1.25rem;
    }
}

.footer {
    padding-left: var(--sidebar-width);
    overflow: hidden;
    margin-top: 5.625rem;
    color: var(--card-txt-1);
    background: linear-gradient(180deg, rgba(14, 17, 24, 0) 0%, #0f1218 100%);
}

.footer__help_row {
    padding-bottom: 1.5rem;
    background: var(--bg-items);
}

.footer__help_row_col {
    padding-top: 1.5rem;
}

.footer__help_row_col img {
    filter: grayscale(1);
    transition: 0.2s;
}

.footer__help_row_col img:hover {
    filter: grayscale(0);
}

.footer__logo_text {
    margin-top: 3rem;
}

.footer__soc ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.footer__soc ul li {
    list-style: none;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
}

.footer__soc ul li:first-child {
    margin-left: 0;
}

.footer__soc ul li:last-child {
    margin-right: 0;
}

.footer__soc ul li a, .footer__soc ul li span {
    display: flex;
    flex-wrap: wrap;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    border: 0.0625rem solid var(--card-txt-2);
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.footer__soc ul li a:hover, .footer__soc ul li span:hover {
    background: var(--card-txt-2);
}

.footer__soc ul li a:hover svg, .footer__soc ul li span:hover svg {
    fill: #fff;
}

.footer__soc ul li svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--card-txt-2);
    vertical-align: top;
    transition: 0.2s;
    position: relative;
}

.footer__text {
    font-size: var(--font-size);
    line-height: var(--line-height);
}

.footer__text a {
    text-decoration: underline;
}

.footer__text a:hover {
    text-decoration: none;
}

.footer__text_age {
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 0.25rem;
}

.footer__menu {
    border-top: 0.0625rem solid var(--sidebar-line);
    padding-top: 0.875rem;
    position: relative;
    margin-top: 2.3125rem;
    padding-bottom: 1.5rem;
}

.footer__menu:before {
    content: '';
    left: 0;
    top: 0;
    right: 0;
    height: 0.0625rem;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 207, 166, 0) 15%, #00cfa6 50%, rgba(0, 207, 166, 0) 85%);
    opacity: 0;
    transform: scaleX(0);
    transition: 0.2s;
}

.footer__menu:hover:before {
    transform: scaleX(1);
    opacity: 1;
}

.footer__menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    justify-content: center;
    padding-top: 0.25rem;
}

.footer__menu ul li {
    list-style: none;
    position: relative;
    font-size: var(--font-size);
    white-space: nowrap;
    color: var(--card-txt-2);
}

.footer__menu ul li.active a {
    color: var(--card-txt-1);
}

.footer__menu ul li.active a:before, .footer__menu ul li.active a:after {
    height: 0.25rem;
    top: 0.5625rem;
    border-radius: 100%;
    background: var(--card-txt-1);
}

.footer__menu ul li a {
    color: inherit;
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    display: block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.footer__menu ul li a:hover {
    color: var(--card-txt-1);
}

.footer__menu ul li a:hover:before, .footer__menu ul li a:hover:after {
    height: 0.25rem;
    top: 0.5625rem;
    border-radius: 100%;
    background: var(--card-txt-1);
}

.footer__menu ul li a:before, .footer__menu ul li a:after {
    content: '';
    position: absolute;
    width: 0.25rem;
    height: 0.125rem;
    background: var(--card-txt-1);
    top: 0.625rem;
    transition: 0s;
}

.footer__menu ul li a:before {
    left: -0.125rem;
}

.footer__menu ul li a:after {
    right: -0.125rem;
}

@media (max-width: 56.25rem) {
    .footer__soc ul {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    .footer__soc ul li {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }
}

@media (min-width: 48rem) and (max-width: 56.25rem) {
    .footer .logo img {
        width: 8.875rem;
        height: 2.5625rem;
    }
}

@media (max-width: 47.9375rem) {
    .footer {
        transition: 0.35s;
        padding-left: 0;
    }

    .footer__menu ul li {
        font-size: 1rem;
    }

    .footer__menu ul li a:before, .footer__menu ul li a:after {
        top: 0.75rem;
    }

    .footer__menu ul li a:hover:before, .footer__menu ul li a:hover:after {
        top: 0.6875rem;
    }

    .footer__menu ul li.active a:before, .footer__menu ul li.active a:after {
        top: 0.6875rem;
    }

    .footer__text {
        margin-top: 2.4375rem;
    }
}

@media (max-width: 26.875rem) {
    .footer .logo img {
        width: 8.875rem;
        height: 2.5625rem;
    }
}

@media (min-width: 48rem) {
    ::-webkit-scrollbar {
        width: 0.25rem;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--card-txt-2);
        border-radius: 0.5rem;
    }

    ::-webkit-scrollbar-track {
        box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.049);
    }
}

@media (max-width: 47.9375rem) {
    .move {
        overflow-y: hidden;
    }

    .move main, .move footer, .move .header-section {
        margin-left: -13.125rem;
    }

    .move main, .move footer, .move .header-section {
        margin-right: 13.125rem;
    }

    .move main > *, .move footer > * {
        filter: blur(0.1875rem);
    }

    .move .header-section {
        filter: blur(0);
    }

    .hidden-scrl {
        overflow: hidden;
        position: relative;
        touch-action: none;
        -ms-touch-action: none;
    }
}

.banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.main-banner .row {
    gap: 40px 0;
}

li {
    list-style: none;
}

.seo-content ul,
.seo-content p,
.seo-content h3,
.seo-content h2 {
    margin-bottom: 15px;
}

