:root {
	--main-color: #ce4303;
	--main-hover: #973000;
}


* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: 0 !important;
	font-family: Arial, Helvetica, sans-serif;
}


ol,
ul {
	list-style: none;
}


a {
	text-decoration: none;
}


.container {
	margin: 0 auto 0;
	max-width: 1200px;
	padding: 20px 10px;

	overflow-x: hidden;
}

.invisible {
	display: none !important;
}

.opacityNone {
	opacity: 0 !important;
}





.form__tel {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form__tel_message,
.form__name_message {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	text-align: center;
	left: calc(50% - 140px);
	width: 280px;
	padding: 4px 8px;
	background-color: #fff;
	font-size: 16px;
	color: red !important;
	border: 1px solid #dddddd;
	border-radius: 4px;
	transition: all 0.8s ease-out;
}
















.pop_kviz_wrapper .quiz-container {
	max-width: 500px;
	margin: auto;
	background: transparent;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

/* Прогресс-бар */
.pop_kviz_wrapper .progress-bar {
	width: 100%;
	height: 8px;
	background: #eee;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}

.pop_kviz_wrapper .progress-fill {
	height: 100%;
	width: 0;
	background: var(--main-color);
	transition: width 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Переливающийся градиент поверх заполненной части */
.pop_kviz_wrapper .progress-fill::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.5) 50%,
			rgba(255, 255, 255, 0) 100%);
	animation: shimmer 1.5s infinite;
}

/* Анимация переливания */
@keyframes shimmer {
	0% {
		left: -50%;
	}

	100% {
		left: 100%;
	}
}

.pop_kviz_wrapper .quiz-step {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.pop_kviz_wrapper .quiz-step input:not(input[type="radio"]) {
	border-radius: 50px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.pop_kviz_wrapper .quiz-step input[type="radio"] {
	margin-right: 5px;
}

.pop_kviz_wrapper .quiz-step input {
	border: 0;
	font-size: 16px;
	line-height: 1;
	padding: 8px 15px;
	margin: 10px 0;
	background-color: #fff;
}

.pop_kviz_wrapper .quiz-step.active {
	display: block;
	opacity: 1;
	position: relative;
}

.pop_kviz_wrapper .btn-row {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

.pop_kviz_wrapper button {
	padding: 10px 20px;
	background: var(--main-color);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
}

.pop_kviz_wrapper button.prev-btn {
	background-color: #7a7781;
}

.pop_kviz_wrapper button.prev-btn:hover {
	background-color: #444249;
}

.pop_kviz_wrapper button.call_btn_send,
.pop_kviz_wrapper button.call_btn {
	border-radius: 60px;
	color: #fff;
}

.pop_kviz_wrapper button.call_btn a {

	color: #fff;
}

.pop_kviz_wrapper button:hover {
	background: var(--main-hover);
}

.quiz-step h2 {
	color: #fff;
}

.quiz-step__title {
	color: #fff;
	margin-top: 17px;
	margin-bottom: 5px;
	text-align: center;
}

.quiz-step_input_cnt {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.quiz-step_input_cnt label {
	display: flex;
	align-items: center;
	color: #fff;
}

.pop_kviz_wrapper .quiz-step__form_ctn {
	margin-top: 10px;
	position: relative;
}

.pop_kviz_wrapper .quiz-step__form_ctn__btn {
	display: block;
	margin: 10px auto;
}

.pop_kviz_wrapper .quiz-step__form_ctn__success {
	bottom: 0;
	text-transform: uppercase;
	font-weight: 700;
	left: 0;
	right: 0;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 12;
	background-color: #fff;
	width: fit-content;
	border-radius: 15px;
	margin: auto;
	padding: 25px 35px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
	font-size: 18px;
	color: #000;
	text-align: center;

	transition: all 0.4s ease;
}


.dark_bg {
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.98);
	position: fixed;
	z-index: 11;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.dark_bg.show {
	display: block;
	opacity: 1;
}

.popup {
	position: fixed;
	top: 20vh;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 800px;
	width: calc(100% - 20px);
	height: auto;
	/* background: rgba(0,0,0,0.5); */
	display: none;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1000;
}

.popup.show {
	display: flex;
	opacity: 1;
}

.popup-content {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 40px 30px;
	border-radius: 8px;
	position: relative;
	min-width: 300px;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
	background-image: url('cross.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
}

@media (max-width:600px) {

	.close-btn {
		position: absolute;
		top: 7px;
		right: 7px;

	}

	.popup-content {
		padding: 7px 35px 7px 7px;
	}
}

html {
	background-color: #000;
}

.bg_1 {

	background-image: url(bg1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	position: fixed;
	filter: blur(5px);
	z-index: -1;

}

.bg_1_dr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.45));
	pointer-events: none;
	/* чтобы слой не мешал кликам */
}


footer {
	padding: 20px 5px;
	font-size: 18px;
	text-align: center;
	background-color: #e7e7e7;
}

footer p:not(:last-child) {
	margin-bottom: 10px;
}



.title_cnt {
	/* max-width: 650px; */
	margin: 40px auto 20px;
	text-align: center;
}

.title_cnt h2 {
	color: #fff;
	font-size: 18px;
	line-height: 1.2;
}


.title_cnt .title,
.title_cnt .title_2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 45px;
	font-weight: 700;
	line-height: 1.2;
}

.title_cnt .title_2 {
	margin-top: 10px;
	font-size: 35px;
}

.title_cnt .title span {
	color: var(--main-color);
	filter: drop-shadow(0 0 2px var(--main-color));
}



.cnt_2 {
	display: flex;
	justify-content: center;
	/* max-width: 900px; */
	margin: 25px auto 15px;
}



.btn_cnt {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 30px auto 40px;
}

.btn_cnt__title {
	text-transform: uppercase;
	font-size: 16px;
	color: #fff;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 20px;
	max-width: 250px;
	letter-spacing: 0.04em;
}

#btn_call_gg {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0);
	border: 2px solid var(--main-color);
	box-shadow: 0 0 10px var(--main-color), inset 0 0 10px var(--main-color);
	border-radius: 30px;
	padding: 22px 32px;
	color: var(--main-color);
	filter: drop-shadow(0 0 3px var(--main-color));

	transition: all 0.3s linear;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 0.02em;
	font-weight: 300;
	line-height: 0.8;

	/* Включаем анимацию смены цвета */
	animation: hue-anim 5s linear infinite;
}

/* При наведении — лёгкое увеличение */
#btn_call_gg:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px currentColor, inset 0 0 15px currentColor;
}

/* Анимация hue-rotate */
@keyframes hue-anim {
	0% {
		filter: hue-rotate(0deg) drop-shadow(0 0 3px var(--main-color));
	}

	100% {
		filter: hue-rotate(360deg) drop-shadow(0 0 3px var(--main-color));
	}
}

.list_cnt {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
}

.list_cnt li span {
	color: var(--main-color);
	filter: drop-shadow(0 0 3px var(--main-color));
}

.list_cnt li {
	position: relative;
	margin-bottom: 5px;
	font-weight: 700;
	letter-spacing: 0.04em;

}

.list_cnt li:before {
	margin-top: 2px;
	margin-left: -14px;
	position: absolute;
	font-size: xx-small;
	content: "✦ ";
}




.list_cnt__title {
	font-size: 26px;
	line-height: 1.2;
	margin-bottom: 10px;
	font-weight: 700;
}

.price__photo_slider {
	padding: 10px;
	max-width: 600px;
	margin: 30px auto;
}

.price__photo_slider img {
	margin-left: 10px;
	margin-right: 10px;

	/* -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    black 8%,
    black 92%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    black 8%,
    black 92%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-size: 100% 100%;
  mask-repeat: no-repeat; */
}

hr.line {
	margin: 50px auto;
	background-color: var(--main-color);
	filter: drop-shadow(0 0 10px var(--main-color));
	box-shadow: 0 0 20px var(--main-color);
	height: 3px;
	border-radius: 5px;
	width: 100px;
	border: none;
}


.block_1__title {
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 12px;
	color: var(--main-color);
	filter: drop-shadow(0 0 3px var(--main-color));
}


.block_1 li {
	text-align: center;
	position: relative;
	font-size: 16px;
	margin-bottom: 10px;
	color: #fff;
}


.block_3 {
	margin: 0 auto 60px;
}

.block_3 p {
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 12px;
	text-align: center;
}

.block_3 p span {
	color: var(--main-color);
	filter: drop-shadow(0 0 3px var(--main-color));
}




.head-block__tick {
	position: relative;
	margin: 40px auto 60px;
	width: 30px;
	height: 30px;
}

.head-block__tick span {
	display: block;
	width: 30px;
	height: 30px;
	border-bottom: 3px solid var(--main-color);
	border-right: 3px solid var(--main-color);
	filter: drop-shadow(0 0 5px var(--main-color));
	border-radius: 5px;
	transform: rotate(45deg);
	margin: -20px auto;
	animation: kuesconum-kedevelop 3s infinite;
}

.head-block__tick span:nth-child(2) {
	animation-delay: -0.2s;
}

.head-block__tick span:nth-child(3) {
	animation-delay: -0.4s;
}



@keyframes kuesconum-kedevelop {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}








@media (max-width:768px) {



	.title_cnt .title,
	.title_cnt .title_2 {
		font-size: 28px;
		text-align: center;

	}

	.title_cnt h2 {
		text-align: center
	}



	.cnt_2 {
		flex-direction: column;
		justify-content: center;

		margin: 25px auto 15px;
	}

	.list_cnt {
		order: -1;
		margin-top: 25px;
	}

	.btn_cnt {
		margin-top: 45px;
	}
}


@media (max-width: 500px) {


	.title_cnt .title,
	.title_cnt .title_2 {
		font-size: 22px;
	}

	.block_1 li {
		text-align: left;
		margin-left: 10px;
	}

}