

/* Start:/local/components/RTM_VRMCHK/news.list/templates/services/style.css?17772747503452*/
/* Карточка услуги */
.service-card {
	position: relative;
	padding: 33.5px 32.32px 35px 32.32px;
	border-radius: 25px;

	box-shadow: inset 0px 4px 10px 0px rgba(255, 255, 255, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	transition: all 0.3s ease;
	border-radius: 25px;
		background: linear-gradient(180deg, #DCCEF7 -155.41%, rgba(220, 206, 247, 0.00) 123.65%);
		box-shadow: 0 4px 10px 0 rgba(255, 255, 255, 0.25) inset;
}

.service-card:hover {
	border-color: var(--yellow-brand);
	transform: translateY(-5px);
}

/* Фоновая цифра */
.service-card__number {
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 150px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.05);
	/* Очень низкая прозрачность */
	line-height: 1;
	z-index: 1;
	pointer-events: none;
}

.service-card__content {
	position: relative;
	z-index: 2;
}

.service-card__title {
	color: var(--yellow-brand);
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -2px;
}

.service-card__desc {
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

}

/* Ссылка внизу */
.service-card__link {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	transition: 0.3s;
	position: relative;
	z-index: 2;
}

.service-card__link:hover {
	color: var(--yellow-brand);
	padding-left: 5px;
}

/* Адаптивность */
@media (max-width: 1200px) {


	.service-card__title {
		font-size: 45px;
	}

	.service-card__number {
		font-size: 120px;
	}
}

@media (max-width: 768px) {


	.service-card {
		padding: 40px 25px 30px 25px;
	}
}


/* 000000000000000000000000000000000000000000000000000000000000000000000000000 ВВЕРХ блока */
.cl-tags-section {
	padding: 60px 0;
	background: transparent;
	/* Или ваш цвет фона */
	color: #ffffff;
}

.cl-tags-label {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #ebe1ff;
	font-size: 25px;
	font-weight: 400;
	margin-top: 10px;
}

.cl-tags-content-wrap {
	padding-left: 20px;
}

.cl-tags-main-title {
	color: #ebe1ff;
	font-family: 'Mulish', sans-serif;
	font-size: clamp(40px, 8vw, 90px);
	line-height: 0.95;
	letter-spacing: -4px;
	font-weight: 600;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.cl-tags-description {
	max-width: 1023px;
	font-size: 25px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 40px;
	color: #ffffff;
}

/* Облако тегов */
.cl-tags-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 10px;
}

.cl-tags-pill {
	padding: 5px 20px;
	border-radius: 50px;
	border: 1px solid #f2eeff;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	cursor: default;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* Первый элемент (активный) */
.cl-tags-pill.is-active {
	background: #fbe122;
	border-color: #fbe122;
	color: #7e57c5;
	box-shadow: 0px 4px 4px 0px rgba(126, 87, 197, 0.30);
}

.cl-tags-pill:hover:not(.is-active) {
	background: rgba(242, 238, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 1199px) {
	.cl-tags-content-wrap {
		padding-left: 15px;
		padding-right: 15px;
	}

	.cl-tags-main-title {
		letter-spacing: -2px;
	}

	.cl-tags-description {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.cl-tags-main-title {
		font-size: 40px;
	}

	.cl-tags-pill {
		font-size: 14px;
		padding: 4px 15px;
	}
}
/* End */


/* Start:/local/components/RTM_VRMCHK/news.list/templates/ServiceFacilities/style.css?17772747507083*/
div.news-list {
	word-wrap: break-word;
}

div.news-list img.preview_picture {
	float: left;
	margin: 0 4px 6px 0;
}
:root {
    --card-min-width: 220px;
    --card-active-width: 480px;
    --card-mini-width: 220px;
    --gap-width: 24px;
    --slide-width: calc(var(--card-active-width) + (var(--card-mini-width) * 4) + (var(--gap-width) * 4));
}
.slider-progress-track {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    /* overflow: hidden; — можно оставить, если края трека скруглены */
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box; /* Важно для правильного расчета ширины */
}

.slider-progress-bar {
    position: absolute;
    /* Центрирование: трек 20px, бар 10px. (20 - 10) / 2 = 5px */
    top: 5px; 
    height: 10px;
    background: #FFD600;
    border-radius: 20px;
    pointer-events: none;
    /* Убираем transform, так как используем top: 5px */
    transition: left 0.3s ease, width 0.3s ease;
    left: 7px; /* Начальная позиция */
}

.slider-controls-wrapper {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.badge-circle {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
}

.object-card__title {
	font-size: 60px;
	font-weight: 600;
	letter-spacing: -3px;
	line-height: 1;
	margin-bottom: 20px;
}

.object-card__desc {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 30px;
}

.object-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Карточки */
.object-card {
	position: relative;
	width: var(--card-mini-width);
	height: 637px;
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.5s ease;
	flex-shrink: 0;
}

.object-card.active-card {
	width: var(--card-active-width);
}

.object-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.object-card__overlay {
	position: relative;
	z-index: 1;
	height: 100%;
	background: linear-gradient(0deg, rgba(64, 45, 99, 0.9) 10%, rgba(126, 87, 197, 0.2) 100%);
	padding: 35px;
	display: flex;
	flex-direction: column;
	color: #fff;
}

/* Заголовок меняет размер в зависимости от активности */
.object-card__title {
	font-size: 24px;
	transition: 0.4s ease;
}

.active-card .object-card__title {
	font-size: 50px;
	/* Большой размер */
	letter-spacing: -2px;
	margin-bottom: 20px;
}

/* Скрытие/показ контента внутри карточки */
.object-card__hidden-content,
.card-tags {
	opacity: 0;
	max-height: 0;
	transition: 0.4s ease;
	overflow: hidden;
}

.object-card__img {
	opacity: 0;
	transition: 0.4s ease;
	overflow: hidden;
}

.active-card .object-card__img {
	opacity: 1;
}

.active-card .object-card__hidden-content,
.active-card .card-tags {
	opacity: 1;
	max-height: 500px;
	margin-top: 15px;
}

/* Скрытые элементы карточки */
.object-card__hidden,
.card-tags {
	opacity: 0;
	transition: 0.3s;
}

.active-card .object-card__hidden,
.active-card .card-tags {
	opacity: 1;
}

/* Показываем элементы только в активной карточке */
.active-card .card-tags {
	opacity: 1;
	visibility: visible;
	max-height: 100px;
}



.object-card__desc {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.object-card__link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

/* Стили бейджей */
.badge-glass {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 8px 20px;
	border-radius: 50px;
}

.object-card__link {
	text-decoration: none;
	color: white;
}

.badge-circle {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.object-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, var(--purple-accent) 10%, rgba(126, 87, 197, 0) 100%);
	padding: 35px;
	display: flex;
	flex-direction: column;
	box-shadow: inset 0px 4px 10px rgba(255, 255, 255, 0.25);
}

.slider-viewport {
	width: var(--slide-width);
	max-width: 95vw;
	margin: 0 auto;
	overflow: hidden;
}

.news-date-time {
	color: #486DAA;
}

.objects-section {
	margin-top: 228px;
	margin-bottom: 0px !important;
}

.objects-section-main {
	margin-bottom: 116px !important;
}

.section-label-serveces {
color: #EBE1FF;
text-transform: uppercase;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}


.objects-wrapper {
	flex-shrink: 0;
	width: var(--slide-width);
}

.objects-wrapper {
	flex-shrink: 0;
	width: var(--slide-width);
	display: flex;
	gap: var(--gap-width);
}

.slider-track {
	display: flex;
	width: var(--slide-width);
	gap: var(--gap-width);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1400px) {
	.objects-section {
		margin-top: 0;
	}

	.slider-progress-container {
		margin-top: 10px !important;
	}

	.objects-section-main {
		margin-bottom: 70px !important;
	}

	.section-label-serveces {
		margin-top: 0;

	}

	.section-label-serveces {
		font-size: 20px;
	}

	.object-card__title {
		font-size: 20px;
		line-height: 20px;
		letter-spacing: -1px;
		font-weight: 400;
	}

	.active-card .object-card__title {
		font-size: 40px;
		line-height: 40px;
		letter-spacing: -3px;
	}

	.object-card__desc {
		font-size: 15px;
		font-weight: 400;
		position: relative;
	}

	.object-card__link {
		/* font-size: 20px; */
		font-weight: 400;
	}

	.object-card {
		height: 479px;
	}

	.object-card__overlay {
		padding: 25px;
	}
}

@media (min-width: 992px) {
	.objects-section {
		margin-top: 228px;
	}
}

@media (max-width: 1265px) {
	.section-label-serveces {
		margin-bottom: 28px;
	}

	.slider-progress-track {
		flex-grow: 1;
		/* База занимает всё свободное место между стрелками */
	}

	.slider-viewport {
		max-width: 600px;
	}

	.objects-wrapper {
		flex-direction: column;
		width: 100%;
	}

	.object-card {
		width: 100% !important;
		height: 50px;
		border-radius: 15px;
		transition: all 0.5s ease;
	}

	.object-card.active-card {
		height: 120px;
	}

	.object-card__title {

		font-size: 18px;
		line-height: 20px;
		font-weight: 600;
		letter-spacing: normal;
		text-align: center;
		margin: 0;
		padding: 0;
	}

	.active-card .object-card__title {
		font-size: 18px;
		line-height: 20px;
		font-weight: 600;
		letter-spacing: normal;
		text-align: center;
		margin: 0;
		padding: 0;
	}

	.object-card__overlay .mt-auto {
		margin: 0 !important;
	}

	.object-card__overlay {
		padding: 15px;
	}

	.object-card__title br {
		display: none;
	}

	.object-card__hidden-content,
	.card-tags {
		display: none !important;
	}
}

/* End */


/* Start:/local/components/RTM_VRMCHK/form.result.new/templates/we_will_help_you_with_the_choice_home/style.css?17790714012797*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/components/RTM_VRMCHK/form.result.new/templates/we_will_help_you_with_the_choice_home/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/components/RTM_VRMCHK/form.result.new/templates/we_will_help_you_with_the_choice_home/images/icon_warn.gif);
}
/* Скрываем реальный радиобаттон */
.quiz-real-input:checked + .quiz-tag {
    background-color: #FBE122; /* Цвет активного тега */
    color: #000;
    border-color: #FBE122;
}

.quiz-tag-label {
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
}


.quiz-tag-label {
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
}
@media (max-width: 770px) {
	.quiz-tag-label {
		cursor: pointer;
		margin-right: 10px;
		margin-bottom: 10px;
	}
}
.quiz-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}






/* Контейнер для выравнивания */
.custom-checkbox-container {
    display: flex;
    align-items: flex-start; /* Выравнивание по верхнему краю, если текст длинный */
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 5px;
}

.custom-checkbox-container input {
    display: none;
}

/* Квадрат 24x24 */
.checkmark {
    min-width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    background-color: transparent;
    display: inline-block;
    position: relative;
    flex-shrink: 0; /* Чтобы квадрат не сжимался при длинном тексте */
}

/* Галочка (адаптирована под 24px) */
.custom-checkbox-container input:checked + .checkmark::after {
    content: "";
    position: absolute;
    /* Центрирование галочки внутри 24px */
    left: 8px; 
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid #FFF; /* Цвет галочки под стиль вашей кнопки */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Ссылка внутри текста */
.checkbox-text a {
    color: #ffffff;
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}
/* End */


/* Start:/local/components/RTM_VRMCHK/news.list/templates/News_on_main/style.css?17772747501084*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
/* Убираем стандартный flex от Bootstrap, так как Slick сам делает блоки флексовыми */
.news-slider-track {
    display: block !important;
}

/* Добавляем отступы между слайдами через padding, чтобы карточки не слипались */
.news-slide-item {
    outline: none;
    height: auto;
}

.news-slider-track .slick-track {
    display: flex !important;
    gap: 0; /* Slick не любит gap, используем padding у дочерних элементов */
}

.news-slider-track .slick-slide {
    height: inherit !important; /* Чтобы все карточки были одной высоты */
    display: flex !important;
    justify-content: center;
}

/* Стилизация неактивных кнопок (опционально) */
.btn-slider-round.slick-disabled {
    opacity: 0.5;
    cursor: default;
}
/* End */


/* Start:/local/components/RTM_VRMCHK/news.list/templates/Reviews/style.css?1777274750633*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.reviews-slider-track {
    display: block !important;
}

.reviews-slider-track .slick-track {
    display: flex !important;
}

.reviews-slider-track .slick-slide {
    height: inherit !important; /* Чтобы карточки были одной высоты */
    display: flex !important;
    justify-content: center;
}

.review-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btn-slider-round.slick-disabled {
    opacity: 0.3;
    cursor: default;
}
/* End */


/* Start:/local/components/RTM_VRMCHK/form.result.new/templates/final_contact/style.css?17792295292147*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/components/RTM_VRMCHK/form.result.new/templates/final_contact/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/components/RTM_VRMCHK/form.result.new/templates/final_contact/images/icon_warn.gif);
}

/* Контейнер для выравнивания */
.form-final .custom-checkbox-container {
    display: flex;
    align-items: flex-start; /* Выравнивание по верхнему краю, если текст длинный */
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    color: #7D56C4;
    margin-bottom: 5px;
}

.form-final .custom-checkbox-container input {
    display: none;
}

/* Квадрат 24x24 */
.form-final .checkmark {
    min-width: 24px;
    height: 24px;
    border: 1px solid #7D56C4;
    background-color: transparent;
    display: inline-block;
    position: relative;
    flex-shrink: 0; /* Чтобы квадрат не сжимался при длинном тексте */
}

/* Галочка (адаптирована под 24px) */
.form-final .custom-checkbox-container input:checked + .checkmark::after {
    content: "";
    position: absolute;
    /* Центрирование галочки внутри 24px */
    left: 8px; 
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid #7D56C4; /* Цвет галочки под стиль вашей кнопки */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Ссылка внутри текста */
.form-final .checkbox-text a {
    color: #7D56C4;
    text-decoration: underline;
}

.form-final .checkbox-text a:hover {
    text-decoration: none;
}
/* End */
/* /local/components/RTM_VRMCHK/news.list/templates/services/style.css?17772747503452 */
/* /local/components/RTM_VRMCHK/news.list/templates/ServiceFacilities/style.css?17772747507083 */
/* /local/components/RTM_VRMCHK/form.result.new/templates/we_will_help_you_with_the_choice_home/style.css?17790714012797 */
/* /local/components/RTM_VRMCHK/news.list/templates/News_on_main/style.css?17772747501084 */
/* /local/components/RTM_VRMCHK/news.list/templates/Reviews/style.css?1777274750633 */
/* /local/components/RTM_VRMCHK/form.result.new/templates/final_contact/style.css?17792295292147 */
