@import url(../fonts/gotham.css);
@import url(../fonts/montserrat.css);

@font-face {
	font-display: swap;
	font-family: Druk Cyr;
	font-weight: 500;
	src: local("Druk Cyr Medium"), url(../fonts/DrukCyr-Medium.woff2) format("woff2"), url(../fonts/DrukCyr-Medium.woff) format("woff")
}

body {
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	margin: 0px;
	padding: 0px;
}

.desktop-menu {
	display: flex;
	justify-content: center;
}

@media (max-width: 1024px) {
	.desktop-menu {
		display: none;
	}
}

.menu-item {
	position: relative;
	padding: 0 15px;
}

.menu-link {
	display: block;
	padding: 40px 0px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s;
	border: none;
	background: none;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
	color: #000;
	overflow: hidden;
	position: relative;

}

.menu-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #1e3c72;
	transform: translateX(-101%);
	transition: transform 0.3s ease;
}

.menu-item:hover .menu-link::before,
.menu-link.active::before, .menu-link.current-menu-ancestor::before {
	transform: translateX(0%);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 15px;
	background: white;
	min-width: 250px !important;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border-radius: 0 0 8px 8px !important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: block !important;
	border: 0px !important;
	padding: 0px !important;
}

.menu-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: background-color 0.3s;
}

.dropdown-link:hover {
	background-color: #f5f5f5;
	color: #1e3c72;
}

.dropdown-link:last-child {
	border-bottom: none;
}


.menu-toggle {
	display: none;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background: white;
	box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
	transition: left 0.3s ease;
	z-index: 2000;
	overflow-y: auto;
}

.mobile-menu.active {
	left: 0;
}

.mobile-menu-header {
	background: var(--alpv-secondary);
	padding: 11px 20px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-menu-title {
	color: white;
	font-size: 18px;
	font-weight: 500;
}

.close-menu {
	background: none;
	border: none;
	color: white;
	font-size: 24px !important;
	cursor: pointer;
}

.mobile-nav {
	padding: 0px 0;
}

.mobile-menu-item {
	border-bottom: 1px solid #eee;
}

.mobile-menu-link {
	display: block;
	padding: 15px 25px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.mobile-menu-link:hover {
	background-color: #f5f5f5;
}

.mobile-dropdown {
	background: #f9f9f9;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
	max-height: 500px;
}

.mobile-dropdown-link {
	display: block;
	padding: 12px 25px 12px 40px;
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: background-color 0.3s;
}

.mobile-dropdown-link:hover {
	background-color: #e9e9e9;
	color: #1e3c72;
}

.mobile-dropdown-link:last-child {
	border-bottom: none;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1500;
}

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


.top-bar {
	position: relative;
	background: var(--alpv-secondary);
	color: #fff;
	padding: 22px 0px;
}

.top-bar ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.top-bar a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
}

.top-bar a:hover {
	text-decoration: underline;
}

.top-bar ul li a {
	margin-right: 25px;
}

.top-bar ul li:last-child a {
	margin-right: 0px;
}

.top-bar .text-end li:first-child a {
	margin-left: 0px;
}

.top-bar a.email-link {
	background: url(../images/mail.svg) no-repeat left center;
	display: inline-block;
	padding-left: 30px;
}

.top-bar .divider {
	height: 18px;
	width: 1px;
	background: #fff;
	margin-right: 35px;
	margin-left: 35px;
}

.social-list li a {
	margin-right: 0px !important;
	margin-left: 10px !important;
}

.social-list li:first-child a {
	margin-right: 0px !important;
	margin-left: 0px !important;
}

.top-bar .text-end li a {
	margin-left: 25px;
	margin-right: 0px;
}

header {
	background: #fff;
	position: relative;
	z-index: 20;
}

.alpv .btn-search {
	width: 41px !important;
	height: 41px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px !important;
	border: 0px !important;
	background-color: #F0F0F0
}

.alpv .btn-search:hover {
	background-color: var(--alpv-primary)
}

.alpv .btn-search svg path {
	transition: all 0.15s ease-in-out;
}

.alpv .btn-search:hover svg path {
	stroke: #fff;
}

.alpv .btn-warning {
	display: flex;
	align-items: center;
	height: 41px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 20px 0px 15px !important;
	border: 0px !important;
	font-weight: 500;
	text-transform: uppercase;
	background-color: #FFFB10;
}

.alpv .btn-warning svg {
	margin-right: 10px;
	transition: all 0.15s ease-in-out;
}

.alpv .btn-warning:hover {
	background-color: var(--alpv-primary);
	color: #fff
}


.alpv .btn-warning:hover svg {
	fill: #fff;
}

@media screen and (max-width:1024px) {
	.alpv .btn-warning span {
		display: none;
	}

	.alpv .btn-warning svg {
		margin-right: 0px;
		transition: all 0.15s ease-in-out;
	}

	.alpv .btn-warning {
		margin: 0px;
		padding: 0px !important;
	}

	.alpv .menu-toggle {
		margin: 0px;
		width: 35px;
		height: 35px;
		padding: 0px !important;
		display: block;
		margin-left: 1rem;
		border: 0px;
		background-color: #F0F0F0;
		border-radius: 4px
	}

	.alpv .menu-toggle svg {
		width: 20px;
		height: 20px;

	}

	.alpv .btn-search svg {
		width: 18px;
		height: 18px;
	}

	.alpv .btn-search {
		width: 35px !important;
		height: 35px !important;
	}

	.alpv .btn-map {
		width: 35px !important;
		height: 35px !important;
	}

	.alpv .btn-map svg {
		width: 30px;
		height: 30px;
	}

	header .logo {
		padding: 15px 0px;
	}

	header .logo img {
		height: 41px;
	}

	.top-bar {
		padding: 15px 0px;
	}
}


section {
	padding: 3rem 0;
	position: relative;
}

section.hero {
	padding: 0px;
	height: 570px;
}

section .video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 0;
	overflow: hidden;
}

section .video video {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}

section .caption {
	background-color: rgba(0, 83, 224, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

section .caption h1 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 56px;
	line-height: 119.71%;
	text-align: center;
	color: #FFFFFF;
}

section .caption h1 .plashka {
	display: inline-block;
	padding: 2px 74px;
	background: url(../images/plashka.png) no-repeat center center;
	background-size: 100%;
	font-size: 48px;
}

section .caption p {
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


.alpv main .btn, .alpv .modal .btn {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 16px 41px;
	gap: 10px;
	border-radius: 15px;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	border: 0px;
	text-shadow: 0 0 white;
}

.alpv main .btn.btn-light {
	background: #FFFFFF;
	color: var(--alpv-secondary);
}

.alpv main .btn.btn-light:hover {
	background: var(--alpv-primary);
	color: #fff;
}

.alpv .stroke-title {
	font-family: 'Druk Cyr';
	font-style: normal;
	font-weight: 500;
	font-size: 128px;
	line-height: 162px;
	letter-spacing: 0.05em;
	position: relative;
	-webkit-text-stroke: 0.5px rgba(0, 41, 111, 0.45);
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
}

.alpv h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 45px;
	line-height: 43px;
	color: #000000;
	margin-bottom: 2rem;

}

.alpv h3 span {
	color: var(--alpv-primary)
}

.alpv .about p {
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;

	color: #000000;


}


.alpv .btn.btn-outline-light {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;

	color: #000000;
	display: inline-flex;
	align-items: center;
	border: 3px solid #000;
	background-color: #fff;
	border-radius: 30px;
	padding: 14px 54px;
}

.alpv .btn.btn-outline-light:hover {
	background-color: var(--alpv-primary);
	color: #fff;
	border-color: var(--alpv-primary)
}

.alpv .about .image {
	position: relative;
	display: inline-block;
	margin-top: 2.5rem;
}

.alpv .about .image .counter-block {
	position: relative;
	border-radius: 15px;
	background-color: var(--alpv-primary);
	position: absolute;
	left: 0px;
	top: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	text-align: center;

	color: #FFFFFF;
	padding: 42px 36px;

	transform: translate(-25%, -50%);
}

.alpv .counter-number {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 900;
	font-size: 75px;
	line-height: 75px;
	color: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.alpv .counter-number .after {
	font-size: 50px;
}

.alpv .about .image .image-2 {
	position: absolute;
	bottom: 0px;
	right: 0px;
	transform: translate(50%, 25%);
}

.alpv .about.about-2 .image .image-2 {
	position: absolute;
	bottom: 0;
	left: 0px;
	transform: translate(-50%, -20%);
}

.alpv .about .image img {
	border-radius: 22px;
}

.alpv .rinks h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 45px;
	line-height: 43px;
	color: var(--alpv-primary);
}

.alpv .rinks h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 45px;
	line-height: 43px;
	color: var(--alpv-primary);
}

.alpv .rinks .swiper {
	overflow: hidden;
	padding-top: 130px;
	margin-top: -130px;
}

.alpv .nav.nav-tabs {
	position: relative;
	z-index: 10;
}

.alpv .rinks .swiper-slide {
	padding: .25rem;
}

.alpv .rink-card img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.alpv .rink-card {
	display: flex;
	flex-direction: column;
}

.alpv .rink-card .card-body {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

@media (min-width: 992px) {
	.alpv .rinks .swiper-slide .row {
		margin-left: 0;
		margin-right: 0;
	}
}

/* Пагинация-миниатюры в правом верхнем углу */
.alpv .rinks .rinks-swiper {
	position: relative;
}

.alpv .rinks .rinks-swiper .swiper-pagination {
	position: absolute;
	top: 8px;
	right: 8px;
	left: auto;
	bottom: auto;
	width: auto;
	display: flex;
	gap: 8px;
	align-items: center;
	z-index: 10;
	padding: 4px;
	background: rgba(255, 255, 255, .6);
	backdrop-filter: blur(4px);
	border-radius: 8px;
}


/* при очень узких экранах можно упростить */
@media (max-width: 480px) {
	.alpv .rinks .swiper-pagination {
		gap: 6px;
		padding: 3px;
	}


}

.alpv .nav-tabs {
	border: 0px
}

.alpv .nav-tabs .nav-link {
	
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 19px;
	text-transform: uppercase;
	color: #000000;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	border: 1px solid #000;
	background-color: #fff;
	border-radius: 30px;
	padding: 10px 54px;
	margin-right: 1rem;
}

.alpv .nav-tabs .nav-link.active {
	border: 1px solid #FFFB10;
	background-color: #FFFB10;
	color: #000;
}

.alpv .rink-card {
	border-radius: 50px;
	overflow: hidden;
	border: 0px;
	position: relative;
}

.alpv .card-body {
	position: absolute;
	background-color: #fff;
	padding: 20px 20px;
	left: 20px;
	bottom: 20px;
	border-radius: 30px;
	width: 379px;
}

.alpv .card-title {


	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 19px;

	color: #000000;


}

.alpv .work-time {

	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	margin: 0px 0px -5px;
	color: #000000;
	padding: 5px 0px 5px 35px;
	background: url(../images/ri_time-line.svg) no-repeat left center;
}

.alpv .adress {

	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	margin: 0px 0px 10px;
	color: #000000;
	padding: 5px 0px 5px 35px;
	background: url(../images/map.svg) no-repeat left center;
}

.alpv .btn.btn-link {
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;

	text-decoration-line: underline;

	color: #0053E0;

	justify-content: flex-start;
	display: inline-flex;
	align-items: center;
	border: 1px solid #000;
	background-color: #fff;
	border-radius: 30px;
	padding: 10px 54px;
	margin-right: 1rem;
	padding: 13px 0px 13px 50px;
	background: url(../images/Frame15.svg) no-repeat 13px center;
}

.alpv .btn.btn-link:hover {
	text-decoration: none;
}


/* пагинация в правом верхнем углу */
.alpv .rinks .rinks-swiper .swiper-pagination {
	position: absolute;
	top: 8px;
	right: 8px;
	left: auto;
	bottom: auto;
	width: auto;
	display: flex;
	gap: 6px;
	z-index: 10;
}

/* «пули» в виде картинки */
.alpv .rinks .swiper-pagination-bullet {
	width: 28px;
	height: 28px;
	background: url('../images/bullet.png') center/cover no-repeat;
	opacity: 1;
	border: none;
	margin: 0 0 0 1rem;
	padding: 0;
	transition: transform .2s ease;
}

.alpv .rinks .swiper-pagination-bullet-active {
	background-image: url('../images/bullet-a.png');
}

/* адаптив */
@media (max-width: 480px) {
	.alpv .rinks .swiper-pagination-bullet {
		width: 28px;
		height: 28px;
	}
}


.alpv .tab-content>.active {
	padding-top: 1rem;
}

.rinks-swiper {
	margin: 0 -12px;
}


/* ===== Базовые стили ===== */
.counters {
	position: relative;
	overflow: hidden;
	padding: 0px;
	margin-bottom: -125px;
}


.counters .bg {
	position: absolute;
	width: calc(100% + 60px);
	height: 100%;
	background: url('../images/counter-bg.jpg') center/cover no-repeat;
	z-index: 1;
	border-radius: 30px;
	left: -30px;
	top: 0px;
}

.counters .container {
	position: relative;
	z-index: 2;
	padding-top: 65px;
	padding-bottom: 65px;
}

.counters .row {
	position: relative;
	z-index: 5;
}

/* ===== Иконка ===== */
.counters .icon {
	width: 91px;
	height: 91px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	transform: scale(0.9);
	opacity: 0;
	animation: iconPop 0.8s ease forwards;
}

.counters .icon svg {
	width: 47px;
	height: 47px;
	fill: #00296f;
}

/* ===== Блок с цифрой ===== */
.counters .counter-number {
	display: flex;
	align-items: baseline;
	font-weight: 700;
	font-size: 48px;
	line-height: 1;
	margin-bottom: -6px;

	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 900;
	font-size: 80px;
	line-height: 80px;
	text-align: center;

	color: #FFFFFF;



}

.counters .counter-number .after {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 900;
	font-size: 65px;
	line-height: 79px;
	text-align: center;

	color: #FFFFFF;
}

.counters .counter-name {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;

	color: #FFFFFF;


}

/* ===== Анимации ===== */
@keyframes iconPop {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Плавное появление чисел */
@keyframes fadeUp {
	from {
		transform: translateY(10px);
		opacity: 0;
	}

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

.counters .counter {
	animation: fadeUp 0.8s ease forwards;
}

/* Адаптив */
@media (max-width: 992px) {
	.counters .icon {
		width: 64px;
		height: 64px;
		margin-right: 16px;
	}

	.counters .counter-number {
		font-size: 36px;
	}

	.counters .counter-number .after {
		font-size: 24px;
	}
}


.advantages {
	background: #E8E8E8;
	padding-top: 180px;
}

.advantages h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 45px;
	line-height: 43px;
	text-align: center;

	color: var(--alpv-primary);


}

.advantage-item {
	background: #fff;
	border-radius: 30px;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	padding: 16px;
	height: 145px;
	position: relative;
}

.advantage-item.item-1 {
	background: url(../images/a-1.png) no-repeat center center;
	background-size: 100%;
}

.advantage-item.item-2 {
	background: url(../images/a-2.png) no-repeat center center;
	background-size: 100%;
}

.advantage-item.item-3 {
	background: url(../images/a-3.png) no-repeat center center;
	background-size: 100%;
}

.advantage-item.item-4 {
	background: url(../images/a-4.png) no-repeat center center;
	background-size: 100%;
}

.advantage-item .name {
	display: flex;
	flex-direction: column;
	z-index: 100;
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 19px;

	color: #000000;
	max-width: 200px;

}

.advantage-item .image {
	position: absolute;
	transition: .6s;
	bottom: -10px;
	right: 0;
}

.advantage-item.item-1 .image {
	bottom: -62px;
	right: -20px;
}

.advantage-item.item-2 .image {
	bottom: -45px;
	right: -20px;
}

.advantage-item.item-3 .image {
	bottom: -15px;
	right: -20px;
}

.advantage-item.item-4 .image {
	bottom: -25px;
	right: -20px;
}

.advantage-item:hover .image {
	transform: rotate(10deg) scale(1.15);
}

main img {
	max-width: 100%;
}

.afisha h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 56px;
	line-height: 54px;

	color: var(--alpv-primary);


}

.nav-link2 {
	text-decoration: none;
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 19px;
	align-items: center;
	color: #000000;
	display: flex;
}

.nav-link2:hover {
	text-decoration: underline;
}

.alpv .nav.nav-tabs {
	align-items: center
}

.nav-link2 svg {
	margin-left: 12px;
}

.afisha h5 {

	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 15px;

	color: #000000;
	margin-bottom: 2rem;


}

.afisha h4 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 45px;
	line-height: 43px;

	color: #000000;
	margin-bottom: 2rem;

}

.afisha p {
	font-style: normal;
	font-weight: 500;
	font-size: 25px;
	line-height: 30px;

	color: #000000;


}

.faq {
	padding-bottom: 0px;
}

.faq h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 56px;
	line-height: 54px;

	color: var(--alpv-primary);
	margin-bottom: 4rem;

}

.faq .accordion {

	padding-left: 150px;
	background: url(../images/faq-bg.png) repeat-y left top;
	padding-bottom: 80px;

}


.faq .accordion-item {
	border-top: 0px;
	border-bottom: 2px solid #2b2b2b;
}

.faq .accordion-button {
	gap: 12px;
	padding: 2rem 0;
	background: transparent;
	box-shadow: none !important;
}

.faq .accordion-button:not(.collapsed) {
	color: #00296f;
	background: transparent;
}

.faq .accordion-body {
	padding: .5rem 0 1rem 0;
}

/* текст вопроса */
.faq .faq-q {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 24px;

	color: #000000;
	text-transform: uppercase;

}

/* контейнер иконок справа */
.faq .faq-icons {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #2b2b2b;
	transition: all 0.3s ease-in-out;
}




.alpv .accordion-button::after {
	display: none;
}

.faq .accordion-button:not(.collapsed) .faq-icons {
	transform: rotate(45deg);
}

.faq .accordion-body {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0);
	padding: 0px 20px 20px 0px;
}

.contacts {
	background: #E8E8E8;

}

.contacts h3 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 56px;
	line-height: 54px;
	color: var(--alpv-primary);


}

.two-col {
	background-color: #fff;
	border-radius: 60px;
	margin-bottom: -215px;
	overflow: hidden;
	position: relative;
	margin-top: 5rem;
}

.bg-yellow {
	background-color: #FFFB10
}

.two-col .kons {
	position: absolute;
	right: -40px;
	bottom: -30px;
}

footer {
	background-color: var(--alpv-secondary)
}

.two-col .inner {
	padding: 70px 40px;
}

.two-col .icon {
	width: 42px;
	height: 42px;
	background-color: #FFFB10;
	border-radius: 100%;
	margin-right: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
}

.two-col .info .title {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;

	color: rgba(0, 41, 111, 0.45);
	margin-bottom: 0.5rem;

}

.two-col .info,
.two-col .info a {
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;

	color: #000000;
	text-decoration: none;

}

.two-col .info a:hover {
	text-decoration: underline;
}

.two-col h4 {
	font-family: 'Gotham Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 29px;

	color: #000000;


}

.two-col .d-flex {
	background: #fff;
	margin: 2rem 0;
	border-radius: 60px;
	max-width: 100%;
	width: 375px;
	padding: 13px 15px;
}

.two-col form button {
	width: 60px;
	height: 40px;
	border-radius: 10px;
	border: 0px;
	background-color: #FFFB10;
}

.two-col form input {
	width: 100%;
	height: 40px;
	border-radius: 10px;
	border: 0px;
	background-color: #fff;

	font-family: 'Druk Cyr';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 0.08em;
	outline: 0px !important;
	text-transform: uppercase;
	color: #000
}

.two-col form ::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #BEBEBE;
}

.two-col form :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #BEBEBE;
	opacity: 1;
}

.two-col form ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #BEBEBE;
	opacity: 1;
}

.two-col form :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #BEBEBE;
}

.two-col form ::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #BEBEBE;
}

.two-col form ::placeholder {
	/* Most modern browsers support this now. */
	color: #BEBEBE;
}

.checkbox-info {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #000000;


}

.checkbox-info a {
	font-style: normal;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	text-decoration-line: underline;
	display: inline-block;
	margin-top: 0.5rem;
	color: #484848;
	max-width: 321px;
}

.checkbox-info a:hover {
	text-decoration: none;

}

.two-col form input[type="checkbox"] {
	background: #FFFB10;
	border: 1px solid #000;
	height: auto;
}


footer {
	padding: 230px 0px 60px;
	color: #fff
}

footer .logo {
	margin-bottom: 3rem;
}

.alpv footer h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;

	color: #FFFFFF;
	margin-bottom: 1.5rem !important;


}


footer ul {
	list-style: none;
	margin: 0px 0px 1rem;
	padding: 0px !important;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}


footer ul.item-menu li {
	border-radius: 60px;
	padding: 10px 20px;
	background-color: #FFFB10;
	text-align: center;

	margin-bottom: 1rem;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;

	color: #000000;

}

footer ul.link-menu li a {
	border-radius: 60px;
	padding: 10px 20px;
	background-color: #FFFB10;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: all 0.35s ease-in-out;
	margin-bottom: 1rem;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;

	color: #000000;
	white-space: nowrap;

}

footer ul.link-menu li a:hover {
	background-color: #fff
}



footer ul.link-menu li {
	width: var(--li-w, auto);
	/* ширина берётся из JS */
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;

	color: #FFFFFF;
}

footer .social-list li a {
	margin-right: 0px !important;
	margin-left: 25px !important;
}

footer .social-list li svg {
	width: 40px;
	height: 40px;
	fill: #fff;
	transition: all 0.35s ease-in-out;
}

footer .social-list li:hover svg,
header .social-list li:hover svg {
	fill: #FFFB10;
	;
}

.alpv .btn.btn-outline-dark {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	display: inline-flex;
	align-items: center;
	border: 3px solid #fff;
	background-color: transparent;
	border-radius: 30px;
	padding: 10px 60px;
}

@media (max-width: 1300px) {
	.alpv .about .image img {
		width: 350px;
	}

	.alpv .about .image .image-2 {
		width: 185px;
	}
	.alpv .about.about-2 .image .image-2 {
		width: 185px;
		transform: translate(-50%, -20%);
	}

	.alpv h3 {
		font-size: 38px;
	}

	.afisha h4 {
		font-size: 34px;
	}

	.afisha p {
		font-size: 18px;
	}

	.two-col .info,
	.two-col .info a {
		font-size: 22px;
	}


}

@media (max-width: 1024px) {
	section .caption h1 {
		font-size: 36px;
	}

	section .caption h1 .plashka {
		font-size: 30px;
	}

	section .caption p {
		font-size: 18px;
	}

	.alpv .stroke-title {
		font-size: 96px;
		line-height: 140px;
	}

	.alpv h3 {
		font-size: 30px;
		line-height: 34px;
	}

	.alpv .about p {
		font-size: 18px;
		line-height: 22px;
	}

	.alpv .about .image img {
		width: 310px;
	}

	.alpv .about .image .image-2 {
		width: 136px;
	}

	.alpv .about.about-2 .image .image-2 {
		width: 136px;
		transform: translate(-50%, -20%);
	}

	.alpv .btn.btn-outline-light {
		font-size: 14px;
		line-height: 16px;
		border: 2px solid #000;
		padding: 10px 35px;
	}

	.alpv .btn.btn-outline-light svg {
		width: 30px;
	}

	.alpv .about .image img {
		border-radius: 14px;
	}

	.alpv .counter-number {
		font-size: 50px;
		line-height: 55px;
	}

	.alpv .counter-number .after {
		font-size: 45px;
	}

	.alpv .about .image .counter-block {
		font-size: 16px;
	}

	.alpv .about .image .counter-block {
		padding: 20px 15px;
	}

	.alpv .rinks h3 {
		font-size: 35px;
	}

	.counters .bg {
		width: calc(100% + 30px);
		left: -15px;
	}

	.counters .icon {
		width: 64px;
		height: 64px;
	}

	.counters .icon svg {
		width: 27px;
		height: 27px;
	}

	.counters .counter-name {
		font-size: 16px;
		line-height: 20px;
	}

	.counters .container {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.advantage-item {
		background-size: 100% 100% !important;
	}

	.advantage-item .image img {
		width: 80%;
	}

	.advantage-item {
		height: 120px;
	}

	.advantage-item .name {
		font-size: 16px;
	}

	.advantage-item.item-1 .image {
		right: -60px;
	}

	.advantage-item.item-2 .image {
		right: -60px;
	}

	.advantage-item.item-3 .image {
		right: -60px;
	}

	.advantage-item.item-4 .image {
		right: -60px;
	}

	.afisha img {
		max-width: 500px;
	}

	.alpv .nav-tabs .nav-link {
		padding: 10px 24px;
		font-size: 16px;
	}


	.nav-link2 {
		font-size: 16px;
	}

	.faq .faq-q {
		font-size: 20px;
	}

	.faq .accordion-button {
		padding: 1.5rem 0;
	}

	.faq .accordion-body {
		font-size: 14px;
		line-height: 20px;
	}

	.two-col .info,
	.two-col .info a {
		font-size: 16px;
		line-height: 22px;
	}

	.two-col .info .title {
		font-size: 14px;
		line-height: 18px;
	}

	.two-col .kons {
		width: 240px;
	}

	.two-col h4 {
		font-size: 20px;
		line-height: 22px;
	}

	.two-col .d-flex {
		width: 320px;
		padding: 8px 15px;
	}

	.alpv footer h4 {
		font-size: 20px;
		line-height: 24px;
	}

	footer ul.item-menu li {
		font-size: 14px;
		line-height: 18px;
	}

	footer ul.link-menu li a {
		font-size: 14px;
		line-height: 18px;
	}

	.alpv .btn.btn-outline-dark {
		font-size: 14px;
		line-height: 18px;
		padding: 10px 51px;
	}

	footer .social-list li svg {
		width: 30px;
		height: 30px;

	}
}

@media screen and (max-width:768px) {
	.alpv .stroke-title {
		font-size: 65px;
		line-height: 120px;
	}

	.alpv h3 {
		font-size: 24px;
		line-height: 28px;
	}

	.alpv .about .image img {
		width: 210px;
	}

	.alpv .about .image .image-2 {
		width: 102px;
	}

	.alpv .about.about-2 .image .image-2 {
		width: 102px;
	}

	.alpv .about p {
		font-size: 14px;
		line-height: 18px;
	}

	.alpv .btn.btn-outline-light {
		font-size: 12px;
		line-height: 14px;
	}

	.alpv .btn.btn-outline-light svg {
		width: 22px;
	}

	.alpv .rinks .swiper {
		overflow: hidden;
		padding-top: 150px;
		margin-top: -150px;
	}

	.alpv .counter-number {
		font-size: 35px;
		line-height: 35px;
	}

	.counters .icon {
		width: 50px;
		height: 50px;
	}

	.counters .icon svg {
		width: 20px;
		height: 20px;
	}

	.counters .counter-name {
		font-size: 14px;
		line-height: 16px;
	}

	.counters .container {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.counters {
		margin-bottom: -80px;
	}

	.advantages {
		padding-top: 90px;
	}

	.advantage-item {
		margin-bottom: 1.5rem;
	}

	.alpv .nav-tabs .nav-link {
		padding: 10px 20px;
		font-size: 14px;
	}

	.nav-link2 {
		font-size: 14px;
	}

	.afisha h4 {
		font-size: 26px;
	}

	.afisha p {
		font-size: 16px;
	}

	.afisha img {
		max-width: 100%;
	}

	.faq .accordion {
		padding-left: 90px;
		background-size: 70px;
	}

	.faq h3 {
		margin-bottom: 2rem;
	}

	.faq .faq-q {
		font-size: 18px;
	}

	.faq .accordion-button {
		padding: 1rem 0;
	}

	.two-col {
		margin-top: 3rem;
	}

	footer ul.item-menu li {
		margin-right: 1rem;
	}

	footer ul.link-menu li a {
		margin-right: 1rem;
	}
}


@media screen and (max-width:767px) {
	section .caption h1 {
		font-size: 22px;
		padding: 0px 25px;
		line-height: 35px;
	}

	section .caption h1 .plashka {
		font-size: 20px;
		padding: 2px 32px;
	}

	section .caption p {
		font-size: 14px;
		text-align: center;
		padding: 0px 25px;
		line-height: 22px;
	}

	.alpv .about .image {
		display: block;
		margin-top: 0;
		margin: 0 auto 3rem;
		max-width: 210px;
	}

	.alpv h3 {
		font-size: 20px;
		line-height: 26px;
	}

	.about {
		padding-bottom: 0px;
	}

	.rinks {
		padding-top: 2rem;
	}

	.alpv .stroke-title {
		font-size: 65px;
		line-height: 85px;
	}

	.alpv .nav-tabs .nav-link {
		padding: 10px 20px;
		font-size: 14px;
		margin-bottom: 1.5rem;
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}

	.alpv .nav.nav-tabs {
		justify-content: center;
	}

	.alpv .rinks .rinks-swiper .swiper-pagination {
		top: 103px;
		right: 50%;
		transform: translateX(50%);
	}

	.alpv .rinks .swiper-pagination-bullet {
		margin: 0px 0.5rem;
	}

	.alpv .card-body {
		position: static;
		width: 100%;
	}

	.counters .d-flex {
		justify-content: center;
		max-width: 200px;
	}

	.counters .bg {
		width: calc(100% - 30px);
		left: 15px;
	}

	.counters .d-flex {
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		align-items: center
	}

	.counters .icon {
		margin-right: 0px;
	}

	.alpv .counter-number {
		justify-content: center;
	}

	.advantage-item .name {
		font-size: 14px;
		line-height: 18px;
	}

	.nav-link2 {
		margin-bottom: 1.5rem;
	}

	.afisha img {
		margin-top: 2rem;
	}

	.faq .accordion {
		background: none;
		padding-left: 0px;
	}

	.faq {
		padding-top: 0px;
	}

	.alpv .faq h3 {
		font-size: 24px;
	}

	.faq .faq-q {
		font-size: 14px;
	}

	.faq svg {
		width: 18px;
		height: 18px;
	}

	.faq .accordion-body {
		padding-right: 0px;
	}

	.faq .accordion {
		padding-bottom: 30px;
	}

	.two-col .icon {
		margin-right: 0px;
	}

	.two-col .kons {
		width: 140px;
	}

	footer ul.link-menu li a {
		margin-right: 0rem;
	}

	footer ul.link-menu {
		margin: 0px -0.5rem 1rem;
	}

	footer ul.link-menu li{
		margin: 0px 0.5px 1rem 0.5rem;
	}

	footer{
		text-align: center;
		justify-content: center;
	}
	footer ul{
		justify-content: center;
	}

	footer .btn{
		margin-bottom: 1.5rem;
	}

	.alpv main .btn, .alpv .modal .btn{
		padding: 16px 20px;
	}

	.alpv .rink-card img{
		border-radius:50px
	}
}