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

ul[class], ol[class] {
    padding: 0
}

body, h1, h2, h3, h4, p, li, figure, figcaption, blockquote, dl, dd {
    margin: 0
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5
}

ul[class], ol[class] {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    max-width: 100%;
    display: block
}

section > * + *, article > * + * {
    margin-top: 1em
}

input, button, textarea, select {
    font: inherit
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

html {
    font-size: 10px
}

body {
    font-family: Montserrat, sans-serif, Serif;
    background-color: #141a2b;
    color: #fff;
    font-size: 1.6rem
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

.header {
    background-color: #0d101b;
    width: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.container__header {
    padding-left: 15px;
    padding-right: 15px
}

.logo img {
    height: auto;
    width: 80px
}

.menu.is-active {
    display: block
}

.menu__list {
    display: flex;
    flex-direction: column
}

.menu__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 15px 25px 15px
}

.menu__link:hover {
    color: #c68c43;
    transition: color .2s
}

.menu__link svg {
    margin-right: 15px;
    height: 45px;
    width: 45px
}

.user__actions {
    margin-left: auto
}

.button {
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600
}

.button__reg {
    background: linear-gradient(285deg, #468cee -4.67%, #941afe 101.39%)
}

.button__reg:hover {
    background: linear-gradient(90deg, #468cee -4.67%, #941afe 101.39%)
}

.button__log {
    background: linear-gradient(279deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%);
    color: #4b2700;
    margin-left: 5px
}

.button__log:hover {
    background: linear-gradient(90deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%)
}

.sidebar_footer {
    align-items: center;
    background: #0d101c;
    bottom: 0;
    display: flex;
    height: 70px;
    justify-content: space-between;
    padding: 0 25px;
    width: 100%
}

.sidebar_footer::before {
    background: linear-gradient(180deg, rgba(6, 9, 19, 0), #060913);
    content: "";
    height: 21px;
    left: 0;
    position: absolute;
    right: 0;
    top: -21px
}

.social {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto
}

.social__link svg {
    height: 40px;
    width: auto
}

.c-burger {
    position: relative;
    display: inline-block;
    width: 23px;
    height: 24px;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 5px;
    margin-top: 2px
}

.c-burger span {
    top: 51%;
    display: block;
    margin-top: -2px;
    transition-property: transform;
    border-radius: 6px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2.1px
}

.c-burger span::before, .c-burger span::after {
    display: block;
    content: "";
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%
}

.c-burger span::before {
    top: -7px
}

.c-burger span::after {
    bottom: -7px
}

.c-burger.is-active span {
    transform: rotate(45deg)
}

.c-burger.is-active span::before {
    top: 0;
    opacity: 0
}

.c-burger.is-active span::after {
    transform: rotate(-90deg);
    bottom: 0
}

@media (min-width: 370px) {
    .logo img {
        width: 101px
    }

    .c-burger {
        margin-left: 15px
    }
}

@media (min-width: 768px) {
    .c-burger, .sidebar_footer {
        display: none
    }

    .logo img {
        width: 116px;
        height: auto
    }

    .header__inner {
        padding-top: 11px;
        padding-bottom: 11px
    }

    .button {
        padding: 10px;
        min-width: 70px;
        text-align: center
    }

    .user__actions {
        display: flex;
        margin-left: 5px
    }

    .menu {
        display: block;
        position: static;
        width: auto;
        background: transparent;
        margin-right: auto
    }

    .menu__list[class] {
        margin: 0
    }

    .menu__list {
        flex-direction: row
    }

    .menu__item {
        margin-left: 15px
    }

    .menu__link {
        color: #969cad;
        display: inline-block;
        padding: 0;
        font-size: 14px
    }

    .menu__link svg {
        display: none
    }
}

@media (min-width: 992px) {
    .button {
        padding: 8px 20px;
        font-size: 16px
    }

    .button__reg {
        min-width: 180px
    }

    .button__log {
        min-width: 110px;
        margin-left: 10px
    }

    .menu__item {
        margin-left: 30px
    }

    .menu__link:hover {
        color: #fff
    }
}

@media (min-width: 1200px) {
    .header__inner {
        padding: 15px
    }

    .menu {
        margin-left: 20px
    }

    .menu__item {
        margin-left: 35px
    }

    .menu__link {
        font-size: 15px
    }
}

.hero {
    background-color: #070911;
    min-height: 175px
}

.hero__inner {
    padding: 20px 23px
}

.hero__item {
    border-radius: 10px;
    overflow: hidden
}

.hero__item img {
    width: 100%;
    height: auto
}

.hero__item--second, .hero__img {
    display: none
}

@media (min-width: 768px) {
    .hero__inner {
        max-width: 920px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (min-width: 1200px) {
    .hero {
        position: relative;
        min-height: 290px
    }

    .hero__inner {
        max-width: 1325px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1
    }

    .hero__img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .hero__item--second {
        margin-left: 20px;
        display: block
    }
}
.content {
    padding-top: 20px;
    padding-bottom: 20px
}

h1, h2, h3, h4, h5, h6 {
    color: #c68c43
}

h1 {
    font-size: 2.6rem
}

h2 {
    font-size: 2.2rem
}

h3 {
    font-size: 2.2rem
}

h4 {
    font-size: 1.8rem
}

a {
    text-decoration: none
}

.table__container {
    overflow-x: auto
}

.table__container::-webkit-scrollbar {
    width: 10px;
    height: 4px
}

.table__container::-webkit-scrollbar-thumb {
    background: #ffc782;
    border-radius: 20px
}

.table__container::-webkit-scrollbar-track {
    background: transparent
}

.table {
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse
}

.table thead {
    border-bottom: 1px solid #8b8b94
}

.table thead th {
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 20px;
    text-align: center
}

.table tbody td {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #252536;
    font-weight: 300
}

.table__wrapper {
    margin-bottom: 15px;
    width: 100%;
    overflow-x: scroll
}

.table__wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

.table__wrapper::-webkit-scrollbar-thumb {
    background: #c68c43
}

.table__wrapper::-webkit-scrollbar-track {
    background: #c68c43
}

table {
    margin: 2rem auto;
    border-collapse: collapse
}

table caption {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.8rem
}

table thead {
    background-color: #c68c43;
    background: linear-gradient(279deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%)
}

table td, table th {
    border: 1px solid #393a51;
    text-align: center;
    padding: 1rem;
}

table th {
    font-weight: bold;
    background-color: #c68c43;
    background: linear-gradient(279deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%)
}

.center {
    text-align: center
}

@media (min-width: 1200px) {

    h1 {
        font-size: 3.4rem;
        margin-top: 40px;
    }

    h2 {
        font-size: 3rem
    }

    h3 {
        font-size: 2.6rem
    }

    h4 {
        font-size: 2.2rem
    }
}

.categories {
    background: #0d101b;
    border-bottom: 1px solid #141a2b;
    border-top: 1px solid #141a2b
}

.categories__inner {
    display: flex;
    align-items: center;
    min-height: 55px
}

.categories__list[class] {
    margin: 0;
    padding-bottom: 3px
}

.categories__list {
    display: flex;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    width: 100%
}

.categories__list::-webkit-scrollbar-thumb {
    background-color: rgba(201, 206, 217, 0.05);
    border-radius: 1.56rem
}

.categories__list::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    -webkit-appearance: none;
    appearance: none
}

.categories__item {
    margin-right: 23px
}

.categories__link {
    font-size: 14px;
    font-weight: 700;
    color: #c68c43;
    display: flex;
    text-decoration: none;
    color: #b5a6a6
}

.categories__link:hover {
    color: #fff
}

.categories__link span {
    display: inline-block;
    margin-left: 10px;
    text-align: center;
    white-space: nowrap;
    transition: opacity .3s ease-in
}

@media (min-width: 768px) {
    .categories__inner {
        min-height: 60px
    }

    .categories__list[class] {
        padding-bottom: 0
    }

    .categories__item {
        margin-left: 30px
    }

    .categories__link {
        font-size: 15px
    }
}

.c-reviews {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.c-reviews__item {
    background: linear-gradient(90deg, #0a1026, rgba(10, 16, 38, 0));
    padding: 2rem 2rem 3.5rem;
    border-radius: 1.5rem;
    position: relative;
    margin-bottom: 4.5rem
}

.c-reviews__top {
    display: flex;
    align-items: center
}

.c-reviews__name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c68c43
}

.c-reviews__date {
    display: none
}

@media (min-width: 555px) {
    .c-reviews__date {
        display: block;
        margin-left: auto;
        color: #f2f2f2;
        font-size: 1.4rem
    }
}

.c-reviews__descr {
    color: #f2f2f2
}

.c-reviews__btn {
    position: absolute;
    padding: .5rem 1.5rem;
    border-radius: 1rem;
    bottom: -17px;
    right: 25px;
    color: #000;
    background: linear-gradient(279deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%)
}

.c-reviews__btn:hover {
    background: linear-gradient(90deg, #c68c43 -35.75%, #8c4e00 -35.73%, #ffc782 34.6%, #aa722c 106.44%)
}

.c-faq {
    margin-bottom: 3rem
}

.c-faq__title {
    margin-bottom: 1rem
}

.c-faq details {
    background: linear-gradient(90deg, #0a1026, rgba(10, 16, 38, 0))
}

.c-faq details + details {
    margin-top: 1rem
}

.c-faq details[open] summary::before {
    content: none
}

.c-faq summary {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    padding: 12px 32px 16px;
    font-size: 18px;
    font-weight: 700
}

.c-faq summary::before, .c-faq summary::after {
    content: "";
    position: absolute;
    background: linear-gradient(90.33deg, #c68c43 -4.79%, #ffc782 105.38%)
}

.c-faq summary::before {
    left: 1.2rem;
    top: calc(50% - 9px);
    width: 2px;
    height: 12px
}

.c-faq summary::after {
    left: calc(1em - 11px);
    top: calc(50% - 4px);
    width: 12px;
    height: 2px
}

.c-faq summary span {
    display: block
}

.c-faq details > div {
    padding: 15px
}

.c-games {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem
}

.c-games__item {
    width: calc(100% / 2 - 1rem);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden
}

.c-games__item:hover .c-games__overlay {
    opacity: 1
}

.c-games__title {
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 700;
    width: 100%
}

.c-games__img {
    position: relative;
    padding-bottom: 93%;
    border-radius: 2px;
    overflow: hidden
}

.c-games__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1
}

.c-games__overlay {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 10px 5px;
    transition: opacity .2s ease
}

.c-games__play {
    border: 3px solid #bb8541;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    width: 55px;
    height: 55px;
    position: relative
}

.c-games__play:hover::before {
    background-image: linear-gradient(-5.53deg, #bb8541 5.32172%, #ebc18b 46.9834%, #c18c48 78.2469%, #f8c17b);
    border-radius: 50%;
    content: "";
    filter: blur(10px);
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: scale(1.15) translate(-43%, -44%);
    transition: visibility .2s linear, opacity .2s linear;
    width: 100%;
    opacity: 1;
    visibility: visible
}

.c-games__play-hover {
    background-image: linear-gradient(270deg, #bb8541 5.32172%, #ebc18b 46.9834%, #c18c48 78.2469%, #f8c17b);
    border-radius: 50%;
    height: 92%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92%
}

.c-games__play-hover img {
    position: absolute;
    top: 50%;
    height: auto;
    left: 50%;
    transform: translate(-35%, -52%);
    transition: visibility .2s linear, opacity .2s linear;
    width: 48%
}

.c-games__btn--demo {
    background: linear-gradient(285deg, #468cee -4.67%, #941afe 101.39%);
    color: #fff;
    border-radius: 5px;
    padding: 6px;
    min-width: 110px;
    text-align: center;
    font-weight: 700
}

.c-games__btn--demo:hover {
    background: linear-gradient(90deg, #468cee -4.67%, #941afe 101.39%)
}

@media (min-width: 555px) {
    .c-games__item {
        width: calc(100% / 3 - 1rem)
    }

    .c-games__play {
        width: 60px;
        height: 60px
    }
}

@media (min-width: 992px) {
    .c-games__item {
        width: calc(100% / 4 - 1rem)
    }
}

@media (min-width: 1024px) {
    .c-games__item {
        width: calc(100% / 6 - 1rem)
    }

    .c-games__btn--demo {
        padding: 8px;
        min-width: 130px
    }
}

.footer {
    background-color: #050915
}

.footer__main {
    display: flex;
    flex-direction: column
}

.footer__info {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px
}

.footer__left {
    padding-right: 20px;
    margin-right: 10px;
    position: relative
}

.footer__left::before {
    background: linear-gradient(0deg, rgba(92, 107, 151, 0) 1.9%, #52608a 55.43%, rgba(92, 107, 151, 0));
    content: "";
    height: 100%;
    position: absolute;
    right: 5px;
    top: 0;
    width: 2px
}

.footer__container {
    max-width: 555px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.footer__logo img {
    min-width: 125px;
    height: auto;
    min-height: 65px
}

.footer__social .social__link svg {
    width: 33px;
    height: 33px
}

.footer__social .social__item + .social__item {
    margin-left: 5px
}

.footer__menu-item {
    margin-top: 12px
}

.footer__menu-link {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600
}

.footer__menu-link:hover {
    opacity: .5
}

.footer__logos {
    order: 3
}

.footer__logos-list {
    gap: 5px;
    grid-template-columns:repeat(3, 88px);
    display: grid
}

.footer__logos-item {
    background-color: #0a1026;
    padding: 5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer__logos-item:hover a {
    filter: drop-shadow(0 0 15px rgba(220, 174, 255, 0.6));
    transition: .3s
}

.footer__logos-item img {
    width: auto
}

.footer__logos-item:nth-child(1) {
    grid-area: 1 / 1 / 1 / 1
}

.footer__logos-item:nth-child(1) img {
    height: 45px
}

.footer__logos-item:nth-child(2) {
    grid-area: 1 / 2 / 1 / 2
}

.footer__logos-item:nth-child(2) img {
    height: 45px
}

.footer__logos-item:nth-child(3) {
    grid-area: 1 / 3 / 1 / 5
}

.footer__logos-item:nth-child(3) img {
    height: 37px
}

.footer__logos-item:nth-child(4) {
    grid-area: 2 / 1 / 2 / 3
}

.footer__logos-item:nth-child(4) img {
    height: 32px
}

.footer__logos-item:nth-child(5) {
    grid-area: 2 / 3 / 2 / 5
}

.footer__logos-item:nth-child(5) img {
    height: 13px
}

.footer__apps {
    order: 1;
    display: flex;
    flex-wrap: wrap
}

.footer__app {
    border: 1px solid #1f2946;
    border-radius: 5px;
    padding: 3px 25px;
    display: flex;
    text-decoration: none;
    color: #fff;
    flex: 1;
    font-weight: 700
}

.footer__app img {
    padding-right: 15px
}

.footer__app span {
    color: #575e7a;
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 2px;
    display: block
}

.footer__app span:last-child {
    color: #fff;
    font-weight: 700
}

.footer__copyright {
    font-size: 12px;
    text-align: center;
    padding: 20px 15px;
    color: rgba(255, 255, 255, 0.3)
}

.footer__android {
    order: -1;
    margin-right: 3px
}

.support {
    background: linear-gradient(90deg, #0a1026, rgba(10, 16, 38, 0));
    margin-bottom: 15px;
    margin-left: -15px;
    padding-left: 15px
}

.support__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 11px;
    padding-bottom: 11px
}

.support__title {
    font-weight: 600
}

.support__text {
    display: none
}

.support__link {
    min-width: 105px;
    padding: 5px;
    text-align: center
}

.support__faq img {
    width: 35px
}

.support__middle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px
}

.support__middle-item span {
    color: #fff;
    display: inline-block
}

.support__middle-item span:first-child {
    color: #4b5888;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 10px
}

.support__middle-item span:nth-child(2) {
    text-align: right
}

.support__middle-item + .support__middle-item {
    margin-top: 13px
}

.footer__center {
    background: linear-gradient(90deg, #19365e, #0a1126 10%, #0a1126 90%, #19365e);
    max-width: 100vw
}

.footer__center .footer__container {
    width: calc(100vw - 120px);
    overflow: hidden
}

.footer__slider[class] {
    margin: 0
}

.footer__slider {
    min-height: 92px;
    display: flex;
    align-items: center;
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.footer__slider-item {
    flex-shrink: 0
}

.footer__slider-item img {
    max-height: 25px
}

.footer__slider-item + .footer__slider-item img {
    margin: auto 20px
}

@-webkit-keyframes scroll {
    0% {
        transform: translateX(50%)
    }
    100% {
        transform: translateX(-50%)
    }
}

@keyframes scroll {
    0% {
        transform: translateX(50%)
    }
    100% {
        transform: translateX(-50%)
    }
}

@media (min-width: 992px) {
    .footer__center .footer__container {
        width: calc(100vw - 270px)
    }

    .footer {
        padding-top: 35px;
        padding-bottom: 30px
    }

    .footer__copyright {
        padding-bottom: 0
    }

    .footer__slider-item img {
        max-height: 29px
    }

    .footer__top {
        max-width: 750px;
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .footer__main {
        flex-direction: row;
        flex-wrap: wrap
    }

    .footer__container {
        max-width: none
    }

    .footer__logos {
        order: 0;
        width: auto;
        flex: 1
    }

    .footer__center {
        margin-top: 25px
    }

    .footer__info {
        flex-direction: column;
        background: #0a1026;
        padding: 13px;
        border-radius: 5px;
        margin-right: 5px;
        margin-left: 0;
        width: 180px
    }

    .footer__left::before {
        background: linear-gradient(90deg, rgba(92, 107, 151, 0) 1.9%, #52608a 55.43%, rgba(92, 107, 151, 0));
        right: auto;
        height: 2px;
        width: 100%;
        bottom: 0;
        top: auto
    }

    .footer__apps {
        flex-direction: column;
        width: auto;
        flex: 1;
        margin-top: 10px;
        margin-left: 10px
    }

    .footer__android {
        margin-right: 0;
        margin-bottom: 3px
    }

    .footer__app {
        align-items: center;
        justify-content: center
    }

    .footer__app span {
        font-size: 16px
    }

    .footer__app img {
        width: 55px
    }

    .footer__logos-list[class] {
        margin: 0;
        grid-template-columns:repeat(3, 141px);
        height: 100%
    }

    .footer__logos-item {
        min-height: 115px;
        padding: 10px
    }

    .footer__logos-item:nth-child(1) img {
        height: 65px
    }

    .footer__logos-item:nth-child(2) img {
        height: 65px
    }

    .footer__logos-item:nth-child(3) img {
        height: 65px
    }

    .footer__logos-item:nth-child(4) img {
        height: 55px
    }

    .footer__logos-item:nth-child(5) img {
        height: 22px
    }

    .support {
        background-color: #0a1026;
        margin-bottom: 0;
        margin-top: 10px;
        padding: 5px 10px;
        border-radius: 5px;
        margin-left: 0
    }
}

@media (min-width: 1200px) {
    .footer__center .footer__container {
        max-width: 1315px;
        width: calc(100vw - 70px)
    }

    .footer__top {
        max-width: 1366px
    }

    .footer__apps {
        margin-top: 0;
        flex: none
    }

    .support {
        max-width: 230px;
        margin-top: 0;
        margin-left: 5px
    }

    .support__top {
        flex-wrap: wrap
    }

    .support__middle {
        position: relative
    }

    .support__middle::before {
        background: linear-gradient(90deg, #52608a, rgba(92, 107, 151, 0));
        content: "";
        height: 1px;
        left: 0;
        position: absolute;
        top: -16px;
        width: 253px
    }

    .support__title {
        margin-bottom: 10px;
        margin-left: 10px;
        display: inline-block
    }

    .support__link {
        order: 2;
        min-width: 120px
    }

    .support__faq img {
        width: 44px
    }

    .support__middle-item {
        flex-direction: column;
        align-items: flex-start
    }

    .support__middle-item span:first-child {
        margin-bottom: 5px
    }
}

@media (max-width: 850px) {
    .header__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .user__actions {
        margin: 5px;
    }
    nav ul {
        margin: 0;
    }
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}

table {
    margin: 30px 0;
    width: 100%;
}
td, th {
    word-break: break-all;
    text-align: center;
}
