@charset "UTF-8";

/* =========================
   HARD RESET
   ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* HTML & BODY */
html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* BODY */
body {
  font-family: inherit;
  background: none;
  color: inherit;

}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* TEXT */
p,
span,
strong,
em,
b,
i,
small {
  font: inherit;
  color: inherit;
}

/* LISTS */
ul,
ol {
  list-style: none;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* IMAGES */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* FORMS */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
  outline: none;
}

button {
  cursor: pointer;
}

/* TABLES */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* QUOTES */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* HR */
hr {
  height: 0;
  border: 0;
}

/* DETAILS / SUMMARY */
summary {
  list-style: none;
}

/* HIDDEN */
[hidden] {
  display: none !important;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-ExtraBold.woff2") format("woff2"), url("../fonts/STSansTrial-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-Bold.woff2") format("woff2"), url("../fonts/STSansTrial-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-Medium.woff2") format("woff2"), url("../fonts/STSansTrial-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-Black.woff2") format("woff2"), url("../fonts/STSansTrial-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-Regular.woff2") format("woff2"), url("../fonts/STSansTrial-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial";
  src: url("../fonts/STSansTrial-SemiBold.woff2") format("woff2"), url("../fonts/STSansTrial-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST Sans Trial VF";
  src: url("../fonts/STSansTrialVF-Regular.woff2") format("woff2"), url("../fonts/STSansTrialVF-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "ST Sans Trial";
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1800px;
  padding: 0 15px;
  margin: 0 auto;
}

svg {
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  background: #f15e2c;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  transition: all 0.3s ease !important;
  display: flex;
  color: #fff !important;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.btn span {
  display: flex;
}

.btn:hover {
  background: #b03f19;
}

.btn svg {
  position: relative;
  top: 2px;
}

.btn-tu {
  color: #fff !important;
  padding: 22px 50px;
}

.title {
  font-weight: 500;
  font-size: 38px;
  color: #181820;
  line-height: 150%;
}

.text {
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 160%;
}

.overtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  display: block;
  color: #f15e2c;
  margin-bottom: 30px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.top>* {
  flex: 1;
}


.breadcrumbs ol {
  display: flex;
  justify-content: center;
  gap: 45px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.breadcrumbs li::after {
  content: "";
  background: url(../img/arrow-left.svg) no-repeat;
  position: absolute;
  height: 12px;
  width: 12px;
  top: 4px;
  margin-left: 20px;
}

.breadcrumbs li:last-child::after {
  content: "";
  background: none;
}

.calculator {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.calculator__image img {
  width: 100%;
  border-radius: 20px;
}

.calculator__info h2 {
  font-size: 32px;
  margin-top: 0;
}

.calculator__info p {
  margin: 10px 0 20px;
}

.calculator__inputs {
  margin-bottom: 20px;
}

.calculator__inputs label {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
}

.calculator__inputs label input,
.calculator__inputs label select {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
}

.calculator__params {
  list-style: none;
  padding: 0;
}

.calculator__params li {
  margin-bottom: 10px;
}

.calculator__price {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #e11d48;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.modal.active {
  display: flex;
}

.modal__content {
  width: 100%;
  max-width: 565px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 44px;
  right: 33px;
  cursor: pointer;
}

.modal__title {
  font-weight: 700;
  font-size: 28px;
  color: #171717;
  line-height: 140%;
  margin-bottom: 26px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__input {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #f2f2f2;
  font-weight: 400;
  font-size: 18px;
  height: 76px;
  padding: 30px 27px;
}

.modal__input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #7e7e7e;
}

.modal__input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #7e7e7e;
}

.modal__input:focus {
  border-color: #f25a2a;
  outline: none;
}

.modal__btn {
  width: 100%;
  min-height: 71px;
}

.modal__message {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  animation: slideDown 0.3s ease-out;
}

.modal__message--success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.modal__message--error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.modal__message-success,
.modal__message-error {
  margin: 0;
  line-height: 147%;
  text-align: justify;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.myCourts,
.mySertifi,
.swiper {
  overflow: hidden;
}

.header {
  padding-top: 32px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

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

@media(max-width: 530px) {
  .header__logo-secondary {
    display: none;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
}

.header__menu-list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__menu-link.active {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  font-weight: 700;
}

.header__menu-link.active::after {
  display: none;
}

.header__menu-link {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  position: relative;
}

.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header__menu-link:hover::after,
.header__menu-link:focus-visible::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.header__menu-item--has-children {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header__menu-item--has-children>a {
  flex: 1;
}

.header__menu-item--has-children::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2px;
  width: 10px;
  height: 6px;
  margin-left: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.24265 5.30325L-0.000102997 1.0605L1.0604 -3.70913e-07L4.7729 3.7125L8.4854 -4.63559e-08L9.5459 1.0605L5.30315 5.30325C5.1625 5.44385 4.97177 5.52284 4.7729 5.52284C4.57403 5.52284 4.38329 5.44385 4.24265 5.30325Z" fill="%23fff"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.header__menu-item--has-children::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 999;
}

.header__menu-item--has-children>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  list-style: none;
  margin-top: 10px;
  padding: 12px 0;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.header__menu-item--has-children:hover>ul {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__menu-item--has-children>ul:hover {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__menu-item--has-children ul li {
  list-style: none;
}

.header__menu-item--has-children ul a {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.header__menu-item--has-children ul li:first-child a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.header__menu-item--has-children ul li:last-child a {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.header__menu-item--has-children ul a:hover {
  color: #f15e2c;
}

.header__menu-item--has-children ul a.active {
  color: #f15e2c;
  font-weight: 600;
}

/* Dropdown Menu для fallback */
.header__menu-item--has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.header__menu-item--has-dropdown>a {
  flex: 1;
}

.header__menu-item--has-dropdown::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 6px;
  margin-left: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.24265 5.30325L-0.000102997 1.0605L1.0604 -3.70913e-07L4.7729 3.7125L8.4854 -4.63559e-08L9.5459 1.0605L5.30315 5.30325C5.1625 5.44385 4.97177 5.52284 4.7729 5.52284C4.57403 5.52284 4.38329 5.44385 4.24265 5.30325Z" fill="%23fff"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.header__menu-item--has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 999;
}

.header__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  min-width: 250px;
  list-style: none;
  margin: 4px 0 0 0;
  padding: 12px 0;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.header__menu-item--has-dropdown:hover .header__submenu,
.header__submenu:hover {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__submenu-item {
  list-style: none;
}

.header__submenu-item:first-child .header__submenu-link {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.header__submenu-item:last-child .header__submenu-link {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.header__submenu-link {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.header__submenu-link:hover {
  color: #f15e2c;
}

.header__submenu-link.active {
  color: #f15e2c;
  font-weight: 600;
}

.header__buttons {
  display: flex;
  gap: 12px;
}

.header__buttons-btn {
  gap: 5px;
  height: 48px;
}

.header__buttons-btns.mobail {
  display: none;
}

.header__buttons-btns {
  background: #000;
  height: 48px;
  transition: all 0.2s linear;
}

.header__buttons-btns:hover {
  background: #232222;
}

.burger {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.35s ease;
}

/* крестик */
.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.decor {
  z-index: 0;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.page-template-template-tennis .decor,
.page-template-template-tennis-php .decor {
  display: none !important;
}

.decor-1 {
  top: -800px;
  right: 50px;
}

.decor-2 {
  top: -300px;
}

.decor-3 {
  right: 0;
  top: -100px;
}

.decor-4 {
  right: 40%;
  bottom: -850px;
}

.decor-5 {
  left: 0;
  top: 200px;
}

.decor-6 {
  right: 0;
  top: -700px;
}

.decor-7 {
  left: 0;
  top: 350px;
}

.decor-8 {
  right: 0;
  top: 0;
}

.decor-9 {
  left: 0;
  bottom: 440px;
}

.decor-10 {
  right: 0;
  bottom: 230px;
}

.decor-11 {
  right: 0;
  top: -800px;
}

.decor-12 {
  left: 0;
  bottom: -650px;
}

.decor-13 {
  right: 0;
  bottom: 90px;
}

.abotdecor-1 {
  top: -900px;
  left: 200px;
}

.aboutdecor-2 {
  right: 0;
  bottom: -670px;
}

.tudecor-1 {
  top: -850px;
  right: 300px;
}

.decor-content {
  position: relative;
  z-index: 1000;
}

.programs--tu .decor-5 {
  top: 300px;
}

.rendecor-1 {
  top: -314px;
  right: 450px;
}

.shopdecor-1 {
  top: -900px;
  right: 450px;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero.jpg") no-repeat center/cover;
  padding-top: 60px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44);
  z-index: 2;
}

.hero>.container {
  position: relative;
  z-index: 3;
}

.hero--in {
  min-height: 567px;
  height: auto;
  padding: 160px 0 120px 0;
}

.hero--en {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-1.jpg") no-repeat center/cover;
}

.hero--tu {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-2.jpg") no-repeat center/cover;
}

.hero--tre {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-3.jpg") no-repeat center/cover;
}

.hero--fira {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-4.jpg") no-repeat center/cover;
}

.hero--fem {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-5.jpg") no-repeat center/cover;
}

.hero--sex {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-6.jpg") no-repeat center/cover;
}

.hero--sju {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-7.jpg") no-repeat center/cover;
}

.hero--coaches {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero-3.jpg") no-repeat center/cover;
}

.hero--ni {
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url("../img/hero--ni.jpg") no-repeat center/cover;

}

.hero--acf-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), var(--hero-custom-bg);
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}


.hero__icon img {
  width: 120px;
}

.hero__titles {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  color: #fff;
  line-height: 150%;
}

.hero__wrapp {
  width: 100%;
  max-width: 1090px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero__overtitle {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.hero__title {
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  line-height: 150%;
  margin-bottom: 50px;
}

.hero__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
  line-height: 170%;
  margin-bottom: 48px;
}

.hero__icon {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero__btn {
  margin: 0 auto;
  padding: 22px 50px;
}

.blok__intro {
  margin-bottom: 50px;
}

.blok__intro-title {
  font-weight: 700;
  font-size: 137px;
  color: #000;
  text-transform: capitalize;
  padding-top: 130px;
}

.blok__intro-title span {
  color: #f15e2c;
}

.about {
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about__inner>* {
  flex: 1;
}

.about__title {
  font-weight: 600;
  font-size: 28px;
  color: #000;
  margin-bottom: 16px;
}

.about__text {
  margin-bottom: 40px;
}

.about__text p {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 160%;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__photo {
  border-radius: 10px;
}

.about__photo img {
  border-radius: 10px;
}

.services {
  position: relative;
  z-index: 100;
}

.services__inner {
  display: flex;
  gap: 30px;
}

.services__inner>* {
  flex: 1;
}

.services__left {
  height: 100%;
}

.services__card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.services__card:hover .services__card-img {
  transform: scale(1.1);
}

.services__card-img {
  filter: brightness(66%);
  transition: transform 0.4s ease;
  height: 100%;
  border-radius: 4px;
}

.services__card-title {
  position: absolute;
  bottom: 40px;
  left: 30px;
  font-weight: 600;
  font-size: 28px;
  color: #fff;
}

.services__card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 32px;
  right: 32px;
  border-radius: 4px;
  padding: 15px;
  background: #f15e2c;
}

.services__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.klub {
  padding: 100px 0;
  position: relative;
}

.klub__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.klub__info {
  width: 100%;
  max-width: 1190px;
  z-index: 100;
}

.klub__title {
  margin-bottom: 16px;
}

.klub__text {
  margin-bottom: 40px;
}

.klub__text p {
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 160%;
  margin-bottom: 16px;
}

.klub__text p:last-child {
  margin-bottom: 0;
}

.klub__photo {
  position: relative;
}

.klub__logos {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

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

.klub__logo img {
  height: auto;
  object-fit: contain;
}

.programs {
  padding-top: 100px;
  background: #000;
  overflow: hidden;
  position: relative;
  /* Заливка уходит вправо до края экрана */
}

.programs--tu {
  padding: 100px 0 60px 0;
}

.programs__overtitle {
  display: block;
  margin-bottom: 30px;
}

.programs__top {
  margin-bottom: 50px;
}

.programs__title {
  color: #fff;
}

.programs__text {
  width: 100%;
  max-width: 870px;
  margin-left: auto;
  color: #fff;
}

.programs__cards {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
  margin-left: auto;
  margin-bottom: 80px;
}

.programs__card {
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}

.programs__card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
}

.programs__card:hover .programs__card-img {
  transform: scale(1.1) !important;
}

.programs__card-img {
  width: 100%;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.programs__card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 30px;
  border-radius: 4px;
  padding: 15px;
  background: #f15e2c;
}

.programs__card-title {
  position: absolute;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  bottom: 30px;
  left: 20px;
  z-index: 100;
}

.programs__item {
  position: relative;
  padding: 54px 10px 36px 60px;
  z-index: 1;
  color: #fff;
}

.programs__item:nth-child(1),
.programs__item:nth-child(3) {
  padding-left: 0;
}

.programs__item--orange::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: #f15e2c;
  z-index: -1;
  left: -2000px;
  right: 0;
}

.programs__item-impo {
  display: flex;
  justify-content: space-between;
}

.programs__item-impo>* {
  flex: 1;
}

.programs .orange-left::before {
  left: calc(50% - 50vw);
  right: 0;
}

.programs .orange-right::before {
  left: 0;
  right: calc(50% - 50vw);
}

.programs__item-img {
  margin-bottom: 16px;
}

.programs__item-ttile {
  width: 100%;
  max-width: 822px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  color: #fff;
  line-height: 140%;
  margin-bottom: 12px;
}

.programs__item-text {
  width: 100%;
  max-width: 840px;
  color: #fff;
}

.courts {
  position: relative;
  padding-top: 100px;
}

.courts--tu {
  padding-bottom: 100px;
}

.courts__top {
  gap: 0;
  margin-bottom: 50px;
}

.courts__title {
  width: 100%;
  max-width: 880px;
}

.courts__slider {
  padding-bottom: 70px;
  margin-bottom: 50px;
}

.courts__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.courts__btn {
  margin: 0 auto;
}

.features {
  padding: 100px 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.features__title {
  width: 100%;
  max-width: 1251px;
  margin-bottom: 50px;
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.features__card-icon {
  margin-bottom: 16px;
}

.features__card-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #000;
}

.features__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.features__gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.features__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.features__gallery-item:hover .features__gallery-img {
  transform: scale(1.05);
}

.coaches {
  position: relative;
  padding: 100px 0;
  color: #fff;
  background: #000;
  z-index: 100;
  overflow: hidden;
}

.coaches--tu {
  background: #fff;
}

.coaches--tu .coaches__title {
  color: #000;
}

.coaches--tu .coaches__text {
  color: #575757;
}

.coaches--tu .coaches__card-title {
  color: #000;
}

.coaches--tu .coaches__card-special {
  background: #f15e2c;
}

.coaches--tu .coaches__card-years {
  color: #575757;
}

.coaches--academy .coaches__card-name {
  display: block;
  margin-bottom: 14px;
}

.coaches--academy .coaches__card-special {
  display: inline-flex;
  margin-top: 8px;
  max-width: 100%;
  white-space: nowrap;
}

.coaches__top {
  margin-bottom: 70px;
}

.coaches__title {
  color: #fff;
}

.coaches__text {
  width: 100%;
  max-width: 870px;
  color: #fff;
}

.coaches__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 35px;
}

.coaches__card {
  border-radius: 10px;

}

.coaches__card .text {
  color: #fff !important;
}

.coaches__card-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.coaches__card-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 10px;
}

.coaches__card-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 140%;
  color: #fff;
}

.coaches__card-special {
  line-height: 125%;
  border-radius: 90px;
  padding: 10px 20px;
  background: #313131;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coaches__card-years {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 130%;
}

.coaches__btn {
  margin: 0 auto;
}

.tournaments {
  position: relative;
  padding-top: 100px;
}

.tournaments--tu {
  padding-bottom: 0;
}

.tournaments--tu .tournaments__cards {
  margin-bottom: 0;
}

.tournaments__top {
  margin-bottom: 50px;
}

.tournaments__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.tournaments__card-img {
  margin-bottom: 16px;
  width: 100%;
}

.tournaments__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.tournaments__card-title {
  font-weight: 500;
  font-size: 30px;
  color: #000;
  line-height: 130%;
}

.tournaments__card-date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  color: #fff;
  background: #f15e2c;
  border-radius: 90px;
  padding: 10px 20px;
  min-width: 112px;
}

.tournaments__card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #575757;
  line-height: 140%;
}

.tournaments__btn {
  margin: 0 auto;
}

.faq {
  position: relative;
  padding: 100px 0px;
}

.faq--tu {
  padding-bottom: 100px;
}

.faq--tre {
  padding: 0 0 100px 0;
}

.faq__title {
  text-align: center;
  margin-bottom: 30px;
}

.faq__item {
  border-bottom: 1px solid #e1e1e1;
  background: #fff;
}

.faq__item.is-active .faq__answer {
  max-height: 200px;
  opacity: 1;
}

.faq__item.is-active .faq__icon {
  transform: rotate(180deg);
}

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  gap: 10px;
  padding: 30px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq__text {
  font-weight: 400;
  font-size: 30px;
  color: #181820;
  line-height: 140%;
  text-align: left;
}

.faq__icon {
  width: 40px;
  height: 40px;
  background: #ff5a2c;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease;
  min-width: 40px;
  min-height: 40px;
}

.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 24px;
}

.faq__answer p {
  margin: 16px 0 24px;
  font-size: 18px;
  line-height: 140%;
  color: #575757;
}

.certificates {
  padding: 100px 0;
  position: relative;
}

.certificates__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.certificates__overtitle {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
}

.certificates__slider {
  padding-bottom: 70px;
}

.tennis {
  padding: 100px 0;
}

.tennis__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.tennis__inner>* {
  flex: 1;
}

.tennis__photo {
  border-radius: 24px;
}

.tennis__photo img {
  border-radius: 24px;
}

.tennis__title {
  margin-bottom: 16px;
}

.tennis__descr {
  margin-bottom: 40px;

  p {
    font-weight: 400;
    font-size: 18px;
    color: #575757;
    line-height: 160%;
  }
}

.skills {
  background: #fff5ec;
  padding: 100px 0;
}

.skills__top {
  margin-bottom: 30px;
}

.skills__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.skills__impo {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.skills__impo:last-child {
  margin-bottom: 0;
}

.skills__card {
  flex: 1 1 calc((100% - 60px) / 3);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.skills__card--photo {
  width: 100%;
  max-width: 720px;
}

.skills__card--photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.skills__card--tu {
  width: 100%;
  max-width: 495px;
  border-radius: 24px;
  padding: 32px;
  background: #f15e2c;
  position: relative;
}

.skills__card--tu:nth-child(3),
.skills__card--tu:nth-child(5) {
  background: #e18216;
}

.skills__card img {
  width: 100%;
  border-radius: 24px;
}

.skills__card-en {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0px;
}

.skills__card-tu {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0px;
}

.skills__card.mobail {
  display: none;
}

.skills__card-img {
  width: 100%;
}

.skills__card-info {
  margin-top: auto;
  z-index: 100;
}

.skills__card-title {
  font-weight: 500;
  font-size: 38px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 12px;
}

.skills__card-text {
  color: #fff;
}

.court {
  padding-top: 100px;
}

.court__top {
  margin-bottom: 50px;
}

.court__wrapp {
  display: flex;
  align-items: center;
  gap: 30px;
}

.court__name {
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  color: #000;
  margin-bottom: 24px;
}

.court__list-item {
  margin-bottom: 30px;
}

.court__list-item:last-child {
  margin-bottom: 0;
}

.court__list-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #000;
  margin-bottom: 15px;
}

.court__list-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.court__list-namber {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #fff;
  background: #f15e2c;
  min-width: 44px;
  min-height: 49px;
  padding: 10px;
  margin-bottom: 10px;
}

.court__list-span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #575757;
  text-align: center;
}

.court__list-tu {
  display: flex;
  gap: 40px;
}

.court__list-time {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  color: #f15e2c;
  margin-bottom: 15px;
}

.court__list-text {
  font-weight: 400;
  font-size: 18px;
  color: #575757;
}

.court__list-inpos {
  font-weight: 600;
  font-size: 18px;
  color: #575757;
}

.court__btn {
  margin-top: 40px;
}

.rules {
  padding: 50px 0 0 0;
}

.rules__title {
  width: 100%;
  max-width: 820px;
  font-weight: 500;
  font-size: 38px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.rules__descr {
  width: 100%;
  max-width: 1200px;
}

.rules__descr ol {
  list-style: auto;
  padding-left: 30px;
}

.rules__descr p {
  margin-bottom: 35px;
}

.rules__descr p:last-child {
  margin-bottom: 0;
}

.shop {
  padding: 100px 0;
  position: relative;
}

.shop__top {
  margin-bottom: 30px;
}

.shop__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 460px) {
  .services__left .services__card-img {
    height: 300px !important;
  }

  .services__card-img {
    height: 130px !important;
  }
}

.shop__card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0px 24px 24px 24px;
  background: #fff;
  /* make card a vertical flex container so we can push bottom area down */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop__card-img {
  margin-bottom: 24px;
  height: 400px;
  object-fit: contain;
  padding: 15px;
}

.shop__card-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #181820;
  margin-bottom: 5px;
}

.shop__card-text {
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 140%;
  margin-bottom: 20px;
}

.shop__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  /* push price/button block to the bottom when card is taller */
  margin-top: auto;
}

.shop__card-price {
  font-weight: 600;
  font-size: 32px;
  color: #000;
}

.shop--merch .shop__card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.shop--merch .shop__card-title {
  margin-bottom: 0;
  font-size: 28px;
}

.shop--merch .shop__card-bottom {
  margin-top: 0;
  flex-shrink: 0;
}

.shop__tabs {
  display: flex;
  gap: 16px;
  overflow: auto;
  margin-bottom: 50px;
}

.shop__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  padding: 12px 24px;
  background: #fff;
  min-width: 239px;
  min-height: 54px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #000;
}

.shop__tab.active {
  background: #f15e2c;
  color: #fff;
}

/* Стили для скрытия неактивных табов инфраструктуры */
.cards-group {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.cards-group.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.program-tabs {
  padding: 100px 0 0 0;
}

.program-tabs ol {
  list-style: auto;
}

.program-tabs__top {
  margin-bottom: 30px;
}

.program-tabs__tabs {
  display: flex;
  width: 100%;
  gap: 0;
  overflow: visible;
  margin-bottom: 30px;
}

.program-tabs__tabs .shop__tab {
  flex: 1;
  min-width: auto;
  border: 1px solid #e0e0e0;
  border-right: 1px solid #fff;
  border-radius: 0;
  padding: 12px 24px;
  min-height: 54px;
}

.program-tabs__tabs .shop__tab:first-child {
  border-left: 1px solid #fff;
}

.program-tabs__tabs .shop__tab:last-child {
  border-right: 1px solid #e0e0e0;
}

.program-tabs__tabs .shop__tab.active {
  background: #f15e2c;
  color: #fff;
  border-color: #f15e2c;
}

.program-tabs__container {
  position: relative;
}

.program-tabs__content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.program-tabs__content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.program-tabs__section {
  margin-bottom: 24px;
  border: none;
  background: #fff;
}

.program-tabs__section:last-child {
  margin-bottom: 0;
}

.program-tabs__section-head {
  padding: 12px 20px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: #000;
}

.program-tabs__section--yellow .program-tabs__section-head {
  background: #f2c21a;
  color: #000;
}

.program-tabs__section--orange .program-tabs__section-head {
  background: #f15e2c;
  color: #fff;
}

.program-tabs__section--red .program-tabs__section-head {
  background: #ee1b26;
  color: #fff;
}

.program-tabs__section--purple .program-tabs__section-head {
  background: #7e28b7;
  color: #fff;
}

.program-tabs__section--green .program-tabs__section-head {
  background: #1fb463;
  color: #fff;
}

.program-tabs__section--blue .program-tabs__section-head {
  background: #5d7cff;
  color: #fff;
}

.program-tabs__table {
  display: grid;
  row-gap: 2px;
  background: #fff;
  padding-top: 2px;
}

.program-tabs__row {
  display: grid;
  grid-template-columns: 1fr 292px;
  background: #e5e5e5;
  min-height: 40px;
  align-items: center;
}

.program-tabs__row+.program-tabs__row {
  border-top: 2px solid #fff;
}

.program-tabs__cell {
  padding: 8px 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #000;
}

.program-tabs__cell--right {
  text-align: right;
  font-weight: 700;
  font-size: 22px;
  border-left: 2px solid #fff;
  color: #000;
}

.program-tabs__note {
  padding: 14px 20px 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #575757;
}

.program-tabs__note p {
  margin: 0 0 8px;
}

.program-tabs__note p:last-child {
  margin-bottom: 0;
}

.program-tabs__note ol,
.program-tabs__note ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.program-tabs__note li {
  margin-bottom: 6px;
  line-height: 150%;
}

.program-tabs__note li:last-child {
  margin-bottom: 0;
}

.gift {
  padding: 100px 0;
  position: relative;
}

.gift__tops {
  margin-bottom: 45px;
}

.gift__wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.gift__card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gift__logo img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.gift__name {
  font-weight: 500;
  font-size: 28px;
  color: #181820;
  line-height: 150%;
  margin-bottom: 4px;
}

.gift__subtitle {
  margin: 0;
  font-size: 14px;
  color: white;
  letter-spacing: 2px;
}

.gift__center {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.gift__left {
  width: 100%;
  max-width: 600px;
}

.gift__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gift__prices {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.gift__price {
  flex: 1;
}

.gift__price input {
  display: none;
}

.gift__price span {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  padding: 12px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #000;
  cursor: pointer;
}

.gift__price input:checked+span {
  background: #f15e2c;
  color: #fff;
  border-color: #f15e2c;
}

.gift__btn.mobail {
  display: none;
}

.children {
  padding-top: 100px;
}

.children__top {
  margin-bottom: 50px;
}

.children__tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  overflow-x: visible;
}

.children__tabs>* {
  flex: 1;
}

.children__tab-btn {
  min-width: 341px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border: none;
  border-radius: 24px;
  padding: 16px 24px;
  min-height: 96px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: #7e28b7;
  overflow: hidden;
  transition: 0.25s ease;
}

.children__tab-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  top: 14px;
  background: #fff;
  transition: 0.25s ease;
}

.children__tab-btn:nth-child(2) {
  background: #ee1b26;
}

.children__tab-btn:nth-child(3) {
  background: #f15e2c;
}

.children__tab-btn:nth-child(4) {
  background: #18c562;
}

.children__tab-btn:nth-child(5) {
  background: #fab300;
}

.children__tab-btn span {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 16px;
  padding-left: 41px;
}

.children__tab-btn.active::before {
  border: 2px solid white;
  background: transparent;
}

.children__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.children__item>* {
  flex: 1;
}

.children__item-info {
  margin-bottom: 24px;
}

.children__item-title {
  font-weight: 500;
  line-height: 140%;
  font-size: 38px;
  color: #171719;
  margin-bottom: 24px;
}

.children__item-top {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.children__item-li {
  display: flex;
  align-items: center;
  gap: 24px;
}

.children__item-titles {
  width: 100%;
  max-width: 292px;
  font-weight: 700;
  font-size: 18px;
  color: #171719;
  line-height: 150%;
}

.children__item-icon {
  width: 50px;
  height: 50px;
}

.children__item-icon img {
  max-width: 50px;
  height: 100%;
}

.children__item-icon svg {
  max-width: 50px;
  height: 100%;
}

.children__item-titles span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #575757;
}

.children__item-center {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.children__item-rozrh {
  font-weight: 700;
  font-size: 18px;
  color: #171719;
  line-height: 140%;
  margin-bottom: 10px;
}

.children__item-rozrh:last-child {
  margin-bottom: 0;
}

.children__item-rozrh span {
  font-weight: 400;
  font-size: 16px;
  color: #575757;
}

.children__item-empo {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.children__item-empo:last-child {
  margin-bottom: 0;
}

.children__item-span {
  font-weight: 400;
  font-size: 16px;
  color: #575757;
}

.children__item-name {
  font-weight: 700;
  font-size: 24px;
  color: #171719;
}

.footer {
  background: #000;
  padding: 75px 0;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 130px;
}

.footer__info {
  width: 100%;
  max-width: 380px;
}

.footer__info.mobail {
  display: none;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo-link {
  display: inline-block;
}

.footer__text {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 160%;
}

.footer__nav {
  flex: 0 1 496px;

}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer__nav-link {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: all 0.2s linear;
}

.footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.5725490196);
}

.footer__contacts-title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 150%;
  margin-bottom: 16px;
}

.footer__contacts-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
}

.footer__contacts-time {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__social {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #f15e2c;
  border-radius: 8px;
  transition: all 0.2s linear;
  cursor: pointer;
}

.footer__social-link:hover {
  background: #b03f19;
}

.footer__name {
  text-align: center;
  font-weight: 500;
  font-size: clamp(40px, 10vw, 192px);
  letter-spacing: 0.06em;
  color: #202020;
  margin-bottom: 80px;
}

.footer__coppy {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-top: 1px solid #2D2D34;
  padding-top: 24px;
}

.coach-specialty {
  display: inline-block;
  max-width: 220px;
  background: rgba(40, 40, 40, 0.92);
  color: #fff;
  border-radius: 22px;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  word-break: break-word;
  text-align: left;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.infa__title {
  margin-bottom: 50px;
}

.infrastructure-tabs {
  padding: 100px 0;
}

.infrastructure-tab-name {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 1800px) {
  .programs__item {
    padding-left: 20px;
  }
}

@media (max-width: 1440px) {
  .decor-1 {
    top: -900px;
  }

  .decor-2 {
    top: -482px;
  }

  .decor-5 {
    left: -200px;
    top: 307px;
  }

  .decor-6 {
    right: 0;
    top: -808px;
  }

  .decor-7 {
    left: -83px;
    top: 138px;
  }

  .decor-9 {
    left: 0;
    bottom: 199px;
  }

  .abotdecor-1 {
    top: -990px;
  }
}

@media (max-width: 1024px) {
  .decor-2 {
    top: -160px;
    width: 263px;
  }

  .decor-3 {
    right: 0;
    top: -100px;
    width: 263px;
  }
}

@media (max-width: 1400px) {
  .coaches__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tournaments__card-top {
    flex-direction: column;
    align-items: start;
  }

  .club-news__cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 1530px) {
  .header__menu-item--has-children>ul {
    position: static !important;
    background: transparent !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.3s ease;
    display: block !important;
  }

  .header__menu-item--has-children {
    flex-direction: column !important;
    align-items: start !important;
  }

  .header__menu-item--has-children.submenu-open>ul {
    max-height: 500px;
  }

  .burger {
    display: flex;
  }

  .header__logo {
    margin: 0 auto 0 20px;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 88vw;
    max-width: 420px;
    background: rgba(20, 20, 20, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px;
    z-index: 1000;
  }

  .header__menu.active {
    transform: translateX(0);
  }

  .header__menu-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 26px;
  }

  .header__menu-link {
    font-size: 20px;
    color: #fff;
  }

  .header__menu-link::after {
    display: none !important;
  }

  .header__menu a::after {
    display: none !important;
  }
}

@media (max-width: 1500px) {
  .shop__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1300px) {
  .footer__inner {
    flex-wrap: wrap;
    row-gap: 40px;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

@media (max-width: 1200px) {
  .blok__intro-title {
    font-size: 90px;
  }

  .about__inner {
    flex-direction: column;
  }

  .about__photo {
    width: 100%;
    height: 100%;
  }

  .about__photo img {
    width: 100%;
  }

  .tennis__inner {
    flex-direction: column;
  }

  .tennis__photo {
    width: 100%;
  }

  .tennis__photo img {
    width: 100%;
  }

  .services__card-title {
    font-size: 25px;
    bottom: 22px;
    left: 20px;
  }

  .services__card-btn {
    top: 8px;
    right: 10px;
  }

  .court__wrapp {
    align-items: start;
  }

  .court__wrapp>* {
    flex: 1;
  }

  .shop__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .children__item {
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .skills__card {
    flex: 1 1 calc((100% - 30px) / 2);
  }

  .skills__card--tu {
    max-width: 100%;
  }

  .gift__wrapper {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .top {
    flex-direction: column;
  }

  .courts__title {
    max-width: 100%;
  }

  .programs__text {
    margin-left: 0;
    margin-right: auto;
  }

  .features__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaches__text {
    max-width: 100%;
  }

  .title {
    margin-bottom: 8px;
  }

  .tournaments__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tournaments__card-top {
    flex-direction: row;
    align-items: center;
  }

  .certificates__top {
    flex-direction: column;
  }

  .certificates__overtitle {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .infrastructure-tab-btn {
    width: 32% !important;
  }

  .services__card-title {
    bottom: 15px;
    left: 15px;
  }

  .klub__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }


  .klub__photo img {
    height: 100%;
  }

  .klub__logos {
    gap: 20px;
    margin-top: 20px;
    flex-direction: row-reverse;
  }


  .coaches__card-title {
    font-size: 25px;
  }

  .footer__info {
    display: none;
  }

  .footer__info.mobail {
    display: block;
  }

  .skills__cards {
    flex-direction: column;
  }

  .skills__card--photo {
    max-width: 100%;
  }

  .skills__card--tu {
    min-height: 240px;
  }

  .skills__card.none {
    display: none;
  }

  .skills__card.mobail {
    display: block;
  }

  .court__wrapp {
    flex-direction: column;
  }

  .court__photo {
    height: 300px;
  }

  .infrastructure-tabs__tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .club-news__cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .footer__nav {
    flex: 0;
  }

  .header__buttons-btns.mobail {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    height: 42px;
  }

  .header__buttons-btns {
    display: none;
  }



  .hero__title {
    font-size: 60px;
    margin-bottom: 24px;
  }

  .hero__overtitle {
    margin-bottom: 24px;
  }

  .hero__subtitle {
    margin-bottom: 24px;
  }

  .blok__intro-title {
    font-size: 60px;
    padding-top: 60px;
  }

  .services__inner {
    flex-direction: column;
  }

  .services__right {
    gap: 30px;
  }

  .decor-10,
  .decor-9 {
    display: none;
  }

  .programs__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .programs .orange-left::before {
    right: -100px;
  }

  .programs .orange-right::before {
    left: -100px;
  }

  .programs__item {
    padding-left: 0;
  }

  .programs__item-impo {
    flex-direction: column;
  }

  .programs__item-impo:nth-child(2) {
    flex-direction: column-reverse;
  }

  .coaches__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .tournaments__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .faq__text {
    font-size: 25px;
  }

  .footer__inner {
    flex-direction: column;
    margin-bottom: 0;
  }

  .footer__nav-list {
    flex: 0;
    gap: 20px;
  }

  .footer__nav-link {
    line-height: 165%;
  }

  .footer__name {
    margin: 20px 0;
  }

  .shop__card-price {
    font-size: 24px;
  }

  .shop__cards {
    gap: 16px;
  }

  .shop__tabs {
    margin-bottom: 24px;
  }
}

@media (max-width: 668px) {
  .shop__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .shop--merch .shop__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop__card-img {
    width: 100%;
    height: 287px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .children__item-top {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 460px) {
  .shop--merch .shop__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 650px) {
  .title {
    font-size: 28px;
  }

  .klub__inner {
    gap: 24px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #f15e2c;
  }
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background: #f15e2c;
}

@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #f15e2c;
  }

  .courts__slider {
    margin-bottom: 20px;
  }

  .courts__slider {
    padding-bottom: 40px;
  }

  .courts__photos {
    gap: 15px;
  }

  .features__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .features__gallery {
    grid-template-columns: repeat(1, 1fr);
  }

  .faq__text {
    font-size: 22px;
  }

  .faq__question {
    padding: 20px 15px;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .certificates__slider {
    padding-bottom: 40px;
  }

  .modal__content {
    width: 90%;
  }

  .children__tab-btn {
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .gift__btn.none {
    display: none;
  }

  .gift__btn.mobail {
    width: 100%;
    display: flex;
    margin-top: 18px;
    min-height: 51px;
  }

  .gift__price span {
    font-size: 16px;
  }

  .modal__input {
    height: 64px;
  }

  .modal__content {
    padding: 20px 16px;
  }

  .modal__input {
    padding: 16px;
  }

  .modal__close {
    top: 32px;
    right: 20px;
  }

  .header__logo-link img {
    width: 120px;
  }

  .children__tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .children__tabs>* {
    flex: 1 1 auto;
  }

  .children__tab-btn {
    width: 100%;
    min-width: 0;
  }

  .infrastructure-tabs__tabs {
    flex-direction: column;
  }

  .infrastructure-tab-btn {
    width: 100% !important;
  }
}

@media (max-width: 425px) {
  .title {
    font-size: 22px;
  }

  .overtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .infrastructure-card__title {
    font-size: 20px !important;
  }

  .programs__card-img {
    height: 300px !important;
  }

  .top {
    gap: 8px;
    margin-bottom: 24px;
  }

  .text {
    font-size: 14px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__overtitle {
    font-size: 14px;
  }

  .blok__intro-title {
    font-size: 42px;
  }

  .about {
    padding-top: 25px;
  }

  .about__title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .text {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .btn svg {
    width: 12px;
    height: 16px;
  }

  .services__inner {
    gap: 16px;
  }

  .services__right {
    gap: 16px;
  }

  .services__card-title {
    font-size: 22px;
    bottom: 22px;
    left: 15px;
  }

  .services__card-btn {
    padding: 8px 10px;
    min-height: 32px;
  }

  .services__card-btn svg {
    width: 12px;
    height: 16px;
  }

  .btn-tu {
    padding: 20px;
  }

  .klub__title {
    margin-bottom: 8px;
  }

  .klub__text {
    margin-bottom: 24px;
  }

  .klub__text p {
    margin-bottom: 8px;
  }

  .programs {
    padding: 50px 0;
  }

  .programs__cards {
    margin-bottom: 40px;
  }

  .programs__card-title {
    font-size: 22px;
  }

  .programs__card-btn {
    top: 16px;
    right: 16px;
    padding: 8px 10px;
  }

  .programs__card-btn svg {
    width: 12px;
    height: 16px;
  }

  .programs__item {
    padding: 16px 0;
  }

  .programs__item-ttile {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .courts__photos {
    grid-template-columns: repeat(1, 1fr);
  }

  .features__title {
    margin-bottom: 24px;
  }

  .features__card-title {
    font-size: 22px;
  }

  .features__card-icon {
    width: 60px;
    height: 60px;
  }

  .features__gallery {
    gap: 16px;
  }

  .coaches__card-img {
    margin-bottom: 12px;
  }

  .coaches__card-title {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .coaches__card-years {
    margin-bottom: 14px;
  }

  .coaches__card-name {
    flex-direction: column;
    align-items: baseline;
  }

  .coaches__card-special {
    font-size: 14px;
    max-width: 300px;

  }

  .coaches__cards {
    gap: 16px;
  }

  .tournaments__card-img {
    margin-bottom: 10px;
  }

  .tournaments__card-top {
    margin-bottom: 12px;
  }

  .tournaments__card-title {
    font-size: 22px;
  }

  .tournaments__card-date {
    font-size: 14px;
    padding: 8px 12px;
    min-width: none;
  }

  .tournaments__card-text {
    font-size: 14px;
  }

  .tournaments__cards {
    gap: 16px;
    margin-bottom: 24px;
  }

  .faq__text {
    font-size: 16px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
  }

  .faq__answer p {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .footer {
    padding: 32px 0;
  }

  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer__nav-link {
    line-height: 165%;
  }

  .coaches {
    padding-bottom: 50px;
  }

  .skills {
    padding: 32px 0;
  }

  .skills__card--tu {
    padding: 16px;
  }

  .skills__card-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .skills__cards {
    gap: 16px;
  }

  .hero__titles {
    font-size: 40px;
  }

  .faq--tu {
    padding-top: 100px;
  }

  .court__wrapp {
    gap: 24px;
  }

  .court__name {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .court__list-title {
    font-size: 20px;
  }

  .shop__card-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .shop__card-title {
    font-size: 22px;
  }

  .shop__card-text {
    font-size: 14px;
  }

  .shop__card-btn {
    width: inherit;
    min-width: 138px !important;
  }

  .shop__card-btn svg {
    width: 21px;
    height: 21px;
  }

  .shop__tab {
    min-width: 109px;
    min-height: 40px;
    font-size: 16px;
    padding: 8px 24px;
  }

  .gift__content {
    padding: 16px;
  }

  .gift__name {
    font-size: 20px;
  }

  .gift__descr {
    font-size: 14px;
  }

  .gift__price span {
    min-height: 40px;
  }

  .gift__wrapper {
    gap: 16px;
  }

  .gift__btn svg {
    width: 21px;
    height: 21px;
  }

  .header__buttons-btn,
  .header__buttons-btns {
    font-size: 14px;
    padding: 8px 14px;
    height: 37px;
  }

  .children__tabs {
    gap: 12px;
    margin-bottom: 32px;
  }

  .children__tab-btn {
    min-width: 284px;
    font-size: 19px;
    min-height: auto;
  }

  .blok__intro {
    margin-bottom: 30px;
  }

  .children__item {
    gap: 24px;
  }

  .children__item-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .children__item-li {
    gap: 16px;
  }

  .children__item-icon svg {
    width: 32px;
    height: 32px;
  }

  .children__item-top {
    margin-bottom: 16px;
  }

  .children__item-info {
    margin-bottom: 16px;
  }

  .children__item-ico {
    width: 100px;
  }

  .children__item-empo {
    gap: 12px;
  }

  .children__item-span {
    font-size: 14px;
  }

  .children__item-name {
    font-size: 20px;
  }

  .decor-12 {
    display: none;
  }
}

@media (max-width: 768px) {
  .program-tabs__row {
    grid-template-columns: 1fr;
  }

  .program-tabs__cell--right {
    text-align: left;
  }

  .program-tabs__section-head {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .footer__name {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .gift__price span {
    font-size: 12px;
  }

  .modal__title {
    max-width: 250px;
  }
}

@media (max-width: 375px) {
  .coaches__card-name {
    flex-direction: column;
    align-items: start;
  }

  .header__buttons-btn span {
    display: none;
    padding: 8px;
  }

  .header__logo {
    margin-right: 10px;
  }
}



@media (max-width: 1100px) {
  .coaches__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .coaches__cards {
    display: flex;
    flex-direction: column;
  }

  .coaches__card-img {
    height: 350px !important;
    object-position: 50% 35% !important;
  }

  .tournaments__card-img,
  .services__left .services__card-img {
    height: 350px !important;

  }

  .services__card-img {
    height: 180px !important;

  }

  .courts__photos-img {
    height: 200px !important;
  }
}

/* ========== СТИЛИ ДЛЯ ССЫЛОК НА КАРТОЧКАХ ========== */
/* Ссылка на картинку карточки услуг */
.services__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.services__card-link:hover {
  opacity: 0.9;
}

/* Ссылка на заголовок карточки услуг */
.services__card-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.services__card-title-link:hover {
  text-decoration: none;
  color: inherit;
}

.services__card-title-link h3 {
  text-decoration: none;
}

/* Ссылка на заголовок карточки программ */
.programs__card-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.programs__card-title-link:hover {
  text-decoration: none;
  color: inherit;
}

.programs__card-title-link h3 {
  text-decoration: none;
}



@media(max-width: 1530px) {
  .header__menu-item--has-children>ul {
    display: block !important;
    opacity: 1;
    position: inherit;
    background: transparent !important;
    box-shadow: none !important;
  }

  .header__menu-item--has-children {
    flex-direction: column !important;
    align-items: start !important;
  }

  .header__menu-item--has-children>ul:hover {
    transform: none !important;
  }

  .header__menu-item--has-children ul a {
    color: #fff;
  }

  .header__menu-item--has-children ul a:hover {
    color: #fff !important;
    border-bottom: 0;
  }

  .header__menu-item--has-children ul a.active {
    color: #fff;
    font-weight: 700;
    border-bottom: none;
  }

  .sub-menu {
    padding: 0 !important;
    margin: 0 !important;
  }

  .header__menu-item--has-children::after {
    position: absolute !important;
    top: 10px !important;
    right: 115px !important;
  }
}

.infrastructure-tab-btn {
  width: 100%;

}

/* Infrastructure Tabs Styles */
.infrastructure-tabs__tabs .shop__tab {
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  font-size: 14px;
}

.tab-icon {
  font-size: 24px;
  display: block;
}

.tab-name {
  font-size: 14px;
  white-space: nowrap;
}

.infrastructure-card {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.infa__title {
  width: 100%;
  max-width: 1310px;
}

.infrastructure-card__title {
  width: 100%;
  max-width: 1170px;
  font-weight: 500;
  font-size: 32px;
  color: #181820;
  line-height: 150%;
  margin-bottom: 22px;
}

.infrastructure-card__text {
  width: 100%;
  max-width: 1170px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.infrastructure-card__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.infrastructure-card__image {
  overflow: hidden;
  border-radius: 8px;
}

.infrastructure-card__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .infrastructure-card__images {
    grid-template-columns: 1fr;
  }

  .infrastructure-card__image img {
    height: 200px;
  }

  .infrastructure-tabs__tabs .shop__tab {
    min-width: auto;
    padding: 12px 8px;
    font-size: 12px;
  }

  .tab-icon {
    font-size: 20px;
  }

  .tab-name {
    font-size: 12px;
  }
}

.club-news {
  padding-top: 100px;
}

.club-news__top {
  margin-bottom: 50px;
}

.club-news__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.club-news__card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.club-news__issue {
  font-weight: 500;
  font-size: 30px;

}

.club-news__download {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F15E2C;
  font-size: 20px;
  font-weight: 500;
  transition: all .2s linear;

}

.club-news__download:hover {
  color: #b03f19;
}

.club-news__card-img {
  height: 514px;
  object-fit: cover;
  border-radius: 14px;
  width: 100%;
}













.features--about-coaches .features__cards {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}

.features--about-coaches .features__card-text {
  margin-top: 10px;
}

.programs--about-coaches {
  padding-top: 40px;
  background: #fff;
}

.programs--about-coaches .programs__title,
.programs--about-coaches .programs__text {
  color: #181820;
}

.programs--about-coaches .programs__items {
  background: #000;
  margin-top: 50px;
}

.programs--about-coaches .programs__top {
  margin-bottom: 0;
}


/*# sourceMappingURL=style.css.map