@import url('https://fonts.cdnfonts.com/css/pf-centro-sans-pro');

* {
    box-sizing: border-box;
}

.mobile-arrow {
    display: none;
    padding: 8px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(180deg);
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.directors {
    padding: 0 92px 78px;
}

.directors__title {
    padding-top: 78px;
    padding-bottom: 36px;
    font: 700 normal 40px/1 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__sub-title {
    margin-top: 0;
    margin-bottom: 0;
    font: 500 normal 26px/1 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__navigation-links-container {
    margin-top: 36px;
    margin-bottom: 84px;
}

.directors__navigation-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.directors__navigation-link-container {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}
@media screen and (min-width:1920px) {
   .directors__navigation-link-container {
    flex: 0 0 20%;
    max-width: 20%;
   }
}

.directors__navigation-link {
    margin-bottom: 20px;
    display: block;
    border: 2px solid #F00;
    border-radius: 7px;
    font: 500 normal 15px/36px 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
    text-align: center;
    text-decoration: none;
    transition: all .33s;
}

.directors__navigation-link:focus {
    background: transparent;
    color: black;
}

.directors__navigation-link:hover {
    background: #F00;
    color: white;
}

.directors__navigation-link.active {
    background: #F00;
    color: white;
}

.directors__cards {
    margin-top: 84px;
    margin-bottom: 0;
}

.directors__card-container {
    position: relative;
    margin-bottom: 58px;
}

.directors__card {
    position: relative;
    padding: 30px 30px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    background: white;
    box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.25);
}

.directors__card:not(:last-child) {
    margin-bottom: 58px;
}

.directors__card-photo-wrapper {
    display: flex;
    justify-content: flex-end;
}

.directors__card-photo-container {
    padding-left: 20px;
}

.directors__card-photo-container-mobile {
    display: none;
}

.directors__card-photo {
    position: relative;
    width: 383px;
    height: 383px;
    border-radius: 50%;
    overflow: hidden;
}

.directors__type {
    margin-top: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font: 700 normal 26px/1 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__circle {
    margin-right: 20px;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F00;
}

.directors__card-content ul {
    padding-left: 14px;
    list-style: disc;
}

.directors__card-flex-container {
    margin-top: 28px;
    margin-bottom: 0;
}

.directors__card-title-container {
    padding-right: 20px;
}

.directors__card-title {
    margin-top: 0;
    margin-bottom: 5px;
    font: 700 normal 22px/26px 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__card-title_accent {
    margin-top: 28px;
    color: #F00;
}

.directors__position {
    margin-top: 5px;
    margin-bottom: 14px;
    font: 500 normal 22px/26px 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__desc {
    margin-top: 5px;
    margin-bottom: 14px;
    font: 500 normal 16px/26px 'PF Centro Sans Pro', Arial, sans-serif;
    color: black;
}

.directors__top-arrow {
    position: fixed;
    bottom: 25px;
    right: 138px;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #F00;
    box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.31);
    transition: all .33s;
}

.directors__top-arrow:hover {
    background-color: #ff0000e8;
}

.directors__top-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .directors__card-photo {
        width: 300px;
        height: 300px;
    }
}

@media screen and (min-width: 1025px) {
    .directors__card-content {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .directors__card-photo-container {
        position: relative;
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media screen and (max-width: 1024px) {
    .directors {
        padding: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .directors__navigation-link-container {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .directors__card-photo {
        width: 120px;
        height: 120px;
    }

    .directors__top-arrow {
        right: 58px;
    }
}

@media screen and (max-width: 768px) {
    .directors {
        padding: 14px;
    }

    .directors__navigation-link-container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .directors__type {
        padding-left: 50px;
    }

    .directors__circle {
        position: absolute;
        left: 30px;
        margin-right: 0;
    }
}

@media screen and (max-width: 575px) {
    .directors__circle {
        left: 12px;
    }

    .directors__type {
        font-size: 18px;
        line-height: 26px;
    }

    .directors__card {
        padding: 50px 14px;
    }

    .directors__card-photo-container {
        display: none;
    }

    .directors__card-photo-container-mobile {
        display: block;
    }

    .directors__card-flex-container {
        display: flex;
        align-items: center;
    }

    .directors__card-title-container {
        flex: 0 0 65%;
        max-width: 65%;
    }
}

@media screen and (max-width: 480px) {
    .mobile-arrow {
        display: block;
    }

    .directors__top-arrow {
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .directors__title {
        font-size: 22px;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .directors__sub-title {
        position: relative;
        font-size: 16px;
        text-align: center;
    }

    .directors__card-photo {
        width: 74px;
        height: 74px;
    }

    .directors__card-title {
        font-size: 18px;
    }

    .directors__position {
        font-size: 16px;
    }

    .directors__navigation-links-container {
        display: none;
    }

    .directors__navigation-links-container.mobile {
        margin-top: 2px;
        display: none;
    }

    .directors__navigation-links-container.mobile.active {
        display: block;
    }

    .mobile-arrow.active {
        transform: translateY(-50%) rotate(360deg);
    }

    .directors__navigation-link, .directors__sub-title {
        border: 1px solid black;
        border-radius: 7px;
        margin-bottom: 2px;
        line-height: 36px;
    }

    .directors__sub-title {
        border: 2px solid black;
    }

    .directors__cards {
        margin-top: 28px;
    }

    .directors__card-title-container {
        padding-right: 8px;
    }
}
@import url(../fonts/druk-cyr/stylesheet.css);
@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-Bold.eot');
    src: local('Druk Cyr Bold'), local('DrukCyr-Bold'),
        url('../fonts/druk-cyr/DrukCyr-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-Bold.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-Bold.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-Heavy.eot');
    src: local('Druk Cyr Heavy'), local('DrukCyr-Heavy'),
        url('../fonts/druk-cyr/DrukCyr-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-Heavy.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-Heavy.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-HeavyItalic.eot');
    src: local('Druk Cyr Heavy Italic'), local('DrukCyr-HeavyItalic'),
        url('../fonts/druk-cyr/DrukCyr-HeavyItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-HeavyItalic.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-HeavyItalic.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-HeavyItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-MediumItalic.eot');
    src: local('Druk Cyr Medium Italic'), local('DrukCyr-MediumItalic'),
        url('../fonts/druk-cyr/DrukCyr-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-MediumItalic.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-MediumItalic.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-SuperItalic.eot');
    src: local('Druk Cyr Super Italic'), local('DrukCyr-SuperItalic'),
        url('../fonts/druk-cyr/DrukCyr-SuperItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-SuperItalic.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-SuperItalic.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-SuperItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-Super.eot');
    src: local('Druk Cyr Super'), local('DrukCyr-Super'),
        url('../fonts/druk-cyr/DrukCyr-Super.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-Super.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-Super.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-Super.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-Medium.eot');
    src: local('Druk Cyr Medium'), local('DrukCyr-Medium'),
        url('../fonts/druk-cyr/DrukCyr-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-Medium.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-Medium.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Druk Cyr';
    src: url('../fonts/druk-cyr/DrukCyr-BoldItalic.eot');
    src: local('Druk Cyr Bold Italic'), local('DrukCyr-BoldItalic'),
        url('../fonts/druk-cyr/DrukCyr-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/druk-cyr/DrukCyr-BoldItalic.woff2') format('woff2'),
        url('../fonts/druk-cyr/DrukCyr-BoldItalic.woff') format('woff'),
        url('../fonts/druk-cyr/DrukCyr-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@import url('https://fonts.cdnfonts.com/css/pf-centro-sans-pro');
@import url(../fonts/inter/stylesheet.css);
@font-face {
  font-family: 'FontAwesome Regular';
  src: url("../fonts/fontawesome/fa-regular-400.eot");
  src: url("../fonts/fontawesome/fa-regular-400.eot") format("embedded-opentype"), url("../fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-regular-400.woff") format("woff"), url("../fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-regular-400.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'FontAwesome Solid';
  src: url("../fonts/fontawesome/fa-solid-900.eot");
  src: url("../fonts/fontawesome/fa-solid-900.eot") format("embedded-opentype"), url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome/fa-solid-900.woff") format("woff"), url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("../fonts/fontawesome/fa-solid-900.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'FontAwesome Brands';
  src: url("../fonts/fontawesome/fa-brands-400.eot");
  src: url("../fonts/fontawesome/fa-brands-400.eot") format("embedded-opentype"), url("../fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-brands-400.woff") format("woff"), url("../fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-brands-400.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.btl {
    background-color: #f5f5f5;
}

.btl__fs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    align-items: center;
    flex-wrap: wrap;
    padding: 125px 144px;
    background: #212121;
    min-height: 90vh;
}

@media screen and (max-width: 1919px) {
    .btl__fs {
        padding: 82px 104px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__fs {
        flex-direction: column-reverse;
        background: #df2f33;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, left bottom, from(#df2f33), color-stop(70%, #212121), to(#212121));
        background: linear-gradient(to bottom, #df2f33 0%, #212121 70%, #212121 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#df2f33', endColorstr='#212121', GradientType=0);
        /* IE6-9 */
    }
}

@media screen and (max-width: 767px) {
    .btl__fs {
        padding: 56px 20px;
    }
}


.btl__fs::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../img/blinov_cup/bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.btl__fs-links {
    margin-top: 24px;
    display: flex;
}

@media screen and (max-width: 480px) {
    .btl__fs-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.btl__fs-info {
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-bottom: 150px;
}

@media screen and (max-width: 1919px) {
    .btl__fs-info {
        max-width: 60%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    }
}

@media screen and (max-width: 1199px) {
    .btl__fs-info {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.btl__fs-dates {
    display: block;
    margin-top: -10px;
    margin-bottom: 20px;
    font: 900 italic 132px/168px "Druk Cyr", Arial, sans-serif;
    color: #ffffff;
}

@media screen and (max-width: 1199px) {
    .btl__fs-dates {
        font-size: 150px;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .btl__fs-dates {
        font-size: 112px;
        line-height: 1;
    }
}

@media screen and (max-width: 480px) {
    .btl__fs-dates {
        font-size: 44px;
        line-height: 56px;
    }
}

.btl__fs-mounth {
    margin-top: 20px;
    margin-bottom: 80px;
    font-family: "Druk Cyr", Arial, sans-serif;
    font: 900 italic 80px/120px "Druk Cyr", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

@media screen and (max-width: 1199px) {
    .btl__fs-mounth {
        font-size: 100px;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .btl__fs-mounth {
        margin-top: 0;
        margin-bottom: 42px;
        display: block;
        font-size: 60px;
        line-height: 76px;
    }
}

@media screen and (max-width: 480px) {
    .btl__fs-mounth {
        font-size: 40px;
        line-height: 50px;
    }
}

.btl__fs a.btl__fs-button:not([href]) {
    cursor: not-allowed;
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs a.btl__fs-button:not([href]):focus {
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs a.btl__fs-button:not([href]):hover {
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs-button {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 322px;
    padding: 12px 32px;
    background: #da3331;
    border: 0;
    border-radius: 10px;
    font: 500 18px/24px "Inter", Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.33s;
    transition: all 0.33s;
}

@media screen and (max-width: 1199px) {
    .btl__fs-button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .btl__fs-button {
        font-size: 16px;
        line-height: 24px;
    }
}

.btl__fs-button:not(:last-child) {
    margin-right: 20px;
}

@media screen and (max-width:1024px) {
    .btl__fs-button:not(:last-child) {
        margin-left: auto;
    }
}

@media screen and (max-width:480px) {
    .btl__fs-button:not(:last-child) {
        margin-bottom: 12px !important;
    }
}

.btl__fs-button:last-child {
    background-color: #DEDEDE;
    color: #000;
}

@media screen and (max-width:1024px) {
    .btl__fs-button:last-child {
        margin-left: 0;
        margin-right: auto;
    }
}
.btl__fs-button:last-child:focus {
    background-color: #DEDEDE;
    color: #000;
}
.btl__fs-button:last-child:hover {
    background-color: #c8c8c8;
    color: #000;
}

@media screen and (max-width: 480px) {
    .btl__fs-button {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.btl__fs-button:focus {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__fs-button:hover {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__fs-button:disabled {
    cursor: not-allowed;
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs-button:disabled:focus {
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs-button:disabled:hover {
    background: #ababab;
    color: #d8d8d8;
}

.btl__fs-sponsors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    gap: 30px;
    max-width: 387px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1199px) {
    .btl__fs-sponsors {
        margin-left: auto;
        margin-right: auto;        
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .btl__fs-sponsors {
        margin-bottom: 50px;
    }
}

.btl__fs-sponsor {
    display: block;
}

.btl__fs-sponsor:nth-child(1) {
    max-width: 150px;
}

@media screen and (max-width: 767px) {
    .btl__fs-sponsor:nth-child(1) {
        max-width: 129px;
    }
}

.btl__fs-sponsor:nth-child(2) {
    max-width: 168px;
}

@media screen and (max-width: 767px) {
    .btl__fs-sponsor:nth-child(2) {
        max-width: 146px;
    }
}

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

.btl__fs-sponsor-img_gdrive {
    min-height: 70px;
    max-height: 70px;
}

.btl__fs-sponsor-img_hockey {
    height: 105px;
}

.btl__fs-sponsor:not(:last-child) {
    margin-bottom: 24px;
}

.btl__fs-sponsor:nth-child(1) {
    padding-right: 3px;
}
.btl__fs-sponsor:nth-child(2) {
    padding-left: 3px;
}


.btl__fs-name {
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1919px) {
    .btl__fs-name {
        max-width: 40%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
    }
}

@media screen and (max-width: 1199px) {
    .btl__fs-name {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 42px;
    }
}

.btl__fs-name-img {
    color: rgb(188, 42, 54);
    width: auto;
    height: 100%;
}

@media screen and (max-width: 1919px) {
    .btl__fs-name-img {
        width: auto;
    }
}

@media screen and (max-width: 1199px) {
    .btl__fs-name-img {
        width: 420px;
        color: #ffffff;
    }
}

@media screen and (max-width: 374px) {
    .btl__fs-name-img {
        width: 100%;
        max-width: 260px;
    }
}

.btl__news {
    padding: 86px 144px 50px;
}

@media screen and (max-width: 1919px) {
    .btl__news {
        padding: 62px 104px 35px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__news {
        padding: 50px 32px 60px;
    }
}

@media screen and (max-width: 767px) {
    .btl__news {
        padding: 23px 20px 29px;
    }
}

.btl__news-title {
    display: block;
    margin-top: 0;
    margin-bottom: 50px;
    font: 900 italic 84px/104px "Druk Cyr", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000000;
}

@media screen and (max-width: 1199px) {
    .btl__news-title {
        margin-bottom: 46px;
        font-size: 70px;
        line-height: 88px;
    }
}

@media screen and (max-width: 767px) {
    .btl__news-title {
        margin-bottom: 28px;
        font-size: 54px;
        line-height: 70px;
        letter-spacing: 1px;
    }
}

.btl__news-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.btl__news-col {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}

.btl__news-button {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 387px;
    margin: 57px auto 0;
    padding: 12px 32px;
    background: #da3331;
    border: 0;
    border-radius: 10px;
    font: 500 31px/36px "Inter", Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.33s;
    transition: all 0.33s;
}

@media screen and (max-width: 767px) {
    .btl__news-button {
        font-size: 16px;
        line-height: 24px;
    }
}

.btl__news-button:focus {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__news-button:hover {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__new {
    display: block;
    max-width: 546px;
    border-top: 4px solid #da3331;
    background: #ffffff;
}

@media screen and (max-width: 2559px) {
    .btl__new {
        max-width: 480px;
    }
}
@media screen and (max-width: 1919px) {
 .btl__new {
     max-width: 390px;
 }
}
@media screen and (max-width: 1439px) {
 .btl__new {
     max-width: 360px;
 }
}
@media screen and (max-width: 1199px) {
  .btl__new {
     max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .btl__new {
     max-width: 300px;
  }
}
@media screen and (max-width: 575px) {
    .btl__new {
        max-width: 81vw;
    }
}

.btl__new-img {
    position: absolute;
    -o-object-position: top;
    object-position: top;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.btl__new-img-wrapper {
    position: relative;
    display: block;
    min-height: 256px;
}

.btl__new-body {
    position: relative;
    display: block;
    min-height: 242px;
    padding: 30px 20px 70px;
}

.btl__new-tag {
    display: block;
    margin-top: 0;
    margin-bottom: 24px;
    font: 700 15px/20px "Inter", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #999999;
}

.btl__new-title {
    display: block;
    margin-top: 24px;
    margin-bottom: 20px;
    font: 500 21px/1.33 "Inter", Arial, sans-serif;
    color: #111111;
}

.btl__new-title a {
    font: inherit;
    text-decoration: none;
    color: inherit;
}

.btl__new-title a:focus {
    text-decoration: none;
    color: #ff0000;
}

.btl__new-title a:hover {
    text-decoration: none;
    color: #ff0000;
}

.btl__new-date {
    position: absolute;
    bottom: 30px;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    font: 400 18px/1.15px "Inter", Arial, sans-serif;
    color: #999999;
}

.btl__participants {
    padding: 50px 144px 48px;
}

@media screen and (max-width: 1919px) {
    .btl__participants {
        padding: 35px 104px 35px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__participants {
        padding: 93px 32px 35px;
    }
}

@media screen and (max-width: 767px) {
    .btl__participants {
        padding: 29px 20px 29px;
    }
}

.btl__participants-title {
    display: block;
    margin-top: 0;
    margin-bottom: 69px;
    font: 700 100px/128px "Druk Cyr", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

@media screen and (max-width: 1199px) {
    .btl__participants-title {
        margin-bottom: 46px;
        font-size: 70px;
        line-height: 88px;
    }
}

@media screen and (max-width: 767px) {
    .btl__participants-title {
        margin-bottom: 28px;
        font-size: 54px;
        line-height: 70px;
        letter-spacing: 1px;
    }
}

.btl__participants-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: inside none;
    margin: 0 -63px;
    padding-left: 0;
}

@media screen and (max-width: 1919px) {
    .btl__participants-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        margin-left: -40px;
        margin-right: -40px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__participants-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: -30px;
        margin-right: -30px;
    }
}

@media screen and (max-width: 767px) {
    .btl__participants-list {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.btl__participants-item {
    display: block;
    padding-left: 63px;
    padding-right: 63px;
}

@media screen and (max-width: 1919px) {
    .btl__participants-item {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__participants-item {
        max-width: 33.3333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
        margin-bottom: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .btl__participants-item {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin-bottom: 19px;
    }
}

@media screen and (max-width: 767px) {
    .btl__participants-item {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.btl__participants-img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.btl__schedule {
    padding: 48px 144px 20px;
}

@media screen and (max-width: 1919px) {
    .btl__schedule {
        padding: 35px 104px 35px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__schedule {
        padding: 35px 32px 60px;
    }
}

@media screen and (max-width: 767px) {
    .btl__schedule {
        padding: 29px 20px 25px;
    }
}

.btl__banner {
    padding: 20px 144px 20px;
}

@media screen and (max-width: 1919px) {
    .btl__banner {
        padding: 35px 104px 35px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__banner {
        padding: 35px 32px 35px;
    }
}

@media screen and (max-width: 767px) {
    .btl__banner {
        padding: 25px 20px 25px;
    }
}


.btl__schedule-title {
    display: block;
    margin-top: 0;
    margin-bottom: 50px;
    font: 900 italic 84px/104px "Druk Cyr", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000000;
}

@media screen and (max-width: 1199px) {
    .btl__schedule-title {
        margin-bottom: 46px;
        line-height: 88px;
    }
}

@media screen and (max-width: 767px) {
    .btl__schedule-title {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 1px;
    }
}

.btl__schedule-more {
    display: none;
    position: relative;
    padding: 8px 24px 8px 8px;
    background-color: transparent;
    border: 0;
    margin: 0 auto;
    margin-bottom: 0;
    font: 500 normal 16px/20px "Inter", Arial, sans-serif;
    text-decoration: none;
    color: #000000;
    text-align: center;
    cursor: pointer;
}

.btl__schedule-more-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.btl__schedule-more:focus, .btl__schedule-more:hover {
    text-decoration: underline;
    color: #000000;
}

.btl__games {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: -8px;
    margin-right: -8px;
    padding-bottom: 28px;
}

.btl__game-container {
    display: none;
    flex: 0 0 calc(20% - 10px);
    max-width: calc(20% - 10px);
}
.btl__game-container.show {
    display: block;
}

@media screen and (max-width:1440px) {
    .btl__game-container {
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
    }
}

@media screen and (max-width:1024px) {
    .btl__game-container {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

@media screen and (max-width:576px) {
    .btl__game-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .btl__game-container:not(:last-child) {
        margin-bottom: 12px;
    }
}

.btl__game {
    padding: 20px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0px 6px 12px -6px #2F2F2F1F;
}

.btl__game-datetime {
    margin-top: 0;
    margin-bottom: 20px;
    font: 500 normal 12px/14px "Inter", Arial, sans-serif;
    color: #000000;
    text-transform: uppercase;
}

.btl__game-teams-logos {
    display: block;
}

.btl__game-teams-logos-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.btl__game-team-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    max-width: 40px;
    max-height: 40px;
}

.btl__game-team-logo_square {
    max-width: 31px;
}

.btl__game-team-logo-container {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f8f8;
}

.btl__game-team-logo-container:nth-child(2) {
    margin-left: -12px;
}

.btl__game-team-logo-container:first-child {
    z-index: 1;
    background-color: #f4f4f4;
}

.btl__game-team-logo-container:not(:first-child) .btl__game-team-logo_horizontal {
    left: calc(50% + 3px);
}

.btl__tickets-warning {
    position: relative;
    margin-top: 16px;
    margin-bottom: 12px;
    padding-left: 18px;
    font: 600 normal 12px/16px "Inter", Arial, sans-serif;
    color: #DA3331;
}

.btl__tickets-warning-icon {
    position: absolute;
    top: 46%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/ErrorOutlineRounded.svg) no-repeat center;
}

.btl__game-name {
    padding-left: 12px;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    font: 600 normal 16px/20px "Inter", Arial, sans-serif;
    text-transform: uppercase;
    color: #000000;
}

@media (min-width: 1441px) and (max-width: 1600px) {
    .btl__game-name {
        font-size: 12px;
    }
}

.btl__game-name > span {
    display: block;
}

.btl__game-name-splitter {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 28px;
    height: 11px;
}

.btl__game-name-splitter:before, .btl__game-name-splitter:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    background: #666666;
    content: '';
}

.btl__game-name-splitter:before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btl__game-name-splitter:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.btl__game-score {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 3px;
    background: #d9d9d9;
}

.btl__game-info {
    display: block;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
    font: 400 14px/18px "Inter", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.3);
}

.btl__game-info-splitter {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 10px;
    height: 10px;
}

.btl__game-info-splitter:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.3);
    content: '';
}

.btl__game-coefficients {
    display: block;
    width: 100%;
    margin-top: 8px;
    border: 1px solid #eaeaea;
    text-decoration: none;
}

.btl__game-coefficients:focus, .btl__game-coefficients:hover {
    text-decoration: none;
}

.btl__game-coefficients-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btl__game-coefficients-col {
    position: relative;
    display: block;
    width: 100%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
}

.btl__game-coefficients-col:last-child, .btl__game-coefficients-col:first-child {
    background: #fc0d1b;
}

.btl__game-coefficients-col:nth-child(3):before, .btl__game-coefficients-col:nth-child(4):before {
    position: absolute;
    top: 8px;
    display: block;
    width: 1px;
    height: 20px;
    background-color: #eaeaea;
    content: '';
}

.btl__game-coefficients-img {
    display: block;
    max-width: 100%;
    margin: 12px auto;
}

.btl__game-coefficients-text {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    font: 500 12px/36px "Inter", Arial, sans-serif;
    text-align: center;
    color: #000000;
}

.btl__game-coefficients-value {
    margin-left: 4px;
    font: 600 14px/36px "Inter", Arial, sans-serif;
    color: #c3121d;
}

/*.btl__game a.btl__game-button:not([href]){*/
.btl__game .btl__game-button.btl__game-button_past {
    cursor: not-allowed;
    background: #9e9e9e;
    color: #ffffff;
}

/*.btl__game a.btl__game-button:not([href]):focus {*/
.btl__game .btl__game-button.btl__game-button_soon:focus {
    background: #9e9e9e;
    color: #ffffff;
}

/*.btl__game a.btl__game-button:not([href]):hover {*/
.btl__game .btl__game-button.btl__game-button_soon:hover {
    background: #9e9e9e;
    color: #ffffff;
}

.btl__game-button {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 8px 24px;
    background: #da3331;
    border: 0;
    border-radius: 8px;
    font: 500 normal 14px/18px "Inter", Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.33s;
    transition: all 0.33s;
}


.btl__game-button:not(:last-child) {
    margin-right: 12px;
}

/* .btl__game-button:before {
    position: absolute;
    top: 48%;
    right: calc(50% + 70px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    content: '';
} */

.btl__game-button:focus {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__game-button:hover {
    background: #de4847;
    color: #ffffff;
    text-decoration: none;
}

.btl__game-button_ended {
    background-color: #a9a9a9;
    pointer-events: none;
    cursor: not-allowed;
}
.btl__game-button_ended:focus {
    background-color: #a9a9a9;
}
.btl__game-button_ended:hover {
    background-color: #a9a9a9;
}

.btl__game-button_vip {
    background-color: #CAA47A;
}
.btl__game-button_vip:focus {
    background-color: #CAA47A;
}
.btl__game-button_vip:hover {
    background-color: #c19463;
}

.btl__game-button_soon {
    background-color: #FFDEDE;
    color: #DA3331;
}
.btl__game-button_soon:focus {
    background-color: #FFDEDE;
    color: #DA3331;
}
.btl__game-button_soon:hover {
    background-color: #ffd4d4;
    color: #DA3331;
}
.btl__game-button_soon:before {
    background: url(../img/NotificationsNoneRounded.svg) no-repeat center;
}

.btl__game-score-container {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 12px;
}

.btl__game-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 2px 6px 4px 6px;
    display: block;
    width: 30px;
    height: 26px;
    background-color: #5f86eb;
    border-radius: 0px 12px;
    font: 500 normal 16px/20px "Inter", Arial, sans-serif;
    color: white;
    text-align: center;
}

@media screen and (max-width:375px) {
    .btl__game-badge {
        top: 36px;
        right: 18px;
        padding: 2px 6px;
        border-radius: 6px;
    }
}

.btl__game-badges-top-left-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}
.btl__game-badge-closed-sale {
    position: relative;
    margin: 0;
    padding: 4px 16px;
    display: block;
    width: 165px;
    height: 24px;
    background-color: #FFD4D3;
    border-radius: 12px 0;
    font: 500 normal 12px/16px "Inter", Arial, sans-serif;
    color: #DA3331;
}
@media screen and (max-width:375px) {
    .btl__game-badge-closed-sale {
        padding: 4px 8px;
        width: 150px;
    }
}

.btl__game-badge-closed-sale:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/InfoRounded.svg) no-repeat center;
    content: '';
}
.btl__game-badge-thematic {
    position: relative;
    margin: 0;
    padding: 4px 16px;
    display: block;
    width: 135px;
    height: 24px;
    background-color: #8C8C8C;
    border-radius: 0 0 12px 12px;
    font: 500 normal 12px/16px "Inter", Arial, sans-serif;
    color: white;
}

@media screen and (max-width:375px) {
    .btl__game-badge-thematic {
        padding: 4px 8px;
        width: 120px;
    }
}

.btl__game-badge-thematic:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/InfoRounded.svg) no-repeat center;
    filter: brightness(0) invert(1);
    content: '';
}


.btl__game-badge-closed-sale:not(:last-child) {
    margin-right: 8px;
}

@media screen and (max-width:375px) {
    .btl__game-badge-closed-sale:not(:last-child) {
        margin-right: 6px;
    }
}


.btl__fired-suggestion {
    margin-left: auto;
    display: block;
    width: 28px;
    height: 28px;
}

.btl__standings {
    padding: 20px 144px 81px;
}

@media screen and (max-width: 1919px) {
    .btl__standings {
        padding: 66px 104px 15px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__standings {
        padding: 60px 32px;
    }
}

@media screen and (max-width: 480px) {
    .btl__standings {
        padding-right: 12px;
        padding-left: 12px;
        padding-bottom: 4px;
    }
}

.btl__standings-title {
    display: block;
    margin-top: 0;
    margin-bottom: 50px;
    font: 900 italic 84px/104px "Druk Cyr", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000000;
}

@media screen and (max-width: 1199px) {
    .btl__standings-title {
        margin-bottom: 46px;
        font-size: 70px;
        line-height: 88px;
    }
}

@media screen and (max-width: 767px) {
    .btl__standings-title {
        margin-bottom: 28px;
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 1px;
    }
}

.btl__standings-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-width: 600px;
}

.btl__standings-table-wrapper {
    overflow-x: auto;
    display: block;
    width: 100%;
    padding: 44px 35px;
    background: #ffffff;
    max-width: 100%;
    border-radius: 16px;
}

@media screen and (max-width: 1199px) {
    .btl__standings-table-wrapper {
        padding: 20px 10px;
    }
}

.btl__standings-table-teams {
    display: block;
    width: 100%;
    max-width: 30%;
    min-width: 300px;
}

@media screen and (max-width: 1440px) {
    .btl__standings-table-teams {
        max-width: 35%;
    }
}

.btl__standings-table-teams .btl__standings-table-thead,
.btl__standings-table-teams .btl__standings-table-tr {
    padding-left: 22px;
}

.btl__standings-table-teams .btl__standings-table-th:nth-child(1),
.btl__standings-table-teams .btl__standings-table-td:nth-child(1) {
    max-width: 90px;
}

.btl__standings-table-teams .btl__standings-table-th:nth-child(2),
.btl__standings-table-teams .btl__standings-table-td:nth-child(2) {
    max-width: 66px;
}

.btl__standings-table-teams .btl__standings-table-th:nth-child(3) {
    text-indent: -66px;
}

.btl__standings-table-thead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #171717;
}

.btl__standings-table-th {
    display: block;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font: 600 normal 20px/24px "Inter", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.btl__standings-table-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 60px;
}

.btl__standings-table-tr:nth-child(even) {
    background: #eaeaea;
}

.btl__standings-table-td {
    display: block;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font: 500 normal 16px/20px "Inter", Arial, sans-serif;
    text-transform: uppercase;
    color: #171717;
}

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

.btl__standings-table-img_h {
    max-width: 49px;
}

.btl__standings-table-img_b {
    max-width: 42px;
}

.btl__standings-table-img_l {
    max-width: 31px;
}

.btl__standings-table-img_p {
    max-width: 38px;
}

.btl__standings-table-img_s {
    max-width: 43px;
}

.btl__standings-table-img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.btl__standings-table-results {
    display: block;
    width: 100%;
    max-width: 70%;
    min-width: 300px;
}

@media screen and (max-width: 1440px) {
    .btl__standings-table-results {
        max-width: 65%;
    }
}

.btl__standings-table-results .btl__standings-table-thead,
.btl__standings-table-results .btl__standings-table-tr {
    padding-right: 22px;
}

.btl__standings-table-results .btl__standings-table-th,
.btl__standings-table-results .btl__standings-table-td {
    max-width: 52px;
    text-align: center;
}

.btl__standings-table-results .btl__standings-table-td {
    font-weight: 600;
    font-size: 18px;
}

.btl__hr {
    display: block;
    width: 100%;
    height: 203px;
    margin: 0;
    border: 0;
    background: #f5f5f5;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e2e2e2));
    background: linear-gradient(to bottom, #f5f5f5 0%, #e2e2e2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#e2e2e2', GradientType=0);
    /* IE6-9 */
}

@media screen and (max-width: 1199px) {
    .btl__hr {
        display: none;
    }
}

.btl__history {
    padding: 177px 144px 517px;
    background-color: #e2e2e2;
    background-image: url("../img/blinov_cup/history/ice_vertical.png"), url("../img/blinov_cup/history/ice_horizontal.png");
    background-repeat: no-repeat;
    background-position: top center, bottom center;
    background-size: auto;
}

@media screen and (max-width: 1919px) {
    .btl__history {
        padding: 0 104px 120px;
        background-position: top center, bottom 740px left;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history {
        background-color: #f5f5f5;
        padding: 60px 32px 80px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history {
        padding: 26px 0 0;
    }
}

.btl__history-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -40px;
    margin-right: -40px;
}

@media screen and (max-width: 1919px) {
    .btl__history-about {
        margin: 0 -17px 87px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-about {
        margin: 0;
    }
}

.btl__history-about-text-wrapper {
    display: block;
    width: 100%;
    max-width: 60%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    padding-left: 40px;
    padding-right: 40px;
}

@media screen and (max-width: 1919px) {
    .btl__history-about-text-wrapper {
        max-width: 65%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        padding-left: 17px;
        padding-right: 17px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-about-text-wrapper {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-about-text-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.btl__history-about-img-wrapper {
    display: block;
    width: 100%;
    max-width: 40%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    padding-left: 40px;
    padding-right: 40px;
}

@media screen and (max-width: 1919px) {
    .btl__history-about-img-wrapper {
        max-width: 35%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        padding-left: 17px;
        padding-right: 17px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-about-img-wrapper {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-about-img-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.btl__history-title {
    display: block;
    width: 100%;
    margin-top: 0;
    margin-bottom: 50px;
    font: 600 80px/90px "Inter", Arial, sans-serif;
    text-transform: capitalize;
    color: #000000;
}

@media screen and (max-width: 1199px) {
    .btl__history-title {
        margin-bottom: 46px;
        font: 700 70px/88px "Druk Cyr", Arial, sans-serif;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-title {
        margin-bottom: 21px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 54px;
        line-height: 70px;
    }
}

.btl__history-desc {
    display: block;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 0;
    font: 400 25px/30px "Inter", Arial, sans-serif;
    color: #000000;
    letter-spacing: -1px;
}

@media screen and (max-width: 1199px) {
    .btl__history-desc {
        margin-top: 46px;
        margin-bottom: 75px;
        font-size: 30px;
        line-height: 36px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-desc {
        margin-top: 21px;
        margin-bottom: 38px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
        line-height: 22px;
    }
}

.btl__history-img {
    display: block;
    max-width: 100%;
    margin-top: 23px;
    margin-bottom: -47px;
    border-radius: 22px;
}

@media screen and (max-width: 1919px) {
    .btl__history-img {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-img {
        margin-top: 75px;
        margin-bottom: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-img {
        margin-top: 21px;
        margin-bottom: 0;
    }
}

.btl__history-timeline {
    position: relative;
}

.btl__history-timeline:before {
    position: absolute;
    top: 129px;
    left: 50%;
    display: block;
    height: calc(100% - 129px - 72px - 293px);
    border-left: 5px dashed #000000;
    content: '';
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline:before {
        left: auto;
        right: 99px;
        height: calc(100% - 129px - 72px - 102px);
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline:before {
        display: none;
    }
}

.btl__history-timeline-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btl__history-timeline-point:first-child .btl__history-timeline-point-info-wrapper:before {
    top: 127px;
}

.btl__history-timeline-point:first-child .btl__history-timeline-point-info-wrapper:after {
    top: 118px;
}

.btl__history-timeline-point:first-child .btl__history-timeline-point-img:first-child {
    margin-top: 355px;
    margin-left: 194px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:first-child {
        max-width: calc(100% - 72px);
        margin-left: 72px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:first-child {
        max-width: 535px;
        margin-top: 75px;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:first-child {
        max-width: 100%;
        margin-top: 0;
    }
}

.btl__history-timeline-point:first-child .btl__history-timeline-point-img:last-child {
    margin-top: -20px;
    margin-left: 139px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:last-child {
        max-width: calc(100% - 64px);
        margin-top: 0;
        margin-left: 64px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:last-child {
        max-width: 535px;
        margin-top: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:first-child .btl__history-timeline-point-img:last-child {
        max-width: 100%;
    }
}

.btl__history-timeline-point:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info {
    margin-left: 75px;
    margin-right: auto;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info {
        margin-left: 0;
        margin-right: auto;
    }
}

.btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info-wrapper:before {
    left: -14px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info-wrapper:before {
        left: auto;
        right: 85px;
    }
}

.btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info-wrapper:after {
    left: -23px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(even) .btl__history-timeline-point-info-wrapper:after {
        left: auto;
        right: 76px;
    }
}

.btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-info-wrapper {
    margin-top: 145px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper {
    margin-top: -87px;
}
.btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper .btl__history-timeline-point-img {
    border-radius: 20px;
}
@media screen and (min-width: 1200px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper .btl__history-timeline-point-img {
        margin-left: auto;
        margin-right: 120px;
    }
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper {
        margin-top: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper .btl__history-timeline-point-img {
        max-width: 380px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(2) .btl__history-timeline-point-img-wrapper {
        max-width: 100%;
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-info-wrapper {
    margin-top: 126px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-info-wrapper {
        margin-top: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img-wrapper {
    margin-top: 59px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img {
    margin-left: 172px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img {
        max-width: calc(100% - 53px);
        margin-left: 53px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img {
        max-width: 535px;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(3) .btl__history-timeline-point-img {
        max-width: 100%;
    }
}

.btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-info-wrapper {
    margin-top: 145px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-info-wrapper {
        margin-top: 186px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img-wrapper, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img-wrapper {
    margin-top: 83px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img-wrapper, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img-wrapper {
        margin-top: 222px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img-wrapper, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img-wrapper, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img {
    margin-left: auto;
    margin-right: 125px;
}

.btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img {
    border-radius: 20px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img {
        max-width: calc(100% - 68px);
        margin-right: 68px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img {
        max-width: 535px;
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(4) .btl__history-timeline-point-img, .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-img {
        max-width: 100%;
    }
}

.btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-info-wrapper,
.btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-info-wrapper {
    margin-top: 186px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-info-wrapper,
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-info-wrapper,
    .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img-wrapper,
.btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img-wrapper {
    margin-top: 203px;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img-wrapper,
    .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img-wrapper,
    .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img,
.btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img {
    margin-left: 172px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img,
     .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img {
        max-width: calc(100% - 47px);
        margin-left: 47px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img,
    .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img {
        max-width: 535px;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(5) .btl__history-timeline-point-img,
    .btl__history-timeline-point:nth-child(7) .btl__history-timeline-point-img {
        max-width: 100%;
    }
}

.btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-info-wrapper,
.btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-info-wrapper {
    margin-top: 107px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-info-wrapper,
    .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-info-wrapper {
        margin-top: 185px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-info-wrapper,
    .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-info-wrapper,
    .btl__history-timeline-point:nth-child(8) .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img-wrapper {
    margin-top: 50px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img-wrapper {
        margin-top: 185px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:first-child {
    margin-left: auto;
    margin-right: 59px;
}

@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:first-child {
        max-width: 527px;
        margin-right: 72px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:first-child {
        max-width: 427px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:first-child {
        max-width: 535px;
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:first-child {
        max-width: 100%;
    }
}

.btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:last-child {
    margin-left: auto;
    margin-right: 66px;
}


@media screen and (max-width: 1919px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:last-child {
        max-width: 487px;
        margin-top: -10px;
        margin-right: 77px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:last-child {
        max-width: 367px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:last-child {
        max-width: 535px;
        margin-left: 0;
        margin-top: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:nth-child(6) .btl__history-timeline-point-img:last-child {
        max-width: 100%;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info {
    min-height: auto;
    margin-top: 251px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 45px 65px;
    background-color: #ff0000;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info {
        margin-top: 30px;
        padding: 30px 20px 67px;
        border-radius: 12px;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper {
        margin-top: 75px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper {
        margin-top: 0;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper:before {
    top: 138px;
    left: calc(50% + 2px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper:before {
        left: auto;
        top: 52px;
        right: 85px;
        -webkit-transform: none;
        transform: none;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper:after {
    top: 129px;
    left: calc(50% + 2px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-wrapper:after {
        left: auto;
        top: 43px;
        right: 76px;
        -webkit-transform: none;
        transform: none;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info-title {
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-title {
        text-align: left;
    }
}

.btl__history-timeline-point:last-child .btl__history-timeline-point-info-desc {
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point:last-child .btl__history-timeline-point-info-desc {
        text-align: left;
    }
}

.btl__history-timeline-point-info {
    display: block;
    width: 535px;
    min-height: 535px;
    margin-left: auto;
    margin-right: 88px;
    padding: 20px 30px 40px;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 23px rgba(0, 0, 0, 0.16);
    box-shadow: 0 4px 23px rgba(0, 0, 0, 0.16);
    background: #ffffff;
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .btl__history-timeline-point-info {
        width: 455px;
        min-height: 455px;
    }
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point-info {
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point-info {
        width: auto;
        min-height: 100%;
        height: auto;
        padding: 30px 20px;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.btl__history-timeline-point-info-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point-info-wrapper {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.btl__history-timeline-point-info-wrapper:before {
    position: absolute;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    top: 52px;
    right: -18px;
    display: block;
    width: 16px;
    height: 16px;
    border: 8px solid #e2e2e2;
    border-radius: 50%;
    background: #000000;
    content: '';
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point-info-wrapper:before {
        right: 85px;
        border-color: #f5f5f5;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point-info-wrapper:before {
        display: none;
    }
}

.btl__history-timeline-point-info-wrapper:after {
    position: absolute;
    top: 43px;
    right: -27px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 10px solid #000000;
    content: '';
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point-info-wrapper:after {
        right: 76px;
    }
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point-info-wrapper:after {
        display: none;
    }
}

.btl__history-timeline-point-info-title {
    display: block;
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    font: 700 80px/90px "Druk Cyr", Arial, sans-serif;
    color: #000000;
}

.btl__history-timeline-point-info-desc {
    display: block;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    font: 400 22px/26px "Inter", Arial, sans-serif;
    color: #000000;
    letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
    .btl__history-timeline-point-info-desc {
        font-size: 18px;
        line-height: 22px;
    }
}

.btl__history-timeline-point-img {
    display: block;
    max-width: 100%;
}

.btl__history-timeline-point-img-wrapper {
    display: block;
    width: 100%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media screen and (max-width: 1199px) {
    .btl__history-timeline-point-img-wrapper {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.btl__tv {
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.btl__tv-title {
    margin: 0;
    font: 500 normal 36px/105px "Inter", Arial, sans-serif;
    color: #000;
    white-space: nowrap;
}
.btl__tv .btl__fs-sponsor-img_hockey {
    margin-left: 20px;
    width: auto;
    max-width: 100%;
}
@media screen and (max-width: 1024px) {
    .btl__tv .btl__fs-sponsor-img_hockey {
        margin-top: 16px;
        margin-left: 0;
    }
    .btl__tv-title {
        font-size: 16px;
        line-height: 20px;
    }
}

.btl__footer {
    background-color: #222;
}

.btl__footer-container {
    padding: 68px 100px;
}

@media screen and (max-width: 575px) {
    .btl__footer-container {
        padding-right: 4px;
        padding-left: 4px;
    }    
}

.btl__footer-block:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 1px solid #363636;
}
.btl__footer-block:not(:first-child) {
    padding-top: 40px;
}

.btl__footer-block-title {
    margin-top: 0;
    margin-bottom: 25px;
    width: 100%;
    font: 700 italic 13px/15px 'PF Centro Sans Pro', Arial, sans-serif;
    color: #999;
    text-transform: uppercase;
    text-align: center;
}

.btl__footer-block-partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .btl__footer-block-partners {
       flex-wrap: wrap;
       justify-content: center;
    }
}

.btl__footer-block-partner {
    position: relative;
}

@media screen and (max-width: 768px) {
    .btl__footer-block-partner {
       flex: 0 0 50%;
       max-width: 50%;
    }
}

.btl__footer-block-partners_main {
    justify-content: center;
}

.btl__footer-block-partners_general {
    max-width: 1298px;
}
.btl__footer-block-partners_usual {
    max-width: 1429px;
}

.btl__footer-block-partner-logo {
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 1199px) {
    .btl__footer-block-partner-logo {
        max-width: 140px;
    }
}
@media screen and (max-width: 991px) {
    .btl__footer-block-partner-logo {
        margin: 8px auto;
    }
}
@media screen and (max-width: 360px) {
    .btl__footer-block-partner-logo {
       max-width: 120px;
    }
}

