@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	/*Цвета*/
	--black: #1C1C1C;
	--red: #B6262C;
	--redDark: #A51E23;
	--white: #fff;
	--gray: #F2F3F7;
	--gray40: #E0E1E5;
	--gray60: #CACACB;
	--gray80: #7E7F81;


	/* Шрифты */
	--h1-font-size: 80px;
	--h1-font-weight: 570;
	--h2-font-size: 64px;
	--h2-font-weight: 570;
	--h3-font-size: 48px;
	--h3-font-weight: 570;
	--h4-font-size: 38px;
	--h4-font-weight: 570;
	--h5-font-size: 26px;
	--h5-font-weight: 570;
	--h5-font-size: 24px;
	--h5-font-weight: 570;

	--xs-regular: 14px;
	--s-medium-font-size: 15px;
	--m-medium-font-size: 16px;
	--m-medium-font-weight: 570;
	--xl-medium-font-size: 22px;
	--xl-medium-font-weight: 570;
	--l-regular: 20px;
	--l-medium-font-size: 20px;
	--l-medium-font-weight: 570;
}

body {
	font-family: 'inter', sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	min-width: 320px;
	color: var(--black);
}

/* key frames */
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - 20px));
	}
}
/* key framesend */

/* Элементы */
input:focus {
	outline: none;
}
.container {
	margin: auto;
	padding: 0 15px;
	box-sizing: border-box;
}
.btn {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 16px;
	font-size: var(--l-medium-font-size);
	font-weight: var(--l-medium-font-weight);
	color: var(--black);
	border: none;
	cursor: pointer;
}
.btn_red {
	background-color: var(--red);
	color: var(--white);
	transition: background-color .3s ease-out;
}
.btn_red:hover {
	background-color: var(--redDark);
}
.btn_white {
	background-color: var(--white);
}
.btn_black {
	background-color: var(--black);
	color: #fff;
}
.btn_small {
	width: 180px;
	font-size: 15px;
}
.btn_extra-width {
	width: 400px;
}
.btn_maw300 {
	max-width: 300px;
}
.btn_center {
	margin: 30px auto;
}
.btn_desctop-hidden {
	display: none;
}
.section {
	margin-top: 100px;
}
.section--gray {
	padding: 50px 0;
	background-color: var(--gray);
	border-radius: 16px;
}
.section_gray {
	background-color: #F2F3F7;
	padding: 60px 0;
}
.section--with-right-fade {
	position: relative;
	overflow: hidden;
}
.section--with-right-fade::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 130px;
	right: -100px;
	top: 0;
	background: linear-gradient(270deg, #FFFFFF 64.9%, rgba(255, 255, 255, 0) 100%);
}
.section__title {
	font-size: var(--h1-font-size);
	font-weight: var(--h1-font-weight);
	color: var(--black);
	margin: 0;
	margin-bottom: 50px;
}
.section__title_with-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.section__title_center {
	text-align: center;
}
.section__title_with-subtitle {
	margin-bottom: 15px;
}
.section__subtitle {
	margin: auto;
	margin-bottom: 50px;
	font-size: var(--xl-medium-font-size);
	font-weight: var(--xl-medium-font-weight);
	text-align: center;
	max-width: 800px;
}
.section__subtitle_left {
	text-align: left;
	max-width: initial;
}
.section__subtitle_accent {
	color: var(--red);
}
.section__link {
	font-size: var(--l-medium-font-size);
	font-weight: var(--l-medium-font-weight);
	color: var(--red);
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: color .3s ease-out;
}
.section__link path {
	transition: fill .3s ease-out;
}
.section__link:hover {
	color: var(--black);
}
.section__link:hover path {
	fill: var(--black)
}
.section__link svg {
	margin-left: 10px;
}
.section__link_mobile {
	display: none;
}
/* Элементы конец */

/* ///////////////// */
/*Стили темы*/
/* ///////////////// */
.header {
	padding: 18px 0;
}
.top-header {
	display: flex;
}
.top-header__item {
	display: flex;
	align-items: center;
}
.top-header__item--grow {
	flex-grow: 1;
	justify-content: end;
}
.top-header__item_mobile {
	display: none;
}
.top-header__logo {
	margin-right: 20px;
}
.top-header__menu {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0 30px;
}
.top-header__menu li {
	margin: 0 15px;
}
.top-header__menu a {
	text-decoration: none;
	color: #000;
	font-size: var(--l-regular);
	display: flex;
	align-items: center;
}
.top-header__menu a:hover {
	color: var(--red);
}
.top-header__menu a img {
	margin-left: 5px;
}
.top-header__phone {
	border: 1px solid var(--red);
	margin-right: 20px;
	color: #000;
}
.top-header__link {
	background-color: var(--red);
	color: var(--white);
	margin-right: 20px;
	text-decoration: none;
	transition: background-color .3s ease-out;
}
.top-header__link:hover {
background-color: var(--redDark);
}
.top-header__btn {
	height: 40px;
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 0 20px;
	border-radius: 40px;
}
#menuTrigger img {
	transition: transform .3s ease-out;
}
#menuTrigger.active img {
	transform: rotate(180deg);
}
.top-header-hidden-menu {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.18);
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	padding: 25px;
	box-sizing: border-box;
	z-index: 10;
}
.top-header-hidden-menu__close {
	display: none;
}
.top-header-hidden-menu__item {
	width: calc(25% - 75px/4);
}
.top-header-hidden-menu__heading {
	height: 50px;
	display: flex;
	align-items: center;
	background-color: var(--red);
	color: #fff;
	font-size: var(--m-medium-font-size);
	font-weight: var(--m-medium-font-weight);
	border-radius: 12px;
	padding: 0 20px;
	margin-bottom: 15px;
	text-decoration: none;
	transition: background-color .3s ease-out;
}
.top-header-hidden-menu__heading:hover {
	background-color: var(--redDark);
}
.top-header-hidden-menu__heading img {
	margin-right: 15px;
}
.top-header-hidden-menu__list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.top-header-hidden-menu__list a {
	font-size: var(--m-medium-font-size);
	font-weight: var(--m-medium-font-weight);
	margin-bottom: 15px;
	display: block;
	text-decoration: none;
	color: var(--black);
}
.top-header-hidden-menu__list a:hover {
	transition: color .3s ease-out;
	color: var(--red);
}
.progress-bar-container {
	display: none;
	gap: 5px; 
	width: calc(100% - 20px); 
	height: 5px;
	position: absolute;
	top: 10px; 
	left: 10px;
}
.progress-bar {
	position: relative;
	height: 100%;
	width: 0; 
	background-color: #ffffff4b; 
	transition: width 0.5s linear;
	flex-grow: 0; 
	flex-shrink: 0; 
	flex: 1;
	border-radius: 20px;
}
.progress-bar-line {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	border-radius: 20px;
	background-color: #fff; 
	opacity: 1;
}
.main-screen {
	position: relative;
	height: 800px;
	background-image: url('../images/webp/main-screen-image.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 16px;
	padding: 25px;
	display: flex;
	align-items: flex-end;
	transition: background-image 1s ease-in-out;
}
.main-screen__btn_mobile {
	display: none;
}
.main-screen__content {
	display: flex;
	justify-content: space-between;
	gap: 25px;
}
.main-screen__mobile-content {
	display: none;
}
.main-screen__item {
	border-radius: 16px;
	background: rgba(242, 243, 247, 0.9);
	padding: 25px;
	text-decoration: none;
	position: relative;
	box-sizing: border-box;
	flex: 1;
}
.main-screen__item_red {
	background-color: var(--red);
}
.main-screen__item_large {
	flex: 2;
	transition: all .8s ease-out;
}
.main-screen__item_large .main-screen__icon {
	display: none;
}
.main-screen__item_small {
	flex-shrink: 4;
}
.main-screen__item_small .main-screen__item-btn {
	display: none;
}
.main-screen__heading {
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
	color: var(--black);
	line-height: 1.1;
	height: 85px;
	overflow: hidden;
}
.main-screen__item_large .main-screen__heading {
	font-size: var(--h4-font-size);
	font-weight: var(--h4-font-weight);
	color: var(--white);
}
.main-screen__icon {
	position: absolute;
	right: 25px;
	bottom: 25px;
}
.main-screen__item-btn {
	margin-top: 25px;
}
.page-screen {
	position: relative;
}
.page-screen__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	height: 600px;
}

.page-screen__heading {
	position: relative;
	z-index: 2;
	height: 100%;
	color: #fff;
	width: 50%;
	background-image: url('../images/main-screens/main-screen-pattern-desctop.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-radius: 24px;
}
.page-screen__image {
	width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 24px;
}
.page-screen__heading-title {
	font-size: 100px;
	line-height: 1;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}
.page-screen__subtitle {
	font-size: 26px;
	font-weight: 600;
	max-width: 780px;
}
.page-screen__labels {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	max-width: 650px;
}
.page-screen__labels-item {
	height: 35px;
	border-radius: 16px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}
.page-screen__labels-text {
	color: #000;
	margin-left: 5px;
	margin-top: -3px;
}
#managment {
	background-image: url('../images/main-screens/management.jpg');
}
#hr-cons {
	background-image: url('../images/main-screens/hr-cons.jpg');
}
#events {
		background-image: url('../images/main-screens/events.jpg');
}
#about {
		background-image: url('../images/main-screens/about.png');
}
.h-grid-template {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.h-grid-template__item {
	flex: 0 0 calc(33.3333% - 40px/3);
	background-color: var(--gray);
	box-sizing: border-box;
	padding: 20px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 250px;
}
.h-grid-template__title {
	font-size: 32px;
	font-weight: 600;
}
.h-grid-template__text {
	font-size: 22px;
	font-weight: 500;
}
.h-grid-template__item--accent {
	text-decoration: none;
	background-color: var(--red);
	cursor: pointer;
	transition: background-color .3s ease-out;
}
.h-grid-template__item--accent:hover {
	background-color: var(--black);
}
.h-grid-template__item--accent .h-grid-template__title {
	color: #fff;
}
.h-grid-template__item--accent .h-grid-template__text {
	text-align: right;
}
.s-grid-template {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
}
.s-grid-template__item {
	border-radius: 24px;
	height: 400px;
	box-sizing: border-box;
}
.s-grid-template__wrapper {
	grid-column: span 2 / span 2;
	grid-row-start: 2;
	display: flex;
	gap: 20px;
}
.s-grid-template__item--image {
	background: url('../images/webp/meeting.webp') no-repeat center / cover;
}
.s-grid-template__item--menu {
	background-color: #666666;
	color: var(--white);
	padding: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all .3s ease-out;
}
.s-grid-template__icon_hidden {
	opacity: 0;
	z-index: -1;
	transition: all .3s ease-out;
}
.s-grid-template__item--menu:hover {
	background-color: var(--black);
}
.s-grid-template__item--menu:hover .s-grid-template__icon_hidden {
	opacity: 1 !important;
	z-index: 2 !important;
	bottom: 25px;
	top: initial;
}
.s-grid-template__item--menu:hover .s-grid-template__icon {
	opacity: 0;
	z-index: -1;
	transition: all .3s ease-out;
}
.s-grid-template__item--menu .s-grid-template__icon {
	position: absolute;
	right: 25px;
	top: 25px;
	transition: background-color .3s ease-out;
}
.s-grid-template__item--menu .s-grid-template__heading {
	font-size: var(--h3-font-size);
	font-weight: var(--h3-font-weight);
	color: var(--white);
	max-width: 500px;
	line-height: 1.1;
}
.s-grid-template__menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.s-grid-template__menu li {
	height: 40px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border: 1px solid var(--white);
	color: var(--white);
	text-decoration: none;
	font-size: var(--l-medium-font-size);
	font-weight: var(--l-medium-font-weight);
}
.s-grid-template__item--menu:hover .s-grid-template__menu li {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 5;
	position: relative;
}
.s-grid-template__item--simple {
	height: 350px;
	flex: 0 0 calc(33.333% - 40px/3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 17px;
	border-radius: 24px;
	background-color: var(--gray);
	transition: all .3s ease-out;
	color: var(--black);
	text-decoration: none;
}
.s-grid-template__item--simple:hover {
	background-color: var(--red);
	color: var(--white);
}
.s-grid-template__item--simple .s-grid-template__heading {
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
}
.s-grid-template__item--simple .s-grid-template__text {
	font-size: var(--l-medium-font-size);
	font-weight: var(--l-medium-font-weight);
}
.form-horizontal {
	background: url('../images/form-desctop.jpg') no-repeat center / cover;
	padding: 25px;
	border-radius: 16px;
	color: var(--white);
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.form-horizontal__heading {
	width: 50%;
}
.form-horizontal__title {
	font-size: var(--h2-font-size);
	font-weight: var(--h2-font-weight);
}
.form-horizontal__subtitle {
	font-size: 26px;
	font-weight: var(--h6-font-weight);
	margin-bottom: 25px;
}
.form-horizontal__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.form-horizontal__form--footer .submit-button {
	margin-top: 0;
}
.form-horizontal__form--footer input {
	font-size: 14px;
}
.input {
	border: none;
	padding: 20px;
	box-sizing: border-box;
	height: 54px;
	display: flex;
	align-items: center;
	border-radius: 24px;
	width: 100%;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 500;
}
.input::placeholder {
	color: #000;
}
.form-horizontal__button {
	width: 100%;
	margin-top: 25px;
}
.submit-button {
	height: 60px;
	background-color: var(--black);
	color: var(--white);
	font-size: var(--l-medium-font-size);
	font-weight: var(--l-medium-font-weight);
	cursor: pointer;
	border-radius: 24px;
	border: none;
	transition: background-color .3s ease-out;
}
.form-horizontal__button_red {
	background-color: var(--red);
}
.submit-button:hover {
	background-color: var(--gray80);
}
.form-notice {
	display: flex;
	margin-top: 20px;
}
.form-notice input {
	visibility: hidden;
	width: 0;
}
.form-notice__label {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background-color: var(--white);
	border-radius: 4px;
	margin-right: 10px;
}
.form-notice input:checked + label{
	background-color: red;
}
.form-notice__text {
	font-size: var(--xs-regular);
	color: var(--white);
}
.s-offer {
	background-image: url('../images/offer-background.jpg');
	background-position: left bottom;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	padding: 40px;
	border-radius: 16px;
}
.s-items__layers {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 1;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--white);
	border-radius: 16px;
	height: 100%;
	padding: 25px;
	box-sizing: border-box;
	box-shadow: 0px 3px 7.1px rgba(105, 105, 105, 0.22);
}
.s-items__layers--4 {
	top: 7px;
	left: 7px
}
.s-items__layers--3 {
	top: 14px;
	left: 14px
}
.s-items__layers--2 {
	top: 21px;
	left: 21px
}
.s-items__layers--1 {
	top: 28px;
	left: 28px
}
.s-offer__title {
	font-size: var(--h1-font-size);
	font-weight: var(--h1-font-weight);
	color: var(--white);
	line-height: 1.1;
}
.s-offer__carousel {
	position: relative;
}
.s-offer__item {
	position: relative;
	z-index: 2;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--white);
	border-radius: 16px;
	height: 580px;
	padding: 25px;
	box-sizing: border-box;
	box-shadow: 0px 3px 7.1px rgba(105, 105, 105, 0.22);
}
.s-offer__item-title {
	font-size: var(--h3-font-size);
	font-weight: var(--h3-font-weight);
	margin-bottom: 20px;
}
.s-offer__text {
	font-size: 17px;
	font-weight: var(--xl-medium-font-weight);
}
.s-offer__navigation {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.s-offer__count {
	color: var(--gray40);
	font-size: var(--xl-medium-font-size);
	font-weight: var(--xl-medium-font-weight);
}
.s-offer__links {
	display: flex;
	gap: 15px;
}
.s-offer__link {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #CACACB;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color .3s ease-out;
}
.s-offer__link_back {
	background-color: #CACACB;
}
.s-offer__item--5 .s-offer__links .s-offer__link:last-child {
	background-color: #F2F3F7;
}
.s-offer__item {
	display: none;
}
.s-offer__item.shown {
	display: flex
}
.s-offer__carousel {
	position: relative;
}
.s-offer__progress-container {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 10px 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.s-offer__progress-bar {
	height: 3px;
	background-color: #E0E1E5;
	flex: 1;
	max-width: 50px;
	border-radius: 2px;
	overflow: hidden;
}

.s-offer__progress-fill {
	height: 100%;
	width: 0%;
	background-color: #7E7F81;
	transition: width linear;
}
.casecards {
	display: flex;
	gap: 20px;
	overflow-x: scroll;
	padding-bottom: 30px;
}
.casecards__item {
	flex: 0 0 550px;
	box-sizing: border-box;
	background-color: var(--gray);
	padding: 25px;
	border-radius: 16px;
}
.casecards__item--flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.casecards__label {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.casecards__label-icon {
	margin-right: 10px;
}
.casecards__label-text {
	color: var(--gray80);
	font-size: var(--m-medium-font-size);
	font-weight: var(--m-medium-font-weight);
}
.casecards__content {
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
	margin-bottom: 25px;
}
.casecards__content_small {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 60px;
}
.casecards__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.casecards__link {
	display: flex;
	text-decoration: none;
	color: var(--red);
	font-size: var(--m-medium-font-size);
	font-weight: var(--m-medium-font-weight);
}
.casecards__link, .casecards__link path {
	transition: all .3s ease-out;
}
.casecards__link:hover {
	color: var(--black);
}
.casecards__link:hover path {
	fill: var(--black)
}
.casecards__link svg {
	margin-left: 10px;
}
.casecards__title {
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 10px;
}
.logo-carousel .items-wrap {
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: 2px;
}
.logo-carousel .reverce:last-child {
	margin-left: -8px;
}
.logo-carousel .items-wrap:last-child {
	margin-top: -17px;
}
.logo-carousel .items-wrap:before,
.logo-carousel .items-wrap:after {
	content: "";
	height: 100%;
	top: 0;
	width: 10%;
	position: absolute;
	z-index: 1;
	pointer-events: none;
}
.logo-carousel .items {
	flex-shrink: 0;
	display: flex;
	gap: 2px;
	counter-reset: item;
	justify-content: space-around;
	min-width: 100%;
}
.logo-carousel .item {
	background: #F2F3F7;
	flex: 0 0 auto;
	border-radius: 60px;
	width: 328px;
	height: 158px;
	counter-increment: item;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	font-weight: bold;
	color: #fff;
	margin: 10px 0;
	transition: all 0.1s ease-in-out;
}
.logo-carousel .logo-gray, .logo-carousel .logo-color {
	transition: opacity .3s ease-out;
}
.logo-carousel .item:hover .logo-gray {
	display: none;
}
.logo-carousel .item:hover .logo-color {
	display: block !important;
}
.logo-carousel .marquee {
	animation: scroll 20s linear infinite;
}
.logo-carousel .reverce {
	animation-direction: reverse;
}
.logo-carousel .items-wrap:hover .marquee {
	animation-play-state: paused;
}
.logo-carousel .perfscan {
	margin: 20px 0;
	text-align: center;
	bottom: 0;
	background: #fff;
	padding: 5px;
}
.logo-carousel .perfscan hr {
	border: solid #999;
	border-width: 1px 0 0 0;
	max-width: 50%;
	margin: 0 auto 20px;
}
.logo-carousel .perfscan a {
	color: #000;
	font-weight: bold;
}
.logo-carousel--achievements .items{
	gap: 20px;
}
.logo-carousel--achievements .items-wrap:last-child {
	margin-top: 0;
}
.logo-carousel--achievements .reverce:last-child {
	margin-left: 0;
}
.logo-carousel--achievements .items-wrap {
	gap: 20px;
}
.logo-carousel--achievements .item {
	background-color: var(--red);
	height: 90px;
	font-size: var(--xl-medium-font-size);
	position: relative;
	text-align: center;
	padding: 0 40px;
	border-radius: 16px;
}
.logo-carousel--achievements .item__text {
	color: var(--white);
}
.logo-carousel--achievements .item__year {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 11px;
	background-color: var(--white);
	padding: 2px 5px;
	border-radius: 23px;
	color: var(--red);
	font-weight: 400;
}
.logo-carousel--achievements {
	margin-top: 70px;
}
.stories.carousel .story > .item-link > .item-preview, .stories.carousel .story > .item-link {
	width: 270px;
	height: 480px;
	max-height: initial;
}
#zuck-modal-content .story-viewer .head .right {
	position: relative;
	right: 10px;
}
.stories-wrapper {
	position: relative;
	height: 530px;
	overflow-x: scroll;
}
.stories-wrapper #stories {
	position: absolute;
	left: 0;
	bottom: 0;
	margin-bottom: 30px;
}
.stories.carousel .story {
	max-width: initial;
	max-width: 300px;
}
.stories .item-link {
	position: relative;
}
.stories .item-link .info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #F2F3F7;
	padding-top: 15px;
	box-sizing: border-box;
}
.stories .item-link .info .name {
	font-size: 20px;
	color: var(--black);
	display: block;
	margin-bottom: 10px;
}
.stories.carousel .story>.item-link>.info .name {
	font-weight: 600;
}
.stories .item-link .info .subname {
	font-size: 15px;
	font-weight: 500;
}
.stories .item-link .icon {
	position: absolute;
	left: 50%;
	margin-left: -24px;
	top: 85px;
}
.stories .item-link .info strong {
	margin: 0;
	text-align: left;
	white-space: initial;
	display: block;
}
.stories .item-preview {
	position: relative;
	border-radius: 16px;
}
.stories.carousel .story>.item-link:active>.item-preview {
	transform: scale(1);
}
.stories.carousel .story > .item-link > .item-preview, .stories.carousel .story > .item-link {
	width: 100%;
}
.stories.carousel .story > .item-link > .item-preview, .stories.carousel .story > .item-link {
	height: 310px;
}
.stories.carousel .story {
	padding: 15px;
	background-color: #F2F3F7;
	border-radius: 16px;
}
.stories.carousel .story>.item-link>.item-preview > img {
	height: 220px;
	border-radius: 16px;
}
.stylized-scroll::-webkit-scrollbar {
	height: 6px;
}
.stylized-scroll::-webkit-scrollbar-track {
	background: var(--gray40);
}
.stylized-scroll::-webkit-scrollbar-thumb {
	border-radius: 20px;
	border: 3px solid var(--red);  
}
.stylized-scroll {
	cursor: grab; /* курсор "рука" в обычном состоянии */
	user-select: none; /* запрет выделения текста при перетаскивании */
}
.stylized-scroll:active {
	cursor: grabbing; /* курсор "рука сжатая" при перетаскивании */
}
.x-grid-template {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
}
.x-grid-template__item-4 {
	grid-column-start: 1;
	grid-row-start: 2;
}
.x-grid-template__item-5 {
	grid-column-start: 2;
	grid-row-start: 2;
}
.x-grid-template__item-6 {
	grid-column-start: 3;
	grid-row-start: 2;
}
.x-grid-template__item-7 {
	grid-row: span 2 / span 2;
	grid-column-start: 4;
	grid-row-start: 1;
	background-image: url('../images/plane.png');
	/*background-position: left bottom;
	background-size: contain;
	background-repeat: no-repeat;*/
	background-position: center bottom;
	background-size: 270px;
	background-repeat: no-repeat;
}
.x-grid-template__item {
	background-color: var(--gray);
	padding: 25px;
	color: var(--black);
	text-decoration: none;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: background-color .3s ease-out;
}
.x-grid-template__item:hover .x-grid-template__item-text {
	color: var(--white);
}
.x-grid-template__item.x-grid-template__item-7:hover {
	background-color: var(--gray);
}
.x-grid-template__item:hover {
	background-color: var(--red);
}
.x-grid-template__item.x-grid-template__item-7:hover .x-grid-template__item-text {
	color: var(--black);
}
.x-grid-template__item_mobile {
	display: none;
}
.x-grid-template__item-text {
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
	margin-bottom: 30px;
	transition: color .3s ease-out;
}
.x-grid-template__item-text_small {
	font-size: var(--xl-medium-font-size);
	font-weight: var(--xl-medium-font-weight);
}
.x-grid-template__item-title {
	font-size: var(--h4-font-size);
	font-weight: var(--h4-font-weight);
	margin-bottom: 15px;
}
.x-grid-template__item-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.x-grid-template__item-date {
	color: var(--gray60);
}
.g-grid-template {
	display: flex;
	gap: 20px;
}
.g-grid-template-wrapper {
	overflow: hidden;
}
.g-grid-template__item {
	flex: 0 0 calc(33.3333% - 40px/3);
	box-sizing: border-box;
}
.blog-card {
	display: block;
	text-decoration: none;
	color: var(--black);
	font-size: var(--h5-font-size);
	font-weight: var(--h5-font-weight);
}
.blog-card__image img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
	transition: opacity .3s ease-out;
}
.blog-card__title {
	margin-top: 20px;
	transition: color .3s ease-out;
}
.blog-card:hover .blog-card__title{
	color: var(--red);
}
.blog-card:hover .blog-card__image img {
	opacity: 0.7;
}
.form-with-image {
	display: flex;
}
.form-with-image__content {
	width: 50%;
	background-color: var(--red);
	padding: 25px;
	border-radius: 16px 0 0 16px;
}
.form-with-image__title {
	font-size: var(--h3-font-size);
	font-weight: var(--h3-font-weight);
	color: white;
}
.form-with-image__input {
	margin-bottom: 15px;
}
.form-with-image__form {
	margin-top: 30px;
}
.form-with-image__button {
	width: 100%;
	margin-top: 45px;
}
.form-with-image__pic {
	width: 50%;
	background-image: url('../images/form-image.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 0 16px 16px 0;
}
.form-with-image--hr .form-with-image__pic {
	background-image: url('../images/form-image-2.png');
}
.row-content {
	display: flex;
	gap: 100px;
	justify-content: space-between;
	padding: 45px 0;
	border-top: 1px solid #E0E1E5;
	border-bottom: 1px solid #E0E1E5;
}
.row-content__count {
	flex: 50px 0 0;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--red);
	color: #fff;
	font-size: 26px;
}
.row-content__title {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}
.row-content__wrapper {
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
}
.row-content__text {
	font-size: 22px;
	max-width: 700px;
}
.footer {
	margin-top: 80px;
	padding-bottom: 20px;
	background: url('../images/footer.jpg') no-repeat center / cover;
	padding: 30px 0;
	color: #fff;
}
.footer__logo {
	margin-bottom: 35px;
}
.footer__wrapper {
	display: flex;
	gap: 50px;
}
.footer__wrapper_mobile {
	display: none;
}
.footer__item {
	width: 25%;
}
.footer__item_flex-jst-end {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.footer__item_flex-alg-end {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.footer__adress {
	font-size: var(--l-regular);
	margin-bottom: 45px;
}
.footer__adress_mobile {
	display: none;
}
.footer__small-text {
	font-size: var(--s-medium-font-size);
	opacity: 0.5;
}
.footer__small-text_mobile {
	display: block;
}
.footer__menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
}
.footer__menu a {
	text-decoration: none;
	font-size: var(--l-regular);
	color: var(--white);
	transition: color .3s ease-out;
	margin-bottom: 30px;
	margin-right: 30px;
	display: block;
}
.footer__menu a:hover {
	color: var(--red);
}
.footer__links {
	max-width: 300px;
}
.footer__link {
	display: inline-flex;
	flex-wrap: nowrap;
	margin-bottom: 20px;
	text-decoration: none;
	color: var(--white);
	font-size: var(--l-medium-font-size);
	padding: 7px 20px;
	border-radius: 40px;
	border: 1px solid var(--red);
	white-space: nowrap;
}
.footer__link-icon {
	margin-right: 10px;
}
.footer__small-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer__small-menu a {
	font-size: var(--xs-regular);
	opacity: 0.5;
	text-decoration: none;
	color: var(--white);
	opacity: 0.5;
	display: block;
	margin-bottom: 10px;
	transition: color .3s ease-out;
}
.footer__small-menu a:hover {
	color: var(--red);
}
.footer__flexbox {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	gap: 60px;
}
.footer__content {
	color: #fff;
}
.footer__title {
	font-size: 64px;
	font-weight: 600;
	margin-bottom: 15px;
}
.footer__subtitle {
	font-size: 26px;
}
.scroll-section {
	position: relative;
	padding: 100px 0;
}
.scroll-section-mobile {
	display: none;
}
.scroll-container {
	display: flex;
	align-items: flex-start;
	gap: 90px;
	position: relative;
	min-height: 100vh;
}
/* Контейнер изображений */
.images-container {
	flex: 0 0 500px;
	position: sticky;
	top: 100px;
	margin-right: 120px;
	z-index: 10;
}
.images-title {
	font-size: 50px;
	font-weight: 600;
	color: #000;
	white-space: nowrap;
	margin: 0;
	margin-bottom: 30px;
	line-height: 1.2;
	max-width: 600px;
}
.images-title span {
	color: #B6262C;
}
.images-stack {
		position: relative;
		width: 100%;
		height: 450px;
}
.client-image-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;

		z-index: 1;
}

.client-image-wrapper.active {
		opacity: 1;
		z-index: 2;

}

.client-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: scale(1);
		transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-image-wrapper.active .client-image {
		transform: scale(1.02);
}

/* Предзагрузка изображений */
.client-image {
		will-change: transform, opacity;
}
.videos-stack {
	position: relative;
	width: 500px;
	height: 500px;
	perspective: 1000px;
}
.client-image {
	opacity: 0;
}
.client-image.active {
	opacity: 1;
}
.client-video {
	border-radius: 40px;
	transform: rotate(-7deg);
	width: 500px;
	height: 500px;
}
.client-video-wrapper:first-child {
	opacity: 1;
		z-index: 10;
}
.client-video-wrapper {
	position: absolute;
	opacity: 0.3;
	transition: all 0.5s ease-in-out;
	width: 500px;
	height: 500px;
}
.client-video-wrapper::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	width: 505px;
	height: 505px;
	box-sizing: border-box;
	border: 7px solid #fff;
	border-radius: 40px;
	transform: rotate(-7deg);
}

/*.client-video-wrapper:nth-child(1) { left: 0px; z-index: 6; }
.client-video-wrapper:nth-child(2) { left: 30px; z-index: 5; }
.client-video-wrapper:nth-child(3) { left: 60px; z-index: 4; }
.client-video-wrapper:nth-child(4) { left: 90px; z-index: 3; }
.client-video-wrapper:nth-child(5) { left: 120px; z-index: 2; }
.client-video-wrapper:nth-child(6) { left: 150px; z-index: 1; }*/
.client-video-wrapper.active {
	opacity: 1 !important;
	z-index: 30 !important;
}
.video-pattern {
	display: none;
	position: absolute;
	top: -10px;
	left: 290px;
	object-fit: cover;
	z-index: -1;
	height: 530px;
}
.client-video-wrapper.active .video-pattern {
	display: block;
}
/* Скролл трек */
.scroll-track {
	flex: 0 0 80px;
	top: 100px;
	height: 100%;
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	z-index: 5;
	height: 1200px;
}
.scroll-numbers {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 600px;
	padding: 20px 0;
}
.scroll-number {
	font-size: 22px;
	color: #E0E1E5;
}
.scroll-bar {
	position: relative;
	width: 6px;
	height: 100%;
	min-height: 600px;
}
.scroll-background {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #E0E1E5;
	border-radius: 3px;
}
.scroll-thumb {
	position: absolute;
	width: 100%;
	background-color: #B6262C;
	border-radius: 3px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(182, 38, 44, 0.3);
	min-height: 60px;
}
.scroll-thumb::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 20px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 1px;
}
/* Контент */
.content-container {
	flex: 1;
	position: relative;
}
.content-shadow {
	position: sticky;
	top: 0;
	height: 80px;
	background: linear-gradient(
		180deg, 
		rgba(255, 255, 255, 1) 0%, 
		rgba(255, 255, 255, 0.95) 30%,
		rgba(255, 255, 255, 0.8) 60%, 
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 20;
	pointer-events: none;
	margin-bottom: -80px;
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.8);
}
.content-item {
	margin-bottom: 370px;
	opacity: 1;
	transition: all 0.6s ease;
	font-size: 15px;
	font-weight: 600;
}
.content-item p {
	margin: 0;
	margin-bottom: 5px;
}
.content-item:last-child {
	margin-bottom: 0;
	margin-top: -50px;
}
.n-grid-tamplate {
		display: grid;
		grid-template-columns: repeat(3, 1fr); 
		gap: 20px; 
}
.n-grid-tamplate__item {
	height: 160px;
	background-color: #F2F3F7;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px;
	border-radius: 16px;
}
.n-grid-tamplate__text {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}
.section__small-title {
	margin: 80px 0 40px 0;
	font-size: 48px;
	font-weight: 600;
}
.pack-tariffs__switcher {
	display: inline-flex;
	position: relative;
	border-radius: 10px;
	border: 1px solid #B6262C;
	padding: 4px;
	background-color: #fff;
	margin-bottom: 30px;
}
.pack-tariffs__switcher-item {
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	border-radius: 10px;
	font-weight: 600;
	font-size: 26px;
}
.pack-tariffs__switcher-item_active {
	background-color: #B6262C;
	color: white;
}
.pack-tariffs__content {
	display: flex;
	gap: 20px;
}
.pack-tariffs__wrapper {
	position: relative;
	transition: opacity 0.3s ease;
	padding: 25px;
	background-color: #fff;
	border-radius: 16px;
}
.pack-tariffs__content-title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 30px;
}
.pack-tariffs__small-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}
.pack-tariffs__list {
	padding: 0;
	margin: 0;
	font-size: 22px;
	padding-left: 20px;
	margin-bottom: 30px;
	padding-right: 100px;
}
.pack-tariffs__list li {
	margin-bottom: 20px;
}
.pack-tariffs__price {
	position: absolute;
	bottom: 15px;	
	right: 15px;
	font-size: 48px;
	font-weight: 600;
	color: #B6262C;
	text-align: right;
	width: 100%;
}
.pack-tariffs__image img {
	width: 550px;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}
.pack-tariffs__content-wrapper {
	display: flex;
	gap: 15px;
}
.pack-tariffs__content-wrapper--lvl2 {
	width: 50%;
}
.pack-tariffs__content-wrapper .pack-tariffs__list {
	padding-right: 0;
}
.training-formats {
	display: flex;
	gap: 20px;
}
.training-formats__item {
	flex: 0 0 calc(33.3333% - 40px/3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px;
	border-radius: 16px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 380px;
	box-sizing: border-box;
}
.training-formats__item--1 {
	background-image: url('../images/format-1.png');
}
.training-formats__item--2 {
	background-image: url('../images/format-2.png');
}
.training-formats__item--3 {
	background-image: url('../images/format-3.png');
}
.training-formats__count {
	font-size: 22px;
	color: #fff;
}
.training-formats__text {
	text-align: center;
	font-size: 32px;
	color: #fff;
}
.directions {
	margin-top: 150px;
}
.directions__item {
	height: 300px;
	position: relative;
	z-index: 2;
}
.directions__item_gray {
	background-color: #F2F3F7;
}
.directions__item_gray-2 {
	background-color: #E0E1E5;
	margin-top: -50px;
}
.directions__item_gray-3 {
	background-color: #CACACB;
	margin-top: -35px;
}
.directions__item_gray-4 {
	background-color: #7E7F81;
	margin-top: -50px;
	height: 200px;
}
.directions__wrapper {
	max-width: 1500px;
	margin: auto;
	position: relative;
}
.directions__label {
	position: absolute;
	top: -89px;
	z-index: 1;
}
.directions__label_gray-2 path {
	fill: #E0E1E5;
}
.directions__label_gray-3 path {
	fill: #CACACB;
}
.directions__label_gray-4 path {
	fill: #7E7F81;
}
.directions__label_left {
	left: 0;
}
.directions__label_right {
	right: 0;
}
.direction__content {
	max-width: 700px;
	position: relative;
	z-index: 2;
	top: -70px;
}
.direction__content_white {
	color: #fff;
}
.direction__content_left {
	left: 110px;
}
.direction__content_right {
	margin-left: auto;
	right: 50px;
}
.directions__title {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 15px;
}
.directions__text {
	font-size: 22px;
	line-height: 1.4;
}
.directions__image {
	position: absolute;
}
.directions__image--1 {
	top: -80px;
	right: 270px;
}
.directions__image--2 {
	top: -330px;
	left: 0;
}
.directions__image--3 {
	top: -110px;
	right: 110px;
}
.directions__image--4 {
	bottom: -38px;
	left: 0;
}
.directions__label_mobile {
	display: none;
}
.cases__item {
	padding: 0 30px;
	border-radius: 16px;
	background-color: #F2F3F7;
	margin-bottom: 15px;
}
.cases__title {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 40px 0;
}
.cases__wrapper {
	display: flex;
	align-items: center;
}
.cases__count {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	margin-right: 15px;
	background-color: #B6262C;
}
.cases__text-title {
	font-size: 32px;
	font-weight: 600;
}
.cases__cross {
	transition: all .3s ease-out;
}
.cases__content {
	display: none;
	transition: all .3s ease-out;
	padding-bottom: 40px;
}
.cases__content p, .cases__content ul {
	margin: 0;
	padding: 0;
	font-size: 26px;
	margin-bottom: 20px;
}
.cases__content ul {
	padding-left: 30px;
}
.cases__content li {
	margin-bottom: 20px;
}
.members-cards {
	display: flex;
	gap: 20px;
}
.members-cards__title {
	font-size: 80px;
	font-weight: 600;
	flex: 50% 0 0;
}
.members-cards__content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.members-cards__item {
	flex: calc(50% - 10px) 0 0; 
	background-color: #F2F3F7;
	border-radius: 16px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.members-cards__icon {
	margin-bottom: 60px;
}
.members-cards__text {
	font-size: 22px;
	font-weight: 600;
}
.pdf-offer {
	display: flex;
}
.pdf-offer__content {
	border-radius: 16px 0 0 16px;
	background-color: var(--gray);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px;
	width: 50%;
}
.pdf-offer__title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.2;
}
.pdf-offer__text {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 30px;
}
.pdf-offer__image {
	width: 50%;
}
.pdf-offer__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 16px 16px 0;
}
.events-grid {
		display: grid;
		grid-template-columns: repeat(14, 1fr);
		grid-template-rows: repeat(3, 1fr);
		gap: 20px;
}
.events-grid__item--1 { grid-area: 1 / 1 / 4 / 5; }    /* 4 колонки (1-4) */
.events-grid__item--2 { grid-area: 1 / 5 / 2 / 8; }    /* 3 колонки (5-7) */
.events-grid__item--3 { grid-area: 2 / 5 / 4 / 8; }    /* 3 колонки (5-7) */
.events-grid__item--4 { grid-area: 1 / 8 / 2 / 12; }   /* 4 колонки (8-11) */
.events-grid__item--5 { grid-area: 2 / 8 / 3 / 12; }   /* 4 колонки (8-11) */
.events-grid__item--6 { grid-area: 1 / 12 / 3 / 15; }  /* 3 колонки (12-14) */
.events-grid__item--7 { grid-area: 3 / 8 / 4 / 15; }   /* 6 колонок (8-14) */
.events-grid__item {
	border-radius: 16px;
	background-color: #F2F3F7;
	padding: 20px;
}
.events-grid__text {
	color: var(--black);
	font-size: 32px;
	font-weight: 600;
}
.events-grid__item--1 {
	background-image: url('../images/events-grid/item-1.png');
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
}
.events-grid__item--2 {
	background-image: url('../images/events-grid/item-2.png');
	background-size: 140px;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__item--3 {
	background-image: url('../images/events-grid/item-3.png');
	background-size: 350px;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__item--4 {
	background-image: url('../images/events-grid/item-4.png');
	background-size: 270px;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__item--5 {
	background-image: url('../images/events-grid/item-5.png');
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__item--6 {
	background-image: url('../images/events-grid/item-6.png');
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__item--7 {
	display: flex;
	gap: 20px;
	padding: 0;
	background-color: initial;
}
.events-grid__item--7 .events-grid__text {
	width: 100%;
	background-color: var(--gray);
	padding: 20px;
	border-radius: 16px;
	background-image: url('../images/events-grid/item-7.png');
	background-size: 270px;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.events-grid__image img {
	border-radius: 16px;
}
.events-grid__item--mobile-image {
	display: none;
}
.premises {
	display: flex;
	gap: 20px;
}
.premises__cards {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.premises__cards-item {
	position: relative;
	width: calc(50% - 10px);
	border-radius: 16px;
	background-color: var(--gray40);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 230px;
	padding: 20px;
	box-sizing: border-box;
	border: 4px solid var(--gray40);
	cursor: pointer;
}
.premises__cards-item--accent {
	background-color: var(--red);
	border: 4px solid var(--red);
}
.premises__cards-item--accent .premises__cards-text {
	color: #fff;
}
.premises__cards-item--accent .premises__cards-name {
	color: #fff;
}
.premises__cards-item.choosen {
	border: 4px solid var(--red)
}
.premises__cards-name {
	font-size: 32px;
	font-weight: 500;
}
.premises__cards-row {
	display: flex;
	margin-bottom: 10px;
}
.premises__cards-icon {
	margin-right: 10px;
}
.premises__cards-text {
	font-size: 22px;
	position: relative;
	bottom: -6px;
}
.premises-button {
	display: none;
}
.custom-checkbox {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
}
.checkbox-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background-color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.premises {
	display: flex;
	gap: 30px;
}
.premises__cards, .premises__slider {
	width: 50%;
}
.premises__cards-item.choosen .checkmark {
	background-color: var(--red);
}
.checkmark svg {
	opacity: 0;
	transition: opacity 0.3s ease;
}
.premises__cards-item.choosen .checkmark svg {
	opacity: 1;
}
.premises__slider .slick-slide {
		padding: 0 10px;
}
.premises__slider .slick-slide img {
		width: 100%;
		height: auto;
		border-radius: 8px;
}
.premises__slider-main {
		margin-bottom: 20px;
}
.premises__slider-nav .slick-slide {
		opacity: 0.5;
		transition: opacity 0.3s;
		cursor: pointer;
}
.premises__slider-nav .slick-slide.slick-current {
		opacity: 1;
}
.premises__slider-nav .slick-slide img {
	max-width: 180px;
	height: 160px;
	object-fit: cover;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(255,255,255,0.8);
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
}
.slick-prev {
	left: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-prev svg {
	transform: rotate(-180deg);
}
.slick-next {
	right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-prev::before, .slick-next::before {
	display: none;
}
.slick-arrow:hover {
	background: rgba(255,255,255,0.9);
}
.halls-types {
	display: flex;
	justify-content: space-between;
}
.halls-types__item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.halls-types__icon {
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.halls-types__icon img {
	max-width: 100%;
	height: auto;
}
.halls-types__name {
	margin-top: 25px;
	font-size: 32px;
	font-weight: 500;
}
.map {
	position: relative;
	height: 520px;
	width: 100%;
	background-color: #eee;	
	padding: 20px;
	box-sizing: border-box;
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
}
.map-info {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: absolute;
	right: 20px;
	top: 20px;
	bottom: 20px;
	background-color: var(--gray);
	padding: 25px;
	border-radius: 16px;
	max-width: 670px;
	box-sizing: border-box;
}
.map-info__title {
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 500;
}
.map-info__row {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.map-info__icon {
	margin-right: 10px;
}
.map-info__text {
	font-size: 20px;
}
#bookingPopup.popup-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: none;
		justify-content: center;
		align-items: center;
		z-index: 1000;
		background: #ffffff91;

}
#bookingPopup .popup-content {
		background: url('../images/booking-popup.jpg') no-repeat center / cover;
		border-radius: 10px;
		padding: 20px;
		width: 90%;
		max-width: 700px;
		max-height: 90vh;
		overflow-y: auto;
		position: relative;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#bookingPopup .popup-close {
		position: absolute;
		top: 5px;
		right: 10px;
		background: none;
		border: none;
		font-size: 24px;
		cursor: pointer;
		color: #999;
}
#bookingPopup .popup-close:hover {
		color: #333;
}
#bookingPopup .popup-title {
		margin: 0;
		margin-bottom: 10px;
		font-size: 45px;
		color: black;
		font-weight: 600;
}
#bookingPopup .popup-subtitle {
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 500;
}
#bookingPopup .form-group {
		margin-bottom: 15px;
}
#bookingPopup .form-label {
		display: block;
		margin-bottom: 5px;
		font-weight: bold;
		color: #333;
}
#bookingPopup .form-input {
		width: 100%;
		padding: 12px;
		border: none;
		font-size: 20px;
		border-radius: 16px;
		box-sizing: border-box;
		font-weight: 500;
		color: var(--black);
		height: 55px;
		display: flex;
		align-items: center;
}
#bookingPopup .form-textarea {
	height: 250px;
}
#bookingPopup .form-input::placeholder {
	color: var(--black);
}
#bookingPopup .form-textarea::placeholder {
	height: 200px;
	font-family: 'Inter';
	color: #7E7F81;
}
#closeCalendar {
	margin-top: 10px;
	cursor: pointer;
	width: 150px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: var(--red);
}
#bookingPopup .form-input:focus {
		outline: none;
		border-color: #007bff;
}
#bookingPopup .form-textarea {
		min-height: 100px;
		resize: vertical;
}
#bookingPopup .date-input-wrapper {
		position: relative;
}
#bookingPopup .date-input {
		cursor: pointer;
}
#bookingPopup .form-notice .form-notice__text {
	color: var(--black);
}
.form-sfs {
	margin-top: 15px;
	font-size: 14px;
	font-weight: 400;
}
.calendar-container {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		margin-top: 10px;
		border-radius: 24px;
		z-index: 1001;
		padding: 20px 70px;
}
.calendar-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
}
.calendar-nav {
		background: var(--white);
		color: var(--black);
		border: none;
		padding: 8px 12px;
		border-radius: 3px;
		cursor: pointer;
		font-size: 30px;
		font-weight: 500;
}
.calendar-nav:hover {
		background: var(--white);
}
.calendar-month-year {
		font-weight: bold;
		font-size: 18px;
}
.calendar-grid {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		gap: 2px;
}
.calendar-day-header {
		text-align: center;
		font-weight: bold;
		padding: 10px 5px;
		color: #666;
		font-size: 22px;
		color: var(--black);
}
.calendar-day {
		text-align: center;
		border-radius: 50%;
		transition: background-color 0.2s;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		border: 1px solid transparent;
		font-size: 22px;
		width: 50px;
		height: 50px;
		box-sizing: border-box;
		font-weight: 600;
}
.calendar-day:hover {
		background: var(--red);;
		color: var(--white);
}
.calendar-day.selected {
		background: var(--red);;
		color: white;
}
.calendar-day.in-range {
		background: #b8daff;
		color: #333;
}
.calendar-day.other-month {
		color: #ccc;
		cursor: default;
}
.calendar-day.disabled {
		color: #ccc;
		cursor: not-allowed;
}
.calendar-day.disabled:hover {
		border-color: transparent;
}
#bookingPopup .selection-info {
		font-size: 24px;
		font-weight: 600;
		color: var(--black);
		max-width: 370px;
		line-height: 1.4;
}
.select-info-wrapper {
	display: flex;
}
.select-info-wrapper svg {
	margin-right: 20px;
	margin-top: 4px;
}
.select-info-wrapper {
	border-radius: 24px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.48);
	backdrop-filter: blur(3.05px);
	margin-bottom: 30px;
 }
.years {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.years__item {
	flex: 0 0 calc(33.333% - 20px);
	position: relative;
	padding: 15px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--red);
	width: 510px;
}

.years__label {
	position: absolute;
	top: 15px;
	left: 0;
	font-size: 16px;
	color: var(--red);
}
.years__count {
	font-size: 117px;
	font-weight: 600;
	color: var(--red);
	text-shadow: -6px 8px 0px rgba(144, 35, 39, 0.12);
	display: inline;
}
.years__count_single {
	margin-left: 20px;
}
.years__count_with-plus {
	position: relative;
}
.years__count_with-plus::after {
	content: '+';
	position: absolute;
	top: 5px;
	right: 0px;
	width: 30px;
	height: 40px;
	background-color: #fff;
	color: var(--red);
	font-size: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: none;
}
.years__text {
	font-size: 22px;
	margin-bottom: 60px;
}
.about-mission__image {
	display: flex;
	justify-content: center;
}
.about-mission__image img {
	max-width: 100%;
	height: auto;
}
.about-mission__text {
	text-align: center;
	margin: auto;
	font-weight: 600;
	max-width: 1300px;
	font-size: 48px;
	margin-bottom: 15px;
	margin-top: 20px;
}
/* Ваши существующие стили */
.flip-grid__wrapper {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.flip-grid__image {
	height: 100%;
}
.flip-grid__image img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}
.flip-grid__item {
	position: relative;
	perspective: 1000px;
	flex: 0 0 calc(33.3333% - 60px/3);
	height: 600px;
	cursor: pointer; /* добавил */
}
.flip-grid__inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	/* убираем дефолтную анимацию для нашего hover-эффекта */
	/* animation: flip-back 1.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; */
}

.flip-grid__front,
.flip-grid__back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 16px;
}

.flip-grid__front {
	z-index: 2;
	transition: opacity 0.3s ease 0.15s; /* добавил плавное исчезновение */
}

.flip-grid__icon {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 60px;
	height: 60px;
	background-color: var(--red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease, transform 0.2s ease; /* добавил */
}

.flip-grid__icon_white {
	background-color: var(--white);
}

.flip-grid__back {
	padding: 0 15px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	
	/* Новые стили для анимации */
	transform-origin: calc(100% - 45px) calc(100% - 45px); /* центр иконки */
	transform: scale(0.1); /* начальный размер ~60px из 600px */
	opacity: 0;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
							opacity 0.5s ease 0.4s;
	z-index: 1;
}

.flip-grid__text {
	color: var(--white);
	text-align: center;
	max-width: 500px;
	margin: auto;
	margin-top: 270px;
	
	/* Анимация выезда справа */
	transform: translateX(100px);
	opacity: 0;
	transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}

.flip-frid__title {
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 5px;
}

.flip-grid__subtitle {
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 700;
}

.flip-grid__content {
	font-size: 16px;
}

/* Анимации при наведении */
.flip-grid__item:hover .flip-grid__back {
	transform: scale(1);
	opacity: 1;
	z-index: 3;
}

.flip-grid__item:hover .flip-grid__front {
	opacity: 0;
	transition-delay: 0s;
}

.flip-grid__item:hover .flip-grid__icon {
	opacity: 1;
	transform: scale(0.8); /* немного сжимается перед исчезновением */
}

.flip-grid__item:hover .flip-grid__text {
	transform: translateX(0);
	opacity: 1;
}

/* Плавное возвращение при убирании курсора */
.flip-grid__item .flip-grid__back {
 transition: transform 0.7s ease, opacity 0.4s ease;
}

.flip-grid__item .flip-grid__front {
	 transition: opacity 0.5s ease 0.3s;
}

.flip-grid__item .flip-grid__text {
	transition: transform 0.4s ease, opacity 0.3s ease;
}
























.steps {
	display: flex;
	align-items: flex-end;
}
.steps__item {
	width: 33%;
	display: flex;
	align-items: flex-end;
	position: relative;
	padding: 20px;
	background: var(--gray);
	border-top: 6px solid var(--red);
	border-left: 1px solid var(--red);
	border-right: 1px solid var(--red);
}
.steps__item--1 {
	height: 170px;
}
.steps__item--2 {
	height: 220px;
}
.steps__item--3 {
	height: 270px;
}
.steps__text {
	font-size: 20px;
	font-weight: 500;
}
.steps__year {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 38px;
	font-weight: 600;
	color: var(--red);
	text-shadow: -2px 4px 0px rgba(144, 35, 39, 0.12);
}

.mobile-menu-trigger.active span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-trigger.active span:nth-child(2) {
		opacity: 0;
}

.mobile-menu-trigger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
}

/* Overlay */
.menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #ffffff91;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
}

.menu-overlay.active {
		opacity: 1;
		visibility: visible;
}

/* Popup меню */
.mobile-menu-popup {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0.8);
		background: white;
		border-radius: 12px;
		padding: 40px 30px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
		max-width: 90%;
		width: 400px;
}
.mobile-menu-popup ul {
	padding: 0;
}
.mobile-menu-popup.active {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-popup ul {
		list-style: none;
}

.mobile-menu-popup li {
		margin: 20px 0;
}

.mobile-menu-popup a {
		display: block;
		padding: 15px 20px;
		text-decoration: none;
		color: #333;
		font-size: 18px;
		font-weight: 500;
		border-radius: 8px;
		transition: all 0.3s ease;
		text-align: center;
}

.mobile-menu-popup a:hover {
		background: #f5f5f5;
		color: #007bff;
}

/* Кнопка закрытия */
.close-menu {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		background: none;
		border: none;
		font-size: 24px;
		color: #666;
		line-height: 1;
}

.close-menu:hover {
		color: #333;
}
/* Overlay для уведомления */
.notification-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #ffffff91;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 9998;
}

.notification-overlay.active {
		opacity: 1;
		visibility: visible;
}

/* Popup уведомления */
.notification-popup {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0.8);
		background: white;
		border-radius: 16px;
		padding: 40px 30px;
		box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 9999;
		max-width: 90%;
		width: 450px;
		text-align: center;
}

.notification-popup.active {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
}

.notification-close {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		background: none;
		border: none;
		font-size: 28px;
		color: #999;
		line-height: 1;
		transition: color 0.2s;
}

.notification-close:hover {
		color: #333;
}

.notification-icon {
		width: 80px;
		height: 80px;
		margin: 0 auto 20px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 40px;
}

.notification-popup.success .notification-icon {
		background: #d4edda;
		color: #28a745;
}

.notification-popup.success .notification-icon::before {
		content: "✓";
}

.notification-popup.error .notification-icon {
		background: #f8d7da;
		color: #dc3545;
}

.notification-popup.error .notification-icon::before {
		content: "✕";
}

.notification-message {
		font-size: 18px;
		line-height: 1.6;
		color: #333;
		margin-bottom: 25px;
}

.notification-ok {
		background: #007bff;
		color: white;
		border: none;
		padding: 12px 40px;
		border-radius: 8px;
		font-size: 16px;
		font-weight: 500;
		cursor: pointer;
		transition: background 0.3s;
}

.notification-ok:hover {
		background: #0056b3;
}

.notification-popup.success .notification-ok {
		background: #28a745;
}

.notification-popup.success .notification-ok:hover {
		background: #218838;
}

.notification-popup.error .notification-ok {
		background: #dc3545;
}

.notification-popup.error .notification-ok:hover {
		background: #c82333;
}

/* Loader для кнопки */
.submit-button.loading {
		position: relative;
		color: transparent;
		pointer-events: none;
}

.submit-button.loading::after {
		content: "";
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		left: 50%;
		margin-left: -10px;
		margin-top: -10px;
		border: 3px solid rgba(255, 255, 255, 0.3);
		border-top-color: white;
		border-radius: 50%;
		animation: spin 0.8s linear infinite;
}

@keyframes spin {
		to { transform: rotate(360deg); }
}
/* Loader для кнопки бронирования */
.booking-submit-btn.loading {
		position: relative;
		color: transparent !important;
		pointer-events: none;
}

.booking-submit-btn.loading::after {
		content: "";
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		left: 50%;
		margin-left: -10px;
		margin-top: -10px;
		border: 3px solid rgba(255, 255, 255, 0.3);
		border-top-color: white;
		border-radius: 50%;
		animation: spin 0.8s linear infinite;
}
.article-wrapper {
	max-width: 700px;
	margin: auto;
}
.article-wrapper p, .article-wrapper li {
	line-height: 1.6;
}
.article-wrapper a {
	color: #B6262C;
 }