/* ---ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ--- */
:root {
  /* Colors: */
  --dark: #242020;
  --black: #000;
  --black-two: #0d0d0d;
  --white: #fff;
  --off-white: #f1f2f4;
  --off-black: #201c1d;
  --orange: #fd7200;
  --red: #f70606;
  /* fonts: */
  --font-Golos: "Golos Text", sans-serif;
  /* --font-Golos: "Roboto", sans-serif; */
  --font-Roboto: "Roboto", sans-serif;
  /* Transitions: */
  --short: 0.25s ease;
}
/* Шрифты: */
@font-face {
  font-family: "Roboto";
  src: local("Roboto"),
    url("/website/fonts/Roboto-Regular.woff2") format("woff2"),
    url("/website/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), url("/website/fonts/Roboto-Bold.woff2") format("woff2"),
    url("/website/fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"),
    url("/website/fonts/Roboto-Medium.woff2") format("woff2"),
    url("/website/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"),
    url("/website/fonts/Roboto-Italic.woff2") format("woff2"),
    url("/website/fonts/Roboto-Italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), url("/website/fonts/Roboto-Light.woff2") format("woff2"),
    url("/website/fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/website/fonts/Roboto-BoldItalic.woff2") format("woff2"),
    url("/website/fonts/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: local("Golos Text"),
    url("/website/fonts/Golos-Text_Regular.woff2") format("woff2"),
    url("/website/fonts/Golos-Text_Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: local("Golos Text"),
    url("/website/fonts/Golos-Text_Bold.woff2") format("woff2"),
    url("/website/fonts/Golos-Text_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: local("Golos Text"),
    url("/website/fonts/Golos-Text_Medium.woff2") format("woff2"),
    url("/website/fonts/Golos-Text_Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Общие */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-Golos);
  font-size: 16px;
  color: var(--dark);
  background-color: var(--off-white);
}
.fix-menu {
  margin-top: 70px;
}
footer {
  margin-top: auto;
}
.container {
  max-width: 1600px;
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
  margin-left: auto;
  margin-right: auto;
}
ul {
  list-style-type: none;
  padding-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-Roboto);
}
h1 {
  font-size: 110px;
  line-height: 120px;
  text-align: center;
  font-style: italic;
}
h2,
.header-h1 {
  font-size: 70px;
  line-height: 75px;
  font-style: italic;
}
.h2-second {
  font-family: var(--font-Golos);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--off-black);
}
.header-line {
  position: relative;
  padding-bottom: 30px;
}
.header-line::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  background-color: var(--orange);
}
.header-top-line {
  position: relative;
  padding-top: 30px;
}
.header-top-line:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100px;
  height: 4px;
  background-color: var(--orange);
}
body span.orange {
  color: var(--orange);
}
.no-scroll {
  overflow-y: hidden;
}
@media (max-width: 1280px) {
  h1 {
    font-size: 60px;
    line-height: 75px;
  }
  h2,
  .header-h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .h2-second {
    font-size: 32px;
    line-height: 40px;
  }
  .header-line {
    padding-bottom: 20px;
  }
  .header-top-line {
    padding-top: 15px;
  }
  .header-top-line:before {
    height: 3px;
    width: 75px;
  }
  .fix-menu {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 45px;
    line-height: 60px;
  }
  h2,
  .header-h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .h2-second {
    font-size: 24px;
    line-height: 30px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-line {
    padding-bottom: 10px;
  }
  .header-line::after {
    width: 50px;
    height: 2px;
  }
  .header-top-line {
    padding-top: 10px;
  }
  .header-top-line:before {
    height: 2px;
    width: 50px;
  }
}
/* ////////////////////// */

/* -----HEADER----- */
.header {
  position: relative;
}
.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 20;
}
/* Верхняя часть шапки */
.header__top {
  position: relative;
  background-color: #121212;

  /* новый год */
  /* padding-top: 40px;
  background-image: url('/website/img/ny-decor.png');
  background-position: center top;
  background-size: auto 60px;
  background-repeat: repeat-x; */
}
.header__top-box {
  position: relative;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  row-gap: 20px;
  max-width: 1540px;
}
.header__top-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 47px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--orange);
}
.header__cross-box,
.header__fitness-box {
  width: calc(50% - 35px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}
.header__cross-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.header__links {
  color: var(--white);
  opacity: 0.2;
  -webkit-transition: var(--short);
  transition: var(--short);
}
.header__link-tel {
  display: block;
}
.header__link-adr {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}
.header__link-tel-cross,
.header__link-tel-fitness {
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  color: var(--white);
}
.header__link-tel-cross:hover,
.header__link-tel-fitness:hover {
  color: var(--orange);
}
.header__link-tel-cross:active,
.header__link-tel-fitness:active {
  color: var(--red);
}
.header-box {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.header__link {
  opacity: 0.65;
  -webkit-transition: var(--short);
  transition: var(--short);
}

.header-box.active,
.header-box:hover,
.header-box.hover {
  -webkit-filter: none;
  filter: none;
}
.header__link:hover {
  transform: scale(1.1);
}
.header-box.active .header__link,
.header-box:hover .header__link,
.header-box.hover .header__link,
.header-box.active .header__links,
.header-box:hover .header__links,
.header-box.hover .header__links {
  opacity: 1;
}
.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 30px;
  z-index: 120;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 35px;
  top: 30px;
}
.burger__line {
  position: relative;
  width: 35px;
  height: 4px;
  background-color: var(--white);
}
.burger.active .burger__line {
  background-color: transparent;
}
.burger__line::before,
.burger__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  left: 0;
}
.burger__line::before {
  top: -12px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
.burger__line::after {
  bottom: -12px;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.burger.active .burger__line::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.burger.active .burger__line::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header_lk {
  display: block;
  width: 100%;
  max-width: 120px;
  color: var(--white);
  background-color: var(--orange);
  padding: 5px;
  font-size: 14px;
  text-align: center;
  line-height: 1.2em;
  position: absolute;
  top: 30px;
  left: 30px;
}
/* Нижняя часть шапки */
.header__bottom {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 100;
  background-color: rgb(13, 13, 13, 0.96);
  -webkit-box-shadow: 0px 12px 51px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 12px 51px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.header__bottom.is-open {
  display: block;
}
.header_nav {
  width: 100%;
  max-width: 1520px;
  margin-right: auto;
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.header__bottom.is-open .header_nav {
  z-index: 100;
}
.header_nav__block {
  padding-left: 60px;
  padding-bottom: 10px;
}
.header_nav__top {
  position: relative;
  padding: 10px 0 15px;
}
.header_nav__btn {
  display: inline-block;
  position: relative;
  cursor: initial;
}
.header_nav__btn::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("/website/img/menu_next_r.svg") center center / 20px no-repeat,
    #4a4a4a;
  display: none;
}
.header_nav__back {
  position: relative;
  padding: 14px 30px 14px 80px;
  background-color: #2a2a2a;
  display: none;
  border-radius: 45px;
  max-width: 480px;
  margin: 0 auto;
  text-align: end;
}
.header_nav__back::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("/website/img/menu_next_l.svg") center center / 20px no-repeat,
    #4a4a4a;
}
.main-menu {
  margin: 0;
  padding: 40px 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.main-menu__item {
  overflow: hidden;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}
.main-menu__link {
  display: block;
  padding: 13px 5px;
  font-size: 16px;
  line-height: 1.3em;
  color: #adb5bd;
}
.main-menu__item.active .main-menu__link {
  color: var(--orange);
}
.main-menu__link:hover {
  color: var(--orange);
}
.main-menu__item.active:first-child .main-menu__link {
  color: #adb5bd;
}
.main-menu__item:first-child:hover .main-menu__link {
  color: var(--orange);
}
.main-menu__link:active {
  color: var(--red);
}
@media (min-width: 993px) {
  .header_nav__top {
    display: none;
  }
  .header_nav__block:nth-child(2) {
    border-left: 1px solid #595959;
  }
  .header_nav__block:first-child .header_nav__top::before {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-color: rgb(32, 28, 29, 0.98);
    top: 0;
    right: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@media (min-width: 1500px) {
  .header_nav__block:nth-child(2) {
    padding-left: 120px;
  }
}

/* Медики для шапки */
@media (max-width: 1480px) {
  .header_nav__block {
    padding-left: 30px;
  }
  .header_nav__btn {
    max-width: 200px;
  }
  .main-menu {
    padding: 20px 0;
  }
}
@media (max-width: 1380px) {
  .main-menu__link {
    padding: 10px 2px;
  }
}
@media (max-width: 1280px) {
  .header__top-box {
    padding-right: 75px;
    padding-left: 75px;
    column-gap: 50px;
  }
  .header__bottom.is-open {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .main-menu {
    -webkit-column-count: initial;
    -moz-column-count: initial;
    column-count: initial;
  }
  .header__cross-box,
  .header__fitness-box {
    column-gap: 25px;
  }
  .header__link-adr {
    font-size: 16px;
    margin-top: 3px;
  }
  .header_lk {
    max-width: 80px;
  }
}
@media (max-width: 1080px) {
  .header__cross-box,
  .header__fitness-box {
    column-gap: 15px;
  }
  .header__link-adr {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .header__link-adr {
    display: none;
  }
  .header__top-box {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .header__cross-box,
  .header__fitness-box {
    width: calc(50% - 25px);
  }
  .header__link-tel-cross,
  .header__link-tel-fitness {
    font-size: 20px;
    line-height: 24px;
  }

  .header__link-cross,
  .header__link-fitness {
    font-size: 0;
    max-width: 150px;
  }
  .header__bottom.is-open {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: none;
    transform: none;
    background: #121212;
    max-height: 100vh;
    padding-top: 80px;
  }
  .header_nav {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .header_nav__block {
    padding: 20px;
  }
  .header_nav__top {
    padding: 0;
  }
  .main-menu_wrap {
    position: absolute;
    z-index: 110;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #121212;
    padding: 70px 20px 30px;
    -webkit-transition: translate 0.2s;
    transition: translate 0.2s;
  }
  .header_nav__block.active .main-menu_wrap {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .header_nav__btn {
    display: block;
    border-radius: 15px;
    background-color: #2a2a2a;
    padding: 45px 30px;
    padding-right: 125px;
    max-width: 640px;
    margin: 0 auto;
    cursor: pointer;
  }
  .header_nav__btn::before {
    display: block;
  }
  .header_nav__btn svg {
    width: 220px;
  }
  .header_nav__back {
    display: block;
  }
  .main-menu__item {
    margin-bottom: 10px;
  }
  .main-menu__link {
    max-width: 340px;
    font-size: 18px;
    margin: 0 auto;
  }
  .burger {
    right: 20px;
  }
  .header_lk {
    left: 20px;
  }
}
@media (max-width: 768px) {
  .header__top-box {
    padding: 10px 70px 10px;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .header__top::before {
    height: 40px;
  }
  .header__cross-box,
  .header__fitness-box {
    width: calc(50% - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    row-gap: 10px;
  }
  .header__fitness-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header__link-tel-cross,
  .header__link-tel-fitness {
    font-size: 15px;
    line-height: 15px;
  }
  .header__link-cross,
  .header__link-fitness {
    max-width: 130px;
  }
  .burger {
    right: 20px;
    top: 20px;
  }
  .header_lk {
    left: 20px;
    top: 20px;
  }
}
@media (max-width: 576px) {
  .header__link-cross,
  .header__link-fitness {
    max-width: 100px;
  }
  .main-menu__item {
    margin-bottom: 5px;
  }
  .main-menu__link {
    font-size: 16px;
  }
  .header_lk {
    font-size: 12px;
    max-width: 65px;
    left: 10px;
  }
}
@media (max-width: 440px) {
  .header__top-box {
    -webkit-columns: 20px;
    -moz-columns: 20px;
    columns: 20px;
  }
  .header__link-cross,
  .header__link-fitness {
    max-width: 80px;
  }
  .header__link-tel-cross,
  .header__link-tel-fitness {
    font-size: 14px;
    line-height: initial;
  }
  .header__bottom.is-open {
    padding-top: 60px;
  }
  .header_nav__btn {
    padding: 35px 20px;
    padding-right: 100px;
  }
  .header_nav__btn::before {
    width: 60px;
    height: 60px;
    right: 20px;
  }
  .header_nav__back::before {
    width: 54px;
    height: 54px;
  }
  .main-menu {
    padding: 10px 0;
  }
  .main-menu__item {
    margin-bottom: 0;
  }
  .header_lk {
    max-width: 58px;
    left: 5px;
    top: 15px;
  }
}
@media (max-width: 360px) {
  .header__top-box {
    column-gap: 20px;
    padding-left: 64px;
    padding-right: 64px;
  }
  .header__cross-box,
  .header__fitness-box {
    width: calc(50% - 10px);
  }
}
/* ----ГЛАВНАЯ--- */
.mainpage {
  background-color: #0d0d0d;
}

/* СЛАЙДЕР НА ГЛАВНОЙ */
.m-slider {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.m-slider__wrap-list {
  width: 100%;
  margin: 0;
}

.m-slider__slide {
  position: relative;
}

.m-slider__image {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.m-slider__slide-box {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.m-slider__slide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  height: 100%;
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.m-slider__slide-text * {
  font-family: var(--font-Roboto);
  color: var(--white);
}

.m-slider__slide-popup {
  position: absolute;
  left: 43.2%;
  bottom: 8.5%;
  width: 14%;
  height: 7.5%;
  font-size: 0;
}

.m-slider__slide-header {
  text-align: center;
  margin: 0;
  font-size: 100px;
  line-height: 110px;
  font-style: italic;
}

.m-slider__slide-link {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 22px 55px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--orange);
  border: 1px solid var(--orange);
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.m-slider__slide-link:hover {
  color: var(--orange);
  background-color: var(--white);
}

.m-slider__slide-link:active {
  opacity: 0.8;
}

.m-slider__btn-prev,
.m-slider__btn-next {
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.m-slider__btn-prev {
  left: 5%;
}

.m-slider__btn-prev::after,
.m-slider__btn-next::after {
  width: 40px !important;
  height: 40px !important;
  content: "";
  background-color: transparent;
  border-bottom: 2px solid var(--white);
}

.m-slider__btn-prev::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-left: 2px solid var(--white);
}

.m-slider__btn-next {
  right: 5%;
}

.m-slider__btn-next::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-right: 2px solid var(--white);
}

.m-slider .m-slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  max-width: 1530px;
  padding-left: 35px;
  padding-right: 35px;
  bottom: 75px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.m-slider .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  background-color: var(--white);
  margin: 0;
}

.m-slider .swiper-pagination-bullet-active {
  background-color: transparent;
}

/* Медики для главного слайдера */
@media (max-width: 1280px) {
  .m-slider__slide-header {
    font-size: 70px;
    line-height: 75px;
  }

  .m-slider__slide-link:hover {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
  }
}

@media (max-width: 992px) {
  .m-slider__slide-text {
    row-gap: 40px;
  }

  .m-slider__slide-header {
    font-size: 50px;
    line-height: 50px;
  }

  .m-slider__slide-link {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .m-slider__slide-text {
    row-gap: 30px;
  }

  .m-slider__slide-header {
    font-size: 36px;
    line-height: 36px;
  }

  .m-slider__slide-link {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .m-slider__btn-prev,
  .m-slider__btn-next {
    width: 35px;
    height: 35px;
    background-color: #dee1e2a2;
  }

  .m-slider__btn-prev {
    left: 10px;
  }

  .m-slider__btn-next {
    right: 10px;
  }

  .m-slider__btn-prev::after,
  .m-slider__btn-next::after {
    width: 20px !important;
    height: 20px !important;
    text-align: center;
    font-size: 18px;
    height: 20px;
    font-weight: 500;
    color: var(--black);
    -webkit-transform: none;
    transform: none;
    border: none;
  }

  .m-slider__btn-next::after {
    content: "next";
  }

  .m-slider__btn-prev::after {
    content: "prev";
  }

  .m-slider .m-slider__pagination {
    left: 0;
    -webkit-transform: none;
    transform: none;
    bottom: 20px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

@media (max-width: 576px) {
  .m-slider__slide-header {
    font-size: 28px;
    line-height: 28px;
  }

  .m-slider__slide-link {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* --СЕКЦИЯ "ВЫБЕРИ КЛУБ"-- */
.club {
  padding: 50px 0 50px;
  background-color: var(--off-white);
}

.club--mainpage {
  padding: 80px 0 110px;
}

.club-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.club__header {
  text-align: left;
  padding-top: 30px;
  font-size: 35px;
  line-height: 45px;
  color: var(--off-black);
}

.club__header > span {
  position: relative;
  display: inline-block;
  padding-right: 35px;
}

.club__header > span::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("/website/img/club_arrow_icon.png");
}

.club__place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
  opacity: 0.6;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.club__place > a > svg {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.club__place:hover {
  opacity: 1;
}

.club__place:hover > a > svg {
  -webkit-filter: none;
  filter: none;
}

.club__place-text {
  padding: 20px 35px;
  background-color: var(--white);
  border-radius: 20px;
  row-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.club__adres-link {
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.club__adres-link > svg {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.club__contacts-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.club__tel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.club__tel-box * {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.club__whatsapp-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Медики для секции ВЫБЕРИ КЛУБ */
@media (max-width: 1280px) {
  .club--mainpage {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .club-box {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .club__header {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    padding: 0;
  }

  .club__place {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 40px;
    border-radius: 20px;
    background-color: var(--white);
    opacity: 1;
  }

  .club__place:hover {
    opacity: 1;
  }

  .club__place:active {
    opacity: 1;
    background-color: rgb(245, 228, 173);
  }

  .club__place > a {
    max-width: 350px;
  }

  .club__place > a > svg {
    -webkit-filter: none;
    filter: none;
  }

  .club__place-text {
    padding: 0;
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .club-box {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .club__place {
    padding: 15px;
    row-gap: 30px;
  }

  .club__place > a {
    max-width: 290px;
  }

  .club__adres-link,
  .club__tel-caption {
    font-size: 14px;
  }

  .club__link-tel {
    font-size: 18px;
    line-height: 22px;
  }

  .club__adres-link {
    padding-left: 42px;
  }

  .club__whatsapp-link {
    max-width: 28px;
  }

  .club__adres-link > svg {
    left: 7px;
  }
}

@media (max-width: 420px) {
  .club-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .club__place {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 350px;
  }
}

/* СЕКЦИЯ "ЦЕНЫ НА КЛУБНЫЕ КАРТЫ" */
.price-card {
  padding: 80px 0;
  background-color: var(--off-black);
}

.price-card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  column-gap: 3%;
}

.price-card__col {
  width: 30%;
}

.price-card__col--middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
  padding: 30px 0 30px;
}

.price-card__header {
  color: var(--white);
  text-align: center;
}

.price-card__link {
  padding: 20px 40px;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--orange);
  border: 2px solid var(--orange);
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.price-card__link:hover {
  background-color: var(--orange);
  color: var(--white);
}

.price-card__link:active {
  background-color: var(--orange);
  color: var(--white);
  opacity: 0.8;
}

/* Медики для секции ЦЕНЫ на КАРТЫ */
@media (max-width: 1280px) {
  .price-card {
    padding: 50px 0;
  }

  .price-card__col--middle {
    padding: 10px 0 10px;
  }

  .price-card__link {
    padding: 10px 20px;
  }

  .price-card__link:hover {
    background-color: transparent;
    color: var(--orange);
  }
}

@media (max-width: 768px) {
  .price-card__box {
    padding: 0 15px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .price-card__col {
    width: 46%;
  }

  .price-card__col--left {
    display: none;
  }

  .price-card__col--middle {
    padding: 0;
  }

  .price-card__link {
    padding: 10px 10px;
    font-size: 12px;
    line-height: 14px;
  }

  .price-card__image {
    display: none;
  }

  .price-card__col--right {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    background-image: url("/website/img/card-item_bg.png");
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: contain;
  }
}

@media (max-width: 576px) {
  .price-card__col--middle {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .price-card__header {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .price-card__box {
    padding: 0;
  }
}

/* СЕКЦИЯ "РАСПИСАНИЕ" */
.schedule {
  position: relative;
  overflow: hidden;
  background-color: var(--off-white);
}
.schedule::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  bottom: 0;
  width: 50vw;
  background-image: url("/website/img/schedule_bg.jpg");
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: auto 100%;
}
.schedule__content {
  width: 50%;
  padding: 30px 100px 35px 0;
}
.schedule__header {
  margin: 0 0 30px;
}
.schedule__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.schedule__list-item {
  border-radius: 15px;
}
.schedule__gym-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px 20px;
  background-color: var(--white);
  border-radius: 15px;
  -webkit-transition: -webkit-box-shadow 0.25s;
  transition: -webkit-box-shadow 0.25s;
  transition: box-shadow 0.25s;
  transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
}
.schedule__gym-link:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
}
a.mainpage__schedule_link {
  width: 100%;
  justify-content: center;
  padding: 20px 10px;
  font-size: 15px;
  margin-top: 30px;
}
/* Медики для секции РАСПИСАНИЕ */
@media (max-width: 1280px) {
  .schedule__content {
    padding: 30px 30px 40px 0;
  }
  .schedule__header {
    margin-bottom: 50px;
  }
  .schedule__list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .schedule__gym-link {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
    box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
  }
  .schedule__gym-link:active {
    background-color: rgb(245, 228, 173);
  }
  a.mainpage__schedule_link {
    max-width: 200px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .schedule::before {
    left: 53%;
  }
  .schedule__content {
    padding: 25px 0;
  }
  .schedule__header {
    margin-bottom: 30px;
  }
  .schedule__gym-link {
    padding: 15px 10px;
  }
  a.mainpage__schedule_link {
    max-width: 160px;
    padding: 8px;
    font-size: 13px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .schedule::before {
    left: 65%;
  }

  .schedule__content {
    width: 64%;
  }

  .schedule__list {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
}

/* СЕКЦИЯ "ЗАЛЫ CROSS и FITNESS" */
.gyms {
  padding: 80px 0 80px;
  background-color: var(--off-black);
}

.gyms__header {
  margin: 0 0 70px;
  text-align: center;
  color: var(--white);
}

.f-slider,
.c-slider,
.c-slider-2 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
}

.f-slider {
  margin-bottom: 120px;
}

.f-slider__wrap-list,
.c-slider__wrap-list,
.c-slider-2__wrap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 25px;
}

.f-slider__slide-title {
  color: var(--white);
  margin: 0;
  font-size: 23px;
  line-height: 40px;
  font-weight: 500;
}

.f-slider__btn-prev,
.f-slider__btn-next,
.c-slider__btn-prev,
.c-slider__btn-next,
.c-slider-2__btn-prev,
.c-slider-2__btn-next {
  top: 220px;
  width: 55px;
  height: 55px;
  background-color: var(--white);
  opacity: 0.7;
  font-size: 0px;
}

.f-slider__btn-prev::after,
.f-slider__btn-next::after,
.c-slider__btn-prev::after,
.c-slider__btn-next::after,
.c-slider-2__btn-prev::after,
.c-slider-2__btn-next::after {
  font-size: 32px;
  color: #0d0d0d;
}

.gyms__subtitle {
  position: relative;
  padding-bottom: 40px;
  margin: 0 0 50px;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  line-height: 75px;
  font-style: italic;
  text-align: center;
  color: var(--white);
}

.gyms__subtitle::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--orange);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-slider__slide-title,
.c-slider-2__slide-title {
  margin: 40px 0 25px;
  font-size: 22px;
  line-height: 40px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}

.c-slider__descr,
.c-slider-2__descr {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 20px;
  color: #bbbbbb;
}

/* Медики для секции ЗАЛЫ */
@media (max-width: 1280px) {
  .gyms {
    padding: 50px 0;
  }

  .gyms__header {
    margin-bottom: 50px;
  }

  .f-slider {
    margin-bottom: 80px;
  }

  .f-slider__slide {
    row-gap: 15px;
  }

  .f-slider__slide-title {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }

  .f-slider__btn-prev,
  .f-slider__btn-next,
  .c-slider__btn-prev,
  .c-slider__btn-next,
  .c-slider-2__btn-prev,
  .c-slider-2__btn-next {
    top: 150px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .f-slider__btn-prev,
  .f-slider__btn-next {
    top: 45%;
  }

  .f-slider__btn-prev,
  .c-slider__btn-prev,
  .c-slider-2__btn-prev {
    left: 0;
  }

  .f-slider__btn-next,
  .c-slider__btn-next,
  .c-slider-2__btn-next {
    right: 0;
  }

  .f-slider__btn-prev::after,
  .f-slider__btn-next::after,
  .c-slider__btn-prev::after,
  .c-slider__btn-next::after,
  .c-slider-2__btn-prev::after,
  .c-slider-2__btn-next::after {
    font-size: 20px;
  }

  .gyms__subtitle {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 32px;
    line-height: 40px;
  }

  .gyms__subtitle::after {
    height: 2px;
    width: 80px;
  }

  .c-slider__slide-title,
  .c-slider-2__slide-title {
    margin: 15px 0 15px;
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .gyms {
    padding-bottom: 20px;
  }

  .gyms__header {
    margin-bottom: 30px;
  }

  .f-slider {
    margin-bottom: 60px;
  }

  .f-slider__slide {
    row-gap: 10px;
  }

  .gyms__subtitle {
    font-size: 22px;
    line-height: 28px;
  }

  .c-slider__slide-title,
  .c-slider-2__slide-title {
    margin: 10px 0 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .c-slider__descr,
  .c-slider-2__descr {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 576px) {
  .gyms__header {
    font-size: 24px;
    line-height: 30px;
  }

  .f-slider__slide-title {
    font-size: 16px;
    line-height: 20px;
  }

  .c-slider__btn-prev,
  .c-slider__btn-next,
  .c-slider-2__btn-prev,
  .c-slider-2__btn-next {
    top: 28%;
  }
}

/* СЕКЦИЯ "АБОНЕМЕНТ" */
.season {
  padding: 50px 0;
  background-color: var(--off-white);
}

.mainpage__season {
  padding-top: 60px;
  padding-bottom: 70px;
}

.season__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.season__col {
  width: 42%;
}

.season__col--text {
  width: 53%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.season__header {
  margin: 0 0 70px;
  color: #232020;
  text-align: left;
}
.season__link-app {
  padding: 16px 60px;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--orange);
  border: 2px solid var(--orange);
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.season__link-app:hover {
  background-color: var(--orange);
  color: var(--white);
}
.season__link-app:active {
  background-color: var(--orange);
  color: var(--white);
  opacity: 0.8;
}
@media (min-width: 1480px) {
  .season--big .season__col--image {
    width: 51%;
  }
  .season--big .season__col--text {
    width: 46%;
    max-width: 655px;
    margin-bottom: 50px;
  }
  .season--big .season__header {
    margin-bottom: 50px;
  }
}
/* Медики для секции АБОНЕМЕНТ */
@media (max-width: 1280px) {
  .season__col {
    width: 46%;
  }
  .season__col--text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .season__box {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .season__header {
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 50px;
  }
  .season__col--image {
    width: 40%;
  }
  .season__col--text {
    width: auto;
  }

  .season__link-app:hover {
    background-color: transparent;
    color: var(--orange);
  }
}

@media (max-width: 768px) {
  .season {
    padding: 30px 0 30px;
  }

  .season__header {
    font-size: 30px;
    line-height: 35px;
  }

  .season__link-app {
    padding: 7px 25px;
  }
}

@media (max-width: 576px) {
  .season__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
  }

  .season__col {
    width: 100%;
  }

  .season__col--image {
    max-width: 200px;
  }

  .season__col--text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .season__header {
    margin-bottom: 30px;
  }

  .season__header::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.app-form-box {
  max-width: 1000px;
  width: 100%;
  padding: 50px 130px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  background-color: var(--white);
}

.app-form {
  width: 100%;
  position: relative;
}

.app-form__header {
  margin-bottom: 20px;
}

.app-form__select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  padding: 20px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app-form__subtitle {
  margin: 0;
  margin-right: 37px;
  font-family: var(--font-Roboto);
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  color: var(--app-dark);
}

.app-form__subtitle > span {
  position: relative;
  padding-right: 22px;
}

.app-form__subtitle > span::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("/website/img/club_arrow_icon.png");
  background-size: cover;
}

.app-form__radio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.app-form__gym-link {
  display: block;
  padding: 15px 18px;
  border-radius: 15px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.24);
  -webkit-transition: background-color var(--short);
  transition: background-color var(--short);
  cursor: pointer;
}

.app-form__radio:checked + .app-form__gym-link {
  background-color: #f8dfcb;
}

.app-form__gym-link--cross {
  margin-right: 70px;
}

.app-form__gym-link:hover {
  background-color: #f5d2b5;
}

.app-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}

.app-form__inputs-box {
  max-width: calc(50% - 35px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.app-form__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.app-form__input {
  position: relative;
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  line-height: 30px;
  border: 1px solid var(--black);
  border-radius: 5px;
}

.app-form__descr {
  margin: 20px 0 20px;
  font-size: 14px;
  line-height: 16px;
  color: var(--off-black);
}

.app-form__button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(50% - 35px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.app-form__link {
  color: var(--orange);
  text-decoration: underline;
}

.app-form__btn-submit {
  position: relative;
  padding: 14px 48px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  cursor: pointer;
}

.app-form__btn-submit:hover {
  color: var(--orange);
  background-color: var(--white);
}

.app-form__btn-submit:active {
  color: var(--orange);
  background-color: var(--white);
  opacity: 0.8;
}

.fancybox-slide--html .fancybox-close-small {
  top: 30px;
  right: 30px;
  padding: 0;
  color: var(--black);
}

.app-form .captcha_row {
  margin-top: 8px;
}

/* Медики для попапа формы заказа абика */
@media (max-width: 992px) {
  .app-form-box {
    padding: 50px;
  }

  .app-form__select-box {
    margin-bottom: 10px;
  }

  .app-form__form {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .app-form__inputs-box,
  .app-form__button-box {
    max-width: calc(50% - 20px);
  }

  .app-form__gym-link:hover {
    background-color: var(--white);
  }

  .app-form__btn-submit:hover {
    color: var(--white);
    background-color: var(--orange);
  }
}

@media (max-width: 768px) {
  .app-form-box {
    padding: 30px;
  }

  .app-form__header {
    margin-bottom: 10px;
  }

  .app-form__select-box {
    padding: 15px 0;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }

  .app-form__subtitle {
    margin-right: 0;
  }

  .app-form__gym-link--cross {
    margin-right: 0;
  }

  .app-form__form {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .app-form__inputs-box,
  .app-form__button-box {
    max-width: calc(50% - 10px);
    height: auto;
  }

  .app-form__input {
    line-height: 24px;
  }

  .app-form__btn-submit {
    padding: 11px 25px;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 576px) {
  .app-form-box {
    padding-left: 12px;
    padding-right: 12px;
  }
  .app-form__header {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }
  .app-form__header.header-line {
    padding-bottom: 5px;
  }
  .app-form__header.header-line::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .app-form__select-box {
    padding-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .app-form__subtitle {
    width: 100%;
  }

  .app-form__place {
    width: 47%;
  }
  .app-form__descr {
    font-size: 12px;
    line-height: 14px;
    margin: 15px 0 12px;
  }
  .app-form__inputs-box {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  .fancybox-slide--html .fancybox-close-small {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 480px) {
  .app-form__form {
    flex-wrap: wrap;
  }
  .app-form__inputs-box,
  .app-form__button-box {
    width: 100%;
    max-width: initial;
  }
  .app-form__btn-submit {
    margin: 0 auto;
  }
}

/* ------FOOTER------- */
.footer {
  position: relative;
  background-color: var(--off-black);
  overflow: hidden;
}

.footer__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1540px;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 15px;
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer__contacts--fitness {
  order: 1;
  margin: 0 auto;
}
.footer--fitness .footer__contacts--fitness {
  order: -1;
  margin: 0;
}
.footer--fitness .footer__contacts--cross {
  order: 1;
  margin: 0 auto;
}
.footer__logo {
  max-width: 85%;
}
.footer__contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.adres-link,
.tel-link {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  color: var(--white);
  -webkit-transition: color var(--short);
  transition: color var(--short);
}
.adres-link::before,
.tel-link::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  background-repeat: no-repeat;
}
.adres-link::before {
  width: 16px;
  height: 18px;
  background-image: url("/website/img/marker_grey_icon.png");
}
.tel-link::before {
  width: 19px;
  height: 18px;
  background-image: url("/website/img/phone_grey_icon.png");
}
.adres-link:hover,
.tel-link:hover {
  color: var(--orange);
}
.adres-link:active,
.tel-link:active {
  color: var(--red);
}
.footer__requisites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  margin-bottom: 15px;
}
.requisites > span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #676666;
}
.politics-link {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #e3913c;
  text-decoration: underline;
  -webkit-transition: color var(--short);
  transition: color var(--short);
}
.politics-link:hover {
  color: #eeba82;
  text-decoration: none;
}
.politics-link:active {
  color: var(--red);
  text-decoration: none;
}
.footer__col {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-right: auto;
  justify-content: space-between;
  background-color: #282526;
  padding: 50px 50px 30px;
  max-width: 600px;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 500px;
  max-height: 180px;
}
.footer__menu-item.active .footer__menu-link {
  color: var(--orange);
}
.footer__menu-link {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: var(--white);
  -webkit-transition: color var(--short);
  transition: color var(--short);
}
.footer__menu-link:hover {
  color: var(--orange);
}
.footer__menu-link:active {
  color: var(--red);
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
  color: #676666;
}
.footer_creator {
  display: block;
  padding-top: 2px;
}
.footer_creator a {
  white-space: nowrap;
}
/*-----Медики FOOTER------ */
@media (max-width: 1280px) {
  .footer__box {
    column-gap: 35px;
  }
  .footer__col {
    padding: 30px 30px 15px;
    max-width: 525px;
  }
  .footer__menu {
    column-gap: 25px;
  }
  .footer__contacts {
    padding: 30px 0 15px;
  }
  .footer__contacts--fitness,
  .footer--fitness .footer__contacts--cross {
    margin: 0;
  }
}
@media (max-width: 1140px) {
  .footer__menu {
    max-height: initial;
  }
}
@media (max-width: 992px) {
  .footer__box {
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 15px;
  }
  .adres-link:hover,
  .tel-link:hover {
    color: var(--white);
  }
  .footer__menu {
    display: none;
  }
  .footer__menu-link:hover {
    color: var(--white);
  }
  .politics-link:hover {
    color: #e3913c;
    text-decoration: underline;
  }
  .footer__col {
    order: 5;
    width: 100%;
    max-width: initial;
    z-index: 1;
    padding: 20px 0;
  }
  .footer__col::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100vw;
    height: 100%;
    background-color: #282526;
    z-index: -1;
  }
  .footer__copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer__box {
    column-gap: initial;
    justify-content: space-between;
  }
  .footer__contacts {
    width: 48.5%;
    row-gap: 8px;
  }

  .footer__contact-box {
    row-gap: 5px;
  }

  .adres-link,
  .tel-link {
    padding-left: 22px;
    font-size: 12px;
    line-height: 18px;
  }

  .adres-link::before,
  .tel-link::before {
    top: 0;
  }

  .requisites > span {
    font-size: 12px;
    line-height: 14px;
  }

  .politics-link {
    font-size: 12px;
    line-height: 18px;
  }
}

/* ////////////////////////// */

/* СТРАНИЦА "О КЛУБЕ" */

.about {
  background-color: var(--black-two);
}

/* Секция переключения табов */
.tabs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: var(--off-white);
}

.tabs-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 0;
  max-width: 1500px;
}

@media screen and (min-width: 1380px) {
  .tabs-box {
    padding-right: 120px;
  }
}

.tabs__header {
  position: absolute;
  left: 35px;
  top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 35px;
  line-height: 45px;
  color: var(--off-black);
  text-transform: uppercase;
}

.tabs__header > span {
  position: relative;
  display: inline-block;
  padding-right: 35px;
}

.tabs__header > span::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("/website/img/club_arrow_icon.png");
}

.tabs__link-box {
  max-width: 470px;
}
.tabs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 55px;
  background-color: var(--white);
  opacity: 0.7;
  border-radius: 15px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: opacity, -webkit-box-shadow, -webkit-filter;
  transition: opacity, -webkit-box-shadow, -webkit-filter;
  transition: opacity, box-shadow, filter;
  transition: opacity, box-shadow, filter, -webkit-box-shadow, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.tabs__link.active {
  opacity: 1;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  -webkit-filter: none;
  filter: none;
  -webkit-transition: opacity, -webkit-box-shadow, -webkit-filter;
  transition: opacity, -webkit-box-shadow, -webkit-filter;
  transition: opacity, box-shadow, filter;
  transition: opacity, box-shadow, filter, -webkit-box-shadow, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.tabs__link:hover {
  opacity: 0.9;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  -webkit-filter: none;
  filter: none;
}

/* Медики для секции переключения табов */
@media (max-width: 1280px) {
  .tabs {
    padding: 20px 0 25px;
  }

  .tabs-box {
    max-width: 1100px;
  }

  .tabs__header {
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
  .tabs__link-box {
    max-width: 345px;
  }
  .tabs__link {
    padding: 10px 40px;
  }
}
@media (max-width: 1140px) {
  .tabs-box {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .tabs__link-box {
    max-width: 300px;
  }
  .tabs__link {
    padding: 10px 30px;
  }
}
@media (max-width: 992px) {
  .tabs-box {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 940px) {
  .tabs-box {
    padding-top: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tabs__header {
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
  .tabs__header br {
    display: none;
  }
}

@media (max-width: 768px) {
  .tabs-box {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .tabs__header {
    left: 15px;
  }
  .tabs__link {
    padding: 10px 25px;
  }
}
@media (max-width: 600px) {
  .tabs-box {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .tabs__header {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .tabs-box {
    row-gap: 15px;
  }
}
@media (max-width: 480px) {
  .tabs__header {
    font-size: 18px;
  }
  .tabs__header > span::after {
    width: 15px;
    height: 15px;
    background-size: 100%;
  }
  .tabs {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .tabs__header > span {
    padding-right: 20px;
  }
  .tabs-box {
    padding-top: 40px;
  }
  .tabs__link {
    padding: 10px 20px;
  }
}
@media (max-width: 380px) {
  .tabs-box {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .tabs__link {
    padding: 6px 12px;
  }
}

/* КОНТЕНТ таба CROSS */

/* Секция Intro (cross) */
.cross-intro {
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
}

.cross-page__box {
  position: relative;
}

.cross-page__box::before {
  position: absolute;
  content: "";
  right: -80px;
  top: -245px;
  width: 538px;
  height: 530px;
  background-image: url("/website/img/cross-page_bg.png");
  background-repeat: no-repeat;
}

.cross-intro__text {
  max-width: 70%;
}

.cross-intro__header {
  margin-bottom: 70px;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
}

.cross-intro__descr {
  margin: 0;
  font-size: 35px;
  line-height: 35px;
  font-weight: 500;
  color: var(--white);
}

/* Медики для секции переключения табов */
@media (max-width: 1280px) {
  .cross-intro {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .cross-intro__header {
    margin-bottom: 40px;
    max-width: 670px;
  }

  .cross-intro__descr {
    font-size: 30px;
  }

  .cross-page__box::before {
    right: 5%;
    top: -138px;
    width: 274px;
    height: 270px;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .cross-intro {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .cross-intro__text {
    max-width: none;
  }

  .cross-intro__header {
    margin-bottom: 30px;
  }

  .cross-page__box::before {
    right: 20px;
    top: -70px;
    width: 133px;
    height: 130px;
    background-size: cover;
  }

  .cross-intro__descr {
    font-size: 20px;
    line-height: 24px;
  }

  @media (max-width: 576px) {
    .cross-intro {
      padding-top: 30px;
      padding-bottom: 40px;
    }

    .cross-intro__header {
      max-width: 75%;
    }

    .cross-intro__header::after {
      left: 0;
      -webkit-transform: none;
      transform: none;
    }

    .cross-page__box::before {
      right: 15px;
      top: -50px;
      width: 102px;
      height: 100px;
    }
  }
}

/* Секция "Тренажерный зал" (cross) */
.cross-gym {
  padding-bottom: 35px;
}

.cross-gym__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.cross-gym__col {
  width: 46%;
}

.cross-gym__header {
  margin-bottom: 50px;
  color: var(--white);
}

.cross-descr {
  margin: 0 0 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.cross-gym__descr {
  color: var(--white);
}

/* Секция "Кардиозона" (cross) */
.cross-cardio {
  padding-top: 35px;
  padding-bottom: 35px;
}

.cross-cardio__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.cross-cardio__col {
  width: 46%;
}

.cross-cardio__col--text {
  position: relative;
  padding: 90px 10px 90px 100px;
}

.cross-cardio__col--text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 155%;
  background-color: var(--off-white);
}

.cross-cardio__header {
  margin-bottom: 50px;
  text-transform: uppercase;
  color: var(--off-black);
}

.cross-cardio__descr {
  margin: 0;
  position: relative;
  color: var(--off-black);
}

.cross-cardio__col--image {
  position: relative;
  z-index: 1;
}

.cross-cardio__image {
  display: block;
  -webkit-transform: translateY(-35px);
  transform: translateY(-35px);
}

/* Секция "зона функц. трени." (cross) */
.cross-zft {
  padding-top: 90px;
  padding-bottom: 100px;
}

.cross-zft__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.cross-zft__col {
  width: 46%;
}

.cross-zft__header {
  margin-bottom: 50px;
  color: var(--white);
  text-transform: uppercase;
}

.cross-zft__descr {
  color: var(--white);
}

/* Секция "workout" (cross) */
.cross-workout {
  padding-top: 35px;
  padding-bottom: 35px;
}

.cross-workout__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.cross-workout__col {
  width: 46%;
}

.cross-workout__col--text {
  position: relative;
  padding: 90px 10px 90px 100px;
}

.cross-workout__col--text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 155%;
  background-color: var(--off-white);
}

.cross-workout__header {
  margin-bottom: 50px;
  text-transform: uppercase;
  color: var(--off-black);
}

.cross-workout__descr {
  margin: 0;
  position: relative;
  color: var(--off-black);
}

.cross-workout__col--image {
  position: relative;
  z-index: 1;
}

.cross-workout__image {
  display: block;
  -webkit-transform: translateY(-35px);
  transform: translateY(-35px);
}

/* Секция "аэрозал" (cross) */
.cross-aeroroom {
  padding-top: 90px;
  padding-bottom: 100px;
}

.cross-aeroroom__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.cross-aeroroom__col {
  width: 46%;
}

.cross-aeroroom__col--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cross-aeroroom__header {
  margin-bottom: 50px;
  color: var(--white);
  text-transform: uppercase;
}

.cross-aeroroom__descr {
  color: var(--white);
}

/* Секция "слайдер для кросспэйдж" (cross) */
.cross-page__slider-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Секция "Онлайн-прогулка" (cross) */
.stroll {
  padding-top: 130px;
  overflow: hidden;
}

.stroll__box {
  position: relative;
  background-color: var(--off-white);
}

.stroll__box::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 52%;
  top: -130px;
  background-image: url("/website/img/stroll_people.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
}

.stroll__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  padding: 90px 5px 90px 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  z-index: 1;
}

.stroll__text::before {
  position: absolute;
  content: "";
  right: 20%;
  bottom: 70px;
  width: 132px;
  height: 160px;
  background-image: url("/website/img/o-stroll-arrow.png");
  background-repeat: no-repeat;
}

.stroll__header {
  margin-bottom: 50px;
  text-transform: none;
}

.stroll__descr {
  margin-bottom: 70px;
}

.o-stroll-link {
  display: inline-block;
  padding: 20px 45px;
  border: 1px solid var(--orange);
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--orange);
  text-transform: uppercase;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.o-stroll-link:hover {
  background-color: var(--white);
  color: var(--orange);
}

/* Медики для секций
- тренажерный зал,
- кардиозона,
- зона ф. тренинга
- зона Workaut
- аэробный зал
- онлайн- прогулка
 (cross) */

@media (max-width: 1280px) {
  .cross-gym,
  .cross-cardio,
  .cross-zft,
  .cross-workout,
  .cross-aeroroom,
  .stroll {
    padding: 40px 0;
  }

  .cross-gym__col,
  .cross-cardio__col,
  .cross-zft__col,
  .cross-workout__col,
  .cross-aeroroom__col {
    width: 48%;
  }

  .cross-cardio__col--text,
  .cross-workout__col--text {
    padding: 40px 10px 30px 50px;
  }

  .stroll__text {
    padding: 80px 5px 80px 50px;
  }

  .cross-gym__header,
  .cross-cardio__header,
  .cross-zft__header,
  .cross-workout__header,
  .cross-aeroroom__header,
  .stroll__header {
    margin-bottom: 30px;
  }

  .cross-descr {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
  }

  .stroll__descr {
    margin-bottom: 70px;
  }

  .stroll__text::before {
    width: 92px;
    right: 8%;
    bottom: 85px;
    height: 110px;
    background-size: cover;
  }
}

@media (max-width: 992px) {
  .cross-gym,
  .cross-zft,
  .cross-aeroroom,
  .stroll {
    padding: 35px 0;
  }

  .cross-cardio,
  .cross-workout {
    background-color: var(--off-white);
    padding: 30px 0;
  }

  .cross-cardio__col--text,
  .cross-workout__col--text {
    padding: 0;
  }

  .cross-cardio__col--text::before,
  .cross-workout__col--text::before {
    content: none;
  }

  .cross-gym__box,
  .cross-zft__box,
  .cross-aeroroom__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }

  .cross-cardio__box,
  .cross-workout__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 25px;
  }

  .cross-gym__image,
  .cross-cardio__image,
  .cross-zft__image,
  .cross-workout__image,
  .cross-aeroroom__image {
    display: block;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: none;
    transform: none;
  }

  .cross-gym__header,
  .cross-cardio__header,
  .cross-zft__header,
  .cross-workout__header,
  .cross-aeroroom__header,
  .stroll__header {
    text-align: center;
  }

  .cross-gym__header::before,
  .cross-cardio__header::before,
  .cross-zft__header::before,
  .cross-workout__header::before,
  .cross-aeroroom__header::before,
  .stroll__header::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .cross-gym__col,
  .cross-cardio__col,
  .cross-zft__col,
  .cross-workout__col,
  .cross-aeroroom__col {
    width: 100%;
  }

  .stroll__box::before {
    right: 15%;
    bottom: 0;
    top: auto;
    width: 240px;
    height: 220px;
  }

  .stroll__text {
    width: 100%;
    padding: 30px 50px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .stroll__text::before {
    left: 261px;
    right: auto;
    bottom: 58px;
    width: 80px;
    height: 97px;
  }

  .stroll__descr {
    margin-bottom: 120px;
  }

  .o-stroll-link {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .o-stroll-link:hover {
    color: var(--white);
    background-color: var(--orange);
  }

  .o-stroll-link:hover:active {
    background-color: var(--white);
    color: var(--orange);
  }
}

@media (max-width: 768px) {
  .stroll__text {
    padding: 25px 25px 35px;
  }

  .stroll__text::before {
    left: 190px;
    right: auto;
    bottom: 49px;
    width: 50px;
    height: 60px;
  }

  .stroll__box::before {
    right: 10%;
    bottom: 0;
    top: auto;
    width: 160px;
    height: 140px;
  }

  .stroll__descr {
    margin-bottom: 70px;
  }

  .o-stroll-link {
    padding: 10px 13px;
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 576px) {
  .cross-descr {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .stroll__box::before {
    right: 50%;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    width: 120px;
    height: 100px;
  }

  .stroll__text {
    padding: 20px 15px 120px;
  }

  .stroll__text::before {
    content: none;
  }

  .o-stroll-link {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .stroll__descr {
    margin-bottom: 35px;
  }
}

/* Секция "УСЛУГИ" (cross) */
.cross-serv {
  padding-top: 100px;
  padding-bottom: 40px;
}

.cross-serv__header {
  margin-bottom: 50px;
  text-transform: uppercase;
  color: var(--white);
}

.cross-serv__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.75% 1fr 1.75% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1.75%;
  -moz-column-gap: 1.75%;
  column-gap: 1.75%;
  row-gap: 23px;
}

.cross-serv__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 38px 20px 20px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  background-color: #2f2c2d;
}

.cross-serv__image {
  width: 128px;
  height: 128px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.cross-serv__list-item .cross-serv__image {
  background-repeat: no-repeat;
  background-position: center;
}

.cross-serv__list-item:nth-child(1) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-1.png");
}

.cross-serv__list-item:nth-child(2) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-2.png");
}

.cross-serv__list-item:nth-child(3) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-3.png");
}

.cross-serv__list-item:nth-child(4) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-4.png");
}

.cross-serv__list-item:nth-child(5) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-5.png");
}

.cross-serv__list-item:nth-child(6) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-6.png");
}

.cross-serv__descr {
  margin: 0;
  width: 100%;
  font-size: 23px;
  line-height: 33px;
  font-weight: 500;
  color: var(--white);
}

/* Медики для секции УСЛУГИ */
@media (max-width: 1280px) {
  .cross-serv {
    padding: 40px 0;
  }

  .cross-serv__header {
    margin-bottom: 30px;
  }

  .cross-serv__list {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}

@media (max-width: 992px) {
  .cross-serv__list {
    gap: 30px;
  }

  .cross-serv__list-item .cross-serv__image {
    width: 75px;
    height: 75px;
    background-size: 50%;
  }

  .cross-serv__descr {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .cross-serv {
    padding: 35px 0;
  }

  .cross-serv__header {
    text-align: center;
    margin-bottom: 20px;
  }

  .cross-serv__header::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .cross-serv__list {
    gap: 15px;
  }

  .cross-serv__list-item {
    padding: 20px 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }

  .cross-serv__list-item .cross-serv__image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .cross-serv__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
  }

  .cross-serv__list-item {
    padding: 20px 30px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

/* Секция "Протеин" (cross) */
.protein {
  position: relative;
  padding-top: 60px;
  padding-bottom: 150px;
  overflow: hidden;
}

.protein::before {
  position: absolute;
  content: "";
  top: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--off-white);
}

.protein::after {
  position: absolute;
  content: "";
  bottom: -70px;
  left: 52%;
  width: 375px;
  height: 235px;
  background-image: url("/website/img/protein_baton.png");
  background-repeat: no-repeat;
}

.protein__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.protein__col {
  width: 46%;
}

.protein__image {
  display: block;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.protein__col--text {
  position: relative;
  padding-top: 70px;
}

.protein__col--text::before {
  position: absolute;
  content: "";
  left: 80%;
  top: 40px;
  width: 288px;
  height: 317px;
  background-image: url("/website/img/protein_bg.png");
  background-repeat: no-repeat;
}

.protein__header {
  margin-bottom: 40px;
}

/* Медики для секции Протеин */
@media (max-width: 1280px) {
  .protein {
    padding: 50px 0 160px;
  }
}

@media (max-width: 992px) {
  .protein {
    padding: 35px 0 120px;
    background-color: var(--off-white);
  }

  .protein::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 280px;
    height: 184px;
    bottom: -65px;
    background-size: cover;
  }

  .protein__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .protein__header {
    margin-bottom: 25px;
  }

  .protein__image {
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: none;
    transform: none;
  }

  .protein__col {
    width: 100%;
  }

  .protein__col--text {
    padding-top: 30px;
  }

  .protein__col--text::before {
    right: 0;
    left: auto;
    top: 30px;
    width: 160px;
    height: 176px;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .protein {
    padding: 35px 0 80px;
  }

  .protein::after {
    width: 180px;
    height: 120px;
    bottom: -36px;
  }

  .protein__header {
    text-align: center;
  }

  .protein__col--text::before {
    width: 100px;
    height: 112px;
  }
}

@media (max-width: 576px) {
  .protein__col--text::before {
    right: -15px;
    width: 75px;
    height: 90px;
    top: 44px;
  }

  .protein__header {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}

/* ABOUT FITNESS (ВАДИМ)  */
.about .fitness-page {
  background: url("/website/img/fitness-page_top.png") left 5% / auto no-repeat,
    url("/website/img/fitness-page_bottom.png") right bottom 10% / auto no-repeat,
    #201c1d;
}

.fitness-page__intro {
  padding-bottom: 85px;
}

.fitness-page__box {
  position: relative;
}

.fitness-page__box::before {
  position: absolute;
  content: "";
  right: -10px;
  top: -240px;
  width: 537px;
  height: 537px;
  background-image: url("/website/img/fitness-page_bg.png");
  background-repeat: no-repeat;
}

.fitness-intro__text {
  max-width: 70%;
}

.fitness-intro__header {
  text-align: left;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: var(--white);
}

.fitness-intro__descr {
  margin: 0;
  font-size: 35px;
  line-height: 1.3em;
  font-weight: 500;
  color: var(--white);
}

@media screen and (max-width: 1280px) {
  .fitness-page__box::before {
    right: 5%;
    top: -138px;
    width: 274px;
    height: 274px;
    background-size: cover;
  }

  .fitness-intro__descr {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .fitness-page__box::before {
    right: 20px;
    top: -70px;
    width: 133px;
    height: 133px;
  }

  .fitness-intro__descr {
    font-size: 20px;
  }
}

.fitness-gym__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.fitness-gym__col {
  width: 46%;
}

.fitness-gym__header {
  color: #fff;
  margin-bottom: 40px;
  padding-top: 25px;
}

.fitness-gym__descr {
  color: #fff;
  margin-bottom: 30px;
  max-width: 680px;
}

.fitness-page__gym {
  margin-bottom: 85px;
}

.fitness-page__cardio {
  padding-top: 75px;
}

.fitness-cardio__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.fitness-cardio__col {
  width: 46%;
}

.fitness-cardio__col--text {
  position: relative;
  padding: 110px 10px 90px 100px;
  width: 52%;
}

.fitness-cardio__col--text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 162%;
  background-color: var(--off-white);
}

.fitness-cardio__header {
  margin-bottom: 40px;
  padding-top: 25px;
  text-transform: uppercase;
  color: var(--off-black);
}

.fitness-cardio__descr {
  margin: 0;
  position: relative;
  color: var(--off-black);
}

.fitness-cardio__col--image {
  position: relative;
  z-index: 1;
}

.fitness-cardio__image {
  display: block;
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
}

.fitness-page__season,
.cross-page__season {
  margin-bottom: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1280px) {
  .fitness-page__season,
  .cross-page__season {
    margin-bottom: 50px;
  }

  .fitness-gym__descr,
  .fitness-cardio__descr {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .fitness-page__gym {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 992px) {
  .fitness-page__intro {
    padding-bottom: 30px;
  }

  .fitness-page__cardio {
    padding-top: 35px;
  }

  .fitness-gym__box,
  .fitness-cardio__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }

  .fitness-gym__col,
  .fitness-cardio__col {
    width: 100%;
  }

  .fitness-cardio__col--text {
    padding: 0;
  }

  .fitness-cardio__col--text::before {
    display: none;
  }

  .fitness-cardio__image,
  .fitness-gym__image {
    display: block;
    margin: 0 auto;
    -webkit-transform: none;
    transform: none;
  }

  .fitness-gym__descr {
    max-width: initial;
  }

  .fitness-gym__header,
  .fitness-cardio__header {
    text-align: center;
  }

  .fitness-gym__header::before,
  .fitness-cardio__header::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.depiction-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: var(--off-white);
  padding-top: 50px;
  padding-bottom: 50px;
}

.depiction-block__img {
  width: 46%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.depiction-block__img img {
  display: block;
  margin: 0 auto;
}

.depiction-block__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 46%;
  font-size: 20px;
}

.depiction-block .h2-second {
  color: inherit;
  padding-top: 25px;
  margin-bottom: 40px;
}

.depiction-block__text p {
  padding: 0;
  margin: 0 0 30px;
  max-width: 680px;
  line-height: 1.5em;
}

.depiction-block__text p.no-margin {
  margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
  .depiction-block__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .depiction-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }

  .depiction-block__img,
  .depiction-block__text {
    width: 100%;
  }

  .depiction-block .h2-second {
    text-align: center;
  }

  .depiction-block .h2-second::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .depiction-block__text p {
    max-width: initial;
  }
}

.billet-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
}

.billet-block__text {
  position: relative;
  width: 50%;
  margin-top: 75px;
  padding: 100px 0 75px 100px;
  font-size: 20px;
}

.billet-block__text::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 100%;
  width: 167%;
}

.billet-block .h2-second {
  padding-top: 20px;
  margin-bottom: 40px;
}

.billet-block__text p {
  position: relative;
  padding: 0;
  margin: 0 0 30px;
  line-height: 1.5em;
}

.billet-block__img {
  position: relative;
  z-index: 1;
  width: 46%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.billet-block__img img {
  display: block;
  margin: 0 auto;
}

.fitness-page__fight {
  padding-top: 50px;
}

.fitness-page__power {
  padding-top: 35px;
}

.fitness-page__cycling {
  margin-bottom: 60px;
}

.fitness-page__factional {
  overflow: hidden;
}

.fitness-page__factional .billet-block::before {
  content: "";
  position: absolute;
  width: calc(50% + 100px);
  height: 100%;
  bottom: 30px;
  right: 0;
  background: url("/website/img/factional_roll.png") right bottom / auto
    no-repeat;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  z-index: 1;
}

@media screen and (min-width: 993px) {
  .fitness-page__factional .billet-block__text {
    padding-bottom: 65px;
  }
}

.fitness-page__factional .billet-block__text::before {
  width: 150%;
}

@media screen and (max-width: 1380px) {
  .fitness-page__factional .billet-block::before {
    background-size: 100% auto;
  }
}

@media screen and (max-width: 1280px) {
  .billet-block__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .fitness-page__factional .billet-block::before {
    display: none;
  }

  .billet-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    background-color: #fff;
  }

  .billet-block__img,
  .billet-block__text {
    width: 100%;
  }

  .billet-block__text {
    margin: 0;
    padding: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .billet-block__text::before {
    display: none;
  }

  .billet-block .h2-second {
    text-align: center;
    margin-bottom: 30px;
  }

  .billet-block .h2-second::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .billet-block__text p {
    max-width: initial;
  }

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

  .fitness-page__fight,
  .fitness-page__power {
    padding-top: 0;
  }
}

.fitness-page__slider-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.fitness-page__stroll {
  padding-top: 85px;
}

.stroll__box--fitness::before {
  background-image: url("/website/img/stroll_people_fitness.png");
  top: -85px;
}

.stroll__box--fitness .stroll__header {
  padding-top: 20px;
  margin-bottom: 35px;
}

.stroll__box--fitness .stroll__text {
  font-size: 20px;
  padding: 60px 5px 70px 90px;
}

.stroll__box--fitness .stroll__text::before {
  bottom: 50px;
}

.stroll__box--fitness .fitness-descr {
  margin: 0 0 30px;
  line-height: 1.5em;
  max-width: 600px;
}

.stroll__box--fitness .stroll_notice {
  font-weight: 500;
  line-height: 1.5em;
  margin: 0 0 55px;
}

@media screen and (max-width: 992px) {
  .stroll__box--fitness .stroll__text {
    padding: 30px 50px 40px;
  }

  .stroll__box--fitness::before {
    right: 15%;
    bottom: 0;
    top: auto;
    width: 240px;
    height: 220px;
  }

  .stroll__box--fitness .stroll__header {
    margin-bottom: 15px;
  }

  .stroll__box--fitness .fitness-descr {
    max-width: initial;
    margin-bottom: 10px;
  }

  .stroll__box--fitness .stroll_notice {
    width: 100%;
    margin-bottom: 75px;
  }
}

.fitness-serv__header {
  padding-bottom: 20px;
  margin-bottom: 30px;
  color: var(--off-white);
}

.cross-serv__list-item:nth-child(7) .cross-serv__image {
  background-image: url("/website/img/cross-serv-ico-7.png");
}

@media screen and (max-width: 768px) {
  .stroll__box--fitness .stroll__text::before {
    left: 211px;
  }

  .fitness-serv__header {
    text-align: center;
  }

  .fitness-serv__header::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* СТРАНИЦА "ЦЕНЫ НА ФИТНЕС" */

/* Блок "ЦЕНЫ CROSS" */

.prices .cross-prices {
  background-color: var(--off-black);
  overflow: hidden;
}

.price__cross-cont {
  position: relative;
}

.prices__header {
  padding: 65px 0;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: var(--white);
}

.prices__cs-list {
  display: -ms-grid;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 46%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 140px;
  padding: 20px 0 60px;
  margin: 0;
  margin-bottom: 60px;
}

.prices__cs-list::before {
  position: absolute;
  content: "";
  left: 0;
  right: -162px;
  bottom: -350px;
  height: 1500px;
  background-image: url("/website/img/prices__cross-bg-item.jpg");
  background-repeat: no-repeat;
  background-position: right top;
}

.cs-price-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs-price-item__head {
  position: relative;
  margin-left: 35px;
  padding: 25px 30px 20px 54px;
  font-size: 18px;
  background-color: var(--orange);
  color: var(--white);
}

.cs-price-item__head::before {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: calc(100% - 45px);
  left: -35px;
  bottom: 0;
  background-color: var(--off-white);
}

.cs-price-item__head--dark {
  background-color: #302f2f;
}

.cs-price-item__head--dark .cs-price-item__header {
  color: var(--orange);
}

.cs-price-item__header {
  margin: 0 0 10px;
  font-family: var(--font-Golos);
  font-weight: 500;
  font-size: 35px;
  line-height: 40px;
}

.cs-price-item__subtitle {
  display: inline-block;
  line-height: 24px;
  color: var(--white);
}

.cs-price-item__content-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 60px 75px;
  background-color: var(--off-white);
}

.cs-price-item__text-box {
  padding: 0 0 50px 30px;
  font-size: 20px;
  line-height: 35px;
}

.cs-price-item__term-descr {
  color: var(--orange);
  margin: 0 0 25px;
  font-weight: 700;
}

.cs-price-item__caption {
  position: relative;
  margin: 0;
  margin-top: auto;
  padding-top: 30px;
  font-size: 15px;
  line-height: 20px;
}

.cs-price-item__caption::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 90px;
  height: 4px;
  background-color: var(--orange);
}

.cs-price-item--cards img {
  display: block;
  width: 70%;
  margin-bottom: 50px;
}

.cs-price-item--cards span {
  position: relative;
  color: var(--white);
}

.cross-prices .prices_program {
  color: var(--white);
}

@media (max-width: 1280px) {
  .prices__cs-list {
    grid-template-columns: repeat(2, 48.5%);
  }

  .cs-price-item__head {
    padding-left: 34px;
    margin-left: 20px;
  }

  .cs-price-item__head::before {
    width: 20px;
    left: -20px;
  }

  .prices__cs-list .cs-price-item--cards {
    padding: 30px 0 0 60px;
  }

  .cs-price-item--cards img {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .prices__header {
    padding: 45px 0;
    font-size: 40px;
    line-height: 50px;
  }

  .cs-price-item__head {
    font-size: 16px;
    padding: 20px 20px 20px 30px;
  }

  .cs-price-item__header {
    font-size: 30px;
  }

  .cs-price-item__content-box {
    padding: 25px 20px 40px;
  }

  .cs-price-item__text-box {
    padding: 0 0 25px 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .cs-price-item__caption {
    padding-top: 15px;
  }
}

@media (max-width: 768px) {
  .prices__cs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 50px;
  }

  .prices__header {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .prices__cs-list-item:nth-child(odd) .cs-price-item__head {
    background-color: var(--orange);
  }

  .prices__cs-list-item:nth-child(odd) .cs-price-item__header {
    color: var(--white);
  }

  .prices__cs-list-item:nth-child(even) .cs-price-item__head {
    background-color: #302f2f;
  }

  .prices__cs-list-item:nth-child(even) .cs-price-item__header {
    color: var(--orange);
  }

  .prices__cs-list::before {
    left: -50px;
    right: -150px;
    height: 1000px;
    bottom: -130px;
    background-position: right bottom;
    background-size: auto 100%;
  }

  .prices__cs-list .cs-price-item--cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .prices__cs-list {
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .cs-price-item__header {
    font-size: 24px;
    line-height: 32px;
  }

  .page-services_header::after,
  .prices_header::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .prices__cs-list::before {
    right: -50px;
    height: 700px;
  }
}

/* Блок "ЦЕНЫ Fitness" (ВАДИМ) */
.prices_content {
  padding-bottom: 30px;
}

.prices_intro {
  color: var(--white);
  padding: 122px 0 70px;
  font-size: 20px;
  background: url("/website/img/prices_intro-2.jpg") center bottom / auto
    no-repeat;
  /* background: url('/website/img/prices_intro.jpg') center bottom / auto no-repeat; */
}

.prices_header {
  text-transform: uppercase;
  padding-bottom: 20px;
  text-align: left;
  margin-bottom: 45px;
}

.prices_intro__desc {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
}

.prices_intro p {
  max-width: 820px;
  margin: 0 0 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 1280px) {
  .prices_intro {
    padding: 35px 0 40px;
    background: url("/website/img/prices_intro-2.jpg") center bottom / auto
      no-repeat;
  }

  .prices_header {
    margin-bottom: 30px;
  }

  .prices_intro__desc {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .prices_intro {
    padding: 30px 0 20px;
    font-size: 18px;
  }

  .prices_header {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .prices_intro__desc {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 576px) {
  .prices_header {
    text-align: center;
  }
}

.fitness-prices {
  color: var(--white);
  background-color: var(--off-black);
}

.prices_title {
  font-family: "Roboto";
  font-weight: 500;
  font-style: italic;
  text-align: center;
  font-size: 50px;
  padding: 65px 0;
}

.prices_grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 46%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 140px;
  padding: 20px 0 20px;
  margin-bottom: 60px;
}

.prices_grid.prices_grid--md {
  row-gap: 60px;
}

.prices_elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.prices_elem__header {
  position: relative;
  color: var(--white);
  margin-left: 35px;
  padding: 25px 30px 20px 54px;
  font-size: 18px;
}

.prices_elem__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: calc(100% - 45px);
  left: -35px;
  bottom: 0;
  background-color: var(--off-white);
}

.prices_elem__header--orange {
  background-color: var(--orange);
}

.prices_elem__header--gray {
  background-color: #302f2f;
}

.prices_elem__header p {
  font-size: 35px;
  font-weight: 500;
  margin: 0 0 10px;
}

.prices_elem__header--gray p {
  color: var(--orange);
}

.prices_elem__header span {
  display: block;
  min-height: 40px;
}

.prices_elem__block {
  position: relative;
  z-index: 1;
  color: var(--off-black);
  background-color: var(--off-white);
  font-size: 20px;
  padding: 30px 30px 20px 90px;
  min-height: 240px;
}

.prices_elem__block--gap {
  margin-bottom: 15px;
  padding-bottom: 40px;
}

.prices_elem__block--stripe::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  left: 90px;
  top: 0;
  background-color: var(--orange);
}

.prices_elem__block:nth-child(odd) {
  background-color: var(--white);
}

.prices_elem__block:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.prices_elem--compact .prices_elem__block {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
}

.prices_elem__block p {
  line-height: 1.7em;
  margin: 0 0 25px;
}

.prices_elem__block p b {
  display: block;
  color: var(--orange);
}

.prices_elem__block .prices_elem__block-once {
  color: #302f2f;
}

.prices_elem--decor {
  position: relative;
}

.prices_elem--decor::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("/website/img/prices_elem_decor.png") top right / 100%
    no-repeat;
  top: 0;
  right: 0;
  -webkit-transform: translate(21%, -48%);
  transform: translate(21%, -48%);
}

.prices_grid__cards {
  text-align: center;
  padding-left: 10px;
  font-size: 35px;
  font-weight: 500;
}

.prices_grid__cards span {
  position: relative;
  display: inline-block;
  padding-left: 65px;
  text-align: left;
}

.prices_grid__cards span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 45px;
  background: url("/website/img/prices_cards_triangle.png") center center / 100%
    no-repeat;
}

@media screen and (max-width: 1280px) {
  .prices_grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 48.5%);
  }

  .prices_elem__header {
    padding-left: 34px;
    margin-left: 20px;
  }

  .prices_elem__header::before {
    width: 20px;
    left: -20px;
  }

  .prices_elem__block {
    padding-left: 50px;
  }

  .prices_elem--decor::before {
    -webkit-transform: translate(0, -400px);
    transform: translate(0, -400px);
  }

  .prices_elem__header span br {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .prices_title {
    font-size: 40px;
    padding: 45px 0;
  }

  .prices_grid__cards {
    font-size: 30px;
    padding-left: 0;
  }

  .prices_elem__header {
    font-size: 16px;
    padding: 20px 20px 20px 30px;
  }

  .prices_elem__header p {
    font-size: 30px;
  }

  .prices_elem__block {
    font-size: 18px;
    padding: 25px 20px 15px 30px;
  }
}

@media screen and (max-width: 768px) {
  .prices_title {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .prices_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    row-gap: 30px;
  }
  .prices_grid.prices_grid--md {
    row-gap: 25px;
  }

  .prices_elem--decor::before {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .prices_elem__header p {
    font-size: 24px;
  }

  .prices_grid__cards {
    font-size: 24px;
  }

  .prices_grid__cards span {
    padding-left: 45px;
  }

  .prices_grid__cards span::before {
    width: 30px;
  }
}

.prices_programs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  padding: 40px 0 60px;
}

.prices_program__display img {
  display: block;
  position: relative;
  z-index: 2;
  max-width: calc(100% - 30px);
}

.prices_program__display span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 35px;
  font-weight: 500;
  padding: 20px 20px 20px 75px;
  color: var(--orange);
  line-height: 1.2em;
  z-index: 1;
}

.prices_program__display span::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 20px);
  background-color: var(--white);
}

.prices_program:nth-child(even) .prices_program__display span {
  color: var(--white);
}

.prices_program:nth-child(even) .prices_program__display span::before {
  background-color: var(--orange);
}

.prices_program__text {
  padding: 30px 20px 20px 80px;
  font-size: 18px;
}

.prices_program__text p {
  position: relative;
  padding: 0 0 35px;
  margin: 0 0 20px;
  line-height: 1.5;
  max-width: 590px;
}

.prices_program__text p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95px;
  height: 4px;
  background-color: var(--orange);
}

.prices_program__text ul {
  font-size: 20px;
  margin: 0;
}

.prices_program__text ul li {
  margin-bottom: 12px;
}

@media screen and (max-width: 1280px) {
  .prices_program__display span {
    padding-left: 45px;
    line-height: 1.1em;
  }

  .prices_program__text {
    padding-left: 40px;
  }
}

@media screen and (max-width: 992px) {
  .prices_program__display span {
    font-size: 30px;
    min-height: 100px;
    padding: 15px 15px 15px 30px;
  }

  .prices_program__text {
    padding: 20px 15px 15px 30px;
  }

  .prices_program__text p {
    padding-bottom: 15px;
  }

  .prices_program__text ul {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .prices_programs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.prices_services {
  background-color: var(--off-white);
  color: var(--off-black);
  padding: 60px 0 80px;
}

.page-services_header {
  padding-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .page-services_header {
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
}

.page-services__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 31%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 50px;
  font-size: 23px;
  max-width: 1500px;
  margin: 0;
  padding: 30px 0 40px;
}
.page-services__list--dark {
  color: var(--white);
}

.page-services__item {
  background-color: var(--white);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 30px;
  line-height: 1.5em;
}
.page-services__list--dark .page-services__item {
  background-color: #2f2c2d;
}

.page-services__item::before {
  content: "";
  display: inline-block;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid #000;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 35px;
  -webkit-filter: invert(55%) sepia(69%) saturate(3941%) hue-rotate(359deg)
    brightness(101%) contrast(106%);
  filter: invert(55%) sepia(69%) saturate(3941%) hue-rotate(359deg)
    brightness(101%) contrast(106%);
}

.page-services__list--dark .page-services__item::before {
  -webkit-filter: invert(99%) sepia(2%) saturate(10%) hue-rotate(73deg)
    brightness(104%) contrast(100%);
  filter: invert(99%) sepia(2%) saturate(10%) hue-rotate(73deg) brightness(104%)
    contrast(100%);
}

.page-services__item--cart::before {
  background: url("/website/img/services__cart.svg") center center / 45%
    no-repeat;
}

.page-services__item--freeze::before {
  background: url("/website/img/services__freeze.svg") center center / 45%
    no-repeat;
}

.page-services__item--hamam::before {
  background: url("/website/img/services__hamam.svg") center center / 50%
    no-repeat;
}

.page-services__item--locker::before {
  background: url("/website/img/services__locker.svg") center center / 40%
    no-repeat;
}

.page-services__item--towel::before {
  background: url("/website/img/services__towel.svg") center center / 45%
    no-repeat;
}

.page-services__item--solarium::before {
  background: url("/website/img/services__solarium.svg") center center / 45%
    no-repeat;
}

.page-services__item--restkey::before {
  background: url("/website/img/services__restkey.svg") center center / 45%
    no-repeat;
}

.page-services__item .orange {
  font-weight: 500;
}

@media screen and (max-width: 1480px) {
  .page-services__list {
    grid-template-columns: repeat(3, 32%);
  }

  .page-services__item {
    padding: 30px 20px;
  }

  .page-services__item::before {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .page-services__list {
    font-size: 20px;
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 30px;
  }

  .page-services__item::before {
    width: 110px;
    height: 110px;
  }
}

@media screen and (max-width: 992px) {
  .page-services__list {
    font-size: 18px;
  }

  .page-services__item::before {
    width: 75px;
    height: 75px;
  }
}

@media screen and (max-width: 600px) {
  .page-services__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    row-gap: 15px;
  }

  .page-services__item {
    padding: 20px;
  }
}

/* ////////////////////////////// */
/* Страницы Тренеры */
.club__place.active {
  opacity: 1;
}
.club__place.active > a > svg {
  -webkit-filter: none;
  filter: none;
}
.page_club {
  padding: 35px 0 40px;
}
.personal {
  color: #fff;
  background-color: #201c1d;
  padding: 30px 0 80px;
}
.personal h1 {
  color: #fff;
  text-align: center;
  font-family: var(--font-Roboto);
  font-style: italic;
  font-size: 110px;
  line-height: 1.2;
  margin: 0 0 20px;
}
.personal__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 29px 1fr 29px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 29px;
  -moz-column-gap: 29px;
  column-gap: 29px;
  row-gap: 65px;
  padding: 25px 0;
}
.personal__list li img {
  display: block;
  margin-bottom: 25px;
}
.personal__list li span {
  display: block;
  position: relative;
  font-size: 20px;
  padding-bottom: 15px;
}
.personal__list li span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  max-width: 95px;
  background-color: var(--orange);
}
@media screen and (max-width: 768px) {
  .personal__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .personal__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* Крошки */
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #93959a;
  font-size: 14px;
  padding: 30px 0;
  margin: 0;
}
.breadcrumbs li {
  position: relative;
  padding-right: 10px;
  margin-right: 5px;
}
.breadcrumbs li::after {
  content: "/";
  position: absolute;
  top: 0;
  right: 0;
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs span {
  color: #0d0d0d;
}
.person {
  padding-bottom: 30px;
}
.person h1 {
  font-family: var(--font-Roboto);
  font-style: italic;
  line-height: 1.2em;
  font-size: 70px;
  margin: 20px 0 100px;
}
.person h1::after {
  bottom: -20px;
}
.person_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 20px;
  padding: 10px 0;
}
.person_content__img {
  width: 42%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.person_content__img img {
  display: block;
  margin: 0 auto;
}
.person_content__text {
  width: 54%;
  max-width: 720px;
}
.person_content p {
  line-height: 1.4em;
  margin: 0 0 20px;
}
.person_content ul {
  margin: 0;
  padding: 15px 0 30px;
}
.person_content ul li {
  margin-bottom: 6px;
}
.person_back {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 50px;
  color: var(--orange);
  min-height: 36px;
  margin: 20px 0;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
}
.person_back::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  top: 0;
  background: url("/website/img/arrow_left_orange.svg") center center / 100%
    no-repeat;
}
@media screen and (max-width: 768px) {
  .person_content__img {
    width: 100%;
  }
  .person_content__text {
    width: 100%;
  }
}
/* Страница АКЦИИ (СПИСОК) */
.actions-page {
  padding: 50px 0;
  background-color: var(--off-white);
  overflow: hidden;
}
.actions-page__header {
  margin-bottom: 0;
}
.actions__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.actions__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-box-shadow var(--short);
  transition: -webkit-box-shadow var(--short);
  transition: box-shadow var(--short);
  transition: box-shadow var(--short), -webkit-box-shadow var(--short);
  max-width: 730px;
}
.actions__list-item:hover {
  -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
}
.actions__image-box {
  position: relative;
}
.actions__image-link img {
  display: block;
}
.actions__title-box {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.actions__item-link {
  display: block;
  position: relative;
  min-height: 150px;
  font-family: var(--font-Golos);
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  padding: 20px 100px 20px 50px;
  -webkit-transition: color var(--short);
  transition: color var(--short);
}
.actions__item-link:hover:not(:active) {
  color: var(--orange);
}
.actions__item-link:active {
  color: var(--red);
}
.actions__item-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 50px;
  top: 0;
  left: 0;
  background-color: rgb(36, 32, 32);
  opacity: 0.8;
}
.actions__list-item:nth-child(4n-3) .actions__item-link::before {
  left: auto;
  width: 100vw;
}
.actions__list-item:nth-child(4n-2) .actions__item-link::before {
  right: -90px;
}
.actions__list-item:nth-child(4n) .actions__item-link::before {
  right: auto;
  width: 100vw;
}
.actions__title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}
.actions__title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 4px;
  width: 90px;
  background-color: var(--orange);
}
.actions__list-item p {
  margin: 0;
  padding: 25px 50px 30px;
  font-size: 20px;
  line-height: 30px;
}
/* Медики для страницы списка акций */
@media (max-width: 1280px) {
  .actions__item-link {
    font-size: 24px;
    line-height: 32px;
    min-height: 120px;
  }
  .actions__title {
    padding-bottom: 14px;
  }
  .actions__title::before {
    height: 3px;
    width: 70px;
  }
}
@media (max-width: 992px) {
  .actions__list {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .actions__item-link {
    min-height: 100px;
    padding: 13px 60px 13px 20px;
  }
  .actions__list-item p {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .actions__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .actions__list-item {
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
  }
  .actions__item-link {
    padding: 20px 20px;
    min-height: auto;
    text-align: center;
  }
  .actions__title::before {
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .actions .actions__list .actions__item-link::before {
    width: auto;
    left: 0;
    right: 0;
  }
}
/* СТРАНИЦА КОНКРЕТНОЙ АКЦИИ */
.action-page {
  padding: 0 0 40px;
  background-color: var(--off-white);
}
.action__header {
  margin-bottom: 50px;
}
.action__header::after {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.action__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 35px;
}
.action__image-box,
.action__text-box {
  width: 46%;
}
.action__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 60px;
  padding: 10px;
}
.action__text-box p {
  margin: 0 0 20px;
}
.action__link-season {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 20px 45px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.action__link-season:hover {
  color: var(--orange);
  background-color: var(--white);
}
.action__link-season:active {
  opacity: 0.8;
}
.action__link-back {
  display: inline-block;
  position: relative;
  padding: 15px 5px 15px 50px;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: underline;
  color: var(--orange);
}
.action__link-back::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/website/img/orange_arrow_left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.action__link-back:hover {
  text-decoration: none;
}
.action__link-back:active {
  color: var(--red);
}
/* Медики для страницы акции */
@media (max-width: 1280px) {
  .action__link-season {
    padding: 15px;
  }
  .action__content {
    -webkit-columns: 30px;
    -moz-columns: 30px;
    columns: 30px;
  }
  .action__image-box,
  .action__text-box {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .action__link-season {
    text-align: center;
  }
  .action__image-box,
  .action__text-box {
    width: 40%;
    padding: 0;
  }
  .action__text-box {
    width: 56%;
    padding: 0;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .action__header {
    margin-bottom: 30px;
  }
  .action__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 30px;
    margin-bottom: 50px;
  }
  .action__image-box,
  .action__text-box {
    width: 100%;
  }
  .action__text-box {
    row-gap: 40px;
  }
  .action__link-season {
    font-size: 13px;
    line-height: 18px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
/* СТРАНИЦА БУДНИ (СПИСОК) */
.budni-page {
  padding: 50px 0;
}
.budni-page__header {
  margin-bottom: 50px;
}
.budni__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 60px;
}
.budni__list-item {
  position: relative;
  padding: 0 50px 40px;
}
.budni__list-item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 130px;
  background-color: var(--white);
}
.budni__item-content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.budni__link-image {
  margin-bottom: 30px;
}

.budni__header-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 35px;
  line-height: 40px;
  font-style: normal;
}

.budni__text-box {
  margin: 0 0 40px;
}

.budni__link-more {
  margin-top: auto;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 15px 38px;
  border: 1px solid var(--orange);
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--orange);
  background-color: var(--white);
  text-transform: uppercase;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.budni__link-more:hover {
  background-color: var(--orange);
  color: var(--white);
}

.budni__link-more:active {
  background-color: var(--orange);
  color: var(--white);
}

/* Медики для страницы списка БУДНЕЙ */
@media (max-width: 1280px) {
  .budni__list {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .budni__list-item {
    padding: 0 25px 35px;
  }

  .budni__list-item::before {
    top: 80px;
  }

  .budni__link-image {
    margin-bottom: 15px;
  }

  .budni__header-item {
    padding-bottom: 13px;
    font-size: 24px;
    line-height: 32px;
  }

  .budni__header-item::after {
    height: 3px;
    width: 70px;
  }
}

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

@media (max-width: 768px) {
  .budni__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .budni__list-item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .budni__link-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .budni__header-item {
    text-align: center;
    font-size: 22px;
    line-height: 26px;
  }

  .budni__header-item::after {
    height: 2px;
    width: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .budni__link-more {
    padding: 10px 30px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

/* СТРАНИЦА ОТДЕЛЬНОЙ СТАТЬИ БУДНИ */
.show-budni {
  padding: 0 0 50px;
}

.show-budni__header {
  margin: 0 0 50px;
}

.show-budni__header:after {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.show-budni__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  margin-bottom: 45px;
}

.show-budni__image-box,
.show-budni__text-box {
  width: 47%;
}

.show-budni__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.show-budni__text-box p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.show-budni__wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.show-budni__video {
  position: relative;
  padding-bottom: 57%;
}
.show-budni__video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* Медики для страницы списка БУДНЕЙ */
@media (max-width: 1280px) {
  .show-budni__content {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .show-budni__image-box,
  .show-budni__text-box {
    width: 48%;
  }
}

@media (max-width: 992px) {
  .show-budni__text-box p {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .show-budni__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }

  .show-budni__image-box,
  .show-budni__text-box {
    width: 100%;
  }

  .show-budni__image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* СТРАНИЦА ТРЕНЕРЫ (СПИСОК) */
.trenery-page {
  padding-bottom: 60px;
  background-color: var(--off-black);
}

.trenery-page__header {
  margin: 60px 0;
  color: var(--white);
}

.trenery__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 60px;
}

.trenery__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.trenery__item-content:hover {
  height: auto;
}
.trenery__item-content:hover .trenery__link-image::before {
  opacity: 0.6;
}
.trenery__header-item {
  line-height: inherit;
}

.trenery__item-content:hover .trenery__text-post {
  display: block;
}
.trenery__item-content:hover .trenery__link::before {
  opacity: 1;
}

.trenery__link-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.trenery__link-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.trenery__link {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px 90px 15px 0;
  font-family: var(--font-Golos);
  font-size: 20px;
  min-height: 73px;
  font-weight: 500;
  font-style: normal;
  color: var(--white);
}

.trenery__link::before {
  position: absolute;
  content: "";
  width: 73px;
  height: 73px;
  bottom: 0;
  right: 0;
  background-color: var(--orange);
  background-image: url("/website/img/white_right_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}

.trenery__text-link {
  padding-bottom: 15px;
}
.trenery__text-post {
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
  display: none;
}

/* Медики для страницы списка ТРЕНЕРОВ */
@media (min-width: 1281px) {
  .trenery__item-content:hover .trenery__header-item {
    position: absolute;
    width: 100%;
    padding-left: 25px;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 1280px) {
  .trenery__list {
    row-gap: 30px;
  }
  .trenery__item-content:hover .trenery__link-image::before {
    opacity: 0;
  }
  .trenery__item-content:hover .trenery__header-item {
    padding-left: 0;
  }
  .trenery__link-image:active::before {
    opacity: 0.6;
  }
  .trenery__header-item {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
  }
  .trenery__link {
    padding: 8px 60px 8px 15px;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .trenery__link::before {
    opacity: 1;
    width: 50px;
    height: 50px;
  }
  .trenery__link:active::before {
    opacity: 0.7;
  }
  .trenery__text-link {
    padding-bottom: 10px;
  }
  .trenery__text-post {
    display: block;
  }
}

@media (max-width: 992px) {
  .trenery-page__header {
    margin: 35px 0;
  }
  .trenery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trenery__item-content:hover .trenery__header-item {
    -webkit-transform: none;
    transform: none;
  }

  .trenery__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 491px;
    row-gap: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .trenery__header-item {
    -webkit-transform: none;
    transform: none;
  }

  .trenery__link {
    padding: 18px 55px 15px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    /* background-color: transparent; */
  }

  .trenery__link::before {
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .trenery__text-link {
    padding-bottom: 7px;
  }

  .trenery__text-link::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* СТРАНИЦА ОТДЕЛЬНОГО ТРЕНЕРА */
.show-trenery {
  padding: 0;
  overflow: hidden;
}

.show-trenery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.show-trenery__image-box {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 10px;
}
.show-trenery__image-box img {
  display: block;
}
.show-trenery__text-box {
  width: 52%;
  max-width: 780px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.show-trenery__header {
  margin: 0 0 50px;
  padding-bottom: 20px;
  text-align: left;
}
.show-trenery__text {
  font-size: 20px;
}
.show-trenery__text p {
  margin: 0 0 20px;
  line-height: 30px;
}
.show-trenery__text .list {
  margin: 0;
  padding: 10px 0 0;
  max-width: 680px;
}
.show-trenery__text .list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  min-height: 28px;
}
.show-trenery__text .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: url("/website/img/square_check_icon.svg") center center / 100%
    no-repeat;
  -webkit-filter: invert(100%) sepia(1%) saturate(2065%) hue-rotate(175deg)
    brightness(89%) contrast(69%);
  filter: invert(100%) sepia(1%) saturate(2065%) hue-rotate(175deg)
    brightness(89%) contrast(69%);
}
.show-trenery__back-content {
  background-color: var(--white);
  padding: 25px 0 35px;
}
.show-trenery__text {
  padding-bottom: 20px;
}
.show-trenery .image-holder {
  position: relative;
  z-index: 2;
}
.show-trenery .image-holder_link {
  content: "";
  position: absolute;
  width: 168px;
  height: 84px;
  right: 20px;
  bottom: 20px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 85% auto;
}
.show-trenery .image-holder--cross .image-holder_link {
  background-image: url("/website/img/logo_cross_sm.svg");
}
.show-trenery .image-holder--fitness .image-holder_link {
  background-image: url("/website/img/logo_fitness_sm.svg");
}
.show-trenery_contacts {
  position: relative;
  margin-top: auto;
  padding-top: 30px;
  background-color: var(--white);
  z-index: 1;
}
.show-trenery_contacts::before {
  content: "";
  position: absolute;
  display: block;
  width: 120vw;
  height: 100%;
  background-color: var(--white);
  left: 0;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.show-trenery_phone {
  position: relative;
  margin: 0 0 30px;
  padding: 18px 0 18px 80px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.show-trenery_phone a {
  white-space: nowrap;
}
.show-trenery_phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url("/website/img/show-trenery_phone.svg") center center / 50%
      no-repeat,
    #e0e0e1;
}
.show-trenery_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
  max-width: 610px;
}
.show-trenery_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  background-color: var(--off-black);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
  min-height: 60px;
}
.show-trenery_btn--orange {
  background-color: var(--orange);
}
@media (max-width: 1480px) {
  .show-trenery__header {
    margin-bottom: 30px;
  }
  .show-trenery__text .list {
    padding-top: 0;
  }
}
@media (max-width: 1280px) {
  .show-trenery__header {
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
  .show-trenery_contacts {
    padding-top: 20px;
  }
  .show-trenery_phone {
    padding: 14px 0 14px 65px;
    margin-bottom: 15px;
  }
  .show-trenery_phone::before {
    width: 48px;
    height: 48px;
    top: 50%;
  }
  .show-trenery_btns {
    max-width: 480px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .show-trenery_btn {
    min-height: 50px;
  }
  .show-trenery__text {
    font-size: 18px;
  }
  .show-trenery__text p {
    line-height: 1.4;
  }
  .show-trenery .image-holder_link {
    width: 150px;
    height: 70px;
  }
  .show-trenery__text .list li {
    padding-left: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .show-trenery__header {
    margin-bottom: 30px;
    padding-bottom: 18px;
    font-size: 35px;
    line-height: 44px;
  }
  .show-trenery__text {
    font-size: 16px;
  }
  .show-trenery_phone {
    font-size: 18px;
  }
  .show-trenery .image-holder_link {
    width: 140px;
    height: 60px;
  }
  .show-trenery__text .list li {
    padding-left: 38px;
    margin-bottom: 15px;
  }
  .show-trenery__text .list li::before {
    width: 25px;
    height: 26px;
  }
}
@media (max-width: 768px) {
  .show-trenery__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
  }
  .show-trenery__image-box,
  .show-trenery__text-box {
    width: 100%;
  }
  .show-trenery__image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .show-trenery__header {
    text-align: center;
    padding-bottom: 12px;
  }
  .show-trenery__header::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .show-trenery_contacts::before {
    left: 50%;
  }
  .show-trenery_phone {
    max-width: 560px;
    margin: 0 auto 15px;
    font-size: 20px;
  }
  .show-trenery_btns {
    max-width: 560px;
    margin: 0 auto;
  }
  .show-trenery .image-holder_link {
    width: 160px;
    height: 70px;
  }
}
@media (max-width: 600px) {
  .show-trenery_phone {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .show-trenery_btns {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .show-trenery .image-holder_link {
    width: 140px;
    height: 60px;
  }
}
@media (max-width: 380px) {
  .show-trenery_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .show-trenery .image-holder_link {
    width: 120px;
    height: 50px;
  }
}

/* СТРАНИЦА - КОНТАКТЫ */
.contacts {
  padding: 45px 0 90px;
}
.contacts__header {
  margin-bottom: 55px;
  text-align: left;
}
.contacts_tabs__elem {
  display: none;
}
.contacts_tabs__elem.active {
  display: block;
}
.contacts_tabs__btns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 30px;
  max-width: 520px;
}
.contacts_tabs__btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47%;
  min-height: 70px;
  padding: 5px;
  color: var(--orange);
  background-color: var(--white);
  border: 2px solid var(--orange);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--short);
}
.contacts_tabs__btns button.active,
.contacts_tabs__btns button:hover {
  background-color: var(--orange);
  color: var(--white);
}
.contact-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.contact-box--cross {
  z-index: 1;
}
.contact-box__text {
  position: relative;
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 55px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 45px;
  background-color: var(--white);
}
.contact-box__text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 4px;
  width: 35%;
  background-color: var(--orange);
}
.contact-box__text-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact-box__adres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-box__header {
  margin-bottom: 30px;
  line-height: 65px;
  font-family: var(--font-Golos);
  color: var(--orange);
}
.contact-box__text-adres {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}
.contact-box__phone-box {
  padding-top: 15px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-box__phone-caption {
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 13px;
}
.contact-box__phone-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-box__whatsapp-link {
  font-size: 0;
}
.contact-box__link-tel {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}
.contact-box__shedule {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-box__logo {
  margin-bottom: 40px;
}
.contact-box__shedule-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  max-width: 275px;
}
.contact-box__shedule-text {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-box__shedule-days {
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
}
.contact-box__shedule-time {
  font-size: 20px;
  font-weight: 600;
}
.contact-box__requisites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
.contact-box__text-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  flex-wrap: wrap;
  row-gap: 10px;
}

@media (max-width: 1400px) {
  .contact-box__text-bottom {
    column-gap: 30px;
  }
}
@media (max-width: 1280px) {
  .contact-box__season-link {
    width: 260px;
    text-align: center;
  }
}

.contact-box__requisites span {
  font-size: 13px;
  line-height: 23px;
  color: var(--off-black);
}
.contact-box__vk-link img {
  display: block;
}
.contact-box__img {
  width: 51%;
}
.contact-box__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-box__map {
  width: 100%;
  height: 390px;
  margin-top: 20px;
}
@media (max-width: 1480px) {
  .contacts__list {
    row-gap: 70px;
  }
  .contact-box__text {
    padding: 50px 30px 35px 45px;
  }
}
@media (max-width: 1380px) {
  .contact-box__text {
    padding: 40px 20px 30px 35px;
  }
  .contact-box__text-top {
    -webkit-column-gap: initial;
    -moz-column-gap: initial;
    column-gap: initial;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contact-box__adres {
    width: 46%;
  }
  .contact-box__shedule {
    width: 50%;
  }
  .contact-box__logo {
    max-width: 220px;
  }
}
@media (max-width: 1280px) {
  .contact-box__text {
    width: 40%;
    padding: 30px 60px;
    row-gap: 20px;
  }
  .contact-box__img {
    width: 60%;
  }
  .contact-box__logo {
    margin-bottom: 20px;
  }
  .contact-box__text-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-box__header {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .contact-box__phone-box {
    padding-top: 5px;
    margin-bottom: 0;
  }
  .contact-box__phone-caption {
    margin-bottom: 10px;
  }
  .contact-box__adres {
    width: 100%;
  }
  .contact-box__text-adres {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .contact-box__shedule {
    padding-top: 0;
    width: 100%;
    row-gap: 20px;
  }
  .contact-box__logo {
    max-width: 200px;
  }
  .contact-box__shedule-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-top: 0;
  }
  .contact-box__shedule-text {
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .contact-box__shedule-time {
    padding: 5px 0 0;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 992px) {
  .contacts {
    padding: 30px 0 60px;
  }
  .contacts__header {
    margin-bottom: 30px;
  }
  .contact-box__text {
    width: 45%;
    padding: 30px 35px;
  }
  .contact-box__img {
    width: 55%;
  }
  .contact-box__text-bottom {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .contacts__list {
    row-gap: 50px;
  }
  .contacts_tabs__btns {
    max-width: 480px;
  }
  .contacts_tabs__btns button {
    width: 48%;
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  .contact-box__shedule {
    row-gap: 15px;
  }
  .contacts__list {
    row-gap: 40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-box__text {
    padding: 25px 70px;
    width: 100%;
  }
  .contact-box__img {
    width: 100%;
  }
  .contact-box__text-bottom {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .contact-box__map {
    height: 400px;
  }
  .contact-box__logo {
    margin-bottom: 15px;
  }
  .contact-box__text-adres {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .contacts__list {
    max-width: initial;
  }
  .contact-box__text {
    padding: 25px 20px 20px 30px;
  }
  .contact-box__map {
    height: 300px;
  }
  .contacts_tabs__btns button {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .contact-box__text {
    padding: 20px 10px 15px 20px;
  }
  .contacts_tabs__btns button {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ----ПАГИНАЦИЯ---  */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination li:first-child,
.pagination li:last-child {
  margin: 0 20px;
}
.pagination a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  background-color: transparent;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.pagination .prev a,
.pagination .next a {
  background-color: #d1d1d1;
}
.pagination .prev--dis a,
.pagination .next--dis a {
  opacity: 0.5;
}
.pagination .prev--dis image,
.pagination .next--dis image {
  opacity: 0.5;
}
.pagination .active a {
  color: var(--white) !important;
  background-color: var(--orange) !important;
}
.pagination .num-page-link:hover {
  background-color: #f4d8c3;
}
.trenery-page .pagination .num-page-link {
  color: #d1d1d1;
}
.trenery-page .pagination .num-page-link:hover {
  background-color: #f4d8c3;
  color: var(--off-black);
}
@media (max-width: 1280px) {
  .pagination {
    margin: 30px 0 30px;
  }
  .pagination .num-page-link:hover {
    background-color: transparent;
  }
  .pagination .num-page-link:active {
    background-color: #f4d8c3;
  }
  .trenery-page .pagination .num-page-link:hover {
    background-color: transparent;
    color: #d1d1d1;
  }
  .trenery-page .pagination .num-page-link:active {
    background-color: #f4d8c3;
    color: var(--off-black);
  }
}
@media (max-width: 768px) {
  .pagination {
    margin: 45px 0 20px;
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
    row-gap: 15px;
  }
  .pagination li:first-child,
  .pagination li:last-child {
    margin: 0 12px;
  }
  .pagination a {
    width: 30px;
    height: 30px;
  }
}

/* Страница "ПРОГРАММЫ" */
.programs {
  padding-top: 30px;
}
.programs__tabs {
  padding-bottom: 65px;
}
.fitness-programs {
  background-color: var(--off-black);
  color: var(--white);
  padding: 0 0 75px;
}
.fitness-programs .header-line {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.fitness-programs .header-line + .programs-sub {
  padding-top: 10px;
}
.fitness-programs_group .header-line {
  position: relative;
  padding-right: 45%;
}
.fitness-programs .container {
  max-width: 1565px;
}
.programs-sub {
  position: relative;
  font-size: 55px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 45px;
  margin-top: 0;
}
.programs_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 30%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 60px;
  margin-bottom: 65px;
}
.programs_list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.programs_list li a {
  display: block;
}
.programs_list li > a,
.programs_list li > div {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.programs_list li > a::before,
.programs_list li > div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(32, 28, 29, 0.5);
  z-index: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.programs_list li:hover a::before {
  opacity: 0;
}
.programs_list li img {
  display: block;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.programs_list li:hover img {
  -webkit-filter: none;
  filter: none;
}
.programs_list__name {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 30px 20px 35px;
  z-index: 2;
}
.programs_list__trener {
  display: block;
  margin-top: 3px;
  font-size: .8em;
}
.programs_list__name::before {
  content: "";
  position: absolute;
  display: block;
  left: 35px;
  bottom: 4px;
  width: 90px;
  height: 4px;
  background-color: var(--orange);
  z-index: -1;
}
.programs_list li:hover .programs_list__name::before {
  width: 100%;
  height: 100%;
  left: -20px;
  top: 0;
}
.programs_list__name > span {
  display: none;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}
.programs_list li:hover .programs_list__name > span {
  display: block;
}
@media (max-width: 992px) {
  .programs_list li:hover .programs_list__name > span {
    display: none;
  }
}
.programs_desc-block {
  max-width: 1410px;
  margin: 0 auto 55px;
  padding: 40px 200px;
  font-size: 20px;
}
.programs_desc-block p {
  margin: 0 0 30px;
  line-height: 1.5em;
}
.fitness-programs_group {
  position: relative;
  padding-top: 75px;
  background: url("/website/img/fitness-programs_group_bg.png") left 64% / auto
    no-repeat;
}
.fitness-programs_group::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  max-width: 1635px;
  height: 500px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -40px);
  transform: translate(-50%, -40px);
  background: url("/website/img/fitness-programs_group_pic.png") right top /
    auto no-repeat;
  z-index: 0;
}
.fitness-programs_section {
  padding-top: 30px;
  background: url("/website/img/fitness-programs_section_bg.png") right 20% /
    66% no-repeat;
}
@media (max-width: 1280px) {
  .programs_list li:hover .programs_list__name {
    padding-left: 20px;
  }
  .fitness-programs {
    padding-bottom: 40px;
  }
  .fitness-programs_group {
    padding-top: 40px;
    background-size: 30% auto;
  }
  .fitness-programs_group::before {
    width: 50%;
    right: 0;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    background-size: 100%;
  }
  .programs-sub {
    font-size: 35px;
    margin-bottom: 35px;
  }
  .fitness-programs_group .header-line {
    margin-bottom: 30px;
  }
  .programs_desc-block {
    padding-left: 0px;
  }
  .programs_list {
    grid-template-columns: repeat(3, 31.5%);
    row-gap: 45px;
  }
}
@media (max-width: 992px) {
  .programs_list {
    margin-bottom: 45px;
  }
  .programs_list__name {
    padding-right: 20px;
  }
  .fitness-programs_section {
    padding-top: 20px;
    background: none;
  }
  .programs_desc-block {
    padding: 0px;
    margin-bottom: 20px;
  }
  .programs_list li:hover .programs_list__name::before {
    left: -10px;
  }
}
@media (max-width: 768px) {
  .programs-sub {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .fitness-programs .header-line + .programs-sub {
    padding-top: 0;
  }
  .programs_list {
    grid-template-columns: repeat(2, 48%);
    row-gap: 35px;
  }
}
@media (max-width: 600px) {
  .fitness-programs_group::before {
    display: none;
  }
  .fitness-programs_group .header-line {
    padding-right: 0;
  }
  .programs_list__name {
    font-size: 18px;
    padding: 15px 5px 15px 25px;
  }
  .programs_list__name::before {
    left: 25px;
  }
  .programs_list li:hover .programs_list__name::before {
    left: 0;
  }
}
@media (max-width: 480px) {
  .programs_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.back_link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 50px;
  color: var(--orange);
  min-height: 36px;
  margin: 20px 0;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
}
.back_link::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  top: 0;
  background: url("/website/img/arrow_left_orange.svg") center center / 100%
    no-repeat;
}
.program {
  overflow: hidden;
}
.program_title {
  font-size: 70px;
  line-height: 1em;
  padding-top: 10px;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.program .header-line {
  text-align: center;
}
.program .header-line::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.program_content {
  padding-bottom: 40px;
}
.program_content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
}
.program_content__img {
  width: 48%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 30px;
}
.program_content__img img {
  display: block;
  margin: 0 auto;
}
.program_content__text {
  font-size: 20px;
  width: 48%;
  max-width: 710px;
}
.program_content__text p {
  margin: 0 0 30px;
  line-height: 1.45em;
}
.program_content__text ol {
  margin: 10px 0 25px;
  padding-left: 25px;
}
.program_content__text ol li {
  margin-bottom: 7px;
}
@media (max-width: 1280px) {
  .program_title {
    font-size: 55px;
  }
  .program_content__text {
    font-size: 18px;
  }
  .program_content__text p {
    margin-bottom: 25px;
  }
}

@media (max-width: 992px) {
  .program_content {
    padding-bottom: 40px;
  }
  .program_title {
    font-size: 40px;
  }
  .program_content__row {
    padding-top: 0;
  }
  .program_content__img {
    width: 100%;
  }
  .program_content__text {
    width: 100%;
    max-width: initial;
  }
}

@media (max-width: 768px) {
  .program_content {
    padding-bottom: 20px;
  }

  .program_title {
    font-size: 30px;
  }

  .back_link {
    margin: 15px 0;
  }
}
.program_text {
  padding-top: 50px;
}
.program_text > p {
  margin: 0 0 45px;
}
.program_text > p:last-child {
  margin-bottom: 0;
}
.program_text p img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .program_text {
    padding-top: 35px;
  }
  .program_text > p {
    margin: 0 0 25px;
  }
}
.program_trainer {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: var(--off-black);
  color: var(--white);
}
.program_trainer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.program_trainer__img {
  width: 49%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.program_trainer__img img {
  display: block;
}
.program_trainer__text {
  width: 47%;
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
}
.program_trainer__content {
  min-height: 350px;
}
.program_trainer__text .header-line {
  font-size: 35px;
  text-align: left;
  font-weight: 500;
  margin-bottom: 35px;
}
.program_trainer__text .header-line::after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}
.program_trainer__text p {
  margin: 0 0 20px;
  line-height: 1.5em;
}
.program_trainer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 700px;
  padding-top: 20px;
}
.program_trainer__btns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  min-height: 100px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35em;
  width: 48%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.program_trainer__shedule {
  border: 3px solid var(--white);
}
.program_trainer__shedule:hover {
  background-color: var(--off-white);
  color: var(--off-black);
}
.program_trainer__abonement {
  border: 3px solid var(--orange);
  background-color: var(--orange);
}
.program_trainer__abonement:hover {
  color: var(--orange);
  background-color: transparent;
}
@media (max-width: 1380px) {
  .program_trainer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .program_trainer__content {
    min-height: 300px;
  }
  .program_trainer__btns {
    font-size: 16px;
  }
  .program_trainer__btns a {
    min-height: 80px;
  }
}
@media (max-width: 1280px) {
  .program_trainer__text {
    font-size: 18px;
  }
  .program_trainer__text .header-line {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .program_trainer__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .program_trainer__img img {
    margin: 0 auto;
  }
  .program_trainer__text {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
  }
  .program_trainer__content {
    min-height: initial;
  }
  .program_trainer__btns {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .program_trainer {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .program_trainer__text .header-line {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .program_trainer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
    padding-top: 10px;
  }
  .program_trainer__btns a {
    width: 100%;
    max-width: 300px;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .program_trainer__btns a {
    max-width: 240px;
    font-size: 14px;
    padding: 8px;
    border-width: 2px;
  }
}
.program_sales {
  padding-top: 40px;
  padding-bottom: 30px;
}
.program_sales .container,
.program_articles .container {
  padding-left: 20px;
  padding-right: 20px;
}
.program_sales .header-line {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.sales-slider,
.articles-slider {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.sales-slider *,
.articles-slider * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sales-slider {
  padding-left: 25px;
  padding-right: 25px;
}
.sales-slider__item.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: initial;
}
.sales-slider__item {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sales-slider__item:hover {
  -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.25);
}
.sales-slider__img {
  position: relative;
}

.sales-slider__img img {
  display: block;
}
.sales-slider__img p {
  position: absolute;
  left: 0;
  width: 90%;
  background-color: rgba(36, 32, 32, 0.8);
  bottom: 0;
  color: var(--white);
  font-size: 35px;
  font-weight: 500;
  padding: 20px 50px;
  margin: 0;
  min-height: 150px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sales-slider__item:hover p {
  width: 100%;
  color: var(--orange);
  padding-right: calc(50px + 10%);
}
.sales-slider__img p span {
  position: relative;
  display: block;
  padding-bottom: 20px;
}
.sales-slider__img p span::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 90px;
  height: 4px;
  background-color: var(--orange);
}
.sales-slider__desc {
  font-size: 20px;
  line-height: 1.45em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--white);
  padding: 25px 30px 40px 45px;
}
.slider_orange .swiper-button-prev,
.slider_orange .swiper-button-next {
  width: 55px;
  height: 55px;
  background: var(--orange);
  color: var(--white);
  opacity: 0.8;
}
.slider_orange .swiper-button-prev::after,
.slider_orange .swiper-button-next::after {
  font-size: 30px;
}
.slider_orange .swiper-button-prev {
  padding-right: 5px;
  left: 0px;
}
.slider_orange .swiper-button-next {
  right: 0;
}
.slider_orange .swiper-button-prev:hover,
.slider_orange .swiper-button-next:hover {
  opacity: 1;
}
.sales-slider_prev,
.sales-slider_next {
  top: 45%;
}
@media (max-width: 1280px) {
  .sales-slider__img p {
    font-size: 25px;
    padding: 15px 30px 10px;
    min-height: 120px;
  }
  .sales-slider__item:hover p {
    padding-right: calc(30px + 10%);
  }
  .sales-slider__desc {
    font-size: 18px;
    padding: 20px 20px 30px 30px;
  }
}
@media (max-width: 992px) {
  .sales-slider__img p {
    font-size: 20px;
    padding: 10px 20px;
    min-height: 100px;
  }

  .sales-slider__item:hover p {
    padding-right: calc(20px + 10%);
  }

  .sales-slider__desc {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .sales-slider {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .program_sales {
    padding-top: 20px;
  }
  .slider_orange .swiper-button-prev,
  .slider_orange .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .slider_orange .swiper-button-prev::after,
  .slider_orange .swiper-button-next::after {
    font-size: 20px;
  }
  .program_sales .container,
  .program_articles .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sales-slider_prev,
  .sales-slider_next {
    top: 65%;
  }
}
@media (max-width: 480px) {
  .sales-slider__img p {
    font-size: 18px;
    min-height: 80px;
  }

  .sales-slider__desc {
    font-size: 15px;
    padding: 15px 15px 20px 20px;
  }
}
.program_articles {
  background-color: var(--off-black);
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}
.program_articles .header-line {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.articles-slider {
  padding-left: 15px;
  padding-right: 15px;
}
.articles-slider__item.swiper-slide {
  height: initial;
}
.articles-slider__item {
  color: var(--off-black);
  background: linear-gradient(to bottom, transparent 0% 135px, #fff 135px 100%);
  padding: 0 35px 40px;
  font-size: 15px;
}
.articles-slider__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.articles-slider__item img {
  display: block;
  margin: 0 auto 25px;
}
.articles-slider__name {
  display: block;
  position: relative;
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 25px;
  margin-bottom: 15px;
}
.articles-slider__name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 4px;
  background-color: var(--orange);
}
.articles-slider__item p {
  line-height: 1.65em;
  margin: 0 0 40px;
}
.articles-slider__more {
  display: block;
  width: 100%;
  max-width: 185px;
  text-align: center;
  margin: auto 0 0 auto;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 20px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.articles-slider__more:hover {
  background-color: var(--orange);
  color: var(--white);
}
.articles-slider_prev,
.articles-slider_next {
  top: 43%;
}
@media (max-width: 1380px) {
  .articles-slider__item {
    padding: 0 30px 30px;
  }
  .articles-slider__item img {
    margin-bottom: 15px;
  }
  .articles-slider__name {
    font-size: 30px;
    padding-bottom: 15px;
    line-height: 1.1em;
  }
  .articles-slider__item p {
    line-height: 1.5em;
    margin-bottom: 20px;
  }
  .articles-slider__more {
    padding: 15px 10px;
  }
}
@media (max-width: 992px) {
  .articles-slider__item {
    padding: 0 25px 30px;
  }

  .articles-slider__name {
    font-size: 24px;
  }

  .articles-slider__more {
    max-width: 145px;
  }
}
@media (max-width: 600px) {
  .articles-slider__name {
    font-size: 20px;
  }
}

/* ОТЗЫВЫ */
.reviews {
  color: var(--white);
  background: url("/website/img/reviews_bg.jpg") top center / 100% no-repeat,
    var(--off-black);
  padding-top: 50px;
  padding-bottom: 100px;
}
.reviews h1 {
  margin-bottom: 50px;
}
.reviews-slider_wrap {
  position: relative;
  padding: 0 65px;
  margin-bottom: 70px;
}
.reviews-slider {
  width: 100%;
  overflow: hidden;
  max-width: 1270px;
  margin: 0 auto;
  position: static;
}
.reviews-slider_prev,
.reviews-slider_next {
  background-color: rgba(255, 255, 255, 0.8);
  width: 55px;
  height: 55px;
  top: 49%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}
.reviews-slider_prev::after,
.reviews-slider_next::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #070707;
  font-size: 30px;
}
.reviews-slider_prev {
  left: 0;
}
.reviews-slider_next {
  right: 0;
}
.reviews_list {
  margin: 0;
}
.reviews_list li {
  color: var(--off-black);
  border-bottom: 3px solid var(--orange);
  padding: 50px 130px;
  font-size: 20px;
  background: url("/website/img/review_quote.png") 35px 40px / 39px no-repeat,
    var(--off-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: initial;
}
.reviews_list__name {
  display: block;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1em;
}
.reviews_list li time {
  display: block;
  font-size: 15px;
  color: #959595;
  font-weight: 500;
}
.reviews_list__text {
  position: relative;
  padding-top: 20px;
  margin: 25px 0 5px;
  line-height: 1.5em;
  min-height: 90px;
}
.reviews_list__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 4px;
  background-color: var(--orange);
}
.reviews-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 70px;
  width: 100%;
  max-width: 260px;
  background-color: var(--orange);
  color: var(--white);
  margin: 0 auto;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 1460px) {
  .reviews_list li {
    padding: 45px 100px;
  }
}
@media (max-width: 1380px) {
  .reviews_list li {
    padding: 45px 60px 45px 80px;
    background-position: 25px 40px;
  }
}
@media (max-width: 1140px) {
  .reviews_list li {
    padding: 35px 30px 45px 80px;
    background-position: 20px 30px;
  }
  .reviews_list__name {
    font-size: 20px;
  }
  .reviews_list__text {
    padding-top: 10px;
    margin: 15px 0 0px;
    min-height: initial;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .reviews h1 {
    margin-bottom: 20px;
  }
  .reviews-slider_wrap {
    padding: 0 55px;
    margin-bottom: 30px;
  }
  .reviews-slider_prev,
  .reviews-slider_next {
    width: 48px;
    height: 48px;
  }
  .reviews-slider_prev::after,
  .reviews-slider_next::after {
    font-size: 26px;
  }
  .reviews-btn {
    min-height: 60px;
    max-width: 220px;
  }
  .reviews_list li {
    padding: 30px 30px 40px 70px;
    background-position: 15px 30px;
  }
}
@media (max-width: 600px) {
  .reviews_list li {
    padding: 20px 20px 20px 55px;
    background-position: 10px 20px;
    background-size: 30px;
  }
  .reviews_list__name {
    font-size: 18px;
  }
  .reviews_list__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4em;
  }
}
@media (max-width: 480px) {
  .reviews-slider_wrap {
    padding: 0 30px;
    margin-bottom: 30px;
  }
  .reviews-slider_prev,
  .reviews-slider_next {
    width: 35px;
    height: 40px;
  }
  .reviews-slider_prev {
    left: -10px;
  }
  .reviews-slider_next {
    right: -10px;
  }
  .reviews-slider_prev::after,
  .reviews-slider_next::after {
    font-size: 22px;
  }
  .reviews-btn {
    min-height: 55px;
    max-width: 190px;
    font-size: 15px;
  }
}
@media (max-width: 380px) {
  .reviews_list li {
    padding: 40px 20px 20px 20px;
    background-position: 20px 10px;
  }
}

/* стили расписание */
.shedule_section {
  padding-top: 50px;
  padding-bottom: 80px;
}
.shedule_section--cross {
  background-color: var(--off-black);
  color: var(--white);
}
.shedule_section--light {
  background-color: var(--off-white);
  color: var(--off-black);
}
.shedule_section .header-line {
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 35px;
  font-weight: 700;
  font-style: italic;
}
.timetable {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(7, 13.8%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 10px;
  text-align: center;
}
.timetable_section {
  margin-bottom: 50px;
}
.timetable_block__header {
  background-color: var(--orange);
  color: var(--white);
  padding: 20px 10px;
  margin-bottom: 6px;
  font-weight: 700;
}
.shedule_section--light .timetable_block__header {
  border-bottom: 6px solid var(--off-white);
}
.timetable_block__list {
  margin: 0;
}
.timetable_block__list li {
  position: relative;
}
.timetable .cell {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  vertical-align: top;
  background-color: var(--white);
  color: var(--off-black);
  font-size: 16px;
  min-height: 138px;
  padding: 25px 5px 20px;
  margin-bottom: 3px;
}
.timetable .cell:hover {
  background-color: var(--orange) !important;
  color: var(--white);
}
.timetable .orange {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}
.timetable .cell:hover .orange {
  color: var(--white);
}
.timetable .cell ul {
  margin: 0 0 auto;
  font-weight: 600;
}
.timetable_fitness {
  padding-top: 15px;
}
.timetable_tabs {
  display: none;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.timetable_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 9, 0.05);
  background-color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #777777;
  text-transform: uppercase;
  cursor: pointer;
}
.timetable_tab.active {
  background-color: var(--orange);
  color: var(--white);
}
.cell_data .orange {
  display: none;
}
.cell_data .header-line {
  padding-bottom: 0;
}
.cell_data .header-line::after {
  display: none;
}
.cell_data {
  display: none;
  position: absolute;
  text-align: left;
  left: 100%;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--black);
  border-top: 7px solid var(--orange);
  width: 800px;
  padding: 35px 20px 20px 35px;
  z-index: 110;
  /* transform: translateY(-100%); */
  font-size: 15px;
  cursor: initial;
  max-height: 600px;
  overflow-y: auto;
}
.timetable_block:nth-child(n + 5) .cell_data {
  left: auto;
  right: 100%;
}
.timetable .cell_data__sub {
  font-weight: 500;
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
}
.timetable .cell_data > div:first-child {
  min-height: 200px;
  margin-bottom: 20px;
}
.timetable .cell_data p {
  margin: 0 0 15px;
  line-height: 1.4em;
  max-width: 735px;
}
@media screen and (min-width: 993px) {
  .timetable li:hover > .cell_data {
    display: block;
  }
}
@media (max-width: 1460px) {
  .cell_data {
    width: 740px;
    max-height: 500px;
  }

  .timetable .cell_data p {
    margin-bottom: 15px;
  }
}
@media (max-width: 1280px) {
  .shedule {
    padding-top: 10px;
  }
  .shedule_section {
    padding-top: 20px;
  }
  .shedule_section .header-line {
    line-height: 1.1em;
    margin-bottom: 15px;
  }
  .shedule_section .header-line::after {
    height: 3px;
    width: 70px;
  }
  .timetable .cell {
    font-size: 13px;
    padding: 15px 5px;
    min-height: 105px;
  }
  .timetable_block__header {
    font-size: 13px;
    padding: 16px 5px;
  }
  .cell_data {
    width: 600px;
    max-height: 400px;
    padding: 15px 10px 10px 20px;
    font-size: 14px;
  }
  .timetable .cell_data > div:first-child {
    min-height: initial;
    margin-bottom: 10px;
  }
  .timetable .cell_data__sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .timetable .cell_data p {
    margin-bottom: 5px;
    line-height: 1.2em;
  }
}
@media (max-width: 1140px) {
  .shedule .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 992px) {
  .timetable {
    grid-template-columns: repeat(4, 24%);
  }
  /* .timetable_block:nth-child(3) .cell_data,
  .timetable_block:nth-child(4) .cell_data {
    left: auto;
    right: 0;
  }
  .timetable_block:nth-child(5) .cell_data,
  .timetable_block:nth-child(6) .cell_data {
    left: 0;
    right: auto;
  } */
}
@media (max-width: 768px) {
  .shedule .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .timetable {
    padding-top: 9px;
  }
  .timetable_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .timetable .cell {
    font-size: 15px;
  }
  .timetable_block__header {
    display: none;
  }
  .timetable {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .timetable_block {
    display: none;
  }
  .timetable_block.active {
    display: block;
  }
  .shedule_section .header-line {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .timetable_tab {
    font-size: 13px;
  }
  .shedule_section .header-line {
    font-size: 22px;
  }
}
@media screen and (min-width: 600px) {
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(1) {
    background-color: #f6ddc9;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(3) {
    background-color: #e2e2e2;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(4) {
    background-color: #f6eec9;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(5) {
    background-color: #f0e4e4;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(6) {
    background-color: #f2dbe3;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(7) {
    background-color: #ffdfb6;
  }
  .timetable_cross .timetable_block:nth-child(odd) .cell:nth-child(8) {
    background-color: #f1f2f4;
  }
  .timetable_fitness .timetable_block:nth-child(2) .cell {
    background-color: #f0e4e4;
  }
  .timetable_fitness .timetable_block:nth-child(3) .cell {
    background-color: #ffeab7;
  }
  .timetable_fitness .timetable_block:nth-child(5) .cell {
    background-color: #ffdfb6;
  }
  .timetable_fitness .timetable_block:nth-child(7) .cell {
    background-color: #e0ebf5;
  }
}
/* end стили расписание */

.scroll_top {
  position: fixed;
  z-index: 100;
  width: 90px;
  height: 90px;
  padding: 14px;
  border-radius: 50%;
  background-color: rgba(255, 114, 0, 0.5);
  right: 5%;
  bottom: 15%;
  visibility: hidden;
  opacity: 0;
}
.scroll_top span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("/website/img/scroll_top.svg") center center / 25px no-repeat,
    rgba(255, 114, 0, 0.5);
}
.scroll_top.on {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 1380px) {
  .scroll_top {
    width: 75px;
    height: 75px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .scroll_top {
    width: 60px;
    height: 60px;
    padding: 8px;
    right: 30px;
    bottom: 100px;
  }
  .scroll_top span {
    background-size: 20px;
  }
}
.prices_form {
  color: var(--off-black);
  background-color: var(--white);
  padding: 30px 20px 35px 30px;
  position: relative;
  z-index: 1;
}
.prices_form--grey {
  background-color: var(--off-white);
}
.prices_form--dark {
  color: var(--white);
  background-color: #5c5c5c;
}
.prices_form .header-line {
  font-size: 40px;
  color: var(--orange);
  font-family: "Roboto";
  font-weight: 700;
  font-style: italic;
  padding-bottom: 15px;
  max-width: 530px;
  margin: 0 auto 12px;
}
.prices_form--dark .header-line {
  color: inherit;
}
.prices_form__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51% 43%;
  grid-template-columns: 51% 43%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 530px;
  margin: 0 auto;
}
.prices_form__label span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.prices_form__label input {
  display: block;
  width: 100%;
  border: 2px solid #242020;
  border-radius: 5px;
  padding: 15px 10px;
}
.prices_form--dark .prices_form__label input {
  border-color: var(--white);
  background-color: transparent;
  color: inherit;
  outline: var(--white);
}
.prices_form--dark input::placeholder {
  color: var(--white);
}
.prices_form .captcha_row {
  grid-column: 1/-1;
}
.prices_form .captcha_row input {
  border: 2px solid #242020;
  border-radius: 5px;
  padding: 15px 10px;
}
.prices_form--dark .captcha_row input {
  border-color: var(--white);
  background-color: transparent;
  color: inherit;
  outline: var(--white);
}
.prices_form .captcha_row span {
  align-self: stretch;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  padding: 5px;
}

.prices_form__politic {
  margin: 0;
  font-size: 12px;
}
.prices_form__politic a {
  color: var(--orange);
  text-decoration: underline;
}
.prices_form__politic a:hover {
  text-decoration: none;
}
.prices_form__btn {
  display: block;
  max-width: 195px;
  border: none;
  color: var(--white);
  background-color: var(--orange);
  text-transform: uppercase;
  padding: 17px 5px;
  cursor: pointer;
}
.prices_program .prices_form {
  max-width: 700px;
}
.prices_program .prices_form--right {
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .prices_form__block {
    -ms-grid-columns: 49% 46%;
    grid-template-columns: 49% 46%;
  }
  .prices_form .header-line {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .prices_form__block {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
@media (max-width: 768px) {
  .prices_form__block {
    -ms-grid-columns: 49% 46%;
    grid-template-columns: 49% 46%;
  }
}
@media (max-width: 500px) {
  .prices_form__block {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .prices_form__label input {
    padding: 16px 8px;
  }
}
.shedule-popup.fancybox-content {
  width: 95vw;
  max-width: 1530px;
  border-radius: 15px;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  padding: 70px 40px;
}
.shedule-popup .fancybox-close-small {
  width: 56px;
  height: 56px;
  top: 20px;
  right: 20px;
}
.shedule-popup_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.shedule-popup_img {
  width: 41%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 10px;
}
.shedule-popup_img img {
  display: block;
  margin: 0 auto;
  border-radius: 25px;
}
.shedule-popup_text {
  width: 53%;
}
.shedule-popup .cell_data__sub {
  display: block;
  font-size: 35px;
  font-weight: 700;
  font-style: italic;
  line-height: 1em;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.shedule-popup .cell_data__programm {
  margin-bottom: 20px;
}
.shedule-popup .cell_data__programm .cell_data__sub {
  font-size: 50px;
}
.shedule-popup .orange {
  display: block;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 5px;
}
.shedule-popup p {
  margin: 0 0 20px;
  line-height: 1.3em;
}
@media (max-width: 1460px) {
  .shedule-popup.fancybox-content {
    padding: 50px 40px 40px;
  }
  .shedule-popup .cell_data__sub {
    font-size: 32px;
  }
  .shedule-popup .cell_data__programm .cell_data__sub {
    font-size: 45px;
  }
}
@media (max-width: 1380px) {
  .shedule-popup_text {
    width: 56%;
  }
  .shedule-popup p {
    margin-bottom: 15px;
  }
}
@media (max-width: 1280px) {
  .shedule-popup.fancybox-content {
    padding: 35px 30px 25px;
  }
  .shedule-popup .fancybox-close-small {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }
  .shedule-popup .cell_data__sub {
    font-size: 28px;
  }
  .shedule-popup .cell_data__programm .cell_data__sub {
    font-size: 40px;
  }
  .shedule-popup .orange {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .shedule-popup.fancybox-content {
    padding: 20px;
  }
  .shedule-popup .fancybox-close-small {
    width: 45px;
    height: 45px;
    top: 5px;
    right: 5px;
  }
  .shedule-popup_img {
    padding-top: 0;
  }
  .shedule-popup .cell_data__sub {
    font-size: 22px;
  }
  .shedule-popup .cell_data__programm .cell_data__sub {
    font-size: 30px;
  }
  .shedule-popup p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .shedule-popup .orange {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
@media (max-width: 768px) {
  .shedule-popup .cell_data__sub {
    padding-bottom: 7px;
  }
  .shedule-popup_img {
    display: none;
  }
  .shedule-popup_text {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .shedule-popup p {
    font-size: 14px;
  }
  .shedule-popup .cell_data__sub {
    font-size: 20px;
  }
  .shedule-popup .cell_data__programm .cell_data__sub {
    font-size: 26px;
  }
  .shedule-popup .orange {
    font-size: 16px;
  }
}
.reviews-popup.fancybox-content {
  width: 95vw;
  max-width: 1010px;
  border-radius: 15px;
  padding: 50px 30px;
  font-family: var(--font-Roboto);
}
.reviews-popup .fancybox-close-small {
  width: 56px;
  height: 56px;
  top: 15px;
  right: 20px;
}
.reviews-popup__content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.reviews-popup .header-line {
  font-size: 60px;
  line-height: 1em;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
.reviews-form_selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.reviews-form_club {
  position: relative;
}
.reviews-form_radio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.reviews-form_club-link {
  display: block;
  padding: 15px 20px;
  border-radius: 15px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 5px 10px 0px rgb(17 17 9 / 24%);
  box-shadow: 0px 5px 10px 0px rgb(17 17 9 / 24%);
  -webkit-transition: background-color var(--short);
  transition: background-color var(--short);
  cursor: pointer;
}
.reviews-form_club-link--cross {
  margin-right: 70px;
}
.reviews-form_radio:checked + .reviews-form_club-link {
  background-color: #ffeee0;
}
.reviews-form_club-link svg {
  display: block;
}
.reviews-form_subtitle {
  margin: 0;
  margin-right: 37px;
  font-family: var(--font-Roboto);
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  color: var(--app-dark);
}
.reviews-form_subtitle > span {
  position: relative;
  padding-right: 22px;
}
.reviews-form_subtitle > span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("/website/img/club_arrow_icon.png");
  background-size: cover;
}
.reviews-form_inputs {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 46.5%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 10px;
  font-family: "Golos Text";
  margin-bottom: 15px;
}
.reviews-form_full {
  grid-column: 1/-1;
}
.reviews-form_inputs label {
  display: block;
}
.reviews-form_inputs label span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.reviews-form_inputs input,
.reviews-form_inputs textarea {
  display: block;
  width: 100%;
  border: 2px solid #242020;
  border-radius: 5px;
  padding: 16px;
}
.reviews-form_inputs textarea {
  min-height: 105px;
}
.reviews-form_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  font-family: "Golos Text";
  font-size: 14px;
}
.reviews-form_btn {
  width: 100%;
  max-width: 195px;
  background-color: var(--orange);
  color: var(--white);
  text-transform: uppercase;
  border: none;
  padding: 18px 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.reviews-form_politic {
  margin: 0;
  max-width: 500px;
}
.reviews-form_politic a {
  color: var(--orange);
  text-decoration: underline;
}
.reviews-form .captcha_row {
  margin-top: 5px;
}
@media (max-width: 992px) {
  .reviews-popup.fancybox-content {
    padding: 30px;
  }
  .reviews-form_club-link--cross {
    margin-right: 30px;
  }
  .reviews-popup .header-line {
    font-size: 50px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .reviews-popup .header-line {
    font-size: 45px;
  }
  .reviews-popup .fancybox-close-small {
    width: 45px;
    height: 45px;
    top: 5px;
    right: 10px;
  }
  .reviews-form_inputs {
    grid-template-columns: repeat(2, 48%);
  }
  .reviews-form_selection {
    margin-bottom: 20px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .reviews-form_club-link {
    padding: 10px 15px;
  }
  .reviews-form_club-link--cross {
    margin-right: 0;
  }
  .reviews-form_subtitle {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .reviews-form .captcha_row {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .reviews-popup .header-line {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .reviews-popup.fancybox-content {
    padding: 25px 15px;
  }
  .reviews-form_politic {
    font-size: 13px;
  }
  .reviews-form_btn {
    padding: 14px 10px;
    max-width: 170px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .reviews-form_selection {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: initial;
    -moz-column-gap: initial;
    column-gap: initial;
  }
  .reviews-form_subtitle {
    width: 100%;
    margin-bottom: 5px;
  }
  .reviews-form_subtitle br {
    display: none;
  }
  .reviews-form_club {
    width: 48%;
  }
  .reviews-form_inputs input,
  .reviews-form_inputs textarea {
    padding: 12px;
  }
  .reviews-form_controls {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 10px;
  }
  .reviews-form_politic {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .reviews-popup.fancybox-content {
    padding: 30px 15px 15px;
  }
  .reviews-popup .fancybox-close-small {
    top: 2px;
    right: 2px;
  }
  .reviews-popup .header-line {
    font-size: 30px;
    padding-bottom: 5px;
  }
  .reviews-form_club-link {
    padding: 5px 10px;
  }
  .reviews-form_inputs {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    row-gap: 5px;
  }
  .reviews-form_btn {
    padding: 12px 5px;
    max-width: 150px;
  }
}
.service-fitness {
  background-color: var(--off-black);
  color: var(--white);
  padding: 0 0 40px;
}
.service-fitness .header-h1 {
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.service-fitness_intro {
  padding-top: 100px;
  background: url("/website/img/service-fitness_bg.png") right top / 42% auto
    no-repeat;
}
.service-page_blocks {
  padding-top: 65px;
}
.service-page_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
  font-size: 20px;
}
.service-page_block__img {
  width: 46%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.service-page_block__text {
  width: 52%;
  padding: 20px 10px 40px 95px;
}
.service-page_block--white {
  padding-top: 110px;
}
.service-page_block--white .service-page_block__text {
  position: relative;
  background-color: var(--white);
  color: var(--off-black);
  padding-top: 75px;
}
.service-page_block--white .service-page_block__text::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 0;
  width: 60%;
  height: 100%;
  background-color: var(--white);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.service-page_block--white .service-page_block__img {
  position: relative;
  top: -75px;
  margin-bottom: 30px;
}
.service-page_block__header {
  position: relative;
  padding-left: 160px;
  font-size: 35px;
  font-weight: 600;
  padding-top: 5px;
  margin-bottom: 65px;
  min-height: 100px;
}
.service-page_block__header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  -webkit-filter: invert(50%) sepia(40%) saturate(5408%) hue-rotate(5deg)
    brightness(106%) contrast(108%);
  filter: invert(50%) sepia(40%) saturate(5408%) hue-rotate(5deg)
    brightness(106%) contrast(108%);
}
.service-page_block__header--hamam::before {
  background-image: url("/website/img/services__hamam.svg");
}
.service-page_block__header--solarium::before {
  background-image: url("/website/img/services__solarium.svg");
}
.service-page_block__header b {
  display: block;
  position: relative;
  font-size: 1.14em;
  font-weight: 600;
  padding-top: 30px;
  margin-bottom: 5px;
}
.service-page_block__header b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 4px;
  background: var(--orange);
}
.service-page_block__header span {
  display: block;
  color: var(--orange);
}
.service-page_block p {
  margin: 0 0 20px;
  line-height: 1.55em;
  max-width: 680px;
}
@media (max-width: 1480px) {
  .service-fitness_intro {
    padding-top: 70px;
  }
  .service-page_blocks {
    padding-top: 40px;
  }
  .service-page_block--white {
    padding-top: 75px;
  }
  .service-page_block__text {
    padding-left: 75px;
  }
  .service-page_block--white .service-page_block__text {
    padding-top: 45px;
  }
  .service-page_block--white .service-page_block__img {
    top: -50px;
    margin-bottom: 00px;
  }
  .service-page_block__header {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1380px) {
  .service-fitness_intro {
    padding-top: 50px;
  }
  .service-page_blocks {
    padding-top: 20px;
  }
  .service-page_block--white {
    padding-top: 50px;
  }
  .service-page_block__text {
    padding-left: 50px;
  }
  .service-page_block__header {
    font-size: 30px;
    margin-bottom: 30px;
    padding-left: 140px;
  }
  .service-page_block__header::before {
    width: 115px;
    height: 115px;
  }
  .service-page_block__header b {
    padding-top: 20px;
  }
}
@media (max-width: 1280px) {
  .service-page_block__text {
    padding-left: 40px;
    padding-bottom: 20px;
    font-size: 18px;
  }
  .service-page_block--white .service-page_block__text {
    padding-top: 30px;
  }
  .service-page_block__header {
    font-size: 26px;
    padding-left: 120px;
  }
  .service-page_block__header::before {
    width: 100px;
    height: 100px;
  }
  .service-page_block__header b {
    padding-top: 15px;
  }
  .service-page_block--white {
    padding-top: 35px;
  }
  .service-page_block--white .service-page_block__img {
    top: -35px;
  }
}
@media (max-width: 992px) {
  .service-page_block {
    margin-bottom: 30px;
  }
  .service-page_block__text {
    padding-left: 30px;
    padding-bottom: 10px;
  }
  .service-page_block--white .service-page_block__text {
    padding-top: 20px;
  }
  .service-page_block__header {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .service-page_block__img {
    width: 47%;
  }
}
@media (max-width: 840px) {
  .service-page_block__img {
    width: 90%;
    margin: 0 auto 15px;
    max-width: 640px;
  }
  .service-page_block__text {
    width: 100%;
    padding: 20px 15px 20px 30px;
  }
  .service-page_block--white {
    padding-top: 0;
  }
  .service-page_block--white .service-page_block__text::before {
    left: 0;
    top: 5px;
    width: 100%;
    height: 60%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .service-page_block--white .service-page_block__img {
    margin-bottom: 15px;
    top: 0;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 768px) {
  .service-page_blocks {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .service-page_block__header {
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 100px;
    min-height: 80px;
  }
  .service-page_block__header::before {
    width: 80px;
    height: 80px;
  }
  .service-page_block__text {
    font-size: 16px;
    padding: 10px 10px 10px 20px;
  }
  .service-page_block__img {
    width: 100%;
  }
  .service-page_block--white .service-page_block__text {
    padding-top: 10px;
  }
  .service-page_block p {
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
@media (max-width: 380px) {
  .service-page_block__header {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 85px;
    min-height: 70px;
  }
  .service-page_block__header::before {
    width: 70px;
    height: 70px;
  }
  .service-page_block__text {
    padding-left: 5px;
  }
  .service-page_block--white .service-page_block__text {
    padding-left: 15px;
  }
}
.actions_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.actions__list .actions_contacts {
  margin-top: auto;
}
.actions_contacts__block {
  width: 50%;
  border: 2px solid var(--black-two);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  font-weight: 500;
  text-align: center;
}
.actions_contacts .actions_contacts__block {
  padding: 3px 6px;
  font-size: 15px;
  line-height: 1.2em;
  margin: 0;
}
.actions_contacts__block:last-child {
  border-left: none;
}
.actions_contacts__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.whatsapp-link img {
  display: block;
}
@media (max-width: 1280px) {
  .actions_contacts > p {
    min-height: 50px;
  }
  .actions_contacts__block:first-child {
    width: 58%;
  }
  .actions_contacts__block:last-child {
    width: 42%;
  }
}
@media (max-width: 1080px) and (min-width: 769px) {
  .actions__list .actions_contacts__block {
    width: 100%;
    min-height: 40px;
  }
  .actions__list .actions_contacts__block:last-child {
    border-left: 2px solid var(--black-two);
    border-top: none;
  }
}
@media (max-width: 1100px) and (min-width: 769px) {
  .action .actions_contacts__block {
    width: 100%;
    min-height: 40px;
  }
  .action .actions_contacts__block:last-child {
    border-left: 2px solid var(--black-two);
    border-top: none;
  }
}
@media (max-width: 520px) {
  .actions_contacts .actions_contacts__block {
    width: 100%;
    min-height: 40px;
  }
  .actions_contacts .actions_contacts__block:last-child {
    border: 2px solid var(--black-two);
    border-top: none;
  }
}
.captcha_row {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.captcha_row span {
  flex-shrink: 0;
}
.captcha_row span img {
  display: block;
}
.captcha_row input {
  width: 100%;
  margin: 0;
}
.gdpr {
  position: fixed;
  top: auto;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  box-shadow: 0px 3px 38px 0px rgba(99, 99, 99, 0.38);
  padding: 15px 0;
  font-weight: 600;
  z-index: 1000;
}
.gdpr--white {
  background-color: rgba(255, 255, 255, 0.9);
  color: #090f1f;
  border-top: 3px solid #191919;
}
.gdpr .container {
  display: grid;
  grid-template-columns: 1fr 244px;
  grid-column-gap: 80px;
  align-items: center;
  box-sizing: border-box;
}
.gdpr .container:before,
.gdpr .container:after {
  display: none;
}
.gdpr p,
.gdpr small {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}
.gdpr .container > small {
  display: none;
}
.btn_close {
  grid-row: 1/3;
  grid-column: 2/3;
  display: block;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.gdpr--white .btn_close {
  background-color: #000000;
  color: #fff;
}
.btn_close:hover {
  color: #000;
}
.gdpr--white .btn_close:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdpr .container {
    grid-template-columns: 1fr 200px;
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .gdpr {
    padding: 20px 0 15px;
  }
  .gdpr .container {
    grid-template-columns: 1fr 175px;
    grid-column-gap: 35px;
  }
  .gdpr p {
    grid-column: 1/-1;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .gdpr p small {
    display: none;
  }
  .gdpr .container > small {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .btn_close {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  .gdpr .container {
    grid-template-columns: 1fr 145px;
    grid-column-gap: 20px;
  }
  .btn_close {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 768px) {
  .fit-foto {
    display: flex !important;
    flex-direction: column;
    row-gap: 5px !important;
  }
}

.hatha__list {
  padding: 5px 0 30px;
  margin: 0;
  list-style-type: "- ";
}
.program_text .hatha__descr--title {
  margin-bottom: 15px;
}
.hatha__list-item {
  padding: 5px 0 5px;
}

.app-form__adres {
  display: block;
  padding: 10px 0 5px 0;
  text-align: center;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 767px) {
  .app-form__adres--1 {
    margin-right: 70px;
  }
}
@media screen and (max-width: 576px) {
  .app-form__adres {
    font-size: 14px;
  }
}
@media screen and (max-width: 380px) {
  .app-form__adres {
    font-size: 11px;
  }
}
.cell_data .cell_data__trainer {
  display: none;
}
.map-popup {
  display: none;
}
.map-popup.fancybox-content {
  padding: 0px;
  width: 90vw;
  height: 80vh;
}
.map-popup iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.map-popup .fancybox-close-small {
  top: 8px;
  right: 8px;
  background-color: var(--off-white);
  border-radius: 5px;
  opacity: 1;
}
.orange__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.orange__list li {
  position: relative;
  padding-left: 25px;
}
.orange__list li::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fd7200;
}
.orange__num-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 30px;
  row-gap: 40px;
  counter-reset: li;
  padding: 0;
  margin-bottom: 60px;
}
.orange__num-list li {
  position: relative;
  padding-left: 40px;
  list-style-type: none;
}
.orange__num-list li::before {
  position: absolute;
  display: block;
  content: "";
  content: counter(li);
  counter-increment: li;
  color: #fd7200;
  font-size: 48px;
  font-weight: 600;
  left: 0;
  top: -4px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .orange__num-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .orange__num-list {
    grid-template-columns: 1fr;
  }
}
.cross-page__app-link {
  margin: 30px 0 10px;
}
.or-app-link {
  display: flex;
  position: relative;
  max-width: 245px;
  padding: 22px 55px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--orange);
  border: 1px solid var(--orange);
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  font-family: var(--font-Roboto);
  color: var(--white);
}
.or-app-link:hover {
  color: var(--orange);
  background-color: var(--white);
}
.cross-page__btns {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
  margin: 30px 0 10px;
  color: var(--white);
}
.cross-page__btns--dark {
  color: var(--off-black);
}
.cross-page__btns .cross-page__app-link {
  margin: 0;
}
.cross-page__phones {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 20px;
  color: inherit;
  font-weight: 500;
}
.service-page__programms-title,
.service-page__sections-title {
  font-size: 40px;
  line-height: 1.2;
  padding-top: 30px;
  font-style: normal;
}
.service-page__sections-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .service-page__programms-title,
  .service-page__sections-title {
    font-size: 28px;
  }
}
.abonements {
  background-color: var(--off-black);
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 85px;
}
.abonements_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 40px;
  margin: 0 0 60px;
  padding: 0;
  font-size: 20px;
}
.abonements_list__item {
  display: flex;
  flex-direction: column;
}
.abonements_list__display {
  display: block;
}
.abonements_list__display img {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 95%;
}
.abonements_list__name {
  position: relative;
  margin-top: -17px;
  display: flex;
  min-height: 125px;
  align-items: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  padding: 30px 20px 20px 70px;
}
.abonements_list__item:nth-child(even) .abonements_list__name {
  background-color: var(--white);
  color: var(--orange);
}
.abonements_list__block {
  flex: 1;
  padding: 25px 0 10px 70px;
  width: 100%;
  max-width: 680px;
}
.abonements_list__block p {
  line-height: 1.5em;
}
.abonements_list__item:nth-child(even) .abonements_list__block {
  margin-left: auto;
}
.abonements_list__controls {
  display: block;
  background-color: var(--white);
  padding: 35px 20px 40px 70px;
  color: var(--orange);
  width: 100%;
  max-width: 680px;
}
.abonements_list__item:nth-child(even) .abonements_list__controls {
  background-color: #5c5c5c;
  color: var(--white);
  margin-left: auto;
}
.abonements_list__price {
  position: relative;
  display: block;
  font-weight: 500;
  margin-bottom: 22px;
  padding-top: 14px;
}
.abonements_list__price::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  max-width: 90px;
  height: 4px;
  background-color: var(--orange);
}
.abonements_list__btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 1px 4px 8px 1px rgba(48, 47, 47, 0.4);
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .abonements_list__name,
  .abonements_list__block,
  .abonements_list__controls {
    padding-left: 45px;
  }
}
@media screen and (max-width: 992px) {
  .abonements_list {
    font-size: 18px;
  }
  .abonements_list__name {
    margin-top: -10px;
    min-height: 100px;
    font-size: 26px;
    padding: 20px 20px 10px 30px;
  }
  .abonements_list__block {
    padding: 5px 0 10px 30px;
  }
  .abonements_list__controls {
    padding: 25px 10px 30px 30px;
  }
  .abonements_list__btn {
    padding: 12px 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .abonements {
    padding-top: 20px;
    padding-bottom: 45px;
  }
  .abonements_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .abonements_list__name {
    font-size: 22px;
  }
}

.abonement-page {
  padding-top: 40px;
  padding-bottom: 120px;
  background-color: var(--off-white);
}
.abonement {
  display: grid;
  grid-template-columns: 43% 54%;
  justify-content: space-between;
  padding-top: 30px;
}
.abonement h1 {
  font-size: 62px;
  text-align: left;
  line-height: 1em;
  margin-bottom: 25px;
}
.abonement_img {
  padding-top: 10px;
}
.abonement img {
  display: block;
}
.abonement_text {
  font-size: 22px;
}
.abonement_desc {
  position: relative;
  font-size: 33px;
  font-weight: 600;
  padding: 20px 0;
  margin-bottom: 20px;
}
.abonement_desc::before,
.abonement_desc::after {
  content: "";
  position: absolute;
  left: 0;
  width: 90%;
  max-width: 150px;
  height: 5px;
  background-color: var(--orange);
}
.abonement_desc::before {
  top: 0;
}
.abonement_desc::after {
  bottom: 0;
}
.abonement_desc p {
  margin: 0;
  line-height: 1.3em;
}
.abonement_price {
  display: block;
  font-weight: 700;
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 40px;
}
.abonement_btn {
  display: inline-block;
  border: none;
  padding: 14px 35px;
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 1px 4px 8px 1px rgba(48, 47, 47, 0.4);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 45px;
  cursor: pointer;
}
.abonement_contacts {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-family: var(--font-Roboto);
}
.abonement_contacts__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  color: #121212;
  background-color: var(--white);
  border: 2px solid currentColor;
  padding: 5px 15px;
  font-weight: 600;
  font-style: italic;
  row-gap: 5px;
}
.abonement_contacts__whatsapp {
  display: block;
  flex-shrink: 0;
}
.abonement_contacts__tel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding-left: 45px;
  font-size: 1.1em;
}
.abonement_contacts__tel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: url("/website/img/phone.png") center center / 100% no-repeat;
}

@media screen and (max-width: 1280px) {
  .abonement-page {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .abonement {
    padding-top: 20px;
  }
  .abonement h1 {
    font-size: 54px;
  }
  .abonement_desc {
    font-size: 26px;
  }
  .abonement_price,
  .abonement_btn {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .abonement_contacts {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .abonement h1 {
    font-size: 48px;
  }
  .abonement_desc {
    font-size: 24px;
  }
  .abonement_price,
  .abonement_btn {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .abonement {
    grid-template-columns: 100%;
    row-gap: 30px;
    padding-top: 0;
  }
  .abonement_img img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .abonement h1 {
    font-size: 44px;
  }
  .abonement_desc {
    font-size: 22px;
  }
  .abonement_price,
  .abonement_btn {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .abonement h1 {
    font-size: 38px;
  }
  .abonement_desc {
    font-size: 20px;
    padding: 15px 0;
  }
  .abonement_desc::before,
  .abonement_desc::after {
    height: 4px;
  }
  .abonement_price,
  .abonement_btn {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .abonement_contacts {
    font-size: 18px;
    column-gap: 10px;
  }
  .abonement_contacts__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header__menu-list li a[href="#app_form_box"] {
  color: var(--orange);
  margin-top: 10px;
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 6px 12px;
  padding-bottom: 8px;
  font-weight: 700;
  display: inline-block;
}
.header__menu-list li a[href="#app_form_box"]:hover {
  background-color: #fd720021;
}

@media (max-width: 992px) {
  .header__menu-list li a[href="#app_form_box"] {
    display: block;
    text-align: center;
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .header__menu-list li a[href="#app_form_box"] {
    max-width: 280px;
    transform: translateX(-30px);
  }
}
@media (max-width: 420px) {
  .header__menu-list li a[href="#app_form_box"] {
    max-width: 280px;
    transform: none;
    margin-left: 0;
  }
}

.budni__more-link {
  margin: 10px 0 5px;
  display: inline-block;
  padding: 15px 25px;
}

.serv-fitness__intro {
  padding: 80px 0 100px;
  font-family: var(--font-Roboto);
  background: url("/website/img/service-fitness_bg2.png") right top / 37% auto
    no-repeat;
}
.sf-intro__title {
  text-align: center;
  margin-bottom: 60px;
}
.sf-intro__list-box {
  padding: 40px;
  background-color: #2f2c2d;
  position: relative;
}
.sf-intro__list {
  display: grid;
  grid-row: auto;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 100px;
  padding: 0;
  margin: 0;
}
.sf-intro__item {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 115px;
  padding: 10px 0 10px 140px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.sf-intro__item::before {
  display: block;
  position: absolute;
  content: "";
  width: 115px;
  height: 115px;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid #e1e0e0;
  background-image: url("/website/img/sf-intro-01.png");
  background-position: center;
  background-repeat: no-repeat;
}
.sf-intro__list li:nth-child(2)::before {
  background-image: url("/website/img/sf-intro-02.png");
}
.sf-intro__list li:nth-child(3)::before {
  background-image: url("/website/img/sf-intro-03.png");
}
.sf-intro__list li:nth-child(4)::before {
  background-image: url("/website/img/sf-intro-04.png");
}
.sf-intro__list li:nth-child(5)::before {
  background-image: url("/website/img/sf-intro-05.png");
}
.sf-intro__list li:nth-child(6)::before {
  background-image: url("/website/img/sf-intro-06.png");
}
.sf-intro__list li:nth-child(7)::before {
  background-image: url("/website/img/sf-intro-07.png");
}
.sf-intro__list li:nth-child(8)::before {
  background-image: url("/website/img/sf-intro-08.png");
}
.sf-intro__list li:nth-child(9)::before {
  background-image: url("/website/img/sf-intro-09.png");
}
.sf-intro__list li:nth-child(10)::before {
  background-image: url("/website/img/sf-intro-10.png");
}
.sf-intro__list li:nth-child(odd)::before {
  border: 1px solid #fd7200;
}
.sf-intro__warn {
  padding: 20px;
  position: absolute;
  max-width: 65%;
  width: 100%;
  right: 120px;
  bottom: 40px;
  border: 2px solid #e1e0e0;
  display: flex;
  align-items: center;
}
.sf-info__capt {
  position: relative;
  margin: 0;
  padding-left: 140px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  row-gap: 4px;
  justify-content: center;
  min-height: 80px;
}
.sf-info__capt span {
  max-width: 580px;
}
.sf-info__capt::before {
  display: block;
  position: absolute;
  content: "";
  left: 30px;
  top: 50%;
  width: 80px;
  height: 80px;
  background-image: url("/website/img/sf-intro-11.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .sf-intro__list {
    column-gap: 20px;
    row-gap: 80px;
  }
  .sf-intro__warn {
    right: 40px;
    width: 70%;
  }
  .sf-info__capt {
    padding-left: 70px;
  }
  .sf-info__capt::before {
    left: -10px;
  }
}
@media (max-width: 992px) {
  .sf-intro__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
  }
  .sf-intro__warn {
    position: static;
    max-width: none;
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .sf-intro__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 576px) {
  .sf-intro__item {
    padding: 130px 5px 10px;
    justify-content: center;
    text-align: center;
  }
  .sf-intro__item::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .sf-intro__list-box {
    padding: 20px;
  }
  .sf-intro__warn {
    padding: 10px;
  }
  .sf-info__capt {
    padding-left: 40px;
    font-size: 16px;
  }
  .sf-info__capt::before {
    left: 0;
    width: 30px;
  }
}
.service-page__programms-title.service-page__programms-title--center,
.service-page__sections-title.service-page__sections-title--center {
  text-align: center;
}
.service-page__sections-title--center {
  margin-bottom: 40px;
}
.service-page__blocks {
  padding: 50px 0 20px;
}
.service-page_block__header--zam::before {
  background-image: url("/website/img/serv-fit-ico-01.png");
  background-size: 80%;
}
.service-page_block__header--polot::before {
  background-image: url("/website/img/serv-fit-ico-02.png");
  background-size: 65%;
}
.service-page_block__header--skaf::before {
  background-image: url("/website/img/serv-fit-ico-03.png");
  background-size: 60%;
}
.service-page_block__header--bar::before {
  background-image: url("/website/img/serv-fit-ico-04.png");
  background-size: 60%;
}
.service-page_block__header--arenda::before {
  background-image: url("/website/img/serv-fit-ico-05.png");
  background-size: 60%;
}
.service-page__blocks .service-page_block--white {
  margin-bottom: 100px;
}
.service-page__blocks .service-page_block__img {
  width: 42%;
}
@media (max-width: 840px) {
  .service-page__blocks .service-page_block__img {
    width: 90%;
  }
  .service-page_block--white .service-page_block__img {
    z-index: 1;
  }
  .sf-intro__title {
    margin-bottom: 40px;
  }
  .serv-fitness__intro {
    padding: 30px 0;
  }
}
.fitness-programs_group.fitness-programs_group--nobefore::before {
  display: none;
}
.pgr-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 22%);
  justify-content: space-between;
  row-gap: 30px;
  padding: 25px 0;
  margin-bottom: 40px;
}
.pgr-nav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 350px;
}
.pgr-nav__link::before,
.pgr-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 334px;
  height: 334px;
  border-radius: 50%;
}
.pgr-nav__link::before {
  border: 3px solid #ffffff;
  background-color: #2f2c2d;
}
/* .pgr-nav__link::after {
  filter: invert(100%) sepia(0%) saturate(7378%) hue-rotate(22deg) brightness(111%) contrast(109%);
} */
.pgr-nav__link--1::after {
  background: url("/website/img/pgr-nav_01.png") center center / 73% no-repeat;
}
.pgr-nav__link--2::after {
  background: url("/website/img/pgr-nav_02.png") 52% 56% / 78% no-repeat;
}
.pgr-nav__link--3::after {
  background: url("/website/img/pgr-nav_03.png") 46% 27% / 74% no-repeat;
}
.pgr-nav__link--4::after {
  background: url("/website/img/pgr-nav_04.png") 55% 56% / 77% no-repeat;
}
.pgr-nav__link--5::after {
  background: url("/website/img/pgr-nav_05.png") 60% 60% / 90% no-repeat;
}
.pgr-nav__link:hover::before {
  border-color: var(--orange);
}
/* .pgr-nav__link:hover::after {
  filter: invert(52%) sepia(81%) saturate(2335%) hue-rotate(358deg) brightness(94%) contrast(113%);
} */

.pgr-nav__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  padding: 7px 10px;
  position: relative;
  transition: 0.2s;
}
.pgr-nav__link:hover .pgr-nav__title {
  color: var(--orange);
  /* background-color: var(--orange);
  transform: translateY(-100%) scale(1.1); */
}
@media (max-width: 1480px) {
  .pgr-nav__list {
    grid-template-columns: repeat(4, 23.5%);
  }
  .pgr-nav__link {
    padding-top: 21vw;
  }
  .pgr-nav__link::before, .pgr-nav__link::after {
    width: 20vw;
    height: 20vw;
  }
}
@media (max-width: 992px) {
  .pgr-nav__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .pgr-nav__list {
    grid-template-columns: repeat(2, 48%);
    max-width: 580px;
    margin: 0 auto 40px;
    row-gap: 45px;
    padding-top: 0;
  }
  .pgr-nav__title {
    /* background-color: var(--orange); */
    max-width: 450px;
  }
  .pgr-nav__link {
    padding-top: 230px;
  }
  .pgr-nav__link::before, .pgr-nav__link::after {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 480px) {
  .pgr-nav__list {
    row-gap: 20px;
  }
  .pgr-nav__link {
    padding-top: 41vw;
  }
  .pgr-nav__link::before, .pgr-nav__link::after {
    width: 40vw;
    height: 40vw;
  }
  .pgr-nav__title {
    font-size: 4.4vw;
  }
}
.tel-wrap {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.tel-wrap__whatsapp {
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__tel-wrap {
    flex-direction: row-reverse;
  }
  .header__tel-wrap img {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 440px) {
  .header__tel-wrap img {
    width: 20px;
    height: 20px;
  }
  .header__tel-wrap {
    align-items: center;
    column-gap: 5px;
  }
}
@media (max-width: 440px) {
  .header__tel-wrap img {
    width: 18px;
    height: 18px;
  }
  .header__tel-wrap {
    column-gap: 3px;
  }
}
.footer__tel-wrap {
  column-gap: 8px;
}
.footer__tel-wrap .tel-link {
  padding-left: 0;
}
.footer__tel-wrap .tel-link::before {
  display: none;
}
.prices_call {
  padding-top: 10px;
  position: relative;
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 500;
}
.prices_call::before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 2px;
  width: 100px;
  background-color: var(--orange);
}
.prices_call p.prices_call__capt {
  font-size: 16px;
  margin-bottom: 10px;
}
.prices_call__tel {
  font-weight: 700;
}
.prices_program__text .prices_call {
  margin-top: 30px;
  padding-top: 15px;
}
.prices_program__text .prices_call p {
  padding-bottom: 0;
  margin: 0 0 12px;
}
.prices_program__text .prices_call p::before {
  display: none;
}
.prices_program__text .prices_call::before {
  height: 4px;
}
.site-creator {
  padding: 10px 0;
  background-color: #555555;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
}
.site-creator_link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 480px) {
  .site-creator {
    font-size: 14px;
  }
}
.program-kb__intro h2 {
  font-size: 40px;
  line-height: 1.2em;
  font-family: var(--font-Golos);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 25px;
}
.program-kb__intro {
  font-size: 24px;
  font-family: var(--font-Golos);
}
.program-kb__intro-title {
  font-weight: 700;
}
.spark-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.spark-list li {
  position: relative;
  padding-left: 40px;
  line-height: 1.2;
}
.spark-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 30px;
  background: url("/website/img/program-lightning.png") center center / 100%
    no-repeat;
}
.program_text .program-kb__descr {
  font-size: 20px;
  margin-bottom: 40px;
  font-family: var(--font-Golos);
}
.program-dark {
  padding: 60px 0 70px;
  background-color: var(--off-black);
}
.program-blocks {
  font-size: 20px;
  font-family: var(--font-Golos);
}
.program-blocks h2 {
  font-size: 40px;
  line-height: 1.2em;
  font-family: var(--font-Golos);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 25px;
}
.program-blocks__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 0 40px 80px;
  margin-bottom: 60px;
}
.program-blocks__row.program-blocks__row--reverse {
  padding: 0 30px 40px 0;
}
.program-blocks__text,
.program-blocks__image {
  position: relative;
}
.program-blocks__text {
  padding-top: 40px;
  padding-right: 10px;
}
.program-blocks__row--reverse .program-blocks__text {
  padding-left: 60px;
}
.program-blocks__row::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 80px;
  background-color: #fff;
}
.program-blocks__row.program-blocks__row--reverse::before {
  right: 0;
  left: 80px;
}
.program-blocks__text p {
  margin: 0 0 25px;
  line-height: 1.3;
}
.program-blocks__list-box {
  padding-left: 40px;
}
.program-blocks__list-title {
  font-weight: 700;
}
.program-blocks__image {
  transform: translateY(-30px);
}
.or-list {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.or-list li {
  position: relative;
  padding-left: 25px;
}
.or-list li::before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--orange);
}
.program-blocks__white {
  background-color: #fff;
  padding: 60px 0;
  margin-bottom: 60px;
}
.program-blocks__white-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}
.program-blocks__white-row-img {
  padding-right: 40px;
}
.program-blocks__white-list.spark-list {
  font-size: 25px;
  line-height: 1.4;
  row-gap: 25px;
}
@media (max-width: 992px) {
  .program-dark {
    padding: 30px 0 20px;
  }
  .program-blocks__row,
  .program-blocks__row.program-blocks__row--reverse {
    grid-template-columns: 1fr;
    background-color: #fff;
    padding: 30px 25px 40px;
    row-gap: 30px;
  }
  .program-blocks__white-row {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .program-blocks__white-row-img {
    padding: 0;
    text-align: center;
  }
  .program-blocks__text {
    padding: 0;
  }
  .program-blocks__row--reverse .program-blocks__text {
    padding: 0;
  }
  .program-blocks__list-box {
    padding-left: 0;
  }
  .program-blocks__row::before {
    display: none;
  }
  .program-blocks__image {
    transform: none;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .program-blocks h2 {
    font-size: 28px;
  }
  .program-kb__intro h2 {
    font-size: 28px;
  }
}
.trenery__warning,
.show-trenery__warning {
  font-size: 22px;
  color: #fff;
  font-family: var(--font-Golos);
  font-weight: 500;
}
.show-trenery__warning {
  color: var(--dark);
  margin: 0;
  margin: 15px 0 25px;
}
.fitness-page__contacts {
  color: var(--white);
  padding-bottom: 90px;
}
.fitness-page__contacts .header-line {
  text-align: center;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 52px;
}
.fitness-page__contacts .header-line::after {
  left: 50%;
  transform: translateX(-50%);
}
.fitness-page__map {
  width: 100%;
  height: 390px;
}
.fitness-page__map iframe {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .fitness-page__contacts {
    padding-bottom: 50px;
  }
  .fitness-page__contacts .header-line {
    margin-bottom: 35px;
  }
  .fitness-page__map {
    height: 300px;
  }
}