/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "Inter", sans-serif;
	--second-family: "Helvetica Neue", sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 20px;
}

.wrapper {
	overflow: hidden;
}

body {
	background: #fff;
	line-height: normal;
	font-family: var(--font-family);
}

.container {
	max-width: 1445px;
	margin: 0 auto;
	padding: 0 40px;
}

.btn-main {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;

	display: inline-block;
	border-radius: 8px;
	padding: 16px 24px;
	background: #092e4e;

	transition: background .2s ease;
}

@media(hover:hover) {
	.btn-main:hover {
		background: #07223a;
	}
}

.btn-main:active {
	background: #07223a;
}

.title-h1 {
	font-weight: 700;
	font-size: 72px;
	line-height: 110%;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--second-family);
}

.title-h2 {
	font-weight: 700;
	font-size: 56px;
	line-height: 120%;
	text-transform: uppercase;
	color: #111;
	font-family: var(--second-family);
}

.subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #e4e4e4;
}

.scroll {
	opacity: 0;
	translate: 0px 60px;
	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
}

.scroll--active {
	opacity: 1;
	translate: 0px 0px;
}

@media (prefers-reduced-motion: reduce) {
	.scroll {
		transition: none;
	}
}

/* -------------------------header------------------------- */

.header {
	background: #5d8eb8;
}

.header-top {
	padding: 16px 0;
	background: #0c1822;
	border-radius: 0 0 24px 24px;
}

.header__container {}

.header-top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	flex-wrap: wrap;
}

.header-top__left {}

.header-top__box {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sale,
.time,
.map {
	width: 17px;
	height: 17px;
	min-width: 17px;
}

.header-top__box-text {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.header-top__right {
	display: flex;
	align-items: center;
	gap: 12px 24px;
	flex-wrap: wrap;
}

.header__inner {
	padding: 24px 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.header__logo {}

.header__logo-img {}

.header__list {
	display: flex;
	align-items: center;
	gap: 6px;
}

.header__item {
	position: relative;
}

@media(min-width:1140px) {
	.header__list-sub-body {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 2;
		width: 300px;
		padding: 20px 0px 0px 0px;

		opacity: 0;
		pointer-events: none;
		transform: translateY(-40px);
		transition: all .3s ease;
	}
}

.header__item:hover .header__list-sub-body {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0px);
}

.header__list-sub {
	display: flex;
	flex-direction: column;

	background: #092e4e;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0px 20px #00000077;
}

.header__list-item-sub {}

.header__list-item-sub:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

.header__list-item-link-sub {
	display: block;
	padding: 14px;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	transition: background .2s ease;
}

@media(hover:hover) {
	.header__list-item-link-sub:hover {
		background: #061f35;
	}
}

.header__list-item-link-sub:active {
	background: #061f35;
}

.header__item-link {
	border-radius: 1000000px;
	padding: 10px 16px;
	cursor: pointer;

	display: flex;
	align-items: center;
	gap: 6px;

	font-weight: 500;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);

	transition: all .2s ease;
}

@media(hover:hover) {
	.header__item:hover .header__item-link {
		background: #fff;
		color: #224a6c;
	}

	.header__item:hover .header__item-link .arrow-down {
		fill: #224a6c;
		transform: rotate(180deg);
	}
}

.header__item:active .header__item-link {
	background: #fff;
	color: #224a6c;
}

.header__item:active .header__item-link .arrow-down {
	fill: #224a6c;
	transform: rotate(180deg);
}

.arrow-down {
	width: 9px;
	height: 9px;
	min-width: 9px;
	fill: #fff;
	transition: all .2s ease;
}

.header__right {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header__tel {
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.header__btn {}

.burger-btn {
	display: none;
	justify-content: space-between;
	flex-direction: column;

	width: 40px;
	height: 24px;
	min-width: 40px;
}

.burger-btn-line {
	width: 100%;
	height: 2px;
	background-color: #fff;
}

.b1 {}

.b2 {}

.b3 {}

/* -------------------------burger------------------------- */

.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	background-color: rgb(0, 0, 0, .6);

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;

	display: none;
}

.burger-menu--visible {
	opacity: 1;
	pointer-events: all;
}

.burger-menu__window {
	max-width: 500px;
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px auto;
	background: #5d8eb8;
	padding: 20px;
	overflow: auto;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;

	transform: translateX(100%);
	transition: all .3s ease;
}

.close {
	width: 30px;
	height: 30px;
	min-width: 30px;
}

.burger-menu .burger-btn {
	height: 30px;
}

.burger-menu--visible .burger-menu__window {
	transform: translate(0);
}

.burger-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0px 0px 40px 0px;
}

.burger-menu__window .header__btn {
	width: 100%;
	display: block;
}

/* -------------------------preview------------------------- */

.page__preview {
	position: relative;
	z-index: 1;
	overflow: hidden;

	padding: 98px 0 120px 0;
	margin: 0px 0px 165px 0px;
	background: #5d8eb8;
	border-radius: 0 0 120px 120px;
}

.preview-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
	z-index: -1;
}

.preview__container {}

.preview__inner {
	min-height: 580px;

	display: flex;
	flex-direction: column;
	gap: 100px;
	justify-content: space-between;
}

.preview__head {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 950px;
	width: 100%;
}

.preview__title {}

.preview__subtitle {
	max-width: 804px;
}

.preview__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1172px;
	width: 100%;
}

.preview__card {
	backdrop-filter: blur(25px);
	background: rgba(9, 46, 78, 0.5);
	padding: 24px;
	border-radius: 8px;

	display: flex;
	flex-direction: column;
	gap: 30px;

	transition: background .2s ease, ;
}

@media(hover:hover) {
	.preview__card:hover {
		background: rgba(9, 46, 78, 1);
	}

	.preview__card--active:hover {
		background: rgb(6, 32, 54);
	}

	.preview__card:hover .arrow {
		transform: rotate(45deg);
	}
}

.preview__card:active {
	background: rgba(9, 46, 78, 1);
}

.preview__card--active {
	background: #092e4e;
}

.preview__card-top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.preview__card-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.8);
}

.arrow {
	width: 42px;
	height: 42px;
	min-width: 42px;
	fill: #fff;
	transition: all .2s ease;
}

.preview__card--active .arrow {
	fill: #5d8eb8;
}

.preview__card-bot {}

.preview__card-name {
	font-weight: 700;
	font-size: 36px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--second-family);
}

/* -------------------------about-gym------------------------- */

.page__about-gym {
	display: flex;
	flex-direction: column;
	gap: 48px;
	overflow: hidden;
	margin: 0px 0px 235px 0px;
}

.about-gym-2 {
	margin: 0;
	padding: 165px 0 117.5px 0;
	background: #000;
}

.about-gym-3 {
	padding: 165px 0px 0px 0px;
	margin: 0;
	background: #fbf6f0;
}

.about-gym__container {
	width: 100%;
}

.about-gym__inner {}

.about-gym__head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.about-gym__head-body {
	max-width: 840px;

	display: flex;
	flex-direction: column;
	gap: 32px;
}

.about-gym-2 .about-gym__title {
	color: #fff;
}

.about-gym__head-desc {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-gym__subtitle {
	line-height: 140%;
	color: #666;
}

.about-gym-2 .about-gym__subtitle {
	color: #aaa;
}

.about-gym__cards {
	max-width: 380px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-gym__cards .preview__card {
	background: #f2f7fd;
	backdrop-filter: unset;
}

@media(hover:hover) {
	.about-gym__cards .preview__card:hover {
		background: #d2d5da;
	}
}

.about-gym__cards .preview__card:active {
	background: #d2d5da;
}

.about-gym__cards .preview__card-item {
	color: #666;
}

.about-gym__cards .arrow {
	fill: #5d8eb8;
}

.about-gym__cards .preview__card-name {
	color: #111;
}

.ticker-line {
	overflow-x: hidden;
	width: 100%;
}

.ticker-line__wrapper {
	display: flex;
	gap: 32px;
	width: max-content;
	animation: ticker 40s linear infinite;
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 16px));
	}
}

.ticker-line__item-img {
	width: auto;
	height: 100%;
	object-fit: cover;
}

.about-gym__bot-inner {
	width: 100%;
}

.about-gym__bot-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 10px 0px;
}

.about-gym__bot-card {
	padding: 0 10px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-direction: column;
}

.about-gym__bot-card-name {
	font-weight: 700;
	font-size: 80px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	color: #5d8eb8;
	font-family: var(--second-family);
}

.about-gym__bot-card-desc {
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	color: #666;
	font-family: var(--second-family);
}

.about-gym-2 .preview__card {
	background: #0f1f2d;
}

@media(hover:hover) {
	.about-gym-2 .preview__card:hover {
		background: #224868;
	}
}

.about-gym-2 .preview__card:active {
	background: #224868;
}

.about-gym-2 .preview__card-item {
	color: #7c94a9;
}

.about-gym-2 .preview__card-name {
	color: #fff;
}

.about-gym-3 .about-gym__title {
	color: #402d1d;
}

.about-gym-3 .about-gym__subtitle {
	color: #655243;
}

.about-gym-3 .preview__card {
	background: #f9ede3;
}

@media(hover:hover) {
	.about-gym-3 .preview__card:hover {
		background: #ebd3c2;
	}
}

.about-gym-3 .preview__card:active {
	background: #ebd3c2;
}

.about-gym-3 .arrow {
	fill: #e8a265;
}

/* -------------------------about-us------------------------- */

.page__about-us {
	margin: 0px 0px 235px 0px;
}

.about-us__container {}

.about-us__inner {}

.about-us__title {
	text-align: center;
	color: #111;

	margin: 0px 0px 64px 0px;
}

.about-us__columns {
	display: flex;
	gap: 24px;
}

.about-us__column {
	max-width: 415px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-us__card {
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 31px;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-us__card::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background: linear-gradient(135deg, rgba(48, 48, 48, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-us__card-1 {
	min-height: 346px;
	padding: 31px 27px 31px 31px;
}

.about-us__card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	object-fit: cover;

	transition: all .4s ease;
}

@media(hover:hover) {
	.about-us__card:hover .about-us__card-bg {
		transform: scale(1.05);
	}
}

.about-us__card:active .about-us__card-bg {}

.about-us__card-name {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--second-family);
}

.about-us__card-3::after {
	display: none;
}

.about-us__column-mid {
	max-width: 487px;
	width: 100%;
}

.about-us__card-2 {
	min-height: 465px;
}

.about-us__card-2::after {
	background: linear-gradient(135deg, #2a2a2a 0%, rgba(0, 0, 0, 0) 100%);
}

.about-us__card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #aaa;
}

.about-us__card-4 {
	min-height: 465px;
}

.about-us__card-4::after {
	background: linear-gradient(135deg, #514d4d 0%, rgba(0, 0, 0, 0) 100%);
}

.about-us__card-5 {
	min-height: 346px;
}

.about-us__card-5::after {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

/* -------------------------directions------------------------- */

.page__directions {
	background: #5d8eb8;
	padding: 166px 0;
	border-radius: 0 0 120px 120px;
	position: relative;
	z-index: 2;
}

.directions__container {}

.directions__inner {}

.directions__head {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0px 0px 48px 0px;
}

.directions__title {
	color: #fff;
}

.directions__subtitle {
	line-height: 140%;
	color: #f5f5f5;
}

.directions__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}

.directions__card {
	background: #fff;
	padding: 48px;
	border-radius: 12px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-height: 753px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;

	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out, background .2s ease;
}

@media(hover:hover) {
	.directions__card:hover {
		background: #eeeded;
	}

	.directions__card:hover .arrow {
		transform: rotate(45deg);
	}
}

.directions__card:active {
	background: #eeeded;
}

.directions__card:active .arrow {
	transform: rotate(45deg);
}

.directions__card-1 {}

.directions__card-img {
	position: absolute;
	bottom: 0;
	left: 226px;
	z-index: -1;
}

.directions__card-top {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.directions__card-head {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 422px;
}

.directions__card-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 120%;
	text-transform: uppercase;
	color: #111;
	font-family: var(--second-family);
}

.directions__card-subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #666;
}

.directions__card-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 317px;
}

.directions__card-2 .directions__card-list {
	max-width: 354px;
}

.directions__card-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.glove,
.lotus {
	width: 28px;
	height: 28px;
	min-width: 28px;
}

.directions__card-item-text {
	font-weight: 600;
	font-size: 20px;
	color: #222;
}

.directions__card-bot {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.directions__card-bot-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.directions__card-price {
	font-weight: 700;
	font-size: 56px;
	text-transform: uppercase;
	color: #111;
	font-family: var(--second-family);
}

.directions__card-price-desc {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #666;
	font-family: var(--second-family);
}

.directions__card .arrow {
	width: 80px;
	height: 80px;
	min-width: 80px;
	fill: #5d8eb8;
}

.directions__card-2 .arrow {
	fill: #f3bb8b;
}

.directions__card-2 .directions__card-img {
	left: 206px;
}

.directions__card-2 {}

/* -------------------------agit------------------------- */

.page__agit {
	margin: -139px 0px 0px 0px;
	padding: 155px 0px 0px 0px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.agit-2 {
	padding: 122px 0px 0px 0px;
	margin: -122px 0px 0px 0px;
}

.agit-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

.agit__container {}

.agit__inner {
	min-height: 949px;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.agit__body {
	padding: 100px 0;

	display: flex;
	flex-direction: column;
	gap: 48px;
}

.agit__title {
	text-align: center;
	max-width: 890px;
}

.agit-2 .agit__title {
	max-width: 1160px;
}

.agit__btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.agit__linl {}

.btn-blue {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;

	display: inline-block;
	border-radius: 4px;
	padding: 20px 32px;
	background: #5d8eb8;

	transition: all .2s ease;
}

@media(hover:hover) {
	.btn-blue:hover {
		background: #47729b;
	}
}

.btn-blue:active {
	background: #47729b;
}

.btn-orange {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	text-align: center;

	display: inline-block;
	border-radius: 4px;
	padding: 20px 32px;
	background: #e8a265;

	transition: all .2s ease;
}

@media(hover:hover) {
	.btn-orange:hover {
		background: #c5864e;
	}
}

.btn-orange:active {
	background: #c5864e;
}

.btn-dark {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;

	border-radius: 4px;
	padding: 20px 32px;
	background: rgba(0, 0, 0, 0.5);

	transition: all .2s ease;
}

@media(hover:hover) {
	.btn-dark:hover {
		background: rgba(0, 0, 0);
	}
}

.btn-dark:active {
	background: rgba(0, 0, 0);
}

/* -------------------------team------------------------- */

.page__team {
	padding: 117.5px 0;
	background: #000;
}

.team__container {}

.team__inner {}

.team__head {
	margin: 0px 0px 64px 0px;

	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.team__title {
	max-width: 853px;
	width: 100%;
	color: #fff;
}

.team__head-body {
	max-width: 392px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.team__head-subtitle {
	color: #aaa;
}

.team__head-item {
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: #5d8eb8;
}

.team__body {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 64px;
	margin: 0px 0px 64px 0px;
}

.team__slider-img {
	width: 100%;
	position: relative;
}

.swiper-team-img-pagination {
	position: absolute;
	bottom: 32px !important;
	left: 0 !important;
	top: auto !important;
	right: a !important;
	width: 100%;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.swiper-pagination-bullet {
	margin: 0 !important;
	width: 12px;
	height: 12px;
	background-color: #aaa;
	opacity: 1;
	transition: all .3s ease;
}

.swiper-pagination-bullet-active {
	background-color: #5d8eb8;
}

.swiper-team-img {
	overflow: hidden;
	width: 100%;
	background: #5d8eb8;
	border-radius: 16px;
}

.team__slider-img-line {}

.team__slider-img-slide {
	display: flex;
	align-items: end;
	justify-content: center;
	height: unset;
}

.team__slider-image {
	max-height: 924px;
	object-fit: cover;
	max-width: 100%;
}

.team__slider {
	width: 100%;
}

.swiper-team {
	width: 100%;
	overflow: hidden;
}

.team__slider-line {}

.team__slide {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 12px 0px 0px 0px;
}

.team__slide-head {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.team__slide-title {
	font-weight: 600;
	font-size: 42px;
	line-height: 120%;
	color: #fff;
}

.team__slide-items {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.team__slide-item {
	font-weight: 600;
	font-size: 16px;
	line-height: 140%;
	color: #fff;

	border-radius: 6px;
	padding: 10px 12px;
}

.slide-item-blue {
	background: #5d8eb8;
}

.slide-item-blue-transp {
	background: rgba(93, 142, 184, 0.2);
	color: #5d8eb8;
}

.team__slide-desc {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin: 0px 0px 16px 0px;
}

.team__slide-desc .subtitle {
	line-height: 150%;
	color: #ccc;
}

.team__slide-desc-text {}

.team__slide-desc-box {}

.team__slide-desc-list {}

.team__slide-desc-item {}

.team__slide-btns {
	display: flex;
	align-items: center;
	gap: 24px;
}

.team__slide-btn {
	width: 64px;
	height: 64px;
	min-width: 64px;

	background: #5d8eb8;
	border-radius: 12px;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .2s ease;
}

@media(hover:hover) {
	.team__slide-btn:hover {
		background: #466e91;
	}
}

.team__slide-btn:active {
	background: #466e91;
}

.team__slide-btn-prev {}

.arrow-left,
.arrow-right {
	width: 24px;
	height: 48px;
	min-width: 24px;
}

.team__slide-btn-next {}

.team__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
}

.team__card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.team__card-img {
	max-height: 317px;
	min-height: 317px;
	overflow: hidden;
	background: #111;
	border-radius: 8px;

	display: flex;
	align-items: end;
	justify-content: center;
}

.team__card-image {
	max-width: 100%;
	object-fit: cover;
}

.team__card-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.team__card-name {
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	color: #fff;
}

.team__card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: #aaa;
}

/* -------------------------tarifs------------------------- */

.page__tarifs {
	padding: 117.5px 0 168px 0;
	background-color: #000;
	border-radius: 0 0 120px 120px;
	position: relative;
	z-index: 2;
}

.tarifs__container {}

.tarifs__inner {}

.tarifs__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
}

.tarifs__head {
	grid-column: 2 span;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tarifs__title {
	color: #fff;
	max-width: 573px;
}

.tarifs__subtitle {
	line-height: 140%;
	color: #aaa;
	max-width: 448px;
}

.tarifs__card {
	min-height: 317px;
	padding: 24px;
	background: #111;
	border-radius: 8px;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;

	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out, background .2s ease;
}

@media(hover:hover) {
	.tarifs__card:hover {
		background: #252424;
	}

	.tarifs__card:hover .arrow {
		transform: rotate(45deg);
	}

	.tarifs__card-white:hover {
		background-color: #d6d6d6;
	}

	.tarifs__card-blue:hover {
		background: #436b8f;
	}
}

.tarifs__card:active {
	background: #252424;
}

.tarifs__card:active .arrow {
	transform: rotate(45deg);
}

.tarifs__card-white:active {
	background-color: #d6d6d6;
}

.tarifs__card-blue:active {
	background: #436b8f;
}

.tarifs__card-blue {
	background: #5d8eb8;
}

.tarifs__card-white {
	background: #fff;
}

.tarifs__card-top {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tarifs__card-name {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--second-family);
}

.tarifs__card-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #aaa;

	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.tarifs__card-blue .tarifs__card-desc {
	color: #fff;
}

.tarifs__card-desc span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tarifs__card-desc span:not(:last-child)::after {
	content: '';

	width: 5px;
	height: 5px;
	display: block;
	border-radius: 50%;

	background: #aaa;
}

.tarifs__card-bot {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 10px;
}

.tarifs__card-price {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--second-family);
}

.tarifs__card .arrow {
	fill: #5d8eb8;
}

.tarifs__card-white .tarifs__card-desc {
	color: #000;
}

.tarifs__card-white .tarifs__card-name {
	color: #111;
}

.tarifs__card-white .tarifs__card-price {
	color: #111;
}

.tarifs__card-blue .arrow {
	fill: #fff;
}

.tarifs__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tarifs-card-img {
	padding: 0;
}

/* -------------------------womens-gym------------------------- */

.page__womens-gym {
	background: #fbf6f0;
	padding: 165px 0 168px;
	position: relative;
	z-index: 2;
	border-radius: 0 0 120px 120px;
}

.womens-gym__container {}

.womens-gym__inner {}

.womens-gym__head {
	margin: 0px 0px 64px 0px;

	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.womens-gym__title {
	max-width: 797px;
	width: 100%;
	color: #402d1d;
}

.womens-gym__subtitle {
	color: #655243;
	max-width: 392px;
}

.womens-gym__rows {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.womens-gym__row {
	display: flex;
	justify-content: space-between;
	gap: 32px;
}

.womens-gym__img {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
}

.womens-gym__image {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.womens-gym__card {
	min-height: 317px;
	max-width: 666px;
	width: 100%;
	background: #f9ede3;
	padding: 24px;
	border-radius: 8px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;

	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out, background .2s ease;
}

@media(hover:hover) {
	.womens-gym__card:hover {
		background: #e7d7c9;
	}

	.womens-gym__card:hover .arrow {
		transform: rotate(45deg);
	}

	.womens-gym__card-green:hover {
		background: #2b9c35;
	}

	.womens-gym__card-black:hover {
		background: #242323;
	}

	.womens-gym__card-purple:hover {
		background: #9451db;
	}
}

.womens-gym__card:active {
	background: #e7d7c9;
}

.womens-gym__card-green:active {
	background: #2b9c35;
}

.womens-gym__card-black:active {
	background: #242323;
}

.womens-gym__card-purple:active {
	background: #9451db;
}

.womens-gym__card-top {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.womens-gym__card-name {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
	color: #111;
	font-family: var(--second-family);

	display: flex;
	flex-direction: column;
	gap: 4px;
}

.womens-gym__card-name span {
	font-weight: 700;
	font-size: 14px;
	line-height: 140%;
	text-transform: uppercase;
	color: #fff;
}

.womens-gym__card-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #666;
}

.womens-gym__card-bot {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.womens-gym__card-price {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	color: #111;
	font-family: var(--second-family);
}

.womens-gym__card .arrow {
	fill: #e8a265;
}

.womens-gym__row-end {
	justify-content: end;
}

.womens-gym__card-green {
	background: #38bd42;
}

.womens-gym__card-green .womens-gym__card-name {
	color: #fff;
}

.womens-gym__card-green .womens-gym__card-desc {
	color: #bcffc1;
}

.womens-gym__card-green .womens-gym__card-price {
	color: #fff;
}

.womens-gym__card-green .arrow {
	fill: #fff;
}

.womens-gym__card-black {
	background: #111;
	max-width: 317px;
}

.womens-gym__card-black .womens-gym__card-name {
	color: #fff;
}

.womens-gym__card-black .womens-gym__card-desc {
	color: #aaa;
}

.womens-gym__card-black .womens-gym__card-price {
	color: #fff;
}

.womens-gym__row-center {
	justify-content: center;
}

.womens-gym__card-purple {
	background: #aa60f8;
	max-width: 317px;
}

.womens-gym__card-purple .womens-gym__card-name {
	color: #fff;
}

.womens-gym__card-purple .womens-gym__card-desc {
	color: #fff;
}

.womens-gym__card-purple .womens-gym__card-price {
	color: #fff;
}

.womens-gym__card-purple .arrow {
	fill: #fff;
}

/* -------------------------schedule------------------------- */

.page__schedule {
	padding: 346px 0 117.5px 0;
	margin: -155px 0px 0px 0px;
	background-color: #000;
}

.schedule__container {}

.schedule__inner {}

.schedule__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;

	margin: 0px 0px 56px 0px;
	position: relative;
	z-index: 2;
}

.schedule__title {
	text-align: center;
	color: #fff;
}

.schedule__subtitle {
	line-height: 140%;
	text-align: center;
	color: #aaa;
	margin: 0px 0px 16px 0px;
}

.schedule__dropdown {
	position: relative;
}

.schedule__dropdown-head {
	display: none;
}

.schedule__dropdown-head-value {}

.schedule__dropdown-head-icon {}

.schedule__dropdown-content {}

.schedule__dropdown-tabs {
	border-radius: 1000px;
	padding: 4px;
	background: #111;
	position: relative;

	display: flex;
}

.schedule__dropdown-tabs-bg {
	position: absolute;
	background: #5d8eb8;
	border-radius: 1000px;
	transition: all .3s ease;
}

.schedule__dropdown-tab {
	border-radius: 100000px;
	padding: 16px 32px;
	transition: all .3s ease;
	cursor: pointer;

	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	text-align: center;
	color: #666;
	position: relative;
	z-index: 2;

	transition: all .2s ease;
}

@media(hover:hover) {
	.schedule__dropdown-tab:hover {
		color: #fff;
	}
}

.schedule__dropdown-tab:active {
	color: #fff;
}

.schedule__dropdown-tab--active {
	color: #fff;
}

.schedule__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.schedule__card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;

	min-height: 190px;
	padding: 24px;
	background: #ffe8d4;
	border-radius: 8px;

	position: relative;
	z-index: 1;
	overflow: hidden;

	text-decoration: none;
	color: inherit;
}

.schedule__card-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
	object-fit: cover;
	z-index: -1;

	transition: all .3s ease;
}

@media(hover:hover) {
	.schedule__card:hover .schedule__card-bg {
		transform: scale(1.1);
	}
}

.schedule__card:active .schedule__card-bg {
	transform: scale(1.1);
}

.schedule__card-top {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.schedule__card-name {
	color: #592d06;
	line-height: normal;
	font-weight: 600;
}

.schedule__card-desc {
	font-weight: 400;
	font-size: 14px;
	color: #462910;
}

.schedule__card-bot {}

.schedule__card-time {
	font-weight: 600;
	font-size: 16px;
	color: #50351d;

	display: inline-block;
	border-radius: 8px;
	padding: 10px 12px;
	background: #f3bb8b;
}

.schedule__card-dark {
	background: #111;
}

.schedule__card-dark .schedule__card-name {
	color: #fff;
}

.schedule__card-dark .schedule__card-desc {
	color: #aaa;
}

.schedule__card-dark .schedule__card-time {
	color: #fff;
	background: rgb(93, 142, 184);
}

/* -------------------------faq------------------------- */

.page__faq {
	padding: 117.5px 0 274px 0;
	background-color: #000;
	position: relative;
	z-index: 2;
	border-radius: 0 0 120px 120px;
}

.faq__container {}

.faq__inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.faq__head {
	padding: 33px 0px 0px 0px;
	max-width: 382px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq__title {
	color: #fff;
}

.faq__link {
	display: flex;
	align-items: center;
	gap: 12px;

	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: #5d8eb8;
}

@media(hover:hover) {
	.faq__link:hover .arrow {
		transform: rotate(45deg);
	}
}

.faq__link:active .arrow {
	transform: rotate(45deg);
}

.faq__link .arrow {
	width: 22px;
	height: 22px;
	min-width: 22px;
	fill: #5d8eb8;
}

.faq__accordions {
	max-width: 800px;
	width: 100%;
	border-top: 1px solid #222;
}

.faq__accordion {
	border-bottom: 1px solid #222;
}

.faq__accordion-head {
	padding: 26px 0 25px 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	transition: all .3s ease;
}

.accordion__item-head--show.faq__accordion-head {
	padding: 26px 0 16px 0;
}

.faq__accordion-head-name {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	color: #fff;
}

.faq__accordion-head-icon {
	position: relative;

	border-radius: 8px;
	width: 36px;
	height: 36px;
	min-width: 36px;
	background: #111;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .3s ease;
}

.accordion__item-head--show .faq__accordion-head-icon {
	transform: rotate(180deg);
}

.plus,
.minus {
	width: 28px;
	height: 28px;
	min-width: 28px;
	transition: all .3s ease;
}

.minus {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0;
}

.accordion__item-head--show .minus {
	opacity: 1;
}

.accordion__item-head--show .plus {
	opacity: 0;
}

.faq__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.faq__accordion-body {
	max-width: 728px;
	padding: 0px 0px 26px 0px;
}

.faq__accordion-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
	color: #aaa;
}

/* -------------------------contacts------------------------- */

.page__contacts {
	padding: 124px 0px 0px 0px;
	margin: -124px 0px 0px 0px;
	position: relative;
	z-index: 1;
}

.contacts-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* min-height: 855px; */
}

.contacts__container {}

.contacts__inner {
	padding: 169px 0 165px 0;
}

.contacts__card {
	border-radius: 24px;
	padding: 48px 32px;
	background: #fff;

	max-width: 529px;
	width: 100%;

	position: relative;
	z-index: 2;
}

.contacts__card-name {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0px 0px 32px 0px;
}

.contacts__card .location {
	width: 29px;
	height: 29px;
	min-width: 29px;
}

.contacts__card-name-text {
	font-weight: 500;
	font-size: 24px;
	letter-spacing: -0.01em;
	color: #222;
}

.contacts__card-box {
	margin: 0px 0px 12px 0px;

	display: flex;
	flex-direction: column;
}

.contacts__card-box-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: -0.01em;
	color: #222;
}

.contacts__card-box-text strong {
	font-weight: 500;
}

.contacts__card-links {
	margin: 24px 0px 0px 0px;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.contacts__card-link {
	border-radius: 12px;
	padding: 16px 24px;
	background: #f6f7f8;
	transition: all .2s ease;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: -0.01em;
	color: #222;
}

@media(hover:hover) {
	.contacts__card-link:hover {
		background: #e0e2e4;
	}

	.contacts__card-link:hover .arrow {
		transform: rotate(45deg);
	}
}

.contacts__card-link:active {
	background: #e0e2e4;
}

.contacts__card-link:last-child {
	grid-column: 1/-1;
}

.tg,
.wh {
	width: 22px;
	height: 22px;
	min-width: 22px;
}

.contacts__card .arrow {
	width: 22px;
	height: 22px;
	min-width: 22px;
	fill: #5d8eb8;
}

/* -------------------------footer------------------------- */

.footer {
	padding: 48px 0px 0px 0px;
	background-color: #000;
}

.footer-top {
	margin: 0px 0px 60px 0px;
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-top-line {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	height: 1px;

	background-color: #222;
}

.footer-top__logo {
	display: inline-block;
	padding: 0 24px;

	position: relative;
	z-index: 2;
	background-color: #000;
}

.footer-top__logo-img {}

.footer__container {}

.footer__inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
	margin: 0px 0px 115px 0px;
}

.footer__left {
	max-width: 306px;
	width: 100%;
}

.footer__desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #fff;
}

.footer__columns {
	max-width: 823px;
	width: 100%;

	display: flex;
	align-items: start;
	gap: 20px;
	justify-content: space-between;
}

.footer__column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer__column-name {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	color: #fff;
}

.footer__column-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer__column-item {}

.footer__column-item-link {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #aaa;

	transition: all .2s ease;
}

@media(hover:hover) {
	.footer__column-item-link:hover {
		color: #fff;
	}
}

.footer__column-item-link:active {
	color: #fff;
}

.footer__column-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__column-box-link {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	color: #fff;
}

.footer__column-box-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #aaa;
}

.footer-bot {
	padding: 34px 0 30px 0;
	border-top: 1px solid #222;
}

.footer-bot__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bot__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	text-align: center;
	color: #666;
}

.footer-bot__links {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.footer-bot__link {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	text-align: right;
	color: #666;

	transition: all .2s ease;
}

@media(hover:hover) {
	.footer-bot__link:hover {
		color: #fff;
	}
}

.footer-bot__link:active {
	color: #fff;
}

/* -------------------------media------------------------- */

@media(max-width:1340px) {
	.header__tel {
		display: none;
	}

	.header-top__box-text {
		font-size: 12px;
	}

	.header-top__right {
		gap: 12px;
	}

	.header__inner {
		gap: 30px;
	}

	.preview-bg {
		max-width: 700px;
	}
}

@media(max-width:1140px) {
	.header .header__list {
		display: none;
	}

	.burger-btn {
		display: flex;
	}

	.header__list {
		flex-direction: column;
		align-items: start;
		margin: 0px 0px 20px 0px;
	}

	.header__list-sub {
		width: 100%;
		box-shadow: none;
	}

	.header__list-sub-body {
		max-height: 0;
		overflow: hidden;
		transition: all .3s ease;
	}

	.header__item {
		width: 100%;
	}

	.burger-menu__top .header__tel {
		display: block;
	}

	.burger-menu {
		display: block;
	}

	.header__item-link {
		padding: 10px;
		justify-content: space-between;
	}

	.accordion__item-head--show.header__item-link {
		background: #fff;
		color: #224a6c;
	}

	.accordion__item-head--show .arrow-down {
		fill: #224a6c;
		transform: rotate(180deg);
	}





	.page__preview {
		padding: 40px 0 60px 0;
		border-radius: 0 0 30px 30px;
	}

	.preview-bg {
		max-width: 560px;
		opacity: .7;
	}

	.preview__inner {
		min-height: unset;
		gap: 60px;
	}

	.title-h1 {
		font-size: 48px;
	}

	.title-h2 {
		font-size: 38px;
	}

	.preview__head {
		gap: 20px;
	}

	.subtitle {
		font-size: 16px;
	}

	.preview__card-name {
		font-size: 28px;
	}

	.page__preview {
		margin: 0px 0px 100px 0px;
	}






	.about-gym__head {
		flex-direction: column;
		gap: 20px;
	}

	.about-gym__head-body {
		gap: 20px;
		max-width: unset;
	}

	.about-gym__head-desc {
		gap: 16px;
	}

	.about-gym__cards {
		max-width: unset;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.ticker-line__item-img {
		max-height: 300px;
	}

	.ticker-line__wrapper {
		gap: 16px;
	}

	.about-gym__bot-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.page__about-gym {
		gap: 30px;
	}

	@keyframes ticker {
		from {
			transform: translateX(0);
		}

		to {
			transform: translateX(calc(-50% - 8px));
		}
	}

	.about-gym__bot-card-name {
		font-size: 60px;
	}

	.about-gym__bot-card-desc {
		font-size: 18px;
	}

	.page__about-gym {
		margin: 0px 0px 140px 0px;
	}

	.about-gym-2 {
		margin: 0;
	}

	.about-gym-3 {
		margin: 0;
		padding: 80px 0px 0px 0px;
	}







	.about-us__columns {
		flex-direction: column;
	}

	.about-us__column {
		max-width: unset;

		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.about-us__column-mid {
		display: flex;
	}

	.about-us__card-3 {
		min-height: 500px;
	}

	.about-us__card-3::after {
		display: block;
	}

	.about-us__card {
		min-height: 300px;
		padding: 24px;
	}

	.about-us__card-name {
		font-size: 28px;
	}

	.page__about-us {
		margin: 0px 0px 100px 0px;
	}






	.page__directions {
		padding: 80px 0;
		border-radius: 0 0 30px 30px;
	}

	.directions__cards {
		gap: 24px;
	}

	.directions__card-img,
	.directions__card-2 .directions__card-img {
		max-width: 250px;
		left: auto;
		right: 0;
	}

	.directions__head {
		gap: 16px;
		margin: 0px 0px 30px 0px;
	}

	.directions__card {
		padding: 24px;
		min-height: 600px;
	}

	.directions__card-title {
		font-size: 32px;
	}

	.directions__card-head {
		gap: 16px;
	}

	.directions__card-top {
		gap: 24px;
	}

	.directions__card-item {
		gap: 8px;
	}

	.directions__card-item-text {
		font-size: 16px;
	}

	.directions__card-list {
		gap: 16px;
	}

	.glove,
	.lotus {
		width: 20px;
		height: 20px;
		min-width: 20px;
	}

	.directions__card-price {
		font-size: 40px;
	}

	.directions__card-price-desc {
		font-size: 14px;
	}

	.directions__card .arrow {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}







	.agit__inner {
		min-height: 700px;
	}

	.btn-blue,
	.btn-dark,
	.btn-orange {
		font-size: 16px;
		padding: 16px 24px;
	}






	.team__head {
		flex-direction: column;
		gap: 20px;
		margin: 0px 0px 30px 0px;
	}

	.team__head-body {
		gap: 16px;
	}

	.team__body {
		gap: 30px;
	}

	.team__slide,
	.team__slide-desc {
		gap: 20px;
	}

	.team__slide-title {
		font-size: 34px;
	}






	.page__tarifs {
		padding: 40px 0 40px 0;
		border-radius: 0 0 30px 30px;
	}

	.tarifs__cards {
		gap: 20px;
	}

	.tarifs__head {
		gap: 16px;
	}





	.womens-gym__head {
		flex-direction: column;
		gap: 20px;
		margin: 0px 0px 30px 0px;
	}

	.womens-gym__subtitle {
		max-width: unset;
	}

	.womens-gym__subtitle br {
		display: none;
	}

	.page__womens-gym {
		padding: 80px 0;
		border-radius: 0 0 30px 30px;
	}

	.womens-gym__row {
		gap: 24px;
	}

	.womens-gym__rows {
		gap: 24px;
	}






	.page__schedule {
		padding: 280px 0 80px 0;
	}

	.schedule__head {
		margin: 0px 0px 30px 0px;
	}

	.schedule__dropdown-tab {
		font-size: 14px;
		padding: 12px 24px;
	}





	.page__faq {
		padding: 80px 0;
		border-radius: 0 0 30px 30px;
	}






	.contacts__inner {
		padding: 60px 0;
	}

	.contacts__card {
		max-width: 450px;
	}

	.contacts__card-links {
		grid-template-columns: repeat(1, 1fr);
	}






	.footer__inner {
		flex-direction: column-reverse;
		margin: 0px 0px 60px 0px;
	}

	.footer__columns {
		max-width: unset;
	}

	.footer {
		padding: 40px 0 0 0;
	}

	.footer-top {
		margin: 0px 0px 30px 0px;
	}
}

@media(max-width:1040px) {
	.header-top__inner {
		flex-direction: column;
	}

	.header-top {
		padding: 10px 0;
	}

	.header-top__right {
		justify-content: center;
	}
}

@media(max-width:980px) {
	.preview__card--active {
		grid-column: 1/-1;
	}

	.preview__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.directions__card-img,
	.directions__card-2 .directions__card-img {
		max-width: 200px;
	}







	.team__body {
		flex-direction: column;
		gap: 20px;
	}

	.team__slide-btn {
		width: 40px;
		height: 40px;
		min-width: 40px;
		border-radius: 6px;
	}

	.team__slide-btns {
		gap: 10px;
		justify-content: end;
	}

	.arrow-left,
	.arrow-right {
		width: 16px;
		height: 28px;
		min-width: 16px;
	}

	.team__slide-desc {
		margin: 0;
	}

	.team__slider-image {
		max-width: 400px;
		width: 100%;
	}





	.schedule__dropdown-head {
		display: block;
		font-size: 16px;
		font-weight: 400;
		color: #fff;
		width: 100%;

		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;

		padding: 10px;
		border-radius: 10px;
		background: #111;
	}

	.schedule__dropdown {
		width: 100%;
	}

	.schedule__dropdown-head-icon {
		transition: all .3s ease;
		transform: rotate(-90deg);
	}

	.dropdown-head--active .schedule__dropdown-head-icon {
		transform: rotate(90deg);
	}

	.schedule__dropdown-content {
		position: absolute;
		top: 110%;
		left: 0;
		width: 100%;
		z-index: 2;

		opacity: 0;
		pointer-events: none;
		transform: translateY(-40px);
		transition: all .3s ease;
	}

	.dropdown-content--active.schedule__dropdown-content {
		opacity: 1;
		pointer-events: all;
		transform: translateY(0px);
	}

	.schedule__dropdown-tabs {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		border-radius: 10px;
		border: 1px solid #ccc;
	}

	.schedule__dropdown-tabs-bg {
		border-radius: 10px;
	}





	.faq__inner {
		flex-direction: column;
		gap: 20px;
	}

	.faq__accordions {
		max-width: unset;
	}

	.faq__accordion-head {
		padding: 22px 0;
	}

	.faq__head {
		padding: 0;
	}

}

@media(max-width:768px) {
	.container {
		padding: 0 20px;
	}

	.header__btn {
		display: none;
	}

	.header__inner {
		padding: 20px 0;
	}

	.header__logo-img {
		max-width: 120px;
	}






	.title-h1 {
		font-size: 38px;
	}

	.title-h2 {
		font-size: 32px;
	}

	.subtitle {
		font-size: 14px;
	}

	.arrow {
		width: 30px;
		height: 30px;
		min-width: 30px;
	}

	.preview__card {
		padding: 16px;
	}

	.preview__card-item {
		font-size: 12px;
	}

	.preview__card-name {
		font-size: 24px;
	}

	.preview-bg {
		right: -20px;
		opacity: 1;
	}

	.page__preview {
		margin: 0px 0px 60px 0px;
	}





	.about-gym__bot-card-name {
		font-size: 40px;
	}

	.about-gym__bot-card-desc {
		font-size: 16px;
	}

	.page__about-gym {
		margin: 0px 0px 100px 0px;
	}

	.about-gym-2 {
		margin: 0;
		padding: 80px 0 40px 0;
	}

	.about-gym-3 {
		margin: 0;
		padding: 40px 0px 0px 0px;
	}






	.about-us__column,
	.about-us__columns {
		gap: 16px;
	}

	.about-us__card-name {
		font-size: 20px;
	}

	.about-us__card-desc {
		font-size: 14px;
	}

	.about-us__card-desc {
		color: #fff;
	}

	.about-us__title {
		margin: 0px 0px 30px 0px;
	}

	.page__about-us {
		margin: 0px 0px 60px 0px;
	}






	.directions__cards {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
	}

	.directions__card {
		min-height: 500px;
	}

	.page__directions {
		padding: 40px 0;
	}

	.directions__card-title {
		font-size: 28px;
	}

	.directions__card-price {
		font-size: 34px;
	}

	.directions__card .arrow {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}







	.agit__inner {
		min-height: 500px;
	}

	.agit__body {
		gap: 24px;
	}

	.agit__btns {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.btn-blue,
	.btn-dark,
	.btn-orange {
		font-size: 14px;
	}






	.page__team {
		padding: 40px 0;
	}

	.team__slide-item {
		font-size: 14px;
		padding: 10px;
	}

	.team__slide-title {
		font-size: 28px;
	}

	.team__card {
		gap: 16px;
	}

	.team__body {
		margin: 0px 0px 40px 0px;
	}

	.swiper-team-img-pagination {
		bottom: 16px !important;
	}

	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}






	.tarifs__card {
		padding: 20px;
		min-height: 280px;
	}

	.tarifs-card-img {
		padding: 0;
	}

	.tarifs__card-img {
		max-height: 280px;
	}

	.tarifs__card-price {
		font-size: 28px;
	}

	.tarifs__cards {
		gap: 16px;
		grid-template-columns: repeat(2, 1fr);
	}





	.womens-gym__card-price {
		font-size: 24px;
	}

	.womens-gym__card {
		padding: 20px;
	}

	.womens-gym__row,
	.womens-gym__rows {
		gap: 16px;
	}







	.schedule__cards {
		gap: 10px;
	}

	.schedule__card {
		padding: 20px;
	}

	.schedule__card-time {
		font-size: 14px;
	}

	.page__schedule {
		padding: 220px 0 40px 0;
	}

	.schedule__head {
		margin: 0px 0px 20px 0px;
	}






	.page__faq {
		padding: 40px 0;
	}






	.contacts__card {
		max-width: 340px;
		padding: 20px;
	}

	.contacts__card-name-text {
		font-size: 20px;
	}

	.contacts__card-name {
		margin: 0px 0px 16px 0px;
	}

	.contacts__card-box-text {
		font-size: 14px;
	}

	.contacts__card-links {
		gap: 6px;
	}

	.contacts__card-link {
		font-size: 14px;
		padding: 12px;
	}

	.contacts__inner {
		padding: 40px 0;
	}







	.footer__columns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.footer__column {
		gap: 16px;
	}

	.footer__column-name,
	.footer__column-box-link {
		font-size: 16px;
	}

	.footer__column-box-link {
		white-space: nowrap;
	}

	.footer__column-list {
		gap: 10px;
	}

	.footer__inner {
		gap: 30px;
		margin: 0px 0px 30px 0px;
	}

	.footer-bot__links {
		gap: 16px;
	}

	.footer-bot__link {
		text-align: start;
	}

	.footer-bot {
		padding: 24px 0;
	}
}

@media(max-width:640px) {
	.header-top {
		display: none;
	}

	.header {
		border-bottom: 1px solid #fff;
	}
}

@media(max-width:580px) {
	.preview__cards {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}

	.preview__inner {
		gap: 40px;
	}





	.about-gym__cards {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}

	.about-gym__bot-cards {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}






	.about-us__column {
		grid-template-columns: repeat(1, 1fr);
	}





	.directions__card-img {
		display: none;
	}

	.directions__card {
		min-height: 450px;
	}





	.tarifs__card {
		padding: 16px;
	}

	.tarifs__card-price,
	.tarifs__card-name {
		font-size: 20px;
	}

	.tarifs__card-desc {
		font-size: 12px;
	}

	.tarifs-card-img {
		padding: 0;
	}






	.womens-gym__row,
	.womens-gym__rows {
		display: flex;
		flex-direction: column;
	}

	.womens-gym__img,
	.womens-gym__row-center {
		display: none;
	}

	.womens-gym__card {
		max-width: unset;
		min-height: 280px;
	}

	.page__womens-gym {
		padding: 40px 0;
	}






	.schedule__cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media(max-width:480px) {
	.tarifs__cards {
		display: flex;
		flex-direction: column;
	}

	.tarifs__card-price,
	.tarifs__card-name {
		font-size: 24px;
	}
}