@charset "UTF-8";

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f5f5f5
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #f5f5f5
}

::-webkit-scrollbar-thumb {
    background-color: #ed1c24;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, hsla(0, 0%, 100%, .2)), color-stop(.5, transparent), to(transparent))
}

::-moz-selection {
    background-color: rgba(237, 28, 36, .7);
    color: #fff
}

::selection {
    background-color: rgba(237, 28, 36, .7);
    color: #fff
}

.tm-content {
    max-width: 1920px;
    overflow-x: hidden;
    margin: auto
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

.tm-title {
    padding: 0;
    margin: 0;
    font-weight: 900;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center
}

@media (max-width:639px) {
    .tm-title {
        flex-direction: column;
        align-items: flex-start
    }
}

.tm-overflow-x-hidden {
    overflow-x: hidden
}

.tm-bg {
    padding: 60px 0
}

.tm-bg--gray {
    background-color: #e5e5e5
}

.tm-badge {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 27px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 24px;
    background-color: #ed1c24;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    white-space: nowrap
}

.tm-badge:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #ed1c24;
    top: 0;
    right: -7px;
    display: block;
    transform: skewX(30deg);
    z-index: -1
}

.tm-dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 24px;
    align-items: center
}

.tm-dl__dt {
    font-weight: 700;
    color: #000
}

.tm-dl__dd,
.tm-dl__dt {
    font-style: normal;
    font-size: 15px;
    line-height: 17px;
    text-transform: uppercase
}

.tm-dl__dd {
    font-weight: 400;
    color: #2c2c2c
}

.tm-text-black {
    color: #000
}

.tm-totop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #000;
    border: 1px solid #ed1c24;
    border-radius: 20%;
    color: #ed1c24;
    justify-content: center;
    align-items: center;
    transition: .3s;
    opacity: 0;
    pointer-events: none
}

.tm-totop:active,
.tm-totop:focus,
.tm-totop:hover {
    color: #ed1c24;
    transform: translateY(-10px)
}

.tm-totop--visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1
}

@media (max-width:639px) {
    .tm-totop {
        width: 30px;
        height: 30px;
        right: 10px;
        bottom: 173px
    }
}

.tm-youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0
}

.tm-youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tm-form {
    margin-top: 26px
}

.tm-form__label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #676767
}

.tm-form__label--required:after {
    content: "*";
    color: #ed1c24
}

.tm-form__input {
    height: 50px;
    padding: 0 14px;
    text-overflow: ellipsis
}

.tm-form__input,
.tm-form__textarea {
    margin-top: 8px;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 0;
    font-size: 18px;
    box-sizing: border-box;
    transition: .3s
}

.tm-form__textarea {
    padding: 20px 14px;
    resize: vertical
}

.tm-form__input,
.tm-form__textarea {
    outline: 1px solid transparent
}

.tm-form__input:active,
.tm-form__input:focus,
.tm-form__input:hover,
.tm-form__textarea:active,
.tm-form__textarea:focus,
.tm-form__textarea:hover {
    outline: 1px solid #676767
}

.tm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 900;
    font-size: 15px;
    line-height: 54px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background-color: #ed1c24;
    min-width: 284px;
    border: none;
    border-radius: 0;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    white-space: nowrap;
    cursor: pointer
}

.tm-button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: .3s ease-in-out
}

.tm-button:active,
.tm-button:focus,
.tm-button:hover {
    color: #fff;
    text-decoration: none;
    outline: none
}

.tm-button:active:after,
.tm-button:focus:after,
.tm-button:hover:after {
    width: 100%
}

.tm-button--dark {
    background-color: #000
}

.tm-button--dark:after {
    background-color: #ed1c24
}

.tm-grid {
    display: grid;
    grid-gap: 40px
}

.tm-grid--2\/3-1\/3 {
    grid-template-columns: 2fr 1fr
}

@media (max-width:1199px) {
    .tm-grid--2\/3-1\/3 {
        grid-template-columns: 1fr
    }
}

.tm-grid--1\/2-1\/2 {
    grid-template-columns: 1fr 1fr
}

@media (max-width:1199px) {
    .tm-grid--1\/2-1\/2 {
        grid-template-columns: 1fr
    }
}

.tm-grid--3\/4-1\/4 {
    grid-template-columns: 3fr 1fr
}

@media (max-width:1199px) {
    .tm-grid--3\/4-1\/4 {
        grid-template-columns: 2fr 1fr
    }
}

@media (max-width:959px) {
    .tm-grid--3\/4-1\/4 {
        grid-template-columns: 1fr
    }
}

.tm-grid--1\/4-3\/4 {
    grid-template-columns: 1fr 3fr
}

@media (max-width:1199px) {
    .tm-grid--1\/4-3\/4 {
        grid-template-columns: 1fr 2fr
    }
}

@media (max-width:959px) {
    .tm-grid--1\/4-3\/4 {
        grid-template-columns: 1fr
    }
}

.tm-text {
    color: #000
}

.tm-text .tm-youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0
}

.tm-text .tm-youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tm-text a:active,
.tm-text a:hover {
    outline: none
}

.tm-text a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    position: relative
}

.tm-text a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ed1c24;
    transition: .3s
}

.tm-text a:hover {
    text-decoration: none
}

.tm-text a:hover:after {
    background-color: #ed1c24
}

.tm-text abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-style: dotted
}

.tm-text b,
.tm-text strong {
    font-weight: bolder
}

.tm-text :not(pre)>code,
.tm-text :not(pre)>kbd,
.tm-text :not(pre)>samp {
    font-family: Roboto Mono, monospace;
    font-size: 12px;
    color: #f0506e;
    white-space: nowrap;
    padding: 2px 6px;
    background: #f8f8f8
}

.tm-text em {
    color: #f0506e
}

.tm-text ins {
    text-decoration: none
}

.tm-text ins,
.tm-text mark {
    background: #ffd;
    color: #666
}

.tm-text q {
    font-style: italic
}

.tm-text small {
    font-size: 80%
}

.tm-text sub,
.tm-text sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

.tm-text sup {
    top: -.5em
}

.tm-text sub {
    bottom: -.25em
}

.tm-text audio,
.tm-text canvas,
.tm-text iframe,
.tm-text img,
.tm-text svg,
.tm-text video {
    vertical-align: middle
}

.tm-text canvas,
.tm-text img,
.tm-text video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box
}

@supports (display:block) {
    .tm-text svg {
        max-width: 100%;
        height: auto;
        box-sizing: border-box
    }
}

.tm-text svg:not(:root) {
    overflow: hidden
}

.tm-text img:not([src]) {
    min-width: 1px;
    visibility: hidden
}

.tm-text iframe {
    border: 0
}

.tm-text address,
.tm-text dl,
.tm-text fieldset,
.tm-text figure,
.tm-text ol,
.tm-text p,
.tm-text pre,
.tm-text ul {
    margin: 0 0 20px
}

.tm-text *+address,
.tm-text *+dl,
.tm-text *+fieldset,
.tm-text *+figure,
.tm-text *+ol,
.tm-text *+p,
.tm-text *+pre,
.tm-text *+ul {
    margin-top: 20px
}

.tm-text h1,
.tm-text h2,
.tm-text h3,
.tm-text h4,
.tm-text h5,
.tm-text h6 {
    margin: 0 0 20px;
    font-weight: 500;
    text-transform: none
}

.tm-text *+h1,
.tm-text *+h2,
.tm-text *+h3,
.tm-text *+h4,
.tm-text *+h5,
.tm-text *+h6 {
    margin-top: 40px
}

.tm-text h1 {
    font-size: 2.25rem;
    line-height: 1.2
}

.tm-text h2 {
    font-size: 2rem;
    line-height: 1.3
}

.tm-text h3 {
    font-size: 1.75rem;
    line-height: 1.4
}

.tm-text h4 {
    font-size: 1.5rem;
    line-height: 1.4
}

.tm-text h5 {
    font-size: 1.25rem;
    line-height: 1.4
}

.tm-text h6 {
    font-size: 1rem;
    line-height: 1.4
}

@media (min-width:960px) {
    .tm-text h1 {
        font-size: 38px
    }

    .tm-text h2 {
        font-size: 30px
    }
}

.tm-text ol,
.tm-text ul {
    padding-left: 30px
}

.tm-text ol>li>ol,
.tm-text ol>li>ul,
.tm-text ul>li>ol,
.tm-text ul>li>ul {
    margin: 0
}

.tm-text dt {
    font-weight: 700
}

.tm-text dd {
    margin-left: 0
}

.tm-text hr {
    overflow: visible;
    text-align: inherit;
    margin: 0 0 20px;
    border: 0;
    border-top: 1px solid #e5e5e5
}

.tm-text *+hr {
    margin-top: 20px
}

.tm-text address {
    font-style: normal
}

.tm-text blockquote {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    color: #222;
    padding-left: 30px;
    border-left: 3px solid #ed1c24
}

.tm-text *+blockquote {
    margin-top: 20px
}

.tm-text blockquote p:last-of-type {
    margin-bottom: 0
}

.tm-text blockquote footer {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #666
}

.tm-text blockquote footer:before {
    content: "\2014   "
}

.tm-text pre {
    font: 12px/1.5 Roboto Mono, monospace;
    color: #666;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    overflow: auto;
    padding: 25px;
    border: 0 solid #e5e5e5;
    border-radius: 0;
    background: #f8f8f8
}

.tm-text pre code {
    font-family: Roboto Mono, monospace
}

.tm-text ::-moz-selection {
    background: #ed1c24;
    color: #fff;
    text-shadow: none
}

.tm-text ::selection {
    background: #ed1c24;
    color: #fff;
    text-shadow: none
}

.tm-text details,
.tm-text main {
    display: block
}

.tm-text summary {
    display: list-item
}

.tm-text template {
    display: none
}

.tm-text table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px
}

.tm-text *+table {
    margin-top: 20px
}

.tm-text table th {
    padding: 12px 8px;
    text-align: left;
    vertical-align: bottom;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase
}

.tm-text table td {
    padding: 12px 8px;
    vertical-align: top
}

.tm-text table td>:last-child {
    margin-bottom: 0
}

.tm-text table tfoot {
    font-size: 14px
}

.tm-text table caption {
    font-size: 14px;
    text-align: left;
    color: #999
}

.tm-text table tbody tr {
    transition: background-color .1s linear
}

.tm-text table>:first-child>tr:not(:first-child),
.tm-text table>:not(:first-child)>tr,
.tm-text table>tr:not(:first-child) {
    border-top: 1px solid #e5e5e5
}

.tm-text table>tr:nth-of-type(odd),
.tm-text table tbody tr:nth-of-type(odd) {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5
}

.tm-pagination,
.tm-pagination>li {
    justify-content: center
}

.tm-pagination>li {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    margin-top: 3px
}

@media (max-width:959px) {
    .tm-pagination>li {
        width: 30px;
        height: 30px
    }
}

.tm-pagination>li+li {
    margin-left: 3px
}

.tm-pagination>li.uk-active {
    color: #fff;
    background-color: #000
}

.tm-pagination>li.uk-active>* {
    color: #fff
}

.tm-pagination>li.uk-disabled>* {
    cursor: not-allowed
}

.tm-pagination>li>* {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.tm-header-nav {
    background-color: #ed1c24
}

.tm-header-nav__container {
    height: 100px;
    display: flex;
    align-items: center
}

@media (max-width:959px) {
    .tm-header-nav__container {
        height: 70px
    }
}

.tm-header-nav__logo {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    padding-right: 85px
}

@media (max-width:1199px) {
    .tm-header-nav__logo {
        padding-right: 45px
    }
}

@media (max-width:959px) {
    .tm-header-nav__logo {
        height: 70px
    }
}

.tm-header-nav__logo-link {
    position: relative;
    z-index: 1;
    width: 109px
}

@media (max-width:959px) {
    .tm-header-nav__logo-link {
        height: 60px;
        width: 78px
    }
}

.tm-header-nav__logo:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1000px;
    height: 100%;
    background-color: #000;
    z-index: 0;
    transform: skewX(37deg)
}

.tm-toolbar {
    background-color: #f7f7f7;
    height: 62px
}

.tm-toolbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tm-toolbar__socials {
    height: 62px;
    display: flex;
    align-items: center
}

.tm-toolbar__social {
    color: #000;
    font-size: 27px
}

.tm-toolbar__social+.tm-toolbar__social {
    margin-left: 20px
}

.tm-toolbar__social:hover {
    text-decoration: none;
    color: #ed1c24;
    transition: .3s
}

@media (max-width:639px) {
    .tm-toolbar__search {
        display: none
    }
}

.tm-toolbar__form {
    position: relative
}

.tm-toolbar__input {
    height: 62px;
    border: 1px solid #c1c1c1;
    border-top: none;
    border-bottom: none;
    background-color: #f7f7f7;
    padding: 0 60px 0 10px;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    transition: .3s;
    width: 324px
}

.tm-toolbar__input:active,
.tm-toolbar__input:focus,
.tm-toolbar__input:hover {
    outline: none;
    border-left: 1px solid #ed1c24;
    border-right: 1px solid #ed1c24
}

.tm-toolbar__button {
    cursor: pointer;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #000;
    border: none;
    padding: 0;
    outline: none;
    transition: .3s
}

.tm-toolbar__button:hover {
    color: #ed1c24
}

.tm-menu {
    display: flex;
    width: 100%;
    margin-left: 140px
}

@media (max-width:1199px) {
    .tm-menu {
        margin-left: 70px
    }
}

@media (max-width:639px) {
    .tm-menu {
        margin-left: 30px
    }
}

@media (max-width:959px) {
    .tm-menu__nav {
        display: none
    }
}

.tm-menu__ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0
}

.tm-menu__li+.tm-menu__li {
    margin-left: 60px
}

@media (max-width:1599px) {
    .tm-menu__li+.tm-menu__li {
        margin-left: 30px
    }
}

@media (max-width:1199px) {
    .tm-menu__li+.tm-menu__li {
        margin-left: 20px
    }
}

.tm-menu__a {
    display: block;
    padding: 0;
    color: #fff;
    font-weight: 900;
    line-height: 100px;
    font-size: 16px;
    letter-spacing: .05em;
    text-transform: uppercase
}

@media (max-width:1199px) {
    .tm-menu__a {
        font-size: 16px
    }
}

.tm-menu__a--active,
.tm-menu__a:active,
.tm-menu__a:focus,
.tm-menu__a:hover {
    text-decoration: none;
    color: #fff
}

.tm-menu__a--active .tm-menu__span:after,
.tm-menu__a:active .tm-menu__span:after,
.tm-menu__a:focus .tm-menu__span:after,
.tm-menu__a:hover .tm-menu__span:after {
    opacity: 1
}

.tm-menu__span {
    position: relative
}

.tm-menu__span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -10px;
    opacity: 0;
    transition: .3s
}

.tm-menu__drop {
    background-color: #ed1c24;
    padding: 0
}

.tm-menu__drop-a {
    color: #fff !important;
    font-weight: 500;
    padding: 0 15px !important;
    line-height: 40px;
    display: block;
    position: relative;
    transition: .3s;
    background-color: #ed1c24
}

.tm-menu__drop-a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #000;
    transition: .3s
}

.tm-menu__drop-a--active,
.tm-menu__drop-a:hover {
    background-color: #000;
    color: #ed1c24
}

.tm-menu__drop-a--active:before,
.tm-menu__drop-a:hover:before {
    background-color: #ed1c24
}

.tm-menu__search {
    margin-left: auto;
    display: none;
    color: #fff;
    align-items: center;
    border: 2px solid hsla(0, 0%, 100%, .4);
    justify-content: center;
    width: 40px
}

.tm-menu__search>svg {
    width: 30px
}

@media (max-width:639px) {
    .tm-menu__search {
        display: inline-flex
    }
}

.tm-menu__toggle {
    margin-left: auto;
    background-color: transparent;
    border-radius: 0;
    border: 2px solid hsla(0, 0%, 100%, .4);
    display: none;
    transition: .3s
}

@media (max-width:959px) {
    .tm-menu__toggle {
        display: inline-block
    }
}

@media (max-width:639px) {
    .tm-menu__toggle {
        margin-left: 20px
    }
}

.tm-menu__toggle:active,
.tm-menu__toggle:focus,
.tm-menu__toggle:hover {
    outline: none;
    border-color: #000
}

.tm-ofc__logo {
    text-align: center;
    margin-bottom: 40px
}

.tm-footer {
    background-color: #000;
    width: 100%;
    background-position: top;
    background-size: cover
}

.tm-footer__container {
    display: flex
}

.tm-footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-right: 60px
}

@media (max-width:959px) {
    .tm-footer__logo {
        display: none
    }
}

.tm-footer__logo:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1000px;
    height: 100%;
    background-color: #000;
    transform: skewX(-15deg)
}

.tm-footer__logo-link {
    z-index: 1
}

.tm-footer__logo-text {
    color: #fff;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 18px;
    white-space: nowrap;
    z-index: 1
}

.tm-footer__grid {
    width: 100%;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    z-index: 1;
    margin-left: 60px
}

@media (max-width:959px) {
    .tm-footer__grid {
        margin-left: 0
    }
}

@media (max-width:639px) {
    .tm-footer__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.tm-footer__title {
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff
}

@media (max-width:639px) {
    .tm-footer__title {
        font-size: 14px;
        line-height: 16px
    }
}

.tm-footer__ul {
    margin: 20px 0 0;
    list-style: none;
    padding: 0
}

@media (max-width:639px) {
    .tm-footer__ul {
        margin-top: 15px
    }
}

.tm-footer__li+.tm-footer__li {
    margin-top: 5px
}

@media (max-width:639px) {
    .tm-footer__li+.tm-footer__li {
        margin-top: 3px
    }
}

.tm-footer__a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    position: relative
}

@media (max-width:639px) {
    .tm-footer__a {
        font-size: 12px
    }
}

.tm-footer__a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    width: 0;
    height: 2px;
    background-color: #ed1c24;
    transition: .3s
}

.tm-footer__a:hover {
    color: #fff;
    text-decoration: none
}

.tm-footer__a:hover:after {
    width: 100%
}

.tm-subfooter {
    background-color: #f7f7f7
}

.tm-subfooter__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 18px 0;
    grid-gap: 20px
}

@media (max-width:959px) {
    .tm-subfooter__container {
        grid-template-columns: 1fr
    }
}

.tm-subfooter__socials {
    display: flex;
    align-items: center;
    justify-content: center
}

.tm-subfooter__social {
    color: #000;
    font-size: 27px
}

.tm-subfooter__social+.tm-subfooter__social {
    margin-left: 20px
}

.tm-subfooter__social:hover {
    text-decoration: none;
    color: #ed1c24;
    transition: .3s
}

.tm-subfooter__copyright {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: .05em;
    color: #747474
}

@media (max-width:959px) {
    .tm-subfooter__copyright {
        text-align: center
    }
}

.tm-subfooter__created {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: .05em;
    color: #747474;
    transition: .3s;
    text-align: right
}

@media (max-width:959px) {
    .tm-subfooter__created {
        text-align: center
    }
}

.tm-subfooter__created-a {
    color: #747474
}

.tm-subfooter__created-a:hover {
    color: #ed1c24;
    text-decoration: none
}

.tm-section {
    padding: 70px 0
}

.tm-section--stripes {
    position: relative;
    background-color: #f7f7f7
}

.tm-section--bg {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.tm-section__bg--stripes {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    max-height: none;
    max-width: none;
    pointer-events: none
}

.tm-intro {
    background-position: top;
    background-size: cover;
    min-height: 770px;
    position: relative
}

@media (max-width:959px) {
    .tm-intro {
        min-height: 0;
        padding: 30px 0
    }
}

.tm-intro__overlay {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: none
}

.tm-intro__banner {
    max-width: 622px;
    position: relative;
    margin-top: 230px
}

@media (max-width:959px) {
    .tm-intro__banner {
        margin-top: 0
    }
}

.tm-intro__text {
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #ffffff;
    /*color: #ed1c24;*/
    /*text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;*/
}

@media (max-width:959px) {
    .tm-intro__text {
        font-size: 34px;
        line-height: 38px;
        color: #ffffff;
    }
}

@media (max-width:639px) {
    .tm-intro__text {
        font-size: 30px;
        line-height: 32px;
        color: #ffffff;
    }
}

.tm-intro__button {
    margin-top: 30px
}

.tm-intro-next {
    margin-top: 54px;
    position: relative
}

.tm-intro-next--full {
    margin-top: 30px
}

.tm-intro-next__title {
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    text-align: center
}

.tm-intro-next__container {
    margin-top: 30px;
    padding: 18px 160px;
    background-color: rgba(0, 0, 0, .6);
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    grid-gap: 25px
}

@media (max-width:1599px) {
    .tm-intro-next__container {
        padding: 18px
    }
}

@media (max-width:1199px) {
    .tm-intro-next__container {
        grid-template-columns: 150px 1fr 150px
    }
}

@media (max-width:959px) {
    .tm-intro-next__container {
        grid-template-columns: 120px 1fr 120px
    }
}

@media (max-width:639px) {
    .tm-intro-next__container {
        grid-template-columns: 1fr
    }
}

.tm-intro-next__container--full {
    background-color: #fff
}

.tm-intro-next__team {
    display: flex;
    align-items: center
}

@media (max-width:1199px) {
    .tm-intro-next__team {
        flex-direction: column;
        justify-content: center
    }
}

.tm-intro-next__team--end {
    flex-direction: row-reverse
}

@media (max-width:1199px) {
    .tm-intro-next__team--end {
        flex-direction: column
    }
}

.tm-intro-next__team-img {
    flex-shrink: 0
}

.tm-intro-next__team-img>img {
    max-height: 78px;
    width: auto
}

.tm-intro-next__team-title {
    font-size: 15px;
    line-height: 17px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 17px
}

@media (max-width:1199px) {
    .tm-intro-next__team-title {
        margin-top: 17px;
        margin-left: 0
    }
}

@media (max-width:639px) {
    .tm-intro-next__team-title {
        text-align: center
    }
}

.tm-intro-next__team-title>i {
    color: #ed1c24
}

.tm-intro-next__team-title--full {
    color: #676767
}

.tm-intro-next__team-title--end {
    margin-left: 0;
    margin-right: 17px
}

@media (max-width:1199px) {
    .tm-intro-next__team-title--end {
        margin-top: 17px;
        margin-right: 0
    }
}

.tm-intro-next__info-text {
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    text-align: center
}

.tm-intro-next__info-text--full {
    color: #676767
}

.tm-intro-next__info-title {
    font-size: 15px;
    line-height: 17px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    text-align: center
}

.tm-intro-next__info-title--full {
    margin-top: 7px;
    font-weight: 700;
    color: #000
}

.tm-intro-next__info-tickets {
    text-align: center;
    margin-top: 10px
}

.tm-intro-next__info-tickets-link {
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    line-height: 30px;
    padding: 0 14px;
    background-color: #ed1c24;
    border-radius: 7px
}

.tm-intro-next__info-tickets-link:hover {
    text-decoration: none;
    color: #fff
}

.tm-intro-next__info-counter {
    max-width: 330px;
    margin: 10px auto 28px;
    color: #fff;
    font-weight: 900;
    display: grid;
    grid-template-columns: 1fr 70px;
    align-items: center;
    justify-content: center
}

@media (max-width:959px) {
    .tm-intro-next__info-counter {
        grid-template-columns: 1fr;
        margin: 15px auto
    }
}

@media (max-width:959px) {
    .tm-intro-next__info-live {
        text-align: center;
        margin-top: 6px
    }
}

.tm-hero {
    background-color: #94181d;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding: 10px 0;
    box-sizing: border-box
}

.tm-hero__container {
    min-height: 160px;
    width: 100%;
    display: flex;
    align-items: center
}

.tm-hero__text {
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff
}

.tm-interview {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

@media (max-width:1199px) {
    .tm-interview {
        padding-top: 30px
    }
}

.tm-interview__image {
    padding-top: 20px
}

@media (max-width:1199px) {
    .tm-interview__image {
        padding-top: 0
    }
}

.tm-interview__data {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.tm-interview__title {
    margin-top: 45px;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000
}

@media (max-width:639px) {
    .tm-interview__title {
        font-size: 26px;
        line-height: 34px
    }
}

.tm-interview__text {
    margin-top: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000
}

.tm-interview__button {
    margin-top: 35px
}

.tm-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 110px
}

.tm-partners__item>img {
    max-height: 110px
}

.tm-partners__nav {
    width: 37px;
    height: 37px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box
}

.tm-partners__nav:hover {
    color: #ed1c24 !important
}

.tm-partners__nav>svg {
    height: 13px
}

.tm-partners__nav>svg>polyline {
    stroke-width: 3px
}

.tm-categories__grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3px
}

.tm-categories__item {
    border-left: 2px solid #ed1c24;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-gap: 10px;
    background: linear-gradient(90deg, #f3f3f3, hsla(0, 0%, 95.3%, .369792) 63.02%, hsla(0, 0%, 95.3%, 0))
}

.tm-categories__item:hover {
    text-decoration: none;
    border-color: #000
}

.tm-categories__count {
    justify-content: center;
    line-height: 36px;
    color: #676767
}

.tm-categories__count,
.tm-categories__title {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px
}

.tm-categories__title {
    line-height: 140%;
    color: #000
}

.tm-tags__grid {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap
}

.tm-tags__item {
    display: inline-block;
    padding: 0 15px;
    margin-right: 10px;
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 34px;
    text-transform: uppercase;
    color: #676767;
    border: 1px solid #d6d6d6;
    white-space: nowrap;
    transition: .3s
}

.tm-tags__item:hover {
    text-decoration: none;
    border-color: #ed1c24;
    color: #000
}

.tm-media__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px
}

@media (max-width:959px) {
    .tm-media__container {
        grid-template-columns: 1fr
    }
}

.tm-media__item {
    display: block;
    background-color: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08))
}

.tm-media__item:hover {
    text-decoration: none;
    background-color: #000
}

.tm-media__item:hover .tm-media__data:before {
    opacity: 1
}

.tm-media__item:hover .tm-media__date,
.tm-media__item:hover .tm-media__title {
    color: #fff
}

.tm-media__image {
    display: block;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.tm-media__data {
    padding: 20px 30px;
    position: relative
}

.tm-media__data:before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    display: block;
    height: 5px;
    width: 100%;
    background-color: #ed1c24;
    opacity: 0
}

.tm-media__title {
    font-weight: 900;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: .05em;
    color: #000;
    position: relative;
    z-index: 1;
    display: inline-block
}

@media (max-width:639px) {
    .tm-media__title {
        font-size: 18px;
        line-height: normal;
        font-weight: 700
    }
}

.tm-media__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ed1c24;
    transition: .3s
}

.tm-media__title:hover {
    text-decoration: none;
    color: #000
}

.tm-media__title:hover:after {
    width: 100%
}

.tm-media__date {
    margin-top: 15px;
    line-height: 18px;
    position: relative;
    z-index: 1
}

.tm-contacts__text,
.tm-media__date {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #676767
}

.tm-contacts__text {
    margin-top: 12px;
    line-height: 140%
}

.tm-contacts__image {
    margin-top: 30px
}

.tm-contacts__image>img {
    width: 100%
}

.tm-contacts__list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px
}

.tm-contacts__item {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 13px
}

.tm-contacts__data {
    padding-top: 3px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000
}

.tm-contacts__map {
    margin-top: 60px
}

.tm-members {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px
}

@media (max-width:959px) {
    .tm-members {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:639px) {
    .tm-members {
        grid-template-columns: 1fr
    }
}

.tm-members__image {
    text-align: center
}

.tm-members__image>img {
    max-width: 200px
}

@media (max-width:959px) {
    .tm-members__image>img {
        max-width: 500px;
        width: 100%
    }
}

.tm-members__title {
    margin-top: 20px;
    font-weight: 700
}

.tm-members__name,
.tm-members__title {
    font-style: normal;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #000
}

.tm-members__name {
    margin-top: 10px
}

.tm-members__socials {
    margin-top: 8px
}

.tm-p-grid {
    position: relative
}

.tm-p-grid__controls {
    margin-top: 23px;
    justify-content: space-between
}

.tm-p-grid__categories,
.tm-p-grid__controls {
    display: flex;
    align-items: center
}

@media (max-width:959px) {
    .tm-p-grid__categories {
        display: none
    }
}

@media (max-width:959px) {
    .tm-p-grid__categories--teams {
        display: flex
    }
}

.tm-p-grid__category {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #2c2c2c;
    display: inline-block;
    position: relative
}

.tm-p-grid__category:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    background-color: #ed1c24;
    transition: .3s ease-in-out
}

.tm-p-grid__category+.tm-p-grid__category {
    margin-left: 30px
}

.tm-p-grid__category--active,
.tm-p-grid__category:hover {
    text-decoration: none;
    color: #2c2c2c
}

.tm-p-grid__category--active:after,
.tm-p-grid__category:hover:after {
    width: 100%
}

@media (max-width:1599px) {
    .tm-p-grid__category--team+.tm-p-grid__category--team {
        margin-left: 12px
    }
}

@media (max-width:639px) {
    .tm-p-grid__category--team {
        font-size: 12px
    }
}

.tm-p-grid__all {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #747474;
    display: inline-flex;
    align-items: center;
    white-space: nowrap
}

.tm-p-grid__all>svg {
    margin-left: 10px
}

.tm-p-grid__all>svg>path {
    transition: .3s
}

.tm-p-grid__all:hover {
    color: #747474;
    text-decoration: none
}

.tm-p-grid__all:hover>svg>path {
    fill: #ed1c24
}

.tm-p-grid__items {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px
}

@media (max-width:959px) {
    .tm-p-grid__items {
        grid-template-columns: 1fr
    }
}

.tm-p-grid__items--related {
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width:1199px) {
    .tm-p-grid__items--related {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:959px) {
    .tm-p-grid__items--related {
        grid-template-columns: 1fr
    }
}

.tm-p-grid__item {
    display: block;
    background-color: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08));
    transition: .3s;
    position: relative
}

.tm-p-grid__item:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 3px;
    background-color: #ed1c24;
    bottom: 0;
    left: 0;
    transition: .3s
}

.tm-p-grid__item:hover {
    text-decoration: none
}

.tm-p-grid__img,
.tm-p-grid__item:hover:before {
    width: 100%
}

.tm-p-grid__data {
    padding: 36px 31px
}

@media (max-width:639px) {
    .tm-p-grid__data {
        padding: 15px
    }
}

.tm-p-grid__date {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #676767
}

.tm-p-grid__title {
    margin-top: 34px;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000
}

@media (max-width:639px) {
    .tm-p-grid__title {
        font-size: 16px;
        line-height: 18px
    }
}

.tm-posts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px
}

@media (max-width:959px) {
    .tm-posts__grid {
        grid-template-columns: 1fr
    }
}

.tm-posts__item {
    background: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08))
}

.tm-posts__image {
    display: block;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative
}

.tm-posts__image:after,
.tm-posts__image:before {
    content: "";
    right: 0;
    top: 0;
    display: block;
    width: 0;
    height: 100%;
    background-color: rgba(237, 28, 36, .15);
    position: absolute;
    transition: .5s
}

.tm-posts__image:focus:before,
.tm-posts__image:hover:before {
    width: 100%;
    transition: .5s ease-in-out
}

.tm-posts__image:focus:after,
.tm-posts__image:hover:after {
    width: 100%;
    transition: .5s ease-in-out;
    transition-delay: .4s
}

.tm-posts__poster {
    opacity: 0;
    width: 100%
}

.tm-posts__badge {
    top: 20px;
    left: 20px
}

.tm-posts__data {
    padding: 20px 30px
}

@media (max-width:1199px) {
    .tm-posts__data {
        padding: 15px
    }
}

.tm-posts__title {
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: .05em;
    color: #000;
    position: relative
}

@media (max-width:639px) {
    .tm-posts__title {
        font-size: 18px;
        line-height: normal;
        font-weight: 700
    }
}

.tm-posts__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ed1c24;
    transition: .3s
}

.tm-posts__title:hover {
    text-decoration: none;
    color: #000
}

.tm-posts__title:hover:after {
    width: 100%
}

.tm-posts__date {
    margin-top: 13px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #676767
}

.tm-post__title {
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 41px;
    color: #000
}

.tm-post__date {
    margin-top: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #676767
}

.tm-post__image {
    margin-top: 15px
}

.tm-post__text {
    margin-top: 30px
}

.tm-post__footer {
    margin-top: 30px;
    border-top: 1px solid #d6d6d6
}

.tm-post__tags {
    overflow: hidden
}

.tm-v-grid--margin-top {
    margin-top: 67px
}

.tm-v-grid__controls {
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width:639px) {
    .tm-v-grid__controls {
        flex-direction: column;
        align-items: flex-start
    }
}

.tm-v-grid__controls--no-margin {
    margin-top: 0
}

.tm-v-grid__all {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #747474;
    display: inline-flex;
    align-items: center;
    white-space: nowrap
}

.tm-v-grid__all>svg {
    margin-left: 10px
}

.tm-v-grid__all>svg>path {
    transition: .3s
}

.tm-v-grid__all:hover {
    color: #747474;
    text-decoration: none
}

.tm-v-grid__all:hover>svg>path {
    fill: #ed1c24
}

.tm-v-grid__items {
    margin-top: 47px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 43px
}

@media (max-width:639px) {
    .tm-v-grid__items {
        grid-gap: 20px
    }
}

.tm-v-grid__item {
    display: grid;
    grid-template-columns: 184px 1fr;
    grid-gap: 20px;
    background-color: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08));
    transition: .3s;
    position: relative;
    padding: 20px
}

@media (max-width:639px) {
    .tm-v-grid__item {
        grid-template-columns: 80px 1fr;
        padding: 12px
    }
}

.tm-v-grid__item:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 3px;
    background-color: #ed1c24;
    bottom: 0;
    left: 0;
    transition: .3s
}

.tm-v-grid__item:hover {
    text-decoration: none
}

.tm-v-grid__item:hover:before {
    width: 100%
}

.tm-v-grid__data {
    display: flex;
    flex-direction: column
}

.tm-v-grid__date {
    margin-top: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #676767
}

@media (max-width:639px) {
    .tm-v-grid__date {
        margin-top: 0;
        font-size: 10px
    }
}

.tm-v-grid__title {
    margin-top: 18px;
    font-weight: 900;
    font-size: 14px;
    line-height: 129.5%;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000
}

@media (max-width:639px) {
    .tm-v-grid__title {
        margin-top: 0;
        font-size: 12px;
        font-weight: 500
    }
}

.tm-matches-compact__item {
    background-color: #fff;
    padding: 20px
}

.tm-matches-compact__item+.tm-matches-compact__item {
    border-top: 1px solid #ececec
}

.tm-matches-compact__item--full {
    background-color: transparent
}

.tm-matches-compact--margin-top {
    margin-top: 31px
}

.tm-matches-compact__date {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #676767
}

.tm-matches-compact__date--open {
    color: #fff
}

.tm-matches-compact__title {
    margin-top: 7px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000
}

.tm-matches-compact__title--open {
    color: #fff
}

.tm-matches-compact__place {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #676767
}

.tm-matches-compact__place--open {
    color: #fff
}

.tm-matches-compact__goals {
    margin: 14px auto 0;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #676767;
    max-width: 580px
}

.tm-matches-compact__goals--open {
    color: #fff
}

.tm-matches-compact__details {
    display: inline-flex;
    margin: 15px auto 0;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #747474;
    align-items: center
}

.tm-matches-compact__details--open {
    color: #fff
}

.tm-matches-compact__details>svg {
    margin-left: 10px;
    top: -1px;
    position: relative
}

.tm-matches-compact__details>svg>path {
    transition: .3s
}

.tm-matches-compact__details:hover {
    color: #747474;
    text-decoration: none
}

.tm-matches-compact__details:hover>svg>path {
    fill: #ed1c24
}

.tm-matches-compact__grid {
    margin: 13px 0;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    grid-gap: 10px
}

@media (max-width:639px) {
    .tm-matches-compact__grid {
        grid-template-columns: 70px 1fr 70px
    }
}

.tm-matches-compact__grid--full {
    margin: 0;
    grid-template-columns: 300px 1fr 300px
}

@media (max-width:959px) {
    .tm-matches-compact__grid--full {
        margin: 13px 0;
        grid-template-columns: 70px 1fr 70px
    }
}

.tm-matches-compact__team {
    display: flex;
    align-items: center
}

.tm-matches-compact__team:last-child {
    flex-direction: row-reverse
}

.tm-matches-compact__team:last-child .tm-matches-compact__team-title {
    margin-right: 15px;
    margin-left: 0;
    text-align: right
}

.tm-matches-compact__team-title {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    text-transform: uppercase;
    color: #2c2c2c;
    margin-left: 15px
}

@media (max-width:639px) {
    .tm-matches-compact__team-title {
        display: none
    }
}

.tm-matches-compact__team-title>i {
    color: #ed1c24
}

@media (max-width:959px) {
    .tm-matches-compact__team-title--full {
        display: none
    }
}

.tm-matches-compact__team-title--open {
    color: #fff
}

.tm-matches-compact__team-img {
    max-width: 70px;
    max-height: 70px;
    flex-shrink: 0
}

.tm-matches-compact__team-img>img {
    max-height: 70px;
    width: auto
}

.tm-matches-compact__team-img--full {
    max-width: 114px;
    max-height: 114px
}

.tm-matches-compact__team-img--full>img {
    max-height: 114px
}

@media (max-width:959px) {
    .tm-matches-compact__team-img--full {
        max-width: 70px;
        max-height: 70px
    }

    .tm-matches-compact__team-img--full>img {
        max-height: 70px
    }
}

.tm-matches-compact__live {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.tm-matches-compact__live:hover {
    filter: grayscale(1)
}

.tm-matches-compact__score {
    display: flex;
    align-items: center;
    justify-content: center
}

.tm-matches-compact__score .tm-intro-next__info-live {
    margin-right: 15px
}

@media (max-width:1000px) {
    .tm-matches-compact__score {
        flex-direction: column
    }

    .tm-matches-compact__score .tm-intro-next__info-live {
        margin-right: 0;
        margin-bottom: 10px
    }
}

.tm-matches-compact__score-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    white-space: nowrap;
    border-radius: 8px;
    background-color: #000;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 16px
}

.tm-matches-compact__score-value--open {
    color: #000;
    background-color: #fff
}

.tm-matches-full__item {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08));
    overflow: hidden;
    display: grid;
    grid-template-columns: 100px 1fr;
    background-color: #fff;
    transition: .3s
}

.tm-matches-full__item+.tm-matches-full__item {
    margin-top: 12px
}

@media (max-width:639px) {
    .tm-matches-full__item {
        grid-template-columns: 30px 1fr
    }
}

.tm-matches-full__item--open {
    background-color: #000
}

.tm-matches-full__trigger {
    cursor: pointer;
    position: relative;
    transition: .3s
}

.tm-matches-full__trigger:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    background-color: #ebebeb;
    z-index: 0;
    transition: .3s;
    transform: skewX(10deg)
}

@media (max-width:639px) {
    .tm-matches-full__trigger:before {
        transform: none
    }
}

.tm-matches-full__trigger--open:before {
    background-color: #ed1c24
}

@media (max-width:639px) {
    .tm-matches-full__trigger-text {
        display: none
    }
}

.tm-matches-full__show {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    color: #676767
}

.tm-matches-full__show>svg {
    stroke: #676767;
    margin-bottom: 10px;
    transition: .3s
}

.tm-matches-full__show--open {
    color: #000
}

.tm-matches-full__show--open>svg {
    stroke: #000
}

.tm-matches-full__video {
    grid-column: span 2;
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.tm-matches-full__video>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tm-matches-full__no-video {
    grid-column: span 2
}

.tm-table-sm--margin-top {
    margin-top: 30px
}

.tm-table-sm__tr {
    display: grid;
    grid-template-columns: 55px 1fr 100px 100px 100px 80px;
    min-height: 80px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    color: #2c2c2c;
    text-transform: uppercase;
    box-sizing: border-box
}

.tm-table-sm__tr+.tm-table-sm__tr {
    border-top: 1px solid #ececec
}

@media (max-width:1599px) {
    .tm-table-sm__tr {
        grid-template-columns: 55px 1fr 80px 80px 80px 60px
    }
}

@media (max-width:639px) {
    .tm-table-sm__tr {
        grid-template-columns: 56px minmax(150px, 1fr) 60px 60px
    }
}

.tm-table-sm__tr:first-child {
    min-height: 67px;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff
}

.tm-table-sm__tr:first-child .tm-table-sm__td {
    background-color: #141414
}

.tm-table-sm__tr--expanded {
    grid-template-columns: 55px repeat(7, 1fr)
}

@media (max-width:1599px) {
    .tm-table-sm__tr--expanded {
        grid-template-columns: 56px 2fr repeat(6, 1fr)
    }
}

@media (max-width:1199px) {
    .tm-table-sm__tr--expanded {
        grid-template-columns: 56px 3fr repeat(6, 1fr)
    }
}

@media (max-width:639px) {
    .tm-table-sm__tr--expanded {
        grid-template-columns: 56px minmax(150px, 1fr) 60px 60px
    }
}

.tm-table-sm__td {
    display: flex;
    align-items: center;
    background-color: #fff
}

.tm-table-sm__td--center {
    justify-content: center
}

@media (max-width:639px) {
    .tm-table-sm__td {
        display: none
    }

    .tm-table-sm__td:first-of-type,
    .tm-table-sm__td:last-of-type,
    .tm-table-sm__td:nth-of-type(2),
    .tm-table-sm__td:nth-of-type(3) {
        display: flex
    }
}

.tm-table-sm__span--count {
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 12px;
    background-color: #000;
    border-radius: 12px
}

.tm-table-sm__span>i {
    color: #ed1c24
}

.tm-table-sm__image {
    margin-right: 10px;
    width: 42px;
    height: 42px;
    text-align: center;
    flex-shrink: 0
}

.tm-table-sm__image>img {
    max-height: 42px;
    width: auto
}

.tm-showcase {
    padding-bottom: 40px
}

.tm-showcase-info {
    margin-top: 100px;
    margin-bottom: 56px;
    min-height: 414px;
    background: #f2f2f2;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .08));
    display: grid;
    grid-template-columns: 4fr minmax(512px, 5fr);
    overflow: hidden
}

@media (max-width:1599px) {
    .tm-showcase-info {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:1199px) {
    .tm-showcase-info {
        margin-top: 0;
        margin-bottom: 0
    }
}

@media (max-width:639px) {
    .tm-showcase-info {
        grid-template-columns: 1fr;
        min-height: auto
    }
}

.tm-showcase-info__data {
    position: relative;
    padding: 45px 50px
}

@media (max-width:639px) {
    .tm-showcase-info__data {
        padding: 20px
    }
}

.tm-showcase-info__data:after {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    display: block;
    transform: skewX(10deg);
    z-index: -1
}

.tm-showcase-info__header {
    display: flex
}

.tm-showcase-info__number {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 12px;
    background-color: #000;
    border-radius: 12px
}

@media (max-width:1599px) {
    .tm-showcase-info__number {
        font-size: 28px;
        line-height: 48px;
        padding: 0 10px
    }
}

.tm-showcase-info__name {
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000;
    margin-left: 20px;
    word-spacing: 100vw
}

@media (max-width:1599px) {
    .tm-showcase-info__name {
        font-size: 22px;
        line-height: 26px
    }
}

.tm-showcase-info__list {
    margin-top: 80px
}

.tm-showcase-info__list-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 20px
}

@media (max-width:639px) {
    .tm-showcase-info__list-row {
        grid-gap: 10px
    }
}

.tm-showcase-info__list-row+.tm-showcase-info__list-row {
    margin-top: 20px
}

.tm-showcase-info__list-dt {
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 129.5%;
    text-transform: uppercase;
    color: #000
}

.tm-showcase-info__list-dd {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    color: #2c2c2c
}

.tm-showcase-info__image {
    position: relative;
    height: 100%;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2
}

@media (max-width:639px) {
    .tm-showcase-info__image {
        height: 400px;
        grid-row: 1
    }
}

.tm-showcase-list {
    position: relative;
    margin-top: 35px
}

.tm-showcase-list__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    overflow: hidden;
    cursor: pointer;
    min-height: 56px
}

.tm-showcase-list__item+.tm-showcase-list__item {
    margin-top: 4px
}

.tm-showcase-list__item.tm-active .tm-showcase-list__number:before,
.tm-showcase-list__item.tm-active .tm-showcase-list__text,
.tm-showcase-list__item:hover .tm-showcase-list__number:before {
    background-color: #ed1c24
}

.tm-showcase-list__number {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #000;
    line-height: 56px;
    background-color: #fff;
    padding-left: 28px;
    position: relative
}

.tm-showcase-list__number:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #000;
    transition: .3s
}

.tm-showcase-list__number:after {
    content: "";
    position: absolute;
    top: 0;
    right: -13px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    background-color: #fff;
    transform: skewX(25deg)
}

.tm-showcase-list__text {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background-color: #141414;
    transition: .3s;
    display: flex;
    align-items: center;
    padding-left: 45px;
    position: relative;
    z-index: -2
}

.tm-showcase-list__controls {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px
}

.tm-showcase-list__arrow {
    display: flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border: 1px solid #9c9c9c;
    box-sizing: border-box;
    transition: .3s
}

.tm-showcase-list__arrow:hover {
    border-color: #ed1c24
}

.tm-showcase-list__arrow+.tm-showcase-list__arrow {
    margin-left: 19px
}

.tm-players+.tm-players {
    margin-top: 40px
}

.tm-players__grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px
}

@media (max-width:1199px) {
    .tm-players__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:959px) {
    .tm-players__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:639px) {
    .tm-players__grid {
        grid-template-columns: 1fr
    }
}

.tm-players__item {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden
}

.tm-players__item:hover {
    text-decoration: none
}

.tm-players__item:hover .tm-players__photo:after {
    width: 100%
}

.tm-players__numb {
    position: absolute;
    bottom: 20px;
    left: 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #000
}

.tm-players__photo {
    background-size: cover;
    background-position: 50%;
    background-color: #fff;
    position: relative;
    image-rendering: optimizeSpeed
}

.tm-players__photo:before {
    content: url(/img/sections/team/stripes_sm.png);
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    line-height: 0;
    image-rendering: optimizeSpeed
}

.tm-players__photo:after {
    content: "";
    right: 0;
    top: 0;
    display: block;
    width: 0;
    height: 100%;
    background-color: rgba(237, 28, 36, .15);
    position: absolute;
    transition: .5s
}

.tm-players__data {
    grid-column: span 2;
    margin-top: 30px
}

.tm-players__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #000
}

.tm-players__category,
.tm-players__name {
    font-style: normal;
    text-transform: uppercase
}

.tm-players__category {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #9c9c9c;
    margin-top: 10px
}

.tm-player__grid {
    margin-top: 26px;
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 4fr 6fr
}

@media (max-width:1199px) {
    .tm-player__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:959px) {
    .tm-player__grid {
        grid-template-columns: 1fr
    }
}

.tm-player__photo {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden
}

.tm-player__numb {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    position: absolute;
    bottom: 20px;
    left: 40px
}

.tm-player__image {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    background-color: #fff
}

.tm-player__image>img {
    width: 100%;
    height: auto
}

.tm-player__image:before {
    content: url(/img/sections/team/stripes.png);
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 0;
    max-width: 50%
}

@media (max-width:639px) {
    .tm-player__image:before {
        content: url(/img/sections/team/stripes_sm.png)
    }
}

.tm-player__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2c2c2c
}

.tm-player__related {
    margin-top: 60px
}

.tm-pt {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    position: relative;
    overflow: hidden
}

.tm-pt__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: translateX(-55%) skewX(30deg)
}

.tm-pt__overlay:after {
    content: "";
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, .4);
    transform: translateX(7%)
}

.tm-pt__container {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px 0
}

.tm-pt__title {
    padding: 0;
    margin: 10px 0 0;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff
}

@media (max-width:959px) {
    .tm-pt__title {
        font-size: 30px;
        line-height: 35px
    }
}

@media (max-width:639px) {
    .tm-pt__title {
        font-size: 20px;
        line-height: 26px
    }
}

.tm-breadcrumbs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center
}

.tm-breadcrumbs__item {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff
}

@media (max-width:639px) {
    .tm-breadcrumbs__item {
        font-size: 14px;
        line-height: 16px
    }
}

.tm-breadcrumbs__item+.tm-breadcrumbs__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.tm-breadcrumbs__item+.tm-breadcrumbs__item:before {
    content: "/";
    margin-left: 10px;
    margin-right: 10px
}

.tm-breadcrumbs__link {
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff;
    transition: .3s
}

.tm-breadcrumbs__link:hover {
    text-decoration: none;
    color: #ed1c24
}

@media (max-width:639px) {
    .tm-breadcrumbs__link {
        font-size: 14px;
        line-height: 16px
    }
}

.icon-shop {
    width: 27px;
    height: 27px;
    background: url('/img/icons/shop.svg');
}

.icon-viber {
    width: 27px;
    height: 27px;
    background: url(/img/icons/viber.svg);
}
