@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;
}
.slider-1 .splide__list{
  padding: 20px 0 !important;
}
.splide__pagination__page.is-active{
  background: #a8c2ff;
}
.slider-4 .splide__pagination{
  position: absolute !important;
  bottom: 16px;
}
.slider-4 .splide__pagination__page{
  width: 10px;
  border-radius: 0;
  height: 3px;

}
.slider-4 .splide__pagination__page.is-active{
  transform: scale(1);
  width: 30px;
}
.header_wrapp{
  background: #0a0a0a;
}
.root {
  cursor: default;
  
  position: relative;
  
  
}
.res-cards{
  grid-template-columns: 2fr 1fr 2fr;

  justify-items: center;
  align-items:center;
}
.bg-section1{
background: radial-gradient(rgb(6, 34, 94) 0%, rgb(3, 18, 50) 70%);
}
.category-link {
    align-items: center;
    background: #132147;
    display: flex;
    justify-content: center;
    column-gap: 8px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    color: rgb(230, 230, 230);
    text-decoration: none;
    transition: .3s;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transform: skew(-30deg, 0);
    border: 1px solid #a8c2ff;
}
.category-link-active {
    background: #a8c2ff;
}
.category-link:hover {
    background: #a8c2ff;
}
.banner-imgs{
 position: relative;
  
}
.banner-imgs::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.text-baner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 1;
}
.bg-section{
background: #f7f7f7;
  
}
.bg-section1{

}
.breadcrumbs{
position: absolute;
top: 12px;
left: 24px;
z-index: 1;
}
.my-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;

}
.scrollbar-hide::-webkit-scrollbar {
  padding-top: 8px;
  height: 2px; /* высота горизонтального скролла */
}
.scrollbar-hide::-webkit-scrollbar-track {
  background: transparent; /* трек */
  border-radius: 2px;
}
.scrollbar-hide::-webkit-scrollbar-thumb {
  background-color: #a8c2ff; /* ползунок */
  border-radius: 2px;
   /* отступ */
}

.header {
  position: relative;
}
.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: #a8c2ff;
  transition: width 0.3s ease;
}

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

.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: #a8c2ff;


}
.header-list-item-link--active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #a8c2ff;
  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;
}
.burger_overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}
.col-light-gray{
color: #969490;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* скрыта по умолчанию */
  padding: 10px 19px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  background: #06225e;
  color: white;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}
.splide__pagination{
  position: relative !important;
  margin-top: 16px;
}
.main {
  flex: 1;
}
.footer {
  background: #000031;
  display: flex;
  flex-direction: column;
}
.list-none {
  list-style: none;
}
.link {
  display: inline-block;
  text-decoration: none;
}
.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.jc-space-between {
  justify-content: space-between;
}
.ai-center {
  align-items: center;
}
.py6px {
  padding-bottom: 6px;
  padding-top: 6px;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.of-contain {
  object-fit: contain;
}
.of-cover {
  object-fit: cover;
}
.h64px {
  height: 64px;
}
.absolute {
  position: absolute;
}
.top0 {
  top: 0;
}
.left0 {
  left: 0;
}
.all {
  transition: all .3s ease-in-out;
}
.h-filter-hue-rotate32:hover {
  filter: hue-rotate(32deg);
}
.m0 {
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.p0 {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.color-0f3133 {
  color: rgb(15, 49, 51);
}
.fw300 {
  font-weight: 300;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.capitalize {
  text-transform: capitalize;
}
.fz18 {
  font-size: 18px;
}
.h-color-2c8e94:hover {
  color: rgb(44, 142, 148);
}
.gx12px {
  column-gap: 12px;
}
.jc-center {
  justify-content: center;
}
.fz14 {
  font-size: 14px;
}
.py24px {
  padding-bottom: 24px;
  padding-top: 24px;
}
.bb-1px-solid-e7e7e7 {
  border: 1px solid #e7e7e7;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
}
.py36px {
  padding-top: 36px;
  padding-bottom: 36px;
}
.color-628a8c {
  color: rgb(98, 138, 140);
}
.grid {
  display: grid;
}
.gtc-repeat3-1fr {
  grid-template-columns: repeat(3, 1fr);
}
.gy12px {
  row-gap: 12px;
}
.fz22 {
  font-size: 22px;
}
.fz26 {
  font-size: 26px;
}
.color-0c2628 {
  color: rgb(12, 38, 40);
}
.gx36px {
  column-gap: 36px;
}
.h-underline:hover {
  text-decoration: underline;
}
.gy6px {
  row-gap: 6px;
}
.gx24px {
  column-gap: 24px;
}
.gtc-1fr-1fr {
  grid-template-columns: 1fr 1fr;
}
.scale130 {
  transform: scale(1.3);
}
.px36px {
  padding-left: 36px;
  padding-right: 36px;
}
.fz64 {
  font-size: 64px;
}
.fz30 {
  font-size: 30px;
}
.gy24px {
  row-gap: 24px;
}
.gy36px {
  row-gap: 36px;
}
.jc-flex-end {
  justify-content: flex-end;
}
.bg-70a432 {
  background: #70a432;
}
.br12px {
  border-radius: 12px;
}
.bg-e6983e {
  background: #e6983e;
}
.h-filter-brightness85:hover {
  filter: brightness(85%);
}
.py64px {
  padding-top: 64px;
  padding-bottom: 64px;
}
.py64px:hover {
}
.bg-transparent {
  background: transparent;
}
.bg-transparent:hover {
}
.border-none {
  border-style: none;
}
.h32px {
  height: 32px;
}
.h-color-b6701f:hover {
  color: rgb(182, 112, 31);
}
.gc-span2 {
  grid-column: span 2;
}
.flex11auto {
  flex: 1 1 auto;
}
.px12px {
  padding-left: 12px;
  padding-right: 12px;
}
.hidden {
  overflow: hidden;
}
.gr-span2 {
  grid-row: span 2;
}
.h256px {
  height: 256px;
}
.mb-auto {
  margin-bottom: auto;
}
.h80 {
  height: 80%;
}
.px24px {
  padding-right: 24px;
  padding-left: 24px;
}
.bg-ffc786 {
  background: #ffc786;
}
.h128px {
  height: 128px;
}
.jc-space-evenly {
  justify-content: space-evenly;
}
.h-scale110:hover {
  transform: scale(1.1);
}
.g4px {
  row-gap: 4px;
  column-gap: 4px;
}
.gtc-repeat7-1fr {
  grid-template-columns: repeat(7, 1fr);
}
.text-center {
  text-align: center;
}
.px6px {
  padding-left: 6px;
  padding-right: 6px;
}
.br6px {
  border-radius: 6px;
}
.b-2px-solid-fff {
  border: 2px solid #fff;
}
.gar-192px {
  grid-auto-rows: 192px;
}
.b-2px-solid-838383 {
  border: 2px solid #838383;
}
.gtc-1fr-auto-1fr {
  grid-template-columns: 1fr auto 1fr;
}
.uppercase {
  text-transform: uppercase;
}
.h96px {
  height: 96px;
}
.py12px {
  padding-top: 12px;
  padding-bottom: 12px;
}
.bb-2px-solid-838383 {
  border: 2px solid #838383;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.bb-2px-solid-e7e7e7 {
  border: 2px solid #e7e7e7;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.h-bg-00001 {
}
.h-bg-00001:hover {
  background: #00000010;
}
.bg-f6b974 {
  background: #f6b974;
}
.before-lg-00001 {
  position: relative;
}
.before-lg-00001::before {
  background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.btn-player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-style: none;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  width: 72px;
  border-radius: 50%;
  background: url("https://sportpower.ca/assets/img/268792f08f1c49cd0d72391a47f1475f.webp") no-repeat center/cover, transparent;
  height: 72px;
  transition: filter .3s ease-in-out;
}
.btn-player:hover {
  filter: brightness(90%);
}
.w32px {
  width: 32px;
}
.h512px {
  height: 512px;
}
.gtc-repeat4-1fr {
  grid-template-columns: repeat(4, 1fr);
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
  top: 0;
}
.h768px {
  height: 768px;
}
.right0 {
  right: 0;
}
.w30 {
  width: 30%;
}
.z-index1 {
  z-index: 1;
}
.h176px {
  height: 176px;
}
.bg-000000bf {
  background: #000000bf;
}
.bottom0 {
  bottom: 0;
}
.ai-flex-end {
  align-items: flex-end;
}
.gtc-20-auto-1fr {
  grid-template-columns: 20% auto 1fr;
}
.text-right {
  text-align: right;
}
.gtc-40-auto {
  grid-template-columns: 40% auto;
}
.fw-wrap {
  flex-wrap: wrap;
}
.color-fff {
  color: rgb(255, 255, 255);
}
.color-efefef {
  color: rgb(239, 239, 239);
}
.fw400 {
  font-weight: 400;
}
.fz16 {
  font-size: 16px;
}
.f-row {
  display: flex;
}
.a-i-c {
  align-items: center;
}
.jcc {
  justify-content: center;
}
.c-gap-12px {
  column-gap: 12px;
}
.mb-24 {
  margin-bottom: 24px;
}
.p-l-r-8 {
  padding: 0 8px;
}
.fz-24 {
  font-size: 24px;
}
.fw-600 {
  font-weight: 600;
}
.controls-container {
  display: flex;
  gap: 24px;
  font-size: 24px;
  font-weight: bold;
}
.switcher {
  display: flex;
  align-items: center;
}
.arrow {
  cursor: pointer;
  padding: 0 15px;
  user-select: none;
  font-weight: bold;
 
  transition: .2s;
}
.arrow:hover {
   opacity: 0.8;
}
.wrapper .label{
  color: #000031;
}
.wrapper .calendar-day{
  border-color: #000031;
}
.wrapper .calendar-day span{
  color: #1e1e1e;
}
.wrapper .calendar-head{
  color: #000000;
}
.privacy ol {
list-style: decimal;
  padding-left: 20px;
  color: #282828;
}
.privacy ul {
  list-style: disc;
    padding-left: 20px;
  }
  .privacy h2{
    text-align: center;
    color: #ffffff;
    margin-bottom: 16px;
  }
 
 
  .contact-info-privacy{
display: flex;
flex-direction: column;
gap: 8px;
  }
  .privacy ol>li{
    margin-bottom: 32px;
  }
  .privacy li{
    margin-bottom: 8px;
  }
.label {
  min-width: 140px;
  text-align: center;
  color: #161616;
  cursor: pointer;
  transition: .2s;
  
}
.label:hover {
  opacity: 0.8;
}
.calendar-head {
 
  align-items: center;

  
 
  display: grid;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  height: 60px;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: rgb(25, 25, 25);
  font-variant: small-caps;
}
.calendar-matches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto;
  gap: 4px;
  color: rgb(255, 255, 255);
  
}

.calendar-day {
  border: 2px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  height: 205px;
  padding: 12px;
  min-width: 100%;
  position: relative;
  text-align: center;
  flex-direction: column;
 border-radius:8px;
  transition: .3s;
  
 
}
.calendar-day.day-nonow{
border-color:#838383 ;
}
.calendar-team-logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
}
.bg-dark-grey {
  background: #1d1d1d;
}
.calendar-link {
 align-items: center;
    background: #132147;
    display: flex;
    justify-content: center;
    column-gap: 8px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    color: rgb(230, 230, 230);
    text-decoration: none;
    transition: .3s;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transform: skew(-30deg, 0);
    border: 1px solid #a8c2ff;
}
.skew30{
      transform: skew(30deg, 0)
}
.calendar-link:hover {
  background: #000031;
  color: rgb(255, 255, 255);
}
.scrollbar-table::-webkit-scrollbar{
  width: 8px;
  height: 3px;

}
.scrollbar-table::-webkit-scrollbar-track {
  background: #d0d0d0;
  border-radius: 4px;
}
.scrollbar-table::-webkit-scrollbar-thumb {
  background-color: #a10c01;
  border-radius: 4px;

}
.dropdown-date-menu {
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
  background-color: #f2f2f2;
  color: rgb(27, 27, 27);
  border-radius: 6px;
  border: 1px solid #cccccc;
  font-size: 14px;
  min-width: 100px;
  max-width: 140px;
  width: 100%;
}
.dropdown-date-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-date-menu::-webkit-scrollbar-track {
  background: #d0d0d0;
  border-radius: 4px;
}
.arrow:hover{
  opacity: 0.8;
}
.arrow{
  transition: 0.3s all;
}

.dropdown-date-menu::-webkit-scrollbar-thumb {
  background-color: #a8c2ff;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.dropdown-date-menu::-webkit-scrollbar-thumb:hover {
  background-color: #cecece;
}
.dropdown-item {
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  transition: .2s;
}

.dropdown-item:hover {
  background-color: #a8c2ff;
  color: #ebebeb;
}
.galery-cards{
  display:grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.galery-cards2{
  display:grid;
  grid-template-columns: 2fr 1.5fr 2fr;
}
@media (max-width:1400px) {
  .calendar-team-logo {
    height: 48px;
    width: 48px;
  }
}


@media (max-width: 1386px) {
  .logo_top {
    font-size: 24px;
  }
  .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);
    
  }
  .slider-1 .splide__list, .slider-2 .splide__list{
display: flex;
}
.slider-1 .splide__list, .slider-2 .splide__list{
  gap: 0px;
}
.team-match{
  flex-direction: column-reverse;
}
.team-match-last{
  flex-direction: column;
}

}
@media (max-width:1200px) {
  .calendar-head,
  .day-empty {
    display: none;
  }
  .calendar-matches {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-rows: auto;
    gap: 16px;
    
    border: 0;
  }
  
  .calendar-team-logo {
    height: 72px;
    width: 72px;
  }
}
@media (max-width:928px) {
  .calendar-matches {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:768px) {
  .controls-container {
    flex-direction: column;
    align-items: center;
    font-size: 20px;
  }
}
@media (max-width:575px) {
  .calendar-matches {
    grid-template-columns: 1fr;
  }
}
@media(max-width:450px){

.galery-cards2, .galery-cards{
  
  grid-template-columns: 1fr 1fr 1fr;
}
}