html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	color: inherit
}

:root {
	--bg: #020a1a;
	--text-main: #eff3f9;
	--text-muted: #7d899d;
	--text-muted2: #586578;

	/* Официальная палитра Google Lighthouse */
	--ps-white: #fff;
	--ps-black: #000;
	--ps-red: #ff4e42;
	--ps-orange: #ffaa00;
	--ps-green: #0c3;
	--ps-tgreen: #0c3;
	--ps-green-bg: rgba(0, 204, 102, 0.06);
}

/* Общие настройки */
html,
body {
	font-size: 1px;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1.3;
	font-weight: normal;
	font-family: system-ui, -apple-system, sans-serif;
	font-size: 1px;
	width: 100%;
	background: linear-gradient(45deg, transparent, #f6f7f8), linear-gradient(45deg, #f6f7f8, transparent);
	color: var(--text-main);
	min-width: 320px;
}

.flex {
    display: flex
}

.flex.row {
    flex-direction: row
}

.flex.column {
    flex-direction: column
}

.flex.wrap {
    flex-wrap: wrap
}

.flex.center {
    align-items: center
}

.flex.start {
    align-items: start
}

.flex.end {
    align-items: end
}

.flex.stretch {
    align-items: stretch
}

.flex.jcenter {
    justify-content: center
}

.flex.between {
    justify-content: space-between
}

.flex.gap15 {
    gap: 15px;
}

/* flex-shrink от 0 до 15 */
.flex.shrink0 {
    flex-shrink: 0
}

/* --- FONTS ------------------------------------------------------------------ */
/* flex-size от 0 до 50 */

.f12 {
    font-size: 12rem
}

.f14 {
    font-size: 14rem
}

.f38 {
    font-size: 38rem
}

.f48 {
    font-size: 48rem
}

.b {
    font-weight: bold
}

/* --- SIZES ------------------------------------------------------------------ */
/* width от 0 до 100 % */

.w48 {
    width: 48%
}

/* height от 0 до 100 % */

.vh100 {
    height: 92vh
}

/* padding от 0 до 30 AND padding от 35 каждый 5 до 100*/

.p40 {
    padding: 40px
}

/* margin от 0 до 30 AND margin от 35 каждый 5 до 100*/

.mt5 {
    margin-top: 5px
}

.mb15 {
    margin-bottom: 15px
}

.mt25 {
    margin-top: 25px
}

.mb25 {
    margin-bottom: 25px
}

.mb45 {
    margin-bottom: 45px
}

/* --- POSITION ------------------------------------------------------------------ */
.relative {
    position: relative
}

.absolute {
    position: absolute
}

/* --- FONTS ------------------------------------------------------------------ */
/* flex-size от 0 до 50 */

.f22i {
    font-size: 22rem !important
}

/* --- SIZES ------------------------------------------------------------------ */
/* width от 0 до 100 % */

/* height от 0 до 100 % */

/* padding от 0 до 30 AND padding от 35 каждый 5 до 100*/

.pl0i {
    padding-left: 0px !important
}

/* margin от 0 до 30 AND margin от 35 каждый 5 до 100*/

.mb25i {
    margin-bottom: 25px !important
}


.main {
	background: var(--bg);
}

.main .container {

	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
	box-sizing: border-box;
}

.main .brand-badge {
	font-size: 14rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--ps-green);
	margin-bottom: 24px;
	font-weight: 700;
}

.main .description {
	font-size: 20rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
	max-width: 580px;
}

.main .description b {
	color: var(--ps-white);
}

sup {
	vertical-align: super;
	font-size: smaller;
	font-size: 12px;
	font-weight: bold;
	color: var(--ps-tgreen);
}

h1 {
	font-size: 60rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -1px;
	margin-bottom: 24px;
	color: var(--ps-white);
	;
}

h1 span {
	background: linear-gradient(135deg, var(--ps-white) 30%, var(--ps-green) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.primary-btn {
	cursor: pointer;
	border: 2px solid #0c3;
	color: #0c3;
	padding: 18px 36px;
	border-radius: 8px;
	font-size: 18rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-btn:hover {
	background: #0c3; color: var(--ps-black);
}


.lh-gauge-container {
	width: 360px;
	height: 360px;
}


/* Центральное окно с оценкой */
.lh-center-circle {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background-color: var(--ps-green-bg);
	border: 1px solid rgba(0, 204, 102, 0.05);
	transition: background-color 0.5s ease;
}


.lh-svg {
	width: 100%;
	height: 100%;
}

/* Общие стили для сегментов кольца */
.lh-arc {
	fill: none;
	stroke-width: 10;
	stroke-linecap: round;
	/* Длина окружности при r=100 равна ~628.3. Делим на 5 секторов с отступами */
	stroke-dasharray: 108 628;
	stroke-dashoffset: 628;
	transition: stroke-dashoffset 2s cubic-bezier(0.1, 1, 0.1, 1), stroke 0.5s ease;
}

/* Текстовые метрики поверх кольца */
.lh-arc-label {
	font-size: 11px;
	font-weight: 600;
	fill: var(--text-muted);
	font-family: system-ui, sans-serif;
	letter-spacing: 0.5px;
}


.lh-score {
	font-size: 85rem;
	font-weight: 400;
	color: var(--ps-green);
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	transition: color 0.5s ease;
}

@media (max-width: 968px) {
	.main {
		height: initial;
	}

	.main .container {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
		padding: 40px 20px;
	}

	.main .description {
		margin-left: auto;
		margin-right: auto;
	}

	.main-btn {
		justify-content: center;
	}

	h1 {
		font-size: 45px;
	}

	.lh-gauge-container {
		width: 270px;
		height: 270px;
	}
}



.upgrade-sources {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.upgrade-sources p {
	font-size: 14rem;
	color: #4f5b70;
	/* Приглушенный цвет, чтобы не отвлекать от основного текста */
	line-height: 1.5;
	max-width: 800px;
}

.upgrade-sources span {
	color: var(--text-muted);
	font-weight: 600;
}

h3 {
	font-size: 24rem;
}




.wrapper {
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	position: relative;
}


/* Стили модуля выгоды */
.upgrade-section {
	padding: 120px 20px 60px;
	color: #333;
}

.upgrade-container {

	border-top: 1px solid #d4d4d4;
	padding-top: 50px;
}

/* Заголовок */
.upgrade-header {
	margin-bottom: 70px;
}

.upgrade-tag {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--text-muted2);
	display: block;
	margin-bottom: 8px;
}

.upgrade-header p {
	font-size: 18rem;
	color: var(--text-muted2);
	max-width: 650px;
	line-height: 1.5;
}

.upgrade-header h2 {
	font-weight: 800;
	color: var(--ps-black);
	letter-spacing: -0.5px;
}

/* Трехколоночный таймлайн */
.upgrade-timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 60px;
}
.upgrade-timeline.two {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
	margin-bottom: 60px;
}

.upgrade-step {
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Модуль мягкого зеленого свечения */
.upgrade-anchor {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-bottom: 24px;
	height: 50px;
}

/* Зеленые маркеры роста */
.upgrade-num {
	font-weight: 900;
	line-height: 1;
	color: var(--ps-green);
	/* Абсолютный зеленый цвет PageSpeed */
	font-family: system-ui, -apple-system, sans-serif;
	letter-spacing: -1px;
	position: relative;
	z-index: 2;
}

/* Мягкий рассеянный зеленый свет */
.upgrade-glow {
	position: absolute;
	left: -15px;
	top: -10px;
	width: 60px;
	height: 60px;
	background-color: var(--ps-green);
	border-radius: 50%;
	z-index: 1;
	filter: blur(18px);
	opacity: 0.12;
	transition: opacity 0.3s ease;
}

/* Интерактив при наведении на колонку выгоды */
.upgrade-step:hover .upgrade-glow {
	opacity: 0.22;
}

/* Заголовки и текст */
.upgrade-step h3 {
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.2px;
}

.upgrade-step p {
	font-size: 18px;
	color: var(--text-muted2);
	line-height: 1.6;
}

/* Итог */
.upgrade-summary {
	max-width: 750px;
	border-left: 2px solid var(--ps-green);
	padding-left: 20px;
	margin-top: 20px;
}

.upgrade-summary h2 {
	color: #333;
	line-height: 1.65;
	font-size: 24rem;
}
.upgrade-summary p {
	color: var(--text-muted2);
	line-height: 1.65;
	font-size: 20rem;
}

.upgrade-sources {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.upgrade-sources p {
	color: var(--text-muted2);
	/* Приглушенный цвет, чтобы не отвлекать от основного текста */
	line-height: 1.5;
	max-width: 800px;
}

.upgrade-sources span {
	color: var(--text-muted);
	font-weight: 600;
}

/* Адаптивность для смартфонов */
@media (max-width: 968px) {
	.upgrade-timeline {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.white-bg.w48 {
		width: 100%
	}
}

.spec-green{
    color: var(--ps-tgreen);
    border-radius: 100%;
    font-weight: 700;
}

.white-bg h3 {
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.2px;
	word-break: break-word;
}

.white-bg {
	background-color: #fff;
	border-radius: 25px;
	padding: 32px;
	box-sizing: border-box;
	box-shadow: 0 10px 25px rgb(0 0 0 / 5%);
}

.white-bg ul li {
	font-size: 18px;
	color: var(--text-muted2);
	line-height: 1.6;
	margin-bottom: 10px;
}


.quiz {
	background-color: var(--bg);
	padding: 120px 20px !important
}
.quiz .white-bg{
	max-width: 650px;
}

.progress-bar-container {
	width: 100%;
	height: 4px;
	background-color: #f1f5f9;
	margin-bottom: 25px;
}

.progress-bar {
	width: 0%;
	/* Прогресс для 1 шага из 4 */
	height: 100%;
	background-color: var(--ps-green);
	/* Тот самый зеленый */
	transition: width 0.3s ease;
	max-width: 100%;
}

.option-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.option-item input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.custom-radio {
	height: 20px;
	width: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.option-item input[type="radio"]:checked~.custom-radio {
	border-color: var(--ps-green);
}

.custom-radio::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--ps-green);
	display: none;
}

.option-item input[type="radio"]:checked~.custom-radio::after {
	display: block;
}

.option-text {
	font-size: 18px;
	color: var(--text-muted2);
	line-height: 1.6;
}

.novalidate .custom-radio {
	border-color: var(--ps-red);
}

#step9.novalidate .custom-radio {
	border-color: #cbd5e1;
}

.options-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 35px;
}

.quiz-footer {
	padding-top: 35px;
	border-top: 1px solid #f2f2f2;
}

.btn-nav {
	border: none;
	background: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.btn-back {
	color: #1e293b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding-left: 0;
}

.btn-back:hover {
	color: #64748b;
}

.quiz .step {
	display: none;
	animation: fadeInUp 0.5s ease forwards;
}

#prevSlide {
	opacity: 0;
}

#prevSlide.active {
	opacity: 1;
}

.quiz .step.active {
	display: block;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
		/* Появление чуть снизу */
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.upgrade-container.white-bg{position: relative;}
.upgrade-container.white-bg.wrapper:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 90px;
    bottom: 0;
    left: 0;
    border-radius: 25px;
}


.custom-checkbox {
	height: 20px;
	width: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 4px;
	/* Квадратные с легким скруглением */
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.option-item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.option-item input[type="checkbox"]:checked~.custom-checkbox {
	border-color: var(--ps-green);
	background-color: var(--ps-green);
}

.option-item input[type="checkbox"]:checked~.custom-checkbox::after {
	content: "✓";
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.quiz-textarea {
	width: 100%;
	height: 120px;
	padding: 15px;
	border: 2px solid #cbd5e1;
	border-radius: 8px;
	font-size: 15px;
	color: #334155;
	outline: none;
	resize: none;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.novalidate .quiz-textarea {
	border-color: var(--ps-red);
}


.quiz-textarea:focus {
	border-color: var(--ps-green);
	box-shadow: 0 0 0 3px rgba(72, 160, 75, 0.1);
}

.input-tip {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: bold;
}

.quiz-input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #cbd5e1;
	border-radius: 8px;
	font-size: 15px;
	color: #334155;
	outline: none;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.novalidate .quiz-input {
	border-color: var(--ps-red);
}

.quiz-input:focus {
	border-color: var(--ps-green);
	box-shadow: 0 0 0 3px rgba(72, 160, 75, 0.1);
}

.textp {
	color: var(--text-muted2);
	line-height: 1.65;
	font-size: 20rem;
}

/* Анимация тряски для невалидного шага */
.quiz .step.novalidate {
	animation: shake 0.4s ease-in-out;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-6px);
	}

	75% {
		transform: translateX(6px);
	}
}



/* Эффект затемнения фона вокруг окна */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(5px);
	/* Трендовое размытие заднего плана */
	z-index: 9999;
	/* Окно гарантированно поверх чата, телефона и тарифов */
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	/* Плавное появление */
}

/* Класс, который активирует показ окна через JS */
.modal-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

/* Само белое окно */
.modal-window {
	background-color: #ffffff;
	width: 90%;
	max-width: 650px;
	max-height: 80vh;
	/* Занимает не более 80% высоты экрана */
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.modal-overlay.is-active .modal-window {
	transform: translateY(0);
	/* Окно плавно опускается при появлении */
}

/* Шапка окна */
.modal-header {
	padding: 20px 24px;
	border-bottom: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Крестик закрытия */
.modal-close-x {
	background: none;
	border: none;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.modal-close-x:hover {
	color: #1a1a1a;
}

/* Текстовая зона (со своим скроллом) */
.modal-body {
	padding: 24px;
	overflow-y: auto;
	/* Включает внутренний скролл */
	font-size: 14px;
	line-height: 1.6;
	color: #444444;
}

.modal-body h3 {
	font-size: 16px;
	color: #1a1a1a;
	margin-top: 20px;
	margin-bottom: 8px;
}

.modal-body p {
	margin-bottom: 12px;
}

/* Подвал окна */
.modal-footer {
	padding: 16px 24px;
	border-top: 1px solid #eaeaea;
	display: flex;
	justify-content: flex-end;
}

/* Кнопка "Ознакомлен" */
.modal-agree-btn {
	background-color: #1a1a1a;
	/* Строгая черная кнопка в стиле Apple */
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.modal-agree-btn:hover {
	background-color: #333333;
}

/* Адаптация под мобилки */
@media (max-width: 500px) {
	.modal-window {
		width: 100%;
		height: 100%;
		max-height: 100vh;
		/* На смартфонах оферта открывается на весь экран */
		border-radius: 0;
	}
}

.link {
	text-decoration: underline;
	cursor: pointer;
}

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



/* Адаптивность для смартфонов */
@media (max-width: 768px) {
	footer .wrapper > div {
		flex-direction: column !important;
	}
	footer .p40{padding: 20px !important}
}

/* Адаптивность для смартфонов */
@media (max-width: 481px) {
	.upgrade-header h2{font-size: 30px;}
	.white-bg h3{font-size: 26px;}
	.upgrade-section{padding: 60px 0;}
	.wrapper{padding: 0;}
	.upgrade-container{padding: 0;}
	.second-section{padding: 20px;}
	.three-section .upgrade-header{padding: 20px;}
	.quiz .white-bg{padding: 20px;}
}

:root {
    --header-bg: rgba(22, 27, 34, 0.95);
    --header-border: #30363d;
    --header-text: #c9d1d9;
    --header-muted: #8b949e;
    --header-accent: #2ea44f;
}

header {
	background-color: var(--bg);
}
.header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    display: flex;
    width:100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

.header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo-area .header-name {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.header-logo-area .header-status {
    font-size: 13px;
    color: var(--header-muted);
    display: block;
    margin-top: 2px;
}

.header-center-info {
    text-align: left;
    font-size: 14px;
    color: var(--header-text);
    border-left: 2px solid var(--header-border);
    padding-left: 15px;
    margin-left: 15px;
}

.header-center-info .header-status {
    font-size: 13px;
    color: var(--header-muted);
    display: block;
    margin-bottom: 2px;
}

.header-center-info span {
    color: var(--header-accent);
    font-weight: 600;
}

.header-contacts {
    text-align: right;
}

.header-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 1.2;
    transition: color 0.2s ease-in-out;
}

.header-phone:hover {
    color: var(--header-accent);
}

.header-email {
    font-size: 13px;
    color: var(--header-muted);
    display: block;
    margin-top: 2px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .header-center-info {
        display: none; /* Скрываем центральный текст на планшетах */
    }
}

@media (max-width: 576px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        height: auto;
        padding: 12px 20px;
    }
    .header-logo-area {
		margin-bottom: 25px;
        text-align: center;
    }
    .header-contacts {
        text-align: center;
    }
}

.btn-head{font-size: 14px;padding: 10px;margin-left: 10px;}



/* Контейнер для выравнивания точки и текста */
.status-container {
	display: inline-flex;
	align-items: center;
	gap: 8px; /* Расстояние между точкой и текстом */
	font-family: sans-serif;
	color: #a39ca8; /* Цвет текста как на скриншоте */
	font-size: 16px;
  }
  
  /* Базовые стили для самой точки */
  .status-dot {
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #0c3; /* Зеленый цвет точки */
	border-radius: 50%;
  }
  
  /* Создание эффекта пульсации вокруг точки */
  .status-dot::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0c3;
	border-radius: 50%;
	animation: pulse-animation 2s infinite ease-in-out;
	opacity: 0.6;
  }
  
  /* Настройка анимации */
  @keyframes pulse-animation {
	0% {
	  transform: scale(1);
	  opacity: 0.6;
	}
	100% {
	  transform: scale(2.8); /* Насколько сильно расширяется импульс */
	  opacity: 0;            /* В конце импульс полностью исчезает */
	}
  }











  




  