@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
.root {
  cursor: default;
  display: flex;
  font-family: Arial;
  font-size: 15px;
  font-weight: normal;
  line-height: normal;
  min-height: 100vh;
  background: #f4f4f4;
  flex-direction: column;
}
.splide__pagination{
  position: relative;
  margin-top: 24px;
}
.splide__pagination__page.is-active{
  background: #c80000;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.link-base {
  text-decoration: none;
  display: inline-block;
}
.list-base {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.bg-c80000 {
  background: #c80000;
}
.bg-fefefe {
  background: #fefefe;
}

.bg-333333 {
  background: #333333;
}
.my-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
}
.color-cccccc {
  color: rgb(204, 204, 204);
}
.header {
  position: relative;
}
.header_wrapp {
background:#0b0c10;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo.logo_top img{
  width: 60px;
  height: 60px;
}
.header-list {
  display: flex;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 0;
}
.header-list-item-link {
  color: rgb(251, 251, 251);
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 14px;
  padding-right: 14px;
  transition: 0.3s all;
  font-size: 12px;
  text-transform: uppercase;
   position: relative;
   font-weight: 600;
}
.header-list-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #c80000;
  transition: width 0.3s ease;
}

.header-list-item-link:hover {
  color: #c80000;
}

.header-list-item-link:hover::after {
  width: 100%;
}

.header-list-item-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header-list-item-link--active{
color: #c80000;


}
.header-list-item-link--active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #c80000;
  transition: width 0.3s ease;
  width: 100%;
}
/* Burger */
.menu-burger {
  width: 30px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 100;
  position: relative;
}
.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  left: 0;
}
.menu-burger::before {
  top: 0;
  transition: transform 0.3s, top 0.3s 0.3s;
}
.menu-burger::after {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s 0.3s;
}
.menu-burger__line,
.menu-burger::after,
.menu-burger::before {
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #f2f2f2;
}
.menu-burger--active .menu-burger__line {
  display: none;
}
.menu-burger--active::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: top 0.3s, transform 0.3s 0.3s;
}
.menu-burger--active::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transition: bottom 0.3s, transform 0.3s 0.3s;
}
.menu-burger {
  display: none;
}
.burger_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 8;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* скрыта по умолчанию */
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #c80000;
  color: white;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.bg-section{
background:linear-gradient(rgba(11, 11, 11, 0.7), rgba(14, 14, 14, 0.8)),
    url("/images/close-up-boxer-bandaging-hands_158595-4837.jpg");
        background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}
.main {
  display: flex;
  flex-direction: column;
  
  flex: 1 1 auto;
}
.fz13 {
  line-height: normal;
  font-size: 13px;
}
.p12px-0px {
  padding-top: 12px;
  padding-bottom: 12px;
}
.m-b-0 {
  margin-bottom: 0;
}
.img-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-icon {
  width: auto;
  height: 85px;
  object-fit: contain;
}
.p36px-0px {
  padding-top: 36px;
  padding-bottom: 36px;
}
.f-row {
  display: flex;
}
.f-column {
  display: flex;
  flex-direction: column;
}
.m-r-auto {
  margin-right: auto;
}
.fz15 {
  line-height: normal;
  font-size: 15px;
}
.fw400 {
  font-weight: 400;
}
.fw700 {
  font-weight: 700;
}
.color-white {
  color: rgb(255, 255, 255);
}
.t-all {
  transition: all .3s ease-in-out;
}
.h-bg-00000026:hover {
  background: #00000026;
}
.p15px {
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}
.active {
  background: #00000026;
}
.g12px {
  column-gap: 12px;
  row-gap: 12px;
}
.uppercase {
  text-transform: uppercase;
}
.search-btn {
  height: 100%;
  width: 50px;
  border-style: none;
  background: url("https://mma-fight.cz/assets/img/1020493ed1a32a30d64d82c5cc8442fc.webp") no-repeat center/45%;
  transition: all .3s ease-in-out;
}
.search-btn:hover {
  background: url("https://mma-fight.cz/assets/img/1020493ed1a32a30d64d82c5cc8442fc.webp") no-repeat center/45%, #00000026;
}
.box-shadow-0-1px-3px-rgba0-0-0-007 {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.a-i-center {
  align-items: center;
}
.color-333333 {
  color: rgb(51, 51, 51);
}
.fz18 {
  font-size: 18px;
  line-height: normal;
}
.icon25px {
  width: 25px;
  height: auto;
  object-fit: contain;
}
.bg-dddddd {
  background: #dddddd;
}
.g24px {
  row-gap: 24px;
  column-gap: 24px;
}
.g36px {
  row-gap: 36px;
  column-gap: 36px;
}
.h-link {
  transition: all .3s ease-in-out;
}
.h-link:hover {
  text-decoration: underline;
  color: rgb(200, 0, 0);
}
.bg-linear-gradiend {
  background: linear-gradient(250deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(221,221,221,1) 50%, rgba(221,221,221,1) 100%);
}
.w-100 {
  width: 100%;
}
.white-space-nowrap {
  white-space: nowrap;
}
.h-100 {
  height: 100%;
}
.bg-white {
  background: white;
}
.hidden {
  overflow: hidden;
}
.a-s-stretch {
  align-self: stretch;
}
.g-t-c-repeat3-1fr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.skewX15deg {
  transform: skewX(15deg);
}
.skewX-15deg {
  transform: skewX(-15deg);
}
.p0px-24px {
  padding-left: 24px;
  padding-right: 24px;
}
.text-center {
  text-align: center;
}
.ellipsis-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.g-t-c-1fr-1fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fz20 {
  line-height: normal;
  font-size: 20px;
}
.title-line {
  position: relative;
}
.title-line::after {
  content: "";
  height: 100%;
  width: 4px;
  background: #c80000;
  position: absolute;
  left: 0;
  top: 0;
}
.l0-b0 {
  left: 0;
  bottom: 0;
}
.p0px-12px {
  padding-right: 12px;
  padding-left: 12px;
}
.linear-gradient {
  position: relative;
}
.linear-gradient::after {
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.underline:hover {
  text-decoration: underline;
}
.fz28 {
  font-size: 28px;
  line-height: normal;
}
.fz28:hover {
}
.z-index-1 {
  z-index: 1;
}
.g-t-r-1fr-1fr {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.g-t-c-70-auto {
  display: grid;
  grid-template-columns: 70% auto;
}
.fz14 {
  font-size: 14px;
  line-height: normal;
}
.flex-1-1-auto {
  flex: 1 1 auto;
}
.h-250px {
  height: 250px;
}
.g-t-c-repeat4-1fr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.footer {
  background: #393939;
  display: flex;
  flex-direction: column;
}
.p24px {
  padding-top: 24px;
  padding-right: 24px;
  padding-left: 24px;
  padding-bottom: 24px;
}
.j-c-center {
  justify-content: center;
}
.footer-icon {
  width: 100px;
  height: auto;
  object-fit: contain;
}
.color-c80000 {
  color: rgb(200, 0, 0);
}
.h-color-white:hover {
  color: rgb(255, 255, 255);
}
.m-r-15px {
  margin-right: 15px;
}
.a-s-flex-start {
  align-self: flex-start;
}
.capitalize {
  text-transform: capitalize;
}
.p6px {
  padding-top: 6px;
  padding-left: 6px;
  padding-bottom: 6px;
  padding-right: 6px;
}
.icon50px {
  width: 75px;
  height: auto;
  object-fit: contain;
}
.btn-player {
  border-style: none;
  background: url("https://mma-fight.cz/assets/img/7d872e3120ed4b46b2d69fc467c80abc.webp") no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all .3s ease-in-out;
  width: 50px;
  height: 50px;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  border-radius: 50%;
  z-index: 1;
}
.btn-player:hover {
  filter: brightness(90%);
}
.h-800px {
  height: 800px;
}
.b-bottom-2px-solid-ccc {
  border: 2px solid #ccc;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
}
.h-bg-c8000017:hover {
  background: #c8000017;
}
.g-t-c-1fr-auto-1fr {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.h120-w120 {
  width: 100px;
  height: 100px;
}
.j-c-flex-end {
  justify-content: flex-end;
}

@media (max-width: 1386px) {
  
   .menu-burger {
    display: block;
  }
  .header-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 24px;
    z-index: 99;
    overflow: scroll;
    width: 250px;

     background:#0c0c0c ;
    flex-direction: column;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;

    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-list-item-link:not(.header-list-item-link--active){
color:#fff;
  }
  .header-nav-list-mobile {
    align-items: flex-start;
    padding-left: 50px;
    backdrop-filter: blur(19px);
    font-weight: 700;
    transform: translateY(0);
    
  }


}
@media (max-width: 390px) {
  #statsCards{
grid-template-columns: 1fr;
  }
}