@font-face {
    font-family: Montserrat;
    src: url(/assets/fonts/Montserrat-Regular.woff2) format("woff2"), url(/assets/fonts/Montserrat-Regular.woff) format("woff");
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url(/assets/fonts/Montserrat-Bold.woff2) format("woff2"), url(/assets/fonts/Montserrat-Bold.woff) format("woff");
    font-display: swap;
    font-weight: 700
}

*,
::after,
::before {
    box-sizing: border-box
}

ul[class] {
    padding: 0
}

body,
h1,
li,
p {
    margin: 0
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5
}

body::-webkit-scrollbar {
    width: 18px;
    height: 8px;
    background-color: #000
}

body::-webkit-scrollbar-thumb {
    background-color: #bea23f
}

ul[class] {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    max-width: 100%;
    display: block
}

section>*+* {
    margin-top: 1em
}

@media (prefers-reduced-motion:reduce) {
    * {
        -webkit-animation-duration: 0s !important;
        animation-duration: 0s !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important
    }
}

body {
    background-color: #000;
    font-family: Montserrat, Arial, Helvetica, sans-serif
}

.o-flex {
    display: flex
}

.o-flex-column {
    display: flex;
    flex-direction: column
}

.o-container {
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto
}

.c-header__inner {
    gap: 8px 15px;
    padding: 8px 0;
    min-height: 107px
}

.c-header__bottom,
.c-header__top {
    gap: 20px
}

.c-header__top {
    justify-content: flex-end
}

.c-header__bottom {
    align-items: center;
    justify-content: space-between
}

.c-header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99
}

.c-header__btn {
    border-radius: 5px;
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 7px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center
}

.c-header__btn-in {
    /* border: 1px solid #000; */
    box-shadow: 0 0 0 1px #fdb953;
    background: #fdb953;
    border-radius:47px;
}

.c-header__btn-sign {
    /* border: 1px solid #000; */
    background: #F6F6F6;
    box-shadow: 0 0 0 1px #f6f6f6;
    border-radius: 47px;
}

.c-burger,
.c-burger-closed {
    height: 40px;
    width: 40px
}

.c-burger div,
.c-burger-closed__body div {
    background: #fff;
    border-radius: 5px;
    height: 3px;
    width: 20px
}

.c-burger {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center
}

.c-burger-closed {
    position: absolute;
    z-index: 5;
    right: 20px;
    top: 20px
}

.c-burger-closed__body {
    position: relative;
    height: 100%;
    width: 100%
}

.c-burger-closed__body div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto
}

.c-burger-closed__body div:first-child {
    transform: rotate(45deg)
}

.c-burger-closed__body div:last-child {
    transform: rotate(-45deg)
}

.c-menu {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    background-color: #000;
    overflow-y: auto;
    transform: translateX(-320px);
    height: 100vh;
    width: 320px
}

.c-menu__list[class] {
    margin: 0
}

.c-menu__box {
    background-color: #2a2c2b;
    padding: 15px;
    margin-top: 70px;
    text-align: center
}

.c-menu__item {
    border-top: 1px solid #1d1d1d
}

.c-menu__item:first-child {
    border-top: none
}

.c-menu__link {
    padding: 15px;
    color: #fff;
    text-decoration: none;
    display: block;
    text-transform: uppercase
}

.c-menu__link-support {
    background-color: #ca000e;
    color: #fff
}

.c-menu__btn.c-header__btn {
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px
}

.c-main {
    background-color: #fff;
    /* background-image: url(/assets/img/bg/content-bg.jpg);
    background-image: -webkit-image-set(url("/assets/img/bg/content-bg.jpg") 1x, url("/assets/img/bg/content-bg.jpg") 2x);
    background-image: image-set(url("/assets/img/bg/content-bg.jpg") 1x, url("/assets/img/bg/content-bg.jpg") 2x);
    background-repeat: repeat;
    background-position: center top;
    padding-top: 107px;
    padding-bottom: 70px */
}

.c-info img {
    min-height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.c-content {
    margin-top: 20px;
    color: #000
}

.c-slots {
    padding-top: 25px;
    padding-bottom: 25px
}

@media (min-width:411px) {
    .c-info img {
        min-height: 220px
    }
}

@media (min-width:555px) {
    .c-info img {
        min-height: 300px
    }
}

@media (min-width:768px) {
    .c-header__btn-in {
        order: 0;
        margin-left: auto
    }

    .c-header__btn-sign {
        margin-right: 0
    }

    .c-info img {
        min-height: 360px
    }
}

@media (min-width:992px) {

    .c-burger,
    .c-burger-closed,
    .c-menu__box,
    .c-menu__item--off {
        display: none
    }

    .c-header__inner {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 218px;
        grid-template-areas: "left right";
        min-height: 66px
    }

    .c-header__top {
        grid-area: right
    }

    .c-header__bottom {
        grid-area: left
    }

    .c-menu {
        position: static;
        transform: translateX(0);
        width: auto;
        background-color: transparent;
        overflow: visible;
        margin-top: 8px;
        height: initial
    }

    .c-menu__list {
        display: flex
    }

    .c-menu__item {
        border: none
    }

    .c-menu__item+.c-menu__item {
        margin-left: 25px
    }

    .c-menu__link {
        padding: 0;
        white-space: nowrap
    }

    .c-main {
        padding-top: 66px
    }
}