@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter/Inter-Regular.woff2') format('woff2'),
    url('assets/fonts/Inter/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter/Inter-Italic.woff2') format('woff2'),
    url('assets/fonts/Inter/Inter-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter/Inter-Medium.woff2') format('woff2'),
    url('assets/fonts/Inter/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter/Inter-Light.woff2') format('woff2'),
    url('assets/fonts/Inter/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Angst';
    src: url('assets/fonts/Angst/Angst-Normal.woff2') format('woff2'),
    url('assets/fonts/Angst/Angst-Normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

#bx-panel {
    bottom: 0;
    top: auto;
    position: fixed !important;
    width: 100% !important;
}


:root {
    --default: #0A0A0A;
    --accent: #B28E7B;
    --alter: #EAEAEA;
    --hover: #AB836E;
    --inactive: #969696;
    --error: #A94442;
    --cl_line: #fefefe33;
    /*--error: #C05746;*/
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.35;
    color: var(--default);
}
.separator{
    height: 100px;
}
h1, .h1, h2, .h2 {
    font-weight: 500;
    font-size: 54px;
    line-height: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

p {
    margin: 15px 0;
}

ul {
    margin: 15px 0;
    padding-left: 14px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .3s linear;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 5px 17px;
    border: 1px solid var(--accent);
    color: var(--default);
    outline: none;
    background-color: var(--accent);
    height: 54px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: lowercase;
    transition: .3s linear;
    cursor: pointer;
}

.button svg {
    fill: currentColor;
}

.button:hover {
    /* background-color: var(--hover); */
    /* border-color: var(--hover); */
    text-decoration: none;
    /* color: var(--default); */
    background-color: #fff;
    color: var(--accent);
}

.button_wider {
    padding: 5px 29px;
}

.button_lower {
    height: 42px;
}

.button_lowest {
    height: 36px;
}

.button_fixWide {
    width: 224px;
}

.button_outline {
    border-color: var(--inactive);
    background-color: transparent;
    color: var(--accent);
}

.button_outlineDark {
    border-color: rgba(255, 255, 255, .4);
    background-color: transparent;
    color: var(--accent);
}

.button__icon {
    flex: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buttonGrayToWhite:hover {
    background-color: #fff;
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.withBg {
    background-color: var(--default);
    color: var(--alter);
}
.withBg_light{
    background-color: #F6F6F6;
}
.withBg_white {
    background-color: #fff;
}
.withBg_black {
    background-color: #000;
    color: var(--alter);
}
.startPage{
    padding-top: 1px;
}

._colored {
    color: var(--accent);
}

.opacity_9 {
    opacity: 0.9;
}
.opacity_8 {
    opacity: 0.8;
}

video {
    max-width: 100%;
}

.arrowLink {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: var(--default);
    font-weight: 500;
    font-size: 20px;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
}

.withBg .arrowLink {
    color: var(--alter);
}

.arrowLink:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--accent);
}

.arrowLink__icon {
    flex: none;
    width: 58px;
    height: 58px;
    border-radius: 3px;
    border: 1px solid rgba(10, 10, 10, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
}

.withBg .arrowLink__icon {
    border: 1px solid rgba(255, 255, 255, .4);
}

.arrowLink:hover .arrowLink__icon {
    border-color: var(--accent);
}

.arrowLink__icon svg {
    fill: currentColor;
}


.header {
    position: relative;
    height: 72px;
    /* border-bottom: 2px solid rgba(10, 10, 10, 0.1); */
}
.withBg .header{
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.mobileMenu.mobileMenu_shown + .header {
    display: none;
}
.headerFix {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 2px solid rgba(10, 10, 10, 0.1);
}
.withBg .headerFix {
    background-color: var(--default);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.header_main .headerFix {
    background-color: var(--default);
    /* background: none; */
}


.header__wrap {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header__logo {
    margin-right: 20px;
}
.headerLogo_default{
    width: 92px;
    height: 32px;
    display: block;
    background:url("assets/images/logo.png") no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
}
.withBg .headerLogo_default{
    background-image: url("assets/images/logo_white.png");
}


.header_main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    color: var(--alter);
    z-index: 10;
}

.header_main .header__logo {
    align-self: stretch;
    flex: none;
    width: 88px;
    position: relative;
}

.header_main .header__logo svg {
    display: block;
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
}

.header__menu {
    flex: 1;
    margin-right: 70px;
}

.header__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.menuOpen {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    background-color: transparent;
    transition: color .3s linear;
    color: inherit;
}

.menuOpen svg {
    flex: none;
    fill: currentColor;
}

.menuOpen:hover {
    cursor: pointer;
    color: var(--accent);
}

.headerMenu__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    text-transform: lowercase;
}

.headerMenu__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    position: relative;
    padding: 5px 0;
}

.headerMenu__item:hover {
    color: var(--accent);
}

.headerMenu__link {
    color: inherit;
}

.headerMenu__link:hover {
    color: var(--accent);
    text-decoration: none;
}

.headerMenu__indicator {
    fill: currentColor;
    display: block;
    transition: .3s linear;
}

.headerMenu__item:hover .headerMenu__indicator {
    transform: rotate(180deg);
}


.headerMenu__subList {
    position: absolute;
    left: 0;
    top: 100%;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    transform: rotateX(90deg);
    visibility: hidden;
    opacity: 0;
    transform-origin: 0 0;
    transition: 0.3s ease-in-out;
    min-width: 250px;
    background-color: var(--default);
    z-index: 50;
}

.headerMenu__item:hover .headerMenu__subList {
    transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
}

.headerMenu__subItem {
    padding: 6px 10px;
    border-bottom: 1px solid var(--inactive);
}

.headerMenu__subItem:last-child {
    border: none;
}

.headerMenu__subLink {
    color: var(--alter);
}

.headerMenu__subLink:hover {
    color: var(--accent);
    text-decoration: none;
}

.mobileMenu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--default);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.mobileMenu.mobileMenu_shown {
    display: flex;
}

.mobileMenu__logo {
    position: absolute;
    top: 0;
    left: 10%;
}
.mobileMenu__logo svg {
    max-height: 97px;
}
.mobileMenu__nav {
    height: 100%;
    padding-top: 120px;
}
.mobileMenu__closer {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 10px;
    right: 10px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alter);
    transition: .3s linear;
    background-color: transparent;
}

.mobileMenu__closer:hover {
    cursor: pointer;
    color: var(--accent);
}

.mobileMenu__closer svg {
    stroke: currentColor;
}

.mobileMenu__list {
    margin: 0;
    padding: 0;
    list-style-type: none;

}

.mobileMenu__link {
    font-size: 20px;
    color: var(--alter);
}

.mobileMenu__link:hover {
    color: var(--accent);
    text-decoration: none;
}

.mobileMenu__item {
    color: var(--alter);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobileMenu__item:last-child {
    margin-bottom: 0;
}

.mobileMenu__indicator {
    fill: currentColor;
    width: 22px;
    height: 22px;
}

.mobileMenu__item:hover .mobileMenu__indicator {
    color: var(--accent);
    cursor: pointer;
}

.mobileMenu__subList {
    flex: none;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    padding: 0;
    list-style-type: none;
}

.mobileMenu__item_shown .mobileMenu__subList {
    display: flex;
}

.mobileMenu__subList li {
    margin-bottom: 7px;
}

.mobileMenu__subList li:last-child {
    margin-bottom: 0;
}

.mobileMenu__subLink {
    font-size: 18px;
    color: var(--alter);
}

.mobileMenu__subLink:hover {
    color: var(--accent);
    text-decoration: none;
}

.sliderArrow {
    width: 58px;
    height: 58px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(10, 10, 10, 0.2);

    backdrop-filter: blur(4px);
    color: var(--default);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.withBg .sliderArrow {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sliderArrow svg {
    fill: currentColor;
}



.withBg .sliderArrow_transparent {
    color: var(--alter);
    background-color: transparent;
}

.sliderArrow:hover {
    cursor: pointer;
    background-color: var(--accent);
    border-color: var(--accent);
}

.sliderArrow_prev {
    /* left: -67px; */
    left: -100px;
}
.sliderArrow_next {
    /* right: -67px; */
    right: -100px;
}

.footer {
    padding-top: 20px;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 76px;
}
.footer__coll{
    flex: 1;
}

.footer__logo {
    margin-bottom: 5px;
}
.footer__logo img {
    max-width: 205px;
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.socialLink {
    width: 36px;
    height: 36px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.socialLink svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.socialLink__rutube svg {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.socialLink:hover {
    color: var(--hover);
}

.footer__menus {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-top: 52px;
}

.footerMenu {

}
.footerMenu_last{
    flex: none;
    width: 197px;
}

.footerMenu__title {
    font-size: 13px;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
}

.footerMenu__body {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.footerMenu__coll_Wide{
    flex: none;
    width: 197px;
}

.footerMenu__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footerMenu__item {
    margin-bottom: 6px;
}

.footerMenu__link {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.footerMenu__link:hover{
    text-decoration: none;
    color: var(--accent);
    cursor: pointer;
}
.footerMenu__link svg {
    fill: rgba(254, 254, 254, 0.9);
}
.footerMenu__link:hover svg{
    fill:  var(--accent);
}

.footerMenu__sublist {
    margin: 5px 0;
    padding: 0;
    list-style-type: none;
    display: none;
}
.footerMenu__item_active .footerMenu__sublist{
    display: block;
}

.footerMenu__subItem {
    margin-bottom: 3px;
}

.footerMenu__subItem:last-child {
    margin-bottom: 0;
}


.footer__bottom{
    border-top: 1px solid  rgba(217, 217, 217, .2);
    padding-top: 21px;
    padding-bottom: 21px;

    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);

}
.footer__bottom a{
    color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a:hover{
    color: var(--accent);
    text-decoration: none;
}
.footer__last{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.footer__copy{
    flex: none;
    width: calc(50% - 10px);
}
.footer__mobileLine{
    display: none;
}
.footer__policy{
    flex: 1;
}
.footer__dev{
    width: 197px;
}



.simple-popup {
    display: none;
    width: 100%;
    /* max-width: 460px; */
    margin: 0 auto;
    /* padding: 30px 26px; */
    /* background: #fff url("assets/images/popup-bg.svg") right top no-repeat; */
    flex-direction: column;
    position: relative;
    /* background: none; */
    /* padding: 0; */
    max-width: 530px;
}

.simple-popup__close{
    position: absolute;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--default);
    top: 10px;
    right: 10px;
}
.simple-popup__close:hover{
    cursor: pointer;
    color: var(--accent);
}

.simple-popup__close svg{
    fill: currentColor;
}

.simple-popup__title{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

.textField{
    width: 100%;
    margin-bottom: 10px;
    display: block;
}
.textField__label{
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
}
.textField.hidden{
    display: none;
}
.textField .iti{
    width: 100%;
}
.textField__input{
    border-radius: 2px;
    border: 1px solid var(--inactive);
    background-color: transparent;
    outline: none;
    display: block;
    width: 100%;
    height: 36px;
    padding-left: 10px;
}
.textField__input_area{
    padding: 10px;
    height: 100px;
    resize: none;
}
.textField__input_error{
    border-color: var(--error);
}
.textField__error{
    font-size: 13px;
    font-style: italic;
    color: var(--error);
    margin-top: 2px;
    line-height: 1;
}
.textField__radios{
    display: block;
    margin-top: 10px;
}
.textField__radioItem{
    display: block;
    margin-bottom: 5px;
}
.textField__radioItem:hover{
    color: var(--accent);
    cursor: pointer;
}

.fieldBox{
    display: block;
}
.fieldBox__name{
    font-size: 13px;
    margin-bottom: 2px;
}

.thankyou{
    width: 100%;
    text-align: center;
}
.thankyou__icon {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 20px;
    border: 1.5px solid var(--accent);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}
.thankyou__title{
    display: block;
    text-align: center;
    margin: 25px 0 ;
    color: var(--accent);
    font-size: 36px;
}


.news-pagination {
    margin-bottom: 40px;
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.pagination__item{
    flex: none;
    width: 58px;
    height: 58px;
    border-radius: 3px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default);
}

.pagination__item_active{
    border: 1px solid #E6E6E6;
}
.pagination__item:hover{
    cursor: pointer;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
}
.newsBlock__arrowLink_text {
	display: none;
    font-size: 20px;
}

.aboutVideo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}
.aboutVideo video {
    max-width: 80%;
}
.uchastnikiPremii {
    margin: 100px 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px 0;
}
table th,
table td {
    border: 1px solid #000;
    padding: 10px;
}


.to-top {
    display: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    /* background: var(--accent); */
    background: #b28e7b99;
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
}
.to-top:hover {
    background: #b28e7b;
}
.to-top svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}









@media screen and (max-width: 1500px) {
    .sliderArrow_prev {
        left: -60px;
    }
    .sliderArrow_next {
        right: -60px;
    }
}


@media screen and (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}


@media screen and (max-width: 1300px) {
    .sliderArrow_prev {
        left: 0;
    }
    .sliderArrow_next {
        right: 0;
    }
}


@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .header__menu {
        margin-right: 20px;
    }
    .headerMenu__list {
        gap: 20px;
    }
    .archive__videoBlock {
        height: 600px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .header_main .header__logo {
        order: 1;
    }
    .header__buttonMenu {
        order: 3;
    }
    .header__menu {
        display: none;
    }
    .header__buttons {
        order: 2;
        margin-left: auto;
    }
    .header__buttons .buttonAppOrder {
        display: none;
    }
    .header__wrap {
        gap: 20px;
    }
    .button_fixWide {
        max-width: 320px;
        width: 100%;
    }
    .footerMenu__body {
        flex-direction: column;
        gap: 0;
    }
    .footer__bottom {
        border-top: none;
    }
    .footer__last {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        row-gap: 20px;
    }
    .footer__copy {
        grid-column: 1 / 2;
        grid-row: 1;
        width: auto;
    }
    .footer__policy {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    .footer__dev {
        grid-column: 2 / 3;
        grid-row: 1;
        width: auto;
        text-align: end;
    }
    .footer__mobileLine {
        display: block;
        grid-column: 1 / 3;
        grid-row: 2;
        width: 100%;
        height: 1px;
        background-color: #96969633;
        position: absolute;
        width: 100%;
        left: 0;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__coll_logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer__coll_menu {
        width: 100%;
    }
    .sliderArrow {
        width: 38px;
        height: 38px;
    }
    .sliderArrow_prev {
        left: 10px;
    }
    .sliderArrow_next {
        right: 10px;
    }
    .archive__videoBlock {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .archive__videoBlock {
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    h1, .h1, h2, .h2 {
        font-size: 30px;
    }
    .header__logo {
        margin-right: 0;
    }
    .container {
        max-width: none;
        padding: 0 20px;
    }
    .container.header__wrap {
        padding: 14px 20px;
    }
    .header_main .header__logo {
        width: 72px;
    }
    .header_main .header__logo svg {
        top: -27px;
    }
    .header_main {
        z-index: 10;
    }
    .footer__logo {
        max-width: 150px;
    }
    .footer__logo img {
        width: 100%;
        height: 100%;
    }
    .footer__top {
        gap: 40px;
    }
    .footer__menus {
        padding: 0;
        gap: 0px;
    }
    .footerMenu__coll_Wide {
        width: auto;
    }
    .footerMenu {
        /* flex: 0 0 calc(50% - 10px); */
        flex: 0 0 50%;
    }
    .footerMenu__link {
        font-size: 11px;
    }
    .footer__dev {
        text-align: start;
    }
    .arrowLink__icon {
        width: 48px;
        height: 48px;
    }
    .arrowLink__icon {
		width: 48px;
		height: 48px;
	}
    .archive__videoBlock .videoBlock__video {
        object-fit: contain;
    }
    .archive__videoBlock {
        width: 100vw;
        left: -20px;
        height: 250px;
    }
}

@media screen and (max-width: 360px) {

}