:root {
	--font-family: "Apercu_Pro", sans-serif;
	--content-width: 1168px;
	--container-offset: 14px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--container-offset-m: 10px;
	--container-fluid-width: calc(var(--content-width) + (var(--container-offset-m) * 2));
	--corporate-color: #18284A;
	--bg-color: #2E5299;
	--link-color: #7EA1E5;
	--bg-program: #F9FAFF;
	--tree-accent: #8F9BB2;
	--accent-color: #F25130;
	--light-color: #fff;
	--hover-color: #E61739;
	--splide-arrow-size: 40px;
	--splide-pagination-size: 10px;
}

.custom-checkbox__field:checked+.custom-checkbox__content::after {
	opacity: 1
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
	opacity: .4;
	pointer-events: none
}

@font-face {
	font-family: Apercu_Pro;
	src: url(../fonts/Apercu_ProRegular.woff2) format("woff2");
	font-weight: 400;
	font-display: swap;
	font-style: normal
}

@font-face {
	font-family: Apercu_Pro;
	src: url(../fonts/Apercu_ProMedium.woff2) format("woff2");
	font-weight: 600;
	font-display: swap;
	font-style: normal
}

@font-face {
	font-family: Apercu_Pro;
	src: url(../fonts/Apercu_ProLight.woff2) format("woff2");
	font-weight: 300;
	font-display: swap;
	font-style: normal
}

@font-face {
	font-family: Apercu_Pro;
	src: url(../fonts/Apercu_ProBold.woff2) format("woff2");
	font-weight: 700;
	font-display: swap;
	font-style: normal
}

@font-face {
	font-family: PT_Serif;
	src: url(../fonts/PTSerifRegular.woff2) format("woff2");
	font-weight: 400;
	font-display: swap;
	font-style: normal
}

@font-face {
	font-family: PT_serif;
	src: url(../fonts/PTSerifItalic.woff2) format("woff2");
	font-weight: 400;
	font-display: swap;
	font-style: italic
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

*,
::after,
::before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit
}

.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: var(--light-color)
}

.page__body {
	margin: 0;
	min-device-width: 320px;
	min-height: 100%;
	font-size: 14px;
	min-height: 100%;
	background-color: var(--corporate-color)
}

img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

a {
	text-decoration: none
}

.site-container {
	overflow: hidden
}

.is-hidden {
	display: none !important
}

.btn-reset {
	border: none;
	padding: 0;
	background: 0 0;
	cursor: pointer
}

.list-reset {
	list-style: none;
	margin: 0;
	padding: 0
}

.input-reset {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	background-color: #fff
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
	display: none
}

.visually-hidden {
	position: absolute;
	overflow: hidden;
	margin: -1px;
	border: 0;
	padding: 0;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0)
}

.container {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width)
}

.container-fluid {
	margin: 0 auto;
	padding: 0 10px;
	max-width: var(--container-width)
}

.js-focus-visible :focus:not(.focus-visible) {
	outline: 0
}

.centered {
	text-align: center
}

@media screen and (min-device-width: 900px) {
	.container-fluid {
		margin: 0 auto;
		padding: 0 14px;
		max-width: var(--container-width)
	}
}

.header {
	border-bottom: 1px solid var(--accent-color)
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 65px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.nav {
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
	width: 242px;
	height: 100%;
	background-color: var(--light-color);
	z-index: 55;
	-webkit-transform: translate(-200%, 0);
	-ms-transform: translate(-200%, 0);
	transform: translate(-200%, 0)
}

.nav__list {
	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;
	height: 100%;
	background-color: #121333;
	padding-left: 14px
}

.nav__link {
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	color: #fff
}

.nav__item {
	padding-bottom: 20px
}

.menu--active {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0)
}

.nav__item a:active {
	color: #f25130
}

.nav__desktop-wrapper {
	display: none
}

@media screen and (min-device-width:1100px) {
	.header {
		border-bottom: none
	}

	.header__wrapper {
		min-height: 90px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.zima-logo {
		width: 145px
	}

	.zima-mag {
		display: none
	}

	.nav__desktop-wrapper {
		display: block;
		background-color: var(--light-color)
	}

	.nav__desktop-inner {
		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;
		min-height: 60px;
	}

	.nav__desktop-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}

	.nav__desktop-item:not(:last-child) {
		margin-right: 40px
	}

	.nav__desktop-link {
		font-weight: 500;
		font-size: 11px;
		line-height: 14px;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: #18284a
	}

	.nav__desktop-link:hover {
		color: #2e5299;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}

	.burger {
		display: none
	}
}

.burger {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	z-index: 60;
	background-color: #2e5299
}

.burger__line,
.burger__line::after,
.burger__line::before {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.burger__line::before {
	top: 6px
}

.burger__line::after {
	top: -4px
}

.burger--active .burger__line,
.burger--active .burger__line::after,
.burger--active .burger__line::before {
	background-color: transparent
}

.burger--active {
	width: 32px;
	height: 32px;
	background-image: url(../img/close-menu.svg);
	background-size: 12px 12px;
	background-position: center;
	background-repeat: no-repeat
}

.footer {
	background-color: var(--tree-accent);
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.footer-top {
	padding-bottom: 50px;
	padding-top: 46px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:1100px) {
	.footer-top {
		padding-bottom: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.footer-top__nav {
		margin-bottom: 50px
	}
}

.footer-top__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.footer-top__links {
	width: 25%
}

@media (max-width:750px) {
	.footer-top {
		padding-top: 16px
	}

	.footer-top__nav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 0;
		margin-top: 13px
	}

	.footer-top__links {
		width: 50%;
		margin-bottom: 24px;
		padding-bottom: 13px;
		border-bottom: 1px solid #edeff3
	}

	.footer-top__links:nth-child(3) {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		border-bottom: none;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}

	.footer-top__links:nth-child(3)>.footer-top__link {
		width: 50%
	}
}

.footer-top__link {
	margin-bottom: 16px;
	font-size: .8125rem;
	line-height: 1.23
}

.footer-top__link a {
	color: #fff;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s
}

.footer-top__link:hover a {
	color: #3761a3
}

@media (max-width:1100px) {
	.footer-top__link {
		font-size: .93rem
	}
}

.footer-top__link:hover {
	color: #18284a
}

.footer-top__link:last-child {
	margin-bottom: 0
}

@media (max-width:750px) {
	.footer-top__link {
		font-size: 14px;
		line-height: 129%
	}

	.footer-top__link:last-child {
		margin-bottom: 16px
	}

	.footer-top__socials {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.footer-top__social {
	text-transform: capitalize;
	font-size: .875rem;
	line-height: 1.21;
	color: #212020;
	margin-bottom: 16px
}

.footer-top__social svg {
	vertical-align: middle;
	margin-right: 15px
}

@media (max-width:1100px) {
	.footer-top__social {
		font-size: 1rem
	}
}

@media (max-width:750px) {
	.footer-top__social {
		width: 50%;
		font-size: 14px;
		line-height: 129%
	}
}

.footer-top__social:last-child {
	margin-bottom: 0
}

.footer-top__any-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%
}

@media (max-width:1100px) {
	.footer-top__any-links {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
}

@media (max-width:750px) {
	.footer-top__any-links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
}

@media (max-width:1100px) {
	.footer-top__any-nav {
		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;
		margin-left: -5px;
		padding-right: 0
	}
}

.footer-top__any-link {
	width: calc(50% - 10px);
	padding: 5px;
	font-size: .75rem;
	line-height: 1.066;
	color: #fff
}

.footer-top__any-link_bordered {
	position: relative;
	padding: 30px 0 10px 10px;
	border: 1px solid #fff;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s
}

.footer-top__any-link_bordered:hover {
	background: 0 0;
	color: #18284a;
	border: 1px solid #18284a
}

.footer-top__any-link_bordered:hover svg rect {
	fill: #18284a
}

.footer-top__any-link_bordered:hover svg path {
	stroke: #18284a
}

@media (max-width:1100px) {
	.footer-top__any-link {
		width: calc(36% - 10px);
		padding: 0
	}

	.footer-top__any-link:last-child {
		width: calc(28% - 20px)
	}
}

@media (max-width:750px) {
	.footer-top__any-nav {
		margin-left: 0
	}

	.footer-top__any-link {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
		font-size: 13px;
		line-height: 123%
	}

	.footer-top__any-link:last-child {
		width: 100%
	}
}

.footer-top__any-link svg {
	position: absolute;
	top: 12px;
	right: 12px
}

.footer-top__any-link svg rect {
	-webkit-transition: fill .3s;
	-o-transition: fill .3s;
	transition: fill .3s
}

.footer-top__any-link svg path {
	-webkit-transition: stroke .3s;
	-o-transition: stroke .3s;
	transition: stroke .3s
}

.footer-top__pride {
	padding-top: 32px;
	font-size: .6875rem;
	line-height: 1.27;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	color: #212020
}

@media (max-width:1100px) {
	.footer-top__any-link svg {
		right: 20px
	}

	.footer-top__pride {
		padding-top: 0;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}

@media (max-width:750px) {
	.footer-top__pride {
		margin-top: 20px;
		font-size: .916rem
	}
}

.footer-top__text {
	margin-left: 8px;
	color: #fff;
	font-size: 12px;
	line-height: 133%;
	letter-spacing: .01em;
	vertical-align: bottom
}

.footer-top__image {
	width: 20px
}

.footer-bottom {
	border-top: 1px solid #edeff3
}

.footer-bottom__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 15px;
	padding-bottom: 15px
}

.footer-bottom__copyright {
	font-size: 12px;
	line-height: 133%;
	color: #fff
}

.header__bg {
	min-height: 240px;
	position: relative;
	overflow: hidden;
}

.header__bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

.header__bg-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;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%
}

.header__bg-box-title {
	font-weight: 300;
	font-size: 16px;
	line-height: 162%;
	text-align: center;
	letter-spacing: .05em
}

.header__bg-box-img {
	margin: 0 auto 10px;
	display: block
}

@media screen and (min-device-width:1100px) {
	.header__bg {
		min-height: 360px
	}

	.header__bg-box-title {
		font-size: 24px
	}

	.header__bg-box-img {
		width: 175px
	}
}

.slider__announce {
	background-color: #EDEFF3;
	padding: 30px 0 50px
}

.slider__article {
	padding-left: 24px;
	max-width: var(--content-width);
	margin: 0 auto
}

.slider__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 24px
}

.slider__title {
	font-size: 18px;
	font-weight: 400;
	line-height: 116%;
	letter-spacing: .05em
}
.slider__announce .slider__title{
	color:#2E5299;
}

.slider__link {
	color: var(--link-color);
	font-weight: 700;
	font-size: 8px;
	line-height: 125%;
	letter-spacing: .15em;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	text-transform: uppercase
}

.slider__announce-item {
	width: 150px
}

.slider__announce-item-img {
	position: relative;
	width: 150px;
	height: 150px
}

.announce-item-img {
	width: 100%;
	height: 100%
}

.announce-item-img-icon {
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	z-index: 2
}

.slider__announce-item-description {
	background-color: var(--bg-program);
	min-height: 180px;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr;
	grid-template-rows: 1fr
}

.slider__announce-title {
	overflow-wrap: anywhere;
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	text-align: center;
	letter-spacing: .01em;
	color: var(--corporate-color);
	padding: 20px 10px 15px
}

.slider__announce-date {
	font-weight: 600;
	text-align: center;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tree-accent);
	margin-bottom: 9px
}

.announce-status__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 20px;
	border: .5px solid #7ea1e6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	width: 100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 4px;
	padding-bottom: 4px
}

.announce-status {
	width: 8px;
	height: 8px;
	margin-right: 5px;
	border-radius: 50%;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center
}

.slider__club-item-link {
	display: block
}

.--member-only {
	background-color: #ffd14f
}

.--fully-booked {
	background-color: #f25130
}

.--waiting-list {
	background-color: #8f9bb2
}

.--booking-now {
	background-color: #6fcf97
}

.--soon,
.-tbc {
	background-color: #dadee5
}

.announce-status-text {
	font-weight: 700;
	font-size: 8px;
	line-height: 125%;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--tree-accent)
}

@media screen and (min-device-width: 900px) {
	.slider__announce-item {
		width: 268px
	}

	.slider__announce-item:hover .slider__announce-title {
		overflow-wrap: anywhere;
		color: #2e5299;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}

	.slider__link:hover {
		color: var(--light-color);
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}

	.slider__announce-item-img {
		width: 268px;
		height: 268px
	}

	.slider__announce-item-description {
		min-height: 232px
	}

	.announce-item-img-icon {
		width: 54px
	}

	.slider__announce-title {
		overflow-wrap: anywhere;
		font-size: 16px;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center
	}

	.slider__announce-date {
		font-size: 12px;
		margin-bottom: 10px
	}

	.announce-status-text {
		font-size: 10px;
		line-height: 12px
	}

	.announce-status {
		width: 10px;
		height: 10px
	}

	.announce-status__box {
		width: 125px;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-bottom: 35px
	}
}

@media screen and (min-device-width:1100px) {
	.slider__title {
		font-size: 28px
	}

	.slider__link {
		font-size: 12px;
		-ms-flex-item-align: end;
		-ms-grid-row-align: end;
		align-self: end
	}

	.slider__announce {
		padding: 40px 0 60px
	}

	.slider__wrapper {
		margin-bottom: 30px
	}
}

@media screen and (min-device-width:1168px) {
	.slider__article {
		padding-left: 0
	}

	.slider__wrapper {
		padding-left: 0;
		padding-right: 0
	}
}

.join__club {
	background-color: var(--bg-color)
}

.join__club-title {
	font-weight: 300;
	font-size: 18px;
	line-height: 166%;
	letter-spacing: .05em;
	margin-bottom: 14px
}

.join__club-text {
	font-weight: 300;
	font-size: 14px;
	line-height: 129%;
	margin-bottom: 32px;
	width: 72%;
	max-width: 480px
}

.join__club-wrapper {
	position: relative;
	padding: 27px 10px 40px;
	background-image: url(../img/bg-card4.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	overflow: hidden;
	background-position: right
}

.join__club-btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 400px
}

.zc-button__small {
	width: 97px
}

.zc-button__middle {
	min-device-width: 170px
}

.zc-button__big {
	width: 250px
}

.zc-button {
	font-family: Apercu_Pro, sans-serif;
	height: 32px;
	margin-left: 16px;
	margin-right: 16px;
	background: var(--accent-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	letter-spacing: .15em;
	text-transform: uppercase;
	position: relative;
    z-index: 2;
	-webkit-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s
}

.zc-button span {
	position: relative;
	z-index: 3;
	padding-top: 16px;
	padding-bottom: 16px
}

.zc-button:after,
.zc-button:before {
	content: "";
	width: 23px;
	height: 23px;
	background: var(--accent-color);
	position: absolute;
	z-index:-1;
	-webkit-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s
}


.zc-button:before {
  -webkit-transform: scale(0.5, 1) translate(-100%, -50%) rotate(45deg);
  -ms-transform: scale(0.5, 1) translate(-100%, -50%) rotate(45deg);
  transform: scale(0.5, 1) translate(-100%, -50%) rotate(45deg);
  left: 0;
  top: 50%;
  	
}

.zc-button:after {
  -webkit-transform: scale(0.5, 1) translate(100%, -50%) rotate(45deg);
  -ms-transform: scale(0.5, 1) translate(100%, -50%) rotate(45deg);
  transform: scale(0.5, 1) translate(100%, -50%) rotate(45deg);
  right: 0;
  top: 50%;
}

@media screen and (min-device-width: 900px) {
	.join__club-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 40px
	}

	.slider__people-winter {
		padding-top: 10px
	}

	.join__club-btn-box {
		width: 350px
	}

	.join__club-title {
		font-size: 28px;
		line-height: 117%;
		letter-spacing: .05em
	}

	.join__club-text {
		font-size: 16px;
		line-height: 138%;
		letter-spacing: .01em;
		max-width: 510px
	}

	.join__club-wrapper {
		padding: 44px 10px 32px;
		background-image: url(../img/bg-card-pc.jpg)
	}

	.zc-button {
		height: 40px;
		font-size: 12px;
		line-height: 15px;
		margin-left: 20px;
		margin-right: 20px
	}

	.zc-button__small {
		width: 124px
	}

	.zc-button:after,
	.zc-button:before {
		content: "";
		width: 28px;
		height: 28px
	}

	.zc-button:hover,
	.zc-button:hover:after,
	.zc-button:hover:before {
		background: var(--hover-color)
	}
}

@media screen and (min-device-width:1168px) {
	.join__club-wrapper {
		padding: 44px 0 32px
	}
}

.slider__club {
	padding: 30px 0 50px
}

.slider__club-item {
	width: 150px
}

.slider__club-item-img {
	position: relative;
	width: 150px;
	height: 150px
}

.club-item-img {
	width: 100%;
	height: 100%
}

.club-item-img-icon {
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	z-index: 2
}

.slider__club-item-description {
	background-color: var(--bg-color);
	min-height: 145px;
	height: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr;
	grid-template-rows: 1fr
}

.slider__club-title {
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	text-align: center;
	letter-spacing: .01em;
	color: var(--light-color);
	padding: 20px 10px 15px
}

.slider__club-date {
	font-weight: 600;
	text-align: center;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tree-accent);
	margin-bottom: 14px
}

@media screen and (min-device-width: 900px) {
	.slider__club-item {
		width: 268px
	}

	.slider__club-item:hover .slider__club-title {
		color: #7ea1e5;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}

	.slider__club-item-img {
		width: 268px;
		height: 268px
	}

	.slider__club-item-description {
		min-height: 198px
	}

	.club-item-img-icon {
		width: 54px
	}

	.slider__club-title {
		font-size: 16px;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center
	}

	.slider__club-date {
		font-size: 12px;
		margin-bottom: 32px
	}
}

@media screen and (min-device-width:1100px) {
	.slider__club {
		padding: 40px 0 60px
	}
}

.slider__people {
	padding-bottom: 50px;
	padding-left: 24px;
	max-width: var(--content-width);
	margin: 0 auto
}

.people__winter-item {
	width: 110px;
	min-height: 170px;
	display: -ms-grid;
	display: grid;
	-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;
	background: var(--tree-accent);
	border-radius: 10px;
	height: 100%;
	-ms-grid-rows: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	justify-items: center
}

.people__winter-item-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	-ms-flex-item-align: end;
	-ms-grid-row-align: end;
	align-self: end
}

.people__winter-item-name {
	font-weight: 400;
	font-size: 14px;
	line-height: 129%;
	text-align: center;
	padding: 0 5px
}

.people__winter-link {
	color: var(--light-color)
}

@media screen and (min-device-width: 900px) {
	.slider__people {
		padding-bottom: 60px
	}

	.people__winter-item {
		width: 168px;
		min-height: 215px;
		border-radius: 15px;
		-ms-grid-rows: 1.3fr 1fr;
		grid-template-rows: 1.3fr 1fr
	}

	.people__winter-item-img {
		width: 100px;
		height: 100px
	}

	.people__winter-item-name {
		font-size: 18px;
		line-height: 133%;
		letter-spacing: .01em
	}

	.people__winter-link:hover {
		color: #18284a;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}
}

@media screen and (min-device-width:1168px) {
	.slider__people {
		padding-left: 0
	}
}

.subscribe__club {
	background-color: var(--bg-color)
}

.subscribe__club-title {
	font-weight: 300;
	font-size: 18px;
	line-height: 166%;
	letter-spacing: .05em;
	margin-bottom: 14px
}

.subscribe__club-text {
	font-weight: 300;
	font-size: 14px;
	line-height: 129%;
	margin-bottom: 36px;
	width: 86%;
	max-width: 480px
}

.subscribe__club-wrapper {
	position: relative;
	padding: 27px 10px 40px;
	background-image: url(../img/bg-card5.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	overflow: hidden;
	background-position: right
}

.subscribe__club-btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media screen and (min-device-width: 900px) {
	.subscribe__club-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 40px
	}

	.subscribe__club-title {
		font-size: 28px;
		line-height: 117%;
		letter-spacing: .05em;
		margin-bottom: 18px
	}

	.subscribe__club-text {
		font-size: 16px;
		line-height: 138%;
		letter-spacing: .01em;
		max-width: 510px
	}

	.subscribe__club-wrapper {
		padding: 40px 10px 26px;
		background-image: url(../img/subscribe-pc.jpg)
	}
}

@media screen and (min-device-width:1168px) {
	.subscribe__club-wrapper {
		padding: 40px 0 26px
	}
}

.reports__header {
	background-color:#EDEFF3;
	padding: 15px 0 30px
}

.reports__title {
	color:#3761A3;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	line-height: 166%;
	letter-spacing: .05em;
	margin-bottom: 15px
}

.reports__description {
	color:#212020;
	max-width: 600px;
	margin: 0 auto;
	line-height: 129%
}

@media screen and (min-device-width: 768px) {
	.reports__header {
		padding: 71px 0 51px
	}

	.reports__title {
		font-size: 28px;
		line-height: 33px;
		margin-bottom: 20px
	}

	.reports__description {
		font-size: 17.5px;
		line-height: 22px
	}
}

.reports__article {
	padding: 10px 0 30px;
	background-color: #EDEFF3;
}

.reports__article-items {
	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;
	gap: 20px 10px
}

.reports__article-item-img {
	position: relative;
	width: 145px;
	height: 145px
}

.reports-item-img {
	width: 100%;
	height: 100%
}

.reports-item-img-icon {
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	z-index: 2
}

.reports__article-item-description {
	background-color: var(--bg-color);
	min-height: 145px;
	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
}

.reports__article-item {
	width: 145px;
	min-height: 290px;
	height: 100%
}

.reports__article-second {
	background-color: #EDEFF3;
	padding: 30px 0 40px;
	border-bottom: 1px solid #f25130
}

.load-more {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

@media screen and (min-device-width: 900px) {
	.reports__article-item {
		width: 268px
	}

	.reports__article {
		padding: 60px 0;
		background-color: #EDEFF3;
	}

	.reports__article-item:hover .reports__article-title {
		color: #7ea1e5;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s
	}

	.reports__article-item-img {
		width: 268px;
		height: 268px
	}

	.reports__article-item-description {
		min-height: 198px
	}

	.reports-item-img-icon {
		width: 54px
	}

	.slider__club-title {
		font-size: 16px;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center
	}

	.slider__club-date {
		font-size: 12px;
		margin-bottom: 32px
	}

	.reports__article-second {
		padding: 58px 0 62px
	}

	.load-more {
		margin-top: 58px
	}
}

.people__header {
	padding: 20px 0 30px
}

.people__header-title {
	font-weight: 400;
	font-size: 18px;
	line-height: 116%;
	text-align: center;
	letter-spacing: .05em;
	margin-bottom: 20px
}

.people__header-description {
	line-height: 18px;
	max-width: 767px;
	margin: auto
}

@media screen and (min-device-width: 900px) {
	.people__header {
		padding: 71px 0 50px
	}

	.people__header-title {
		font-size: 28px;
		line-height: 33px
	}

	.people__header-description {
		font-size: 17.5px;
		line-height: 22px
	}
}

.people__advice {
	padding-bottom: 32px
}

.people__advice-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px 12px
}

.people__advice-item {
	position: relative;
	width: 130px;
	min-height: 120px;
	background-color: var(--accent-color);
	border-radius: 10px;
	margin-top: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.people__advice-img {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 3px solid #18284a;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.people__advice-name {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 5px
}

.people__advice-description {
	font-weight: 400;
	font-size: 10px;
	line-height: 140%;
	letter-spacing: .01em
}

.people__advice-box {
	padding-top: 25px
}

.people__club {
	padding-bottom: 36px
}

.-bg-advice-color {
	background-color: #2e5299
}

@media screen and (min-device-width: 900px) {
	.people__advice {
		padding-top: 65px;
		padding-bottom: 60px
	}

	.people__advice-item {
		width: 168px;
		min-height: 180px;
		height: 100%;
		padding-top: 22px
	}

	.people__advice-items {
		gap: 45px 32px
	}

	.people__advice-img {
		width: 108px;
		height: 108px;
		border: 4px solid #18284a
	}

	.people__advice-name {
		font-size: 18px;
		line-height: 133%;
		padding: 0 31px
	}

	.people__advice-description {
		font-size: 12px;
		line-height: 133%;
		padding: 0 7px
	}

	.people__club {
		padding-top: 60px;
		padding-bottom: 64px
	}
}

.apply__content {
	margin-top: 40px;
	padding-bottom: 40px
}

.apply__bg-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;
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	width: 100%
}

.apply__bg-box-title {
	font-weight: 300;
	text-align: center;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	padding: 0 30px
}

.apply__content-wrapper {
	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
}

body.page-template-zima-welkom-php{
	background-color: #EDEFF3;
	color:#212020;
}
body.page-template-zima-welkom-php header{
	background-color: var(--corporate-color);
}
body.page-template-zima-welkom-php .subscribe__club{
	color:#fff;
}
body.page-template-zima-welkom-php .apply__content-top_text h2{
	color: #2E5299;
}
body.page-template-zima-welkom-php .apply__content-box{
	color:#FFFFFF;
	margin-bottom:50px;
}
.apply__content-top {
	padding: 0 8px;
	max-width: 500px;
	margin-bottom: 20px
}
.apply__content-bottom {
	max-width: 580px;
	margin-bottom: 20px
}

.apply__content-top_text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 20px
}

.apply__content-top_text h2 {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	font-weight: 300;
	color: var(--accent-color);
	margin-bottom: 10px
}
.apply__content-top_text h2 {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	font-weight: 300;
	color: var(--accent-color);
	margin-bottom: 10px
}

.apply__content-box {
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
}

.apply__content-item {
	width: 130px;
	min-height: 178px;
	padding: 10px 10px;
	background: #2e5299;
	border-radius: 10px;
	width: unset;
}

.apply__content-item-top {
	text-align: center;
	
}

.apply__content-icon {
	margin-top: 10px;
	margin-bottom: 6px
}

.apply__content-item-title {
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	margin-bottom: 10px
}

.apply__content-item-description {
	padding: 0 9px;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: .01em;
	text-align: center;
	margin-bottom: 10px
}

.apply__content-item-price {
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	letter-spacing: .01em;
	text-align: center
}

@media screen and (min-device-width: 600px) {
	.apply__content-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 268px;
		min-height: 130px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: unset;
	}

	.apply__content-item-top {
		padding: 0 16px
	}

	.apply__content-item-bottom {
		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%;
		border-left: 1px solid #18284a;
		padding: 0 8px 0 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.apply__content-item-description {
		font-size: 12px;
		text-align: left;
		padding: 0
	}

	.apply__content-item-price {
		font-size: 14px;
		text-align: left
	}
}


.apply__content-privilege-title {
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	margin-bottom: 20px;
	color: #2E5299;
}

.apply__content-bottom-text {
	padding: 0 10px;
	margin-bottom:65px;
}

.apply__content-privilege-item {
	position: relative;
	margin-bottom: 12px;
	padding-left: 24px
}

.apply__content-privilege-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/checkbox_gray.svg);
	background-repeat: no-repeat;
	width: 17px;
	height: 17px;
	margin-top: 5px;
	background-size: 100%;
}

.privilege__footnote {
	font-size: 10px;
	line-height: 140%;
	letter-spacing: .01em;
	color: #7ea1e6;
	margin-bottom: 20px
}

.apply__content-btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.apply__content-bottom-title {
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	margin-bottom: 20px
}

.about__content-btn-box .zc-button__big:not(:last-child) {
	margin-bottom: 15px
}

@media screen and (min-device-width: 900px) {
	.apply__content {
		margin-top: 50px;
		padding-bottom: 80px
	}

	.apply__bg-box {
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%)
	}

	.apply__bg-box-title {
		font-size: 28px;
		line-height: 33px
	}

	.apply__content-top_text p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px
	}

	.apply__content-top_text h2 {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 20px
	}

	.apply__content-privilege-title {
		font-size: 28px;
		line-height: 34px
	}

	.apply__content-privilege-item {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px
	}

	.privilege__footnote {
		font-size: 12.5px
	}

	.apply__content-bottom-title {
		font-size: 28px;
		line-height: 34px;
		text-align: center
	}
}

@media screen and (min-device-width: 1050px) {
	.apply__content-wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap:90px;
	}

	.apply__content-top {
		margin-bottom: 0
	}
}
@media screen and (max-device-width: 1049px) {
	.apply__content-bottom{
		max-width: 500px;
	}
}

@media screen and (min-device-width:1168px) {

	.apply__content-bottom-text,
	.apply__content-top {
		padding: 0
	}
}
.about__content {
	margin-top: -63px;
	padding-bottom: 40px
}

.about__content-top {
	padding: 0 8px;
	max-width: 568px;
	margin-bottom: 20px
}

.about__content-top-title {
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	color: var(--accent-color);
	margin-bottom: 20px
}

.about__content-top_text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px
}

.about__content-top_text p:not(:last-child) {
	margin-bottom: 20px
}

.about__content-wrapper {
	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
}

@media screen and (min-device-width: 900px) {
	.about__content {
		margin-top: 50px;
		padding-bottom: 80px
	}

	.about__content-top-title {
		font-weight: 300;
		font-size: 24px;
		line-height: 29px;
		letter-spacing: .05em;
		color: #f25130
	}

	.about__content-top_text p {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: .01em
	}
}

@media screen and (min-device-width: 1050px) {
	.about__content-wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-bottom: 80px
	}

	.about__content-top {
		margin-bottom: 0
	}

	.apply__content-bottom {
		margin: 0 auto
	}
}

.programme__header {
	padding: 15px 0 30px
}

.programme__title {
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	line-height: 166%;
	letter-spacing: .05em;
	margin-bottom: 15px
}

.programme__description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 129%;
	margin-bottom: 24px
}

.tabs__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
	padding-left: 14px;
	padding-bottom: 40px
}

.tabs__nav-item:not(:last-child) {
	margin-right: 10px
}

.tabs__btn {
	width: 96px;
	height: 24px;
	font-weight: 600;
	font-size: 10px;
	line-height: 18px;
	text-align: center;
	letter-spacing: .1em;
	text-transform: uppercase;
	border: 1px solid #8f9bb2;
	border-radius: 20px;
	color: #8f9bb2
}

.tabs__btn--active {
	border: 1px solid #f25130;
	color: #f25130;
	border-radius: 20px
}

.tabs__btn:focus {
	border: 1px solid #f25130;
	color: #f25130;
	background-color: transparent
}

.tab {
	display: none;
	margin: 10px
}

.active {
	border: 1px solid #f25130;
	color: #f25130
}

@media screen and (min-device-width: 768px) {
	.programme__header {
		padding: 71px 0 51px
	}

	.programme__title {
		font-size: 28px;
		line-height: 33px;
		margin-bottom: 20px
	}

	.programme__description {
		font-size: 17.5px;
		line-height: 22px
	}
}

.atricle__page {
	padding-top: 20px;
	padding-bottom: 25px;
	background-color: #fff;
	color: #212020
}

.atricle__page-header {
	text-align: center
}

.article__category {
	margin-bottom: 6px
}

.article__category-link {
	font-family: Apercu_Pro, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #2e5299
}

.article-page__title {
	font-family: Apercu_Pro, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 133%;
	text-align: center;
	margin-bottom: 10px
}

.article-page__date {
	margin-bottom: 14px
}

.--aricle-programm {
	color: #2e5299
}

.atricle__page-content-img {
	margin-bottom: 30px
}

.atricle__page-content-description {
	font-family: PT_Serif;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: .3px;
	max-width: 768px;
	margin-right: auto;
	margin-left: auto
}

.atricle__page-content-description:first-letter {
	font-style: normal;
	font-size: 50px;
	line-height: 62px;
	letter-spacing: .3px;
	padding-right: 10px;
	float: left
}

.atricle__page-content-text {
	font-family: PT_Serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	letter-spacing: .3px;
	max-width: 600px;
	margin-right: auto;
	margin-left: auto
}

.atricle__page-content-text p {
	margin-bottom: 30px
}

.atricle__page-content-text h2 {
	font-size: 16px;
	line-height: 22px;
	letter-spacing: .3px;
	margin-bottom: 15px
}

.atricle__page-content-text a:not(.zc-button) {
	position: relative;
	color: #212020;
	white-space: nowrap;
	z-index: 1
}

.atricle__page-content-text a:not(.zc-button)::after {
	content: "";
	z-index: -1;
	position: absolute;
	left: 2px;
	top: 45%;
	width: 100%;
	height: 11px;
	-webkit-transition: -webkit-transform .3s;
	transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	background-color: #dbf6ff
}

.article__wrapper-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 40px
}

@media screen and (min-device-width: 900px) {
	.atricle__page {
		padding-top: 46px;
		padding-bottom: 40px
	}

	.article__category-link {
		font-size: 30px;
		line-height: 52px
	}

	.article__category-link:hover {
		color: #7ea1e5;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s
	}

	.article-page__title {
		font-size: 46px;
		line-height: 52px;
		margin-bottom: 18px
	}

	.article-page__date {
		font-size: 12px;
		line-height: 20px;
		margin-bottom: 50px
	}

	.atricle__page-content-description {
		font-size: 18px;
		line-height: 32px;
		letter-spacing: .3px
	}

	.atricle__page-content-description:first-letter {
		font-size: 110px;
		line-height: 62px;
		padding-bottom: 4px
	}

	.atricle__page-content-img {
		margin-bottom: 70px
	}

	.atricle__page-content-description p {
		margin-bottom: 35px
	}

	.atricle__page-content-text {
		font-size: 16px;
		line-height: 28px;
		letter-spacing: .3px
	}

	.atricle__page-content-text h2 {
		font-size: 22px;
		line-height: 32px;
		letter-spacing: .3px
	}
}

@media screen and (max-device-width: 599px) {
	.apply__content-item {
		display: grid;
		align-items: center;
	}
	
	.apply__content-item-top {
		align-self: end;
	}
	
	.apply__content-item-bottom {
		align-self: start;
	}
}

/* Header Splide Slider Styles */
.header-splide {
	position: absolute !important;
	width: 100%;
	height: 100%;
	z-index: 0;
	top: 0;
	left: 0;
}

.splide__track, .splide__list {
	height: 100%;
}

.header-splide .splide__slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.header-splide .header__bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-splide .splide__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	border-radius: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
	padding: 0;
}

.header-splide .splide__arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-splide .splide__arrow--prev {
	left: 20px;
}

.header-splide .splide__arrow--next {
	right: 20px;
}

.header-splide .splide__pagination {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.header-splide .splide__pagination li {
	margin: 0;
}

.header-splide .splide__pagination button {
	width: 12px;
	height: 12px;
	border: 2px solid white;
	border-radius: 50%;
	background: transparent;
	opacity: 0.9;
	transition: opacity 0.3s ease, background-color 0.3s ease;
}

.header-splide .splide__pagination .is-active button {
	background-color: white;
	opacity: 1;
}

/* Club Content Styles */
.club__content {
    padding: 50px 0;
    background-color: #EDEFF3;
}

.club__content-wrapper {
    max-width: 832px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club__content-text {
    color: #212020;
    font-family: "Apercu_Pro", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1%;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
}

.club__content-text h2 {
    font-family: "Apercu_Pro", sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 1%;
    color: #2E5299;
    padding: 10px 0;
    margin-bottom: 15px;
    text-align: left;
}

.club__content-text p {
    margin-bottom: 15px;
}

.club__buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 97%;
    flex-wrap: wrap;
}

.club__buttons .zc-button {
    flex: auto;
    min-width: 234px;
    margin: 0;
}

.club__buttons .zc-button span {
    font-family: "Apercu_Pro", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 15%;
    text-align: center;
    text-transform: uppercase;
	min-width: 234px;
}

@media screen and (min-device-width: 900px) {
    .club__content {
        padding: 70px 0;
    }
    
    .club__content-text {
        margin-bottom: 60px;
    }
    
    .club__buttons {
        gap: 30px;
    }
    
    .club__buttons .zc-button {
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .club__buttons {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 30px;
    }
    
    .club__buttons .zc-button {
        width: 260px;
    }
}

@media screen and (max-width: 920px) {
    .club__buttons {
        justify-content: center;
    }
}

/* Membership Content Styles */
.membership__content {
	padding: 50px 0;
	background-color: #EDEFF3;
	color: #212020;
}

.membership__content-wrapper {
	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
}

.membership__content-top {
	padding: 0 8px;
	max-width: 500px;
	margin-bottom: 20px
}

.membership__content-bottom {
	max-width: 580px;
	margin-bottom: 20px
}

.membership__content-top_text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 20px
}

.membership__content-top_text h2 {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: .05em;
	font-weight: 300;
	color: var(--bg-color);
	margin-bottom: 10px
}

.membership__content-box {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
	margin-bottom: 30px;
}

@media screen and (min-device-width: 768px) {
	.membership__content-box {
		grid-template-columns: 1fr 1fr;
		grid-gap: 30px;
	}
}

.membership__content-item {
	position: relative;
	background: #2e5299;
	border-radius: 10px;
	color: var(--light-color);
	display: flex;
	align-items: center;
	min-height: 130px;
	width: 100%;
	padding: 0px 0;
}

.membership__content-item-top {
	text-align: center;
	width: 165px;
	flex-shrink: 0;
	padding: 0 28px;
}

.membership__content-item-bottom {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 20px 0 20px;
	justify-content: space-evenly;
}

.membership__content-item-bottom:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #ffffff;
}

@media screen and (max-device-width: 599px) {
	.membership__content-item-bottom:before {
		top: 0;
		left: 0;
		width: 1px;
		height: 80%;
		transform: translateY(10%);
	}
}

.membership__content-icon {
	margin-top: 10px;
	margin-bottom: 6px
}

.membership__content-item-title {
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	margin-bottom: 10px
}

.membership__content-item-description {
	padding: 0;
	font-size: 10px;
	line-height: 16px;
	letter-spacing: .01em;
	text-align: left;
	margin-bottom: 10px
}

.membership__content-item-price {
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	letter-spacing: .01em;
	text-align: left
}

.membership__content-privilege-title, 
.membership__content-categories-title {
	font-weight: 300;
	font-size: 28px;
	line-height: 34px;
	letter-spacing: .01em;
	margin-bottom: 20px;
	color: #2E5299;
}

.membership__content-bottom-text {
	padding: 0 10px;
	margin-bottom: 40px;
}

.membership__content-privilege-item {
	position: relative;
	margin-bottom: 12px;
	padding-left: 24px
}

.membership__content-privilege-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/checkbox_gray.svg);
	background-repeat: no-repeat;
	width: 17px;
	height: 17px;
	margin-top: 5px;
	background-size: 100%;
}

.membership__content-privilege-list {
	margin-bottom: 20px;
}

.membership__content-additional-text {
	margin: 30px 0;
	padding: 0 10px;
	color: #212020;
	font-family: "Apercu_Pro", sans-serif;
}

.membership__content-additional-text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 15px;
}

.membership__content-additional-text h3 {
	font-size: 16px;
	line-height: 21px;
	font-weight: 600;
	color: #2E5299;
	margin-bottom: 10px;
}

.membership__content-btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 20px;
}
.membership__content-btn-box a{
	min-width: 300px;
}

@media screen and (min-device-width: 600px) {
	.membership__content-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		min-height: 130px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.membership__content-item-top {
		padding: 0 28px;
		width: 165px;
		flex-shrink: 0;
	}

	.membership__content-item-bottom {
		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%;
		padding: 0 20px 0 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: space-evenly;
	}

	.membership__content-item-description {
		font-size: 12px;
		text-align: left;
		padding: 0
	}

	.membership__content-item-price {
		font-size: 14px;
		text-align: left
	}
}

@media screen and (max-device-width: 599px) {
	.membership__content-item {
		display: flex;
		align-items: center;
		flex-direction: row;
		min-height: 130px;
	}
	
	.membership__content-item-top {
		align-self: center;
		margin: 0;
		width: 130px;
		padding: 10px;
	}
	
	.membership__content-item-bottom {
		align-self: center;
		margin-top: 0;
	}
	
	.membership__content-item-bottom:before {
		top: 0;
		left: 0;
		width: 1px;
		height: 100%;
		transform: none;
	}
	
	.membership__content-item-description {
		font-size: 12px;
		text-align: left;
		padding: 0;
	}
	
	.membership__content-item-price {
		font-size: 14px;
		text-align: left;
	}
}

@media screen and (min-device-width: 900px) {
	.membership__content {
		
		padding-bottom: 80px
	}

	.membership__content-top_text p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px
	}

	.membership__content-top_text h2 {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 20px
	}

	.membership__content-privilege-title,
	.membership__content-categories-title {
		font-size: 28px;
		line-height: 34px
	}

	.membership__content-privilege-item {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px
	}
	
	.membership__content-additional-text p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}

	.membership__content-additional-text h3 {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 15px;
	}
}

@media screen and (min-device-width: 1050px) {
	.membership__content-wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 90px;
	}

	.membership__content-top {
		margin-bottom: 0
	}
}

@media screen and (max-device-width: 1049px) {
	.membership__content-bottom {
		max-width: 500px;
	}
}

@media screen and (min-device-width:1168px) {
	.membership__content-bottom-text,
	.membership__content-top {
		padding: 0
	}
	
	.membership__content-single-column {
		padding: 0;
	}
}

.membership__content-single-column {
	max-width: 872px;
	margin: 0 auto;
	padding: 0 10px;
}

.membership__content-text {
	color: #212020;
	font-family: "Apercu_Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1%;
	margin-bottom: 40px;
	text-align: left;
	width: 100%;
}
.membership__content-text ul{
	padding-left: 10px;
}
.membership__content-text ul, .membership__content-text ol {
	list-style-position: inside;
}
.membership__content-text ul li {
	padding-bottom: 15px;
	list-style: disc inside;
}
.membership__content-text ul li::before {
	content: "";
	margin-left: -3px;
}

.membership__content-text ol li {
	padding-bottom: 15px;
}
.membership__content-text ol li::before {
	content: "";
    margin-left: 0.5rem;
}
.membership__content-text ol li::marker {
		font-weight: bold;
}

.membership__content-text p {
	margin-bottom: 15px;
}

.membership__content-text h2 {
	font-family: "Apercu_Pro", sans-serif;
	font-weight: 300;
	font-size: 28px;
	line-height: 34px;
	letter-spacing: 1%;
	color: #2E5299;
	padding: 10px 0;
	margin-bottom: 15px;
	text-align: left;
}

.membership__content-text h3 {
	font-family: "Apercu_Pro", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 1%;
	color: #2E5299;
	margin-bottom: 15px;
	text-align: left;
}

@media screen and (min-device-width: 900px) {
	.membership__content {
		padding: 50px 0;
		background-color: #EDEFF3;
	}

	.membership__content-top_text p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px;
	}

	.membership__content-top_text h2 {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 20px;
	}

	.membership__content-privilege-title,
	.membership__content-categories-title {
		font-size: 28px;
		line-height: 34px;
	}

	.membership__content-privilege-item {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px;
	}
	
	.membership__content-additional-text p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}

	.membership__content-additional-text h3 {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	
	.membership__content-single-column {
		padding: 0 20px;
		max-width: 872px;
	}
}
.reports__section-title{
	color: #3761A3;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 166%;
    letter-spacing: .05em;
    margin-bottom: 50px;
}
.past-events .slider__announce-date{
	margin-bottom: 25px;
}
.page-template-zima-anons .reports__article-second{
	padding:0px 0 40px 0;
}
.page-template-zima-anons .reports__article{
	padding: 10px 0 20px;
}

@media screen and (min-device-width: 768px) {
    .reports__section-title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 80px;
    }
	.past-events .slider__announce-date{
		margin-bottom: 40px;
	}
	.page-template-zima-anons .reports__article-second{
		padding:20px 0 60px 0;
	}
	.page-template-zima-anons .reports__article{
		padding: 60px 0px 0px 0px;
	}
	.page-template-zima-anons .past-events{
		padding: 60px 0px 60px 0px;
	}
}