@charset "UTF-8";

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --headings-font-family: "mongoose", var(--default-font-family);
  --font-family: "inter-variable", var(--default-font-family);
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-variation-regular: "slnt" 0, "wght" 400;
  --font-variation-medium: "slnt" 0, "wght" 500;
  --font-variation-semibold: "slnt" 0, "wght" 600;
  --size: 15px;
  --white: #fff;
  --black: #000;
  --main-color: #fff; /* text */
  --main-color-hover: #017335; /* text hover */
  --main-color-muted: #7e7e8a; /* text sivy */
  --main-bg-color: #000; /* bg */
  --main-bg-color-grey: #21202d; /* tmava siva */
  --main-bg-color-grey-light: #0cb45e; /* zelena kontrastna */
  --main-bg-color-custom: #e26c26; /* oranzova */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
  --z-index-negative: -10;
  --z-index-behind: -2;
  --z-index-default: 0;
  --z-index-above: 2;
  --z-index-dropdown: 100;
  --z-index-modal: 1000;
}

html {
  font-size: 18px;
}
body {
  font-family: var(--font-family);
  font-variation-settings: var(--font-variation-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
.vnutro strong {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-variation-settings: "wght" var(--font-weight-bold);
}
.vnutro p {
  line-height: 1.8;
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  border-bottom: 0;
}
a.cta-link .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: clamp(34px, 3vw, 50px);
  aspect-ratio: 1 / 1;
  color: var(--white);
  background-color: var(--main-color-hover);
  border-radius: 50%;
  transition: background-color 0.3s ease 0.3s, color 0.3s ease 0.3s;
}
a.cta-link .circle i {
  font-size: 1rem;
}
a.cta-link .text {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  margin-inline-end: clamp(0.5rem, 1vw, 1rem);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a.cta-link:hover .circle {
  animation: rotate 0.3s ease forwards;
}
a.cta-link:hover .circle {
  background-color: var(--white);
  color: var(--main-color-hover);
}
a.cta-link:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}
a.btn-base {
  font-size: 0.83rem;
  color: var(--white) !important;
  text-align: center;
  background-color: var(--main-bg-color-custom);
  padding-block: clamp(0.4rem, 1vw, 0.7rem);
  padding-inline: clamp(1rem, 1vw, 2rem);
  border-bottom: 0;
}
a.btn-base__outline {
  background-color: transparent;
  border: 2px solid var(--white) !important;
}
a.btn-base:hover {
  color: var(--black) !important;
  background-color: var(--white);
}
a.btn-base:focus-visible {
  outline: 2px dashed var(--white);
  outline-offset: 4px;
}
a.btn-base span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a.cta_button {
  display: inline-flex;
  align-items: center;
  background-color: var(--main-color-hover);
  color: var(--white) !important;
  border: 4px solid var(--main-color-hover);
  border-radius: 10em;
  overflow: hidden;
}
a.cta_button__black {
  background-color: var(--main-bg-color-grey);
  border-color: var(--main-bg-color-grey);
}
a.cta_button .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 50px;
  height: 50px;
  color: var(--main-color-hover);
  background-color: var(--white);
  border-radius: 50%;
  transition: width 0.3s ease, border-radius 0.3s ease;
}
a.cta_button__black .circle {
  color: var(--black);
}
a.cta_button .circle i {
  font-size: 1rem;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleUp {
  0% {
    width: 50px;
    border-radius: 50%;
  }
  100% {
    width: 70px;
    border-radius: 10em;
  }
}
a.cta_button:hover .circle {
  animation: rotate 0.3s ease forwards, scaleUp 0.3s ease forwards 0.3s;
}
a.cta_button:focus-visible {
  outline: 2px dashed var(--white);
  outline-offset: 4px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.container-custom {
  width: 100%;
}
@media screen and (max-width: 2560px) {
  .container-custom {
    max-width: 1920px;
  }
}
@media screen and (max-width: 1920px) {
  .container-custom {
    max-width: 1620px;
  }
}
@media screen and (max-width: 1440px) {
  .container-custom {
    width: 100%;
    max-width: 100%;
  }
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 7.33);
  padding-bottom: calc(var(--size) * 7.33);
}
.box_padding_vertical__xl {
  padding-block: clamp(3rem, 6vw, 9rem);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.color-custom {
  color: var(--main-color-hover);
}
.row-smaller-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-color-hover);
}
.container_bg_img {
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
}

.title_box {
  position: relative;
}
.title_box > * {
  position: relative;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-bold);
  text-wrap: balance;
  line-height: 1em;
}
.title_box :is(h1, h2) {
  font-size: calc(45px + (100 - 45) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0e0d11;
  z-index: var(--z-index-modal);
}
.header.scroll {
  position: fixed;
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header a {
  border-bottom: 0;
}
.main_logo {
  bottom: 0;
  left: calc(var(--size) * 6);
  z-index: 100;
}
.header.scroll .main_logo {
  top: 50%;
  bottom: initial;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main_logo img {
  width: clamp(90px, 6vw, 125px);
  height: auto;
}
.main_logo.scroll img {
  width: clamp(40px, 3vw, 60px);
}

/* Header-Top */

.header-top {
  color: var(--white);
  padding-block: clamp(0.5rem, 0.7vw, 0.83rem);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
}
.header-top__content {
  padding-inline-start: clamp(120px, 8vw, 160px);
}
.header.scroll .header-top {
  display: none;
}
.header-social {
  gap: 0.5rem;
}
.header-social a {
  color: var(--white);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 2vw, 40px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--white) 40%, transparent);
}
.header-social a:hover {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}
.header-logos {
  gap: clamp(0.5rem, 1.4vw, 1.4rem);
}
.header-logos a img {
  max-height: clamp(25px, 2vw, 40px);
  width: auto;
  opacity: 0.6;
  transition: all 0.1s ease;
  filter: grayscale(1);
}
.header-logos a:hover img {
  opacity: 1;
  filter: none;
}

/* Header-Bottom */

.header-bottom {
  color: var(--white);
  padding-block: clamp(0.5rem, 0.7vw, 0.83rem);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
}
.header-bottom__content {
  padding-inline-start: clamp(120px, 8vw, 160px);
}
.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation .nav-item:not(:last-child) {
  position: relative;
  margin-right: clamp(1.5rem, 2.15vw, 2.7rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-family: var(--headings-font-family);
  font-size: clamp(1.15rem, 1.25vw, 1.33rem);
  font-weight: var(--font-weight-medium);
  color: var(--main-color) !important;
  line-height: 40px;
  padding: 0 !important;
  border-bottom: 0;
  text-transform: uppercase;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-bg-color-grey-light);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after,
.mainNavigation a.nav-link:focus-visible span:after,
.mainNavigation a.hi span:after {
  width: 100%;
  opacity: 1;
}
.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-size: 0.8rem !important;
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-bg-color-grey);
  margin-left: 0 !important;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-bg-color-grey) 60%, white);
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover,
.mainNavigation .dropdown-menu a.dropdown-item:focus-visible,
.mainNavigation .dropdown-menu a.hi {
  color: var(--white);
  background-color: var(--main-color-hover);
}

/* Dropdown Transition */

.mainNavigation .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}

.header a:focus-visible,
.navbar-nav .nav-link:focus-visible,
.dropdown-item:focus-visible,
.button-trigger:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 3px;
}

/* Hero-Section ............................................................... */

.hero-section {
  overflow: hidden;
}
.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(
    to top,
    var(--main-bg-color) 0%,
    transparent 100%
  );
  z-index: 2;
}
.hero-overlay-left,
.hero-overlay-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40%;
  z-index: 2;
  pointer-events: none;
}
.hero-overlay-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(12, 180, 94, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.hero-overlay-right {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 42%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.hero-section {
  width: 100%;
  height: 80vh;
  background-color: var(--black);
}
.hero-section .owl-carousel,
.hero-section .item {
  height: 80vh;
}
.hero-section-in {
  height: 40vh;
}
.hero-section-in .owl-carousel,
.hero-section-in .item {
  height: 40vh;
}
.hero-image {
  inset: 0;
}
.hero-text {
  position: relative;
  z-index: var(--z-index-dropdown);
}
.hero-text h2 {
  font-family: var(--headings-font-family);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 0 3rem rgba(0, 0, 0, 0.4);
}
.hero-text .content-paragraph {
  text-shadow: 0 0 3rem rgba(0, 0, 0, 0.4);
}
.hero-section .ps-md {
  padding-inline-start: clamp(0rem, 6vw, 6.65rem);
}
.hero-navigation {
  position: absolute;
  top: 50%;
  right: calc(var(--size) * 6);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.hero-nav-btn {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: clamp(0.5rem, 1vw, 1rem);
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  transition: background 0.3s ease;
}
.hero-nav-btn.active,
.hero-nav-btn:hover {
  background: linear-gradient(to right, rgba(12, 180, 94, 0.8), transparent);
}
.hero-nav-btn .thumb-wrapper {
  flex: none;
  width: clamp(100px, 9vw, 190px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-nav-btn .thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-nav-btn p {
  font-size: 0.89rem;
  margin: 0;
  line-height: 1.4;
}

/* Matches-Navigation ............................................................... */

.matches-navigation-section {
  margin-block-start: calc(clamp(2rem, 6vw, 5rem) * -1);
  z-index: var(--z-index-above);
  position: relative;
}
.matches-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-gap: clamp(1rem, 2vw, 2.5rem);
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.matches-left {
  grid-column: span 5;
  background-color: var(--main-bg-color-grey);
  padding: clamp(1rem, 2vw, 2rem);
}
.matches-center {
  grid-column: span 8;
  background: url("../images/bg02.jpg") no-repeat center center/cover,
    var(--main-color-hover);
  color: var(--white);
  padding: clamp(1rem, 2vw, 2rem);
}
.matches-right {
  grid-column: span 5;
  padding: clamp(1rem, 2vw, 2rem);
}
.matches-left,
.matches-right {
  height: 80%;
  align-self: center;
}
.matches-right:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(70px, 5vw, 115px);
  aspect-ratio: 1 / 1;
  content: "";
  background: url("../images/icon-logo-green.svg") no-repeat center
    center/contain;
  -webkit-transform: translate(-20%, 20%);
  transform: translate(-20%, 20%);
  mix-blend-mode: screen;
}
.matches-grid h3 {
  font-family: var(--headings-font-family);
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
  font-weight: var(--font-weight-medium);
}
h4.matches-custom-subheading {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-variation-settings: var(--font-variation-semibold);
  line-height: 1.2;
}
.match-time {
  font-family: var(--headings-font-family);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: var(--font-weight-medium);
}
.matches-carousel-prev p {
  font-family: var(--headings-font-family);
  font-size: clamp(1.37rem, 1.5vw, 1.67rem);
  font-weight: var(--font-weight-medium);
}
.matches-overlay-content {
  position: relative;
  color: var(--white);
  text-align: center;
  z-index: 1;
}
.logo-img {
  height: clamp(40px, 4vw, 80px);
  width: auto;
}
.logo-img-xl {
  height: clamp(60px, 5vw, 130px);
  width: max-content;
}
.logo-nike {
  height: clamp(30px, 2vw, 40px);
  width: auto;
}
.voyo-logo {
  width: clamp(45px, 4vw, 75px);
  height: auto;
  filter: contrast(1000) brightness(1000) invert(1);
}
.text-custom-success {
  color: var(--main-bg-color-grey-light);
}
.date-block .big-date {
  font-size: clamp(1.75rem, 2vw, 2.44rem);
}
.matches-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.matches-carousel-prev-prev,
.matches-carousel-next-prev {
  left: 0;
}
.matches-carousel-prev-next,
.matches-carousel-next-next {
  right: 0;
}
.matches-nav .btn {
  font-size: 1.44rem;
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
}
.matches-nav .btn:hover {
  opacity: 0.7;
}

/* Main-Content ............................................................... */

.section-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
  overflow: hidden;
}
.section-bg__overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(
    in srgb,
    var(--main-color-hover) 65%,
    transparent
  );
  z-index: var(--z-index-above);
  opacity: 0;
}
.content-paragraph {
  font-size: clamp(1rem, 1.3vw, 1.33rem);
  line-height: clamp(1.5, 2vw, 1.8);
}

.owl-buttons {
  display: flex;
  gap: 0.5rem;
}
.owl-buttons .btn {
  width: clamp(26px, 2.5vw, 40px);
  height: clamp(26px, 2.5vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.15rem, 1.21vw, 1.4rem);
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--main-color-muted);
}
.owl-buttons .btn:hover {
  background-color: var(--main-bg-color-grey-light);
  border-color: var(--main-bg-color-grey-light);
}
.owl-buttons .btn:focus,
.owl-buttons .btn.focus {
  box-shadow: none;
}

.nav-switch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  justify-content: center;
}
.nav-switch-link {
  background: transparent;
  border: none;
  padding: 0.25rem 0;
  font-size: clamp(0.7rem, 1vw, 1rem);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-switch-link:hover,
.nav-switch-link.active {
  color: var(--main-bg-color-grey-light);
  border-color: var(--main-bg-color-grey-light);
}

/* News */

.news-section:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(55%, 1045px);
  aspect-ratio: 1;
  content: "";
  background-color: var(--main-bg-color-grey);
  border-radius: 50%;
  z-index: var(--z-index-behind);
  -webkit-filter: blur(max(3rem, 10vh));
  filter: blur(max(3rem, 10vh));
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  opacity: 0.55;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: clamp(0.7rem, 1.1vw, 1.5rem);
  grid-auto-flow: dense;
}
.news-card--large {
  grid-column: span 8;
}
.news-card--small {
  grid-column: span 4;
}
.news-card--row {
  grid-row: span 1;
}
.news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 0;
}
.news-card picture,
.news-card img {
  height: 100%;
}
.news-card:hover picture img {
  filter: brightness(0.85);
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}
.news-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(1rem, 2vw, 2rem);
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  width: 100%;
}
.video-icon {
  position: relative;
  width: clamp(40px, 3vw, 80px);
  aspect-ratio: 1;
  background-color: color-mix(
    in srgb,
    var(--main-color-hover) 90%,
    transparent
  );
  border-radius: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.news-card__overlay .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.news-card__overlay .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--white);
}

/* Gallery */

.gallery-carousel {
  padding-left: calc((100% / 2) - 875px);
  padding-right: 0;
}
.gallery-wrapper a {
  overflow: hidden;
}
.gallery-wrapper a:hover picture,
.gallery-wrapper a:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  filter: brightness(0.85);
}

/* Teams */

.teams-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}
.teams-grid__left,
.teams-grid__right {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.teams-grid__media {
  height: 100%;
}
.teams-grid__media img {
  height: 100%;
  object-fit: cover;
}
.teams-grid__left:hover picture img {
  filter: brightness(0.85);
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}
.teams-grid__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(1rem, 2vw, 2.5rem);
  color: var(--white);
  border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.85)) fill 1;
}
.teams-grid h3 {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-bold);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

/* Video */

.video-tabs li {
  width: 100%;
}
.video-tabs .video-tab-link {
  background: transparent;
  border: none;
  padding: clamp(0.7rem, 1vw, 1.5rem) 0;
  font-size: 1rem;
  font-variation-settings: var(--font-variation-semibold);
  color: var(--main-color-muted);
  text-align: left;
  width: 100%;
  background-color: transparent !important;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}
.video-tabs .video-tab-link small {
  display: block;
  font-size: 0.9rem;
  color: var(--main-color-muted);
}
.video-tabs .video-tab-link:hover,
.video-tabs .video-tab-link.active {
  color: var(--white);
}
.video-tabs .video-tab-link:hover small,
.video-tabs .video-tab-link.active small {
  color: var(--white);
}
.video-container picture,
.video-container img {
  width: 100%;
}
.video-nav-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: clamp(40px, 3vw, 80px);
  aspect-ratio: 1;
  background-color: color-mix(
    in srgb,
    var(--main-color-hover) 60%,
    transparent
  );
  border-radius: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container:hover .video-nav-icon {
  background-color: color-mix(
    in srgb,
    var(--main-color-hover) 100%,
    transparent
  );
}
.video-nav-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* CTA-Season-Ticket */

.season-ticket-section {
  padding-block: clamp(3rem, 4vw, 5rem);
  isolation: isolate;
}

/* CTA-Academy */

.cta-academy-section {
  padding-block: clamp(3rem, 5vw, 6rem);
  isolation: isolate;
}

/* CTA-Match */

.cta-match-section {
  padding-block: clamp(3rem, 10vw, 6rem);
  isolation: isolate;
}
.cta-match__title h2 {
  font-family: var(--headings-font-family);
  font-size: clamp(2.5rem, 3.5vw, 5rem);
  font-weight: var(--font-weight-medium);
  margin-block-end: clamp(2rem, 2.5vw, 3rem);
  line-height: 1;
}
.cta-match__teams h3 {
  font-family: var(--headings-font-family);
  font-size: clamp(3rem, 6vw, 9rem);
  font-weight: var(--font-weight-bold);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  line-height: 1;
}
.cta-match__datetime {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-block-end: clamp(1.5rem, 3vw, 3rem);
}
.cta-match__time {
  font-family: var(--headings-font-family);
  font-size: clamp(3rem, 6vw, 9rem);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  line-height: 1;
}
.cta-match__crest {
  height: clamp(45px, 6.5vw, 120px);
  width: auto;
}

/* Partners */

.partners-section {
  position: relative;
  overflow: hidden;
}
.partners-section:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(55%, 1045px);
  aspect-ratio: 1 / 1;
  content: "";
  background: url("../images/icon-logo.svg") 50% 50% no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, 30%);
  transform: translate(-50%, 30%);
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: var(--z-index-behind);
}
.partners-section__head h3 {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-bold);
  font-size: clamp(2.5rem, 4vw, 3.33rem);
  text-transform: uppercase;
  line-height: 1;
}
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4.5vw, 4.75rem);
  margin-block: clamp(1.5rem, 5vw, 4rem);
}
.partners__logos--primary .partners__logo {
  height: clamp(2.5rem, 4vw, 4rem);
}
.partners__logos--secondary .partners__logo {
  height: clamp(1.5rem, 2.5vw, 2.5rem);
}
.partners__logos--tertiary .partners__logo {
  height: clamp(1.3rem, 1.8vw, 1.8rem);
}
.partners__logo {
  width: auto;
}

.team_list a, .team_list span {
	position:relative;
	display:block;
	color:#fff;
	background-color:#21202d;
	padding:65px 95px 30px 95px;
}
.team_list a:before {
	position:absolute;
	top:30px;
	right:30px;
	content:"\f03a";
	font-family:"FontAwesome";
	font-size:30px;
	color:#fff;
}
.team_list_img {
	overflow:hidden;
	background-color:#000;
}
.team_list a:hover .team_list_img img {
	-ms-transform:scale(1.05);
	-webkit-transform:scale(1.05); 
	transform:scale(1.05);	
	opacity:0.7;
}
.team_list_name {
	font-size:140%;
	padding-top:30px;
	text-transform:uppercase;
}

.team_list_desc {
	font-size: 110%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    display: block;
    background: var(--main-color-hover);;
    color: #fff;
}

/* Footer ............................................................... */

.footer {
  line-height: clamp(1.5, 1.8, 2);
}
.footer:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(55%, 1045px);
  aspect-ratio: 1;
  content: "";
  background-color: var(--main-bg-color-grey);
  border-radius: 50%;
  z-index: var(--z-index-behind);
  -webkit-filter: blur(max(3rem, 10vh));
  filter: blur(max(3rem, 10vh));
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  opacity: 0.55;
}
.footer,
.footer a {
  font-size: 0.89rem;
  color: var(--main-color-muted);
  border-bottom: 0;
}
.footer a:hover, .footer a.hi {
  color: var(--white);
}
.footer__top-bar {
  background: linear-gradient(
    85deg,
    var(--main-color-hover),
    var(--main-bg-color-grey-light)
  );
  height: clamp(50px, 5.5vw, 100px);
  position: relative;
  z-index: 1;
}
.footer__logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
}
.footer__logo {
  width: clamp(70px, 7.5vw, 130px);
  aspect-ratio: 1 / 1;
}
h3.footer__title {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-medium);
  font-size: clamp(1.37rem, 1.5vw, 1.66rem);
  margin-bottom: clamp(1rem, 1.5vw, 2rem);
  color: var(--white);
}
.footer_bottom .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer_bottom .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color-muted);
}

.menovka { padding:0;}
.menovka-meno {
	background: var(--main-color-hover);
    font-size: 26px;
    padding: 20px 10px;
}
.menovka-popis {
	background: var(--main-color-hover);
    color: #fff;
}
.menovka-cislo {
    font-size: 32px;
    padding: 17px;
    text-align: center;
    display: block;
}
.menovka-cislo span { 
	color: #fff !important;
    padding: 0px !important;
    background-color: var(--main-color-hover) !important;
    display: inline-block !important;
}
.menovka-mesto {
	font-size: 20px;
    padding-right: 15px !important;
}
.menovka-obsah {
	padding-top: 30px;
  color: var(--main-bg-color-grey)
}
.menovka-obsah p strong {
    font-size:18px;
}
.menovka-obsah p:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--main-bg-color-grey);
    display: block;
    margin: 15px auto;
}
.menovka-obsah p:last-child:after {
    display:none;
}

hr {
  border-top: 1px solid #fff;
  margin: 0;
}

/* Effects ............................. */

a,
a.btn-base,
.header-social a,
.header-logos a img,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.matches-nav .btn,
.news-card picture img,
.gallery-wrapper a picture,
.gallery-wrapper a img,
.teams-grid__left picture img,
.video-tabs .video-tab-link,
.video-nav-icon, .team_list a .team_list_img img {
  transition: all 300ms linear !important;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
  .gallery-carousel {
    padding-left: calc((100% / 2) - 725px);
  }
}

@media screen and (max-width: 1440px) {
  .gallery-carousel {
    padding-left: calc(var(--size) * 6);
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  a.cta_button {
    border-width: 3px;
  }
  a.cta_button .circle {
    width: 35px;
    height: 35px;
  }
  @keyframes scaleUp {
    0% {
      width: 35px;
      border-radius: 50%;
    }
    100% {
      width: 45px;
      border-radius: 10em;
    }
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 5.66);
    padding-bottom: calc(var(--size) * 5.66);
  }
  .main_logo {
    left: calc(var(--size) * 4.66);
  }
  .hero-navigation {
    right: calc(var(--size) * 4.66);
  }
  .gallery-carousel {
    padding-left: calc(var(--size) * 4.66);
  }
  .team_list a, .team_list span {	padding:45px 60px 15px 60px; }
	.team_list a:before { top:15px; right:15px;	font-size:22px; }
	.team_list_name { font-size:130%; padding-top:15px; }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
  .main_logo {
    left: calc(var(--size) * 2);
  }
  .hero-navigation {
    right: calc(var(--size) * 2);
  }
  .gallery-carousel {
    padding-left: calc(var(--size) * 2);
  }
}

@media screen and (max-width: 1200px){
  .team_list a, .team_list span {	padding:35px 30px 15px 30px; }
	.team_list a:before { top:10px; right:10px;	font-size:18px; }
	.team_list_name { font-size:115%; padding-top:10px; }
}

@media screen and (max-width: 991px) {
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header-fixed {
    position: fixed !important;
    background-color: var(--main-bg-color);
    animation: none !important;
  }
  .header + div,
  .header + section {
    margin-top: 90px !important;
  }
  .header.scroll .header-top {
    display: block;
  }
  .main_logo {
    position: absolute;
    top: -40px !important;
    bottom: initial !important;
    left: 15px;
    width: fit-content;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .main_logo img {
    width: 75px !important;
  }
  .mainNavigation {
    display: none;
  }
  .hero-overlay-left {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .hero-overlay-right {
    display: none;
  }
  .hero-section .hero-text {
    margin-left: 2rem;
  }
  .hero-section .ps-md {
    padding-inline-start: 0;
  }
  .matches-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    align-items: normal;
  }
  .matches-left,
  .matches-center,
  .matches-right {
    grid-column: span 18;
  }
  .matches-left,
  .matches-right {
    height: auto;
    align-self: auto;
  }
  .gallery-carousel {
    padding-left: var(--size);
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  .container_bg_img {
    left: 0;
    width: 100%;
    height: auto;
  }
  .section-bg__overlay {
    opacity: 1;
  }
  .news-card--large,
  .news-card--small {
    grid-column: span 12;
  }
  .teams-grid {
    grid-template-columns: 1fr;
  }
  .teams-grid__media {
    height: auto;
  }
  .teams-grid__media img {
    height: auto;
  }
  .gallery-carousel {
    padding-right: var(--size);
  }
  .team_list a, .team_list span {	padding:35px 15px 10px 15px; }
  .vnutro .e2_htmlcontent img {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 620px){
  .vnutro .e2_htmlcontent img {
    width: 100% !important;
    height: auto !important;
  }
}

@media screen and (max-width: 414px) {
	.team_list_in { width:100%; margin-bottom:10px; }
	.team_list_in:last-child { margin-bottom:0; }

}

.hero-section .we_button {
  top: 0;
  left: 0;
  z-index: 500;
  position: absolute;
}

.btn {
  border-radius: 0;
}

.modal-content {
	border-radius:0;
}

.bg-success {
  background-color: var(--main-color-hover) !important;
}

